* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0b141a;
  --muted: #4a5b66;
  --accent: #0f6b6f;
  --accent-soft: #d6f0f0;
  --warm: #f7efe7;
  --cool: #eef2f7;
  --dark: #11191f;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(17, 25, 31, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px 6vw 40px;
  background: linear-gradient(120deg, var(--cool), var(--white));
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.cta-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-visual .overlay-card {
  position: absolute;
  left: 8%;
  bottom: -18px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 220px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 48px 6vw;
}

.section.asym {
  background: var(--warm);
}

.section.dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.section.dark .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row.offset-left {
  align-items: flex-start;
}

.split-row.offset-right {
  align-items: flex-end;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  max-width: 520px;
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline-step span {
  font-weight: 700;
  color: var(--accent);
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-card strong {
  font-size: 1.1rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-box {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-panel {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel select,
.form-panel input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4dbe2;
  font-size: 0.95rem;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 32px 6vw 48px;
  background: var(--cool);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: var(--radius);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-accept {
  background: var(--accent);
  color: var(--white);
}

.btn-reject {
  background: #dfe6ec;
  color: var(--ink);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal h1 {
  margin: 0;
}

.legal p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-row.offset-left .story-card {
    margin-left: -40px;
  }

  .split-row.offset-right .story-card {
    margin-right: -40px;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-step {
    flex: 1;
  }

  .stats-row,
  .pricing-list,
  .media-row,
  .contact-grid {
    flex-direction: row;
  }

  .stat,
  .price-card,
  .media-box,
  .contact-card {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
