*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5a5a5a;
  --accent: #1f6b5f;
  --accent-soft: #e3f2ef;
  --warm: #f7f1ea;
  --cool: #eef2f6;
  --line: #dedede;
  --shadow: 0 18px 40px rgba(21, 21, 21, 0.12);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 7vw 14px;
  position: relative;
  z-index: 10;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.section.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero {
  background: linear-gradient(120deg, #f7f7f7 0%, #f0f5f4 100%);
  padding-top: 40px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.12;
  margin: 0;
}

.hero-sub {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.hero-asym {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
}

.offset-box {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-left: auto;
  max-width: 520px;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--warm);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.story-strip p {
  margin: 0;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.feature-card img {
  height: 160px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  border-radius: var(--radius-sm);
}

.timeline-step span {
  font-size: 13px;
  color: var(--muted);
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cool);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery img {
  border-radius: var(--radius-md);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.footer {
  padding: 50px 7vw;
  background: #111111;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subtle {
  color: var(--muted);
  font-size: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 18px;
}

.highlight-box {
  background: var(--cool);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
}

@media (min-width: 760px) {
  .section.split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-card {
    flex: 1 1 220px;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-step {
    flex: 1 1 220px;
  }

  .pricing-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 240px;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery img {
    flex: 1 1 0;
  }

  .form-shell {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-shell .form-group {
    flex: 1 1 220px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
