* {
  box-sizing: border-box;
}

:root {
  --ink: #10151a;
  --muted: #56606a;
  --sand: #f4f1ec;
  --stone: #e1e6ea;
  --blue: #1b4b6f;
  --blue-light: #e6f1f8;
  --olive: #5a6b4f;
  --amber: #d5b07a;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(16, 21, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  gap: 18px;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-light);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6vw 40px;
  align-items: stretch;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  padding: 10px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
}

.btn-secondary {
  background: var(--olive);
}

.btn-outline {
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
}

.hero-visual {
  flex: 1 1 340px;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-card {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--sand);
  padding: 18px 22px;
  border-radius: 16px;
  max-width: 220px;
  box-shadow: var(--shadow);
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
}

.section {
  padding: 50px 6vw;
  position: relative;
}

.section-sand {
  background: var(--sand);
}

.section-blue {
  background: var(--blue-light);
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-logic {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-archive .section-title,
.bg-archive .section-intro,
.bg-logic .section-title,
.bg-logic .section-intro {
  color: var(--white);
}

.bg-overlay {
  background: rgba(16, 21, 26, 0.6);
  padding: 32px;
  border-radius: 18px;
  max-width: 680px;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 12px;
}

.section-intro {
  color: var(--muted);
  max-width: 620px;
}

.asym-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.asym-card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  top: 0;
}

.asym-card.offset {
  top: 24px;
}

.asym-card h3 {
  margin-top: 0;
}

.inline-media {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 26px;
}

.inline-media .image-frame {
  flex: 1 1 260px;
  min-height: 220px;
}

.inline-media .content {
  flex: 1 1 280px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--olive);
}

.process-line {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-index {
  font-weight: 700;
  color: var(--blue);
}

.quote-block {
  background: var(--white);
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  margin-top: 20px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

.split-info {
  flex: 1 1 260px;
}

.footer {
  padding: 32px 6vw 60px;
  background: var(--ink);
  color: var(--white);
}

.footer a {
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #dfe4ea;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  z-index: 3;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 340px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-hero {
  padding: 46px 6vw 24px;
  background: var(--blue-light);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.simple-section {
  padding: 40px 6vw;
}

.legal-text {
  max-width: 820px;
  color: var(--muted);
}
