* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1d;
  --muted: #5b5f64;
  --cream: #f7f4ef;
  --mist: #eef1f3;
  --accent: #a24d2b;
  --accent-dark: #7e3b1f;
  --sage: #d9e2d0;
  --line: #e1e1e1;
  --shadow: 0 16px 35px rgba(20, 20, 20, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 0 50px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero-sub {
  color: var(--muted);
  max-width: 580px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-media img {
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section.soft {
  background: var(--cream);
}

.section.mist {
  background: var(--mist);
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.copy {
  color: var(--muted);
}

.inline-cta {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  font-weight: 600;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-note {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px dashed var(--accent);
  align-self: flex-start;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.form-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 330px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 52px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero p {
  color: var(--muted);
  max-width: 620px;
}

.page-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 60px;
}

.page-card {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border-radius: 16px;
  background: var(--mist);
}

.highlight {
  font-weight: 600;
}

.notes {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 860px) {
  .hero-wrap {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .storyline {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .trust-grid {
    flex-direction: row;
  }

  .trust-item {
    flex: 1;
  }

  .pricing-wrap {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .two-col {
    flex-direction: row;
  }

  .page-card {
    flex: 1;
  }
}
