* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #e12f5c;
  --accent-dark: #b81f45;
  --soft: #f5f2ee;
  --sand: #f0ebe4;
  --night: #12121a;
  --cloud: #ffffff;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 7vw 12px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 36px 7vw 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: linear-gradient(120deg, rgba(225, 47, 92, 0.08), rgba(18, 18, 26, 0.05));
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 680px;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.dark {
  background: var(--night);
}

.section {
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.soft {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.night {
  background: var(--night);
  color: #fff;
}

.section.night a {
  color: #fff;
  text-decoration: underline;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-card {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(18, 18, 26, 0.08);
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(18, 18, 26, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  background: #fff;
}

.form-wrap button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
}

.footer {
  padding: 40px 7vw;
  background: #12121a;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fff;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(18, 18, 26, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .topbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .grid {
    flex-direction: row;
  }

  .grid .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .card {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
