* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --peach: #f6d7c6;
  --berry: #b8486a;
  --deep: #2b2b35;
  --cream: #fff8f2;
  --sage: #dfe6d4;
  --sky: #d9e7f7;
  --shadow: 0 18px 40px rgba(28, 26, 32, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--deep);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--berry);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 6vw 20px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--deep);
  font-weight: 600;
  background: transparent;
}

.btn.primary {
  background: var(--berry);
  color: #fff;
  border-color: var(--berry);
}

.btn.light {
  background: #fff;
  border-color: #fff;
  box-shadow: var(--shadow);
}

.hero-media {
  display: flex;
  justify-content: center;
  background: var(--sky);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.section.soft {
  background: var(--sage);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.note {
  background: var(--peach);
  padding: 18px 20px;
  border-radius: 18px;
  font-weight: 500;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--berry);
  padding: 18px 20px;
  border-radius: 16px;
}

.sticky-zone {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 18px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d4d8;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--berry);
  font-weight: 600;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer {
  padding: 32px 6vw 40px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 520px;
  width: calc(100% - 48px);
  display: none;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-top {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .sticky-zone {
    flex-direction: row;
    align-items: flex-start;
  }

  .stacked {
    flex-direction: row;
  }
}
