* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ed;
  --ink: #1f1a17;
  --muted: #6a5f58;
  --accent: #b34b2c;
  --accent-dark: #8c3720;
  --sand: #efe6dc;
  --rose: #f2d6cd;
  --olive: #c2b3a4;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(246, 242, 237, 0.9);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero {
  padding: 70px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.hero .hero-image {
  border-radius: 24px;
  background: var(--rose);
  padding: 24px;
}

.hero .hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.cta:hover {
  background: var(--accent-dark);
}

.cta-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--ink);
  color: #fdf9f4;
}

.section.dark a {
  color: #fdf9f4;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row.split {
  gap: 32px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card .tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step .badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.price-item strong {
  font-size: 1.2rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.form-section {
  background: var(--rose);
  border-radius: 24px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
}

.footer {
  padding: 40px 6vw;
  background: #16110e;
  color: #f6efe8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .nav-links {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .cta {
  flex: 1;
  padding: 10px;
}

.cookie-actions .cta-outline {
  color: var(--accent);
}

.badge-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-strip span {
  background: var(--olive);
  color: #1b1512;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 880px) {
  .row {
    flex-direction: row;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-content,
  .hero .hero-image {
    flex: 1;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }
}
