* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand: #f6f1eb;
  --ink: #1e1c1a;
  --stone: #615b55;
  --sea: #2f6b7a;
  --clay: #c97a54;
  --mist: #e7e0d8;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", 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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  gap: 12px;
  background: var(--white);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--stone);
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.hero {
  padding: 48px 6vw;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)),
    url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  color: var(--stone);
  font-size: 1.05rem;
}

.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 transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--sea);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  border-color: var(--sea);
  color: var(--sea);
}

.btn.ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.section {
  padding: 56px 6vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.split-content p {
  color: var(--stone);
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--stone);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(30, 28, 26, 0.08);
}

.card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--sea);
}

.inline-cta {
  color: var(--sea);
  font-weight: 600;
}

.highlight {
  background: var(--mist);
}

.accent {
  background: var(--white);
}

.deep {
  background: #0f2f37;
  color: var(--white);
}

.deep p {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: rgba(47, 107, 122, 0.12);
  color: var(--sea);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-panel {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(30, 28, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c6;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 6vw;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--clay);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #e4ddd5;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-hidden {
  display: none;
}

.legal {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
