* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b22;
  --muted: #6b6675;
  --sand: #f5f1eb;
  --peach: #f3d9c8;
  --violet: #46324f;
  --sea: #b7d7d7;
  --white: #ffffff;
  --accent: #f06f52;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0 40px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(31, 27, 34, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 120px;
  height: 120px;
  background: var(--peach);
  border-radius: 30px;
  z-index: 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  max-width: 550px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  border-color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 600;
}

.section-title span {
  width: 42px;
  height: 3px;
  background: var(--violet);
  border-radius: 999px;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row .panel {
  background: var(--white);
  padding: 24px;
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(31, 27, 34, 0.08);
}

.offset-card {
  margin-left: auto;
  width: min(520px, 100%);
  background: var(--sea);
  padding: 24px;
  border-radius: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .text-block {
  background: var(--white);
  padding: 26px;
  border-radius: 26px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(31, 27, 34, 0.08);
}

.card strong {
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--peach);
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  padding: 20px;
  border-radius: 22px;
}

.pricing-item span {
  font-weight: 700;
  color: var(--violet);
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--violet);
  color: var(--white);
  padding: 28px;
  border-radius: 28px;
}

.cta-strip a {
  color: var(--white);
  text-decoration: underline;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(31, 27, 34, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 27, 34, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 27, 34, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 20px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 50px rgba(31, 27, 34, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.muted {
  color: var(--muted);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.notice {
  padding: 16px;
  border-radius: 18px;
  background: rgba(240, 111, 82, 0.12);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .asym-row {
    flex-direction: row;
    align-items: stretch;
  }

  .asym-row .panel {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split .text-block,
  .split .image-stack {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-item {
    flex: 1 1 250px;
  }

  .form-wrap {
    flex-direction: row;
    gap: 28px;
  }

  .form-wrap form {
    flex: 1;
  }

  .form-note {
    flex: 1;
  }
}
