* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --soft: #f4f1ec;
  --accent: #2b5f6d;
  --accent-dark: #16343c;
  --highlight: #f2c94c;
  --bg: #fbfaf7;
  --border: #e1ded8;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 60px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.section {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft);
  padding: 60px 0;
}

.section-title {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.2;
}

.kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.insight-item span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--highlight);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.price-reveal {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--soft);
}

.service-card img {
  width: 120px;
  height: auto;
}

.service-card strong {
  font-size: 1.1rem;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #fff;
}

.form-shell label {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero-text,
  .hero-media,
  .split > div {
    flex: 1;
  }

  .trust-grid {
    flex-direction: row;
  }

  .trust-item {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }
}
