* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1b16;
  --muted: #6b5f54;
  --accent: #c4572a;
  --accent-soft: #f4e3d7;
  --sand: #f7f2ec;
  --leaf: #2f5b45;
  --sun: #f0b242;
  --line: #e3d7cc;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(31, 27, 22, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  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;
}

.top-nav {
  padding: 24px 5vw 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--muted);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.section {
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  padding-top: 24px;
  gap: 32px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--accent-soft);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-text h1 {
  font-size: 2.3rem;
  margin: 0;
}

.hero-text p {
  color: var(--muted);
  margin: 0;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-dark {
  background: var(--ink);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-card {
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight {
  background: #fff6ec;
  border-left: 4px solid var(--sun);
  padding: 20px;
  border-radius: 16px;
}

.insight {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--leaf);
  margin-top: 6px;
}

.pricing {
  background: #fff;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: var(--sand);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-button {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  cursor: pointer;
}

.service-button span {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-card {
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.urgency {
  background: #2f2b27;
  color: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
  box-shadow: var(--shadow);
}

.footer {
  background: #fff;
  padding: 30px 5vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.image-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
}

@media (min-width: 820px) {
  .hero-wrap,
  .split,
  .two-column {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .pricing-grid,
  .service-buttons {
    flex-direction: row;
  }

  .price-card,
  .service-button {
    flex: 1;
  }

  .benefits {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 45%;
  }
}
