* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f8f5f1;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #ef6b5a;
  --accent-dark: #c4483a;
  --soft: #fff1e6;
  --line: #e6d9cf;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 40px 0 120px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(120deg, #fff, #fef4ec);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split > div {
  flex: 1;
}

.highlight {
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.card img {
  border-radius: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  font-size: 0.9rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: white;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  z-index: 20;
}

.banner {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px dashed var(--accent-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hidden {
  display: none;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .pricing {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }
}
