*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5b5b5b;
  --accent: #d34c32;
  --accent-dark: #b83e28;
  --sand: #f6f1ec;
  --pebble: #ece4dc;
  --forest: #1e2b2a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 23, 23, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.logo {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section--hero {
  background: var(--sand);
  padding-top: 32px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero-highlight {
  font-weight: 600;
  color: var(--accent);
}

.hero-copy {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn--dark {
  background: var(--forest);
}

.hero-visual {
  background: var(--white);
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--pebble);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat strong {
  font-size: 1.6rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card.dark {
  background: var(--forest);
  color: var(--white);
}

.card img {
  border-radius: 14px;
}

.quote {
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

.trust-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-pill {
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  padding: 16px 18px;
  background: var(--pebble);
  border-radius: 14px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  border-radius: 22px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: var(--sand);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d2cb;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 4;
}

.footer {
  background: #111111;
  color: #f1f1f1;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.section--texture {
  background-image: url("texture-soft.svg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.section--texture .inline-link {
  color: #f9d4cb;
}

.section--tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.meta-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-step {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.policy-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero {
  background: var(--sand);
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .stat-grid,
  .card-row,
  .pricing-grid,
  .gallery,
  .contact-grid {
    flex-direction: row;
  }

  .stat,
  .card,
  .price-card,
  .contact-card {
    flex: 1;
  }

  .gallery img {
    flex: 1;
  }

  .benefit-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .benefit-item {
    flex: 1 1 40%;
  }

  .form-shell {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-shell > div,
  .form-shell form {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
