@charset "UTF-8";

:root {
  color-scheme: light;
  --bg: #f7f4f0;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #e76a6a;
  --accent-dark: #c34f4f;
  --accent-soft: #ffe2dc;
  --sand: #fff7ec;
  --leaf: #2c5b4d;
  --line: #e3ddd5;
  --shadow: 0 18px 45px rgba(29, 20, 10, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 48px 8% 64px;
  background: linear-gradient(120deg, #fff 0%, var(--sand) 100%);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin: 0;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--muted);
}

.hero .hero-image {
  max-width: 520px;
}

.hero .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.badge {
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  border: 1px dashed var(--accent);
  color: var(--accent-dark);
  box-shadow: none;
}

.section {
  padding: 64px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.sand {
  background: var(--sand);
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 10% 10% auto auto;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(231, 106, 106, 0.15);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.section h3 {
  margin: 0;
  font-size: 1.2rem;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callout {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.timeline span {
  font-weight: 600;
  color: var(--accent-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card img {
  width: 56px;
  height: 56px;
}

.quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-end;
  background: var(--leaf);
  color: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  margin-left: auto;
  box-shadow: var(--shadow);
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 32px 8% 48px;
  background: #1b1b1b;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-rows div {
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .mini-grid {
    flex-direction: row;
  }

  .mini-grid .card {
    flex: 1;
  }
}
