* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111319;
  --muted: #5c6675;
  --accent: #2b5dff;
  --accent-soft: #e7edff;
  --sand: #f3f1ec;
  --fog: #f7f8fb;
  --line: #d8dde6;
  --shadow: 0 22px 45px rgba(18, 25, 39, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 10px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.hero-asym {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 6vw 80px;
  background: linear-gradient(120deg, #f7f8fb 20%, #ffffff 80%);
  position: relative;
  overflow: hidden;
}

.hero-asym::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background: var(--accent-soft);
  top: -80px;
  right: 8vw;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(43, 93, 255, 0.3);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(520px, 100%);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: -20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.floating-card strong {
  display: block;
  font-size: 14px;
}

.floating-card span {
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section-sand {
  background: var(--sand);
}

.section-fog {
  background: var(--fog);
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offset-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offset-card.alt {
  align-self: flex-end;
  transform: translateX(10px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--muted);
  width: fit-content;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

.service-card h3 {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 24px;
}

.cta-band a {
  color: #fff;
  text-decoration: underline;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form label {
  font-size: 13px;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-family: inherit;
}

.lead-form textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.footer {
  padding: 32px 6vw 50px;
  background: #0f1629;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notice {
  font-size: 13px;
  color: var(--muted);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero {
  padding: 60px 6vw 40px;
  background: linear-gradient(130deg, #f7f8fb 20%, #ffffff 75%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.page-hero p {
  max-width: 640px;
  color: var(--muted);
}

.section-columns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq div {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.legal {
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
}

.legal h2 {
  margin-top: 20px;
}

.legal ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-panel {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .section-split {
    flex-direction: row;
  }

  .offset-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .image-stack {
    flex-direction: row;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .section-columns {
    flex-direction: row;
  }

  .section-columns > div {
    flex: 1;
  }
}
