* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1b;
  --muted: #5b5b59;
  --accent: #1b5b4a;
  --accent-strong: #0d3a2f;
  --sand: #f3efe9;
  --rose: #f6e6e0;
  --fog: #eef2f1;
  --line: #ded8cf;
}

body {
  font-family: "Inter", "Segoe UI", 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;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 720px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
}

.hero {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.story {
  background: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--fog);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.trust {
  background: var(--fog);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-card {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}

.benefits {
  background: var(--rose);
}

.benefit-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing {
  background: #ffffff;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.process {
  background: var(--fog);
}

.step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.form-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
}

textarea {
  min-height: 110px;
}

.footer {
  padding: 30px 6vw 50px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  background: var(--accent-strong);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner.show {
  display: flex;
}

.page-hero {
  background: var(--sand);
  padding: 60px 6vw;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(28px, 3vw, 42px);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 920px;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .trust-grid,
  .service-cards,
  .benefit-row,
  .image-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .trust-card,
  .service-card,
  .step {
    flex: 1;
    min-width: 220px;
  }

  .testimonial {
    max-width: 520px;
  }

  .form-card {
    max-width: 720px;
  }
}
