* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1c1b;
  --muted: #6f6460;
  --accent: #d1607c;
  --accent-dark: #a8425a;
  --sand: #f8f2ee;
  --rose: #f3dfe5;
  --mist: #f6f6f8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 28, 27, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 0 10px;
}

.brand-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.hero-body {
  background: var(--sand);
  padding: 42px 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.hero-visual {
  margin-left: auto;
  width: min(460px, 88%);
  background: var(--rose);
  padding: 24px;
  border-radius: 28px;
  transform: translateX(-20px);
}

.offset-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  padding: 36px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.offset-section::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--rose);
  border-radius: 30px;
  top: -30px;
  right: 18px;
  z-index: 0;
}

.offset-section > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.card small {
  color: var(--muted);
}

.card img,
.card svg {
  border-radius: 18px;
  background: var(--sand);
  padding: 10px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: var(--sand);
  padding: 18px 20px;
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-item strong {
  font-size: 18px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial {
  background: var(--rose);
  padding: 20px;
  border-radius: 22px;
}

.form-shell {
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid #e2d9d6;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.footer {
  padding: 40px 0 80px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 320px;
  background: var(--white);
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-actions .reject {
  background: #e7d9d7;
  color: var(--ink);
}

.page-hero {
  background: var(--sand);
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-block {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-body {
    width: 56%;
  }

  .hero-visual {
    width: 44%;
    transform: translate(-40px, 30px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-grid .policy-block {
    flex: 1;
  }
}
