* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1a2b;
  --muted: #5c6b80;
  --accent: #2f6bff;
  --accent-dark: #1d3fa6;
  --lime: #d7ff6f;
  --sand: #f7f4ee;
  --fog: #eef3f8;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(15, 26, 43, 0.12);
  --radius: 22px;
}

body {
  margin: 0;
  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;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6%;
  border-bottom: 1px solid #e7edf4;
  background: #fff;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav .brand span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--fog);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--fog);
}

.section {
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--fog);
}

.section.sand {
  background: var(--sand);
}

.section.dark {
  background: var(--ink);
  color: #f9fbff;
}

.section.dark a {
  color: #f9fbff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.8px;
  color: var(--muted);
}

.section-title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 90px 6% 60px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.light {
  background: #fff;
  color: var(--ink);
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--accent-dark);
  font-weight: 600;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-stack img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
  max-height: 180px;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 12px;
  background: var(--fog);
  border-radius: 999px;
  font-size: 12px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e9eef4;
}

.price-card h3 {
  margin: 0;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8e3;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  border-top: 1px solid #e7edf4;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  max-width: 360px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 10px 16px;
  font-size: 13px;
}

.thanks-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-strip img {
  border-radius: 18px;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #d9e1ec;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-pill.active {
  background: var(--lime);
  border-color: var(--lime);
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .media-stack {
    flex: 0.9;
  }

  .split-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .split-row > * {
    flex: 1;
  }

  .cards,
  .pricing-grid,
  .metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .price-card,
  .metric {
    flex: 1;
    min-width: 240px;
  }

  .image-strip {
    flex-direction: row;
  }
}
