/* ---------- Tokens ---------- */
:root {
  /* Colors — forest green + warm off-white + sunflower accent */
  --bg: #fbfaf5;
  --bg-alt: #f4f1e9;
  --surface: #ffffff;
  --ink: #0f1b14;
  --ink-2: #2b3a30;
  --ink-3: #5a6b60;
  --muted: #8a9690;
  --line: #e4e1d6;

  --brand: #143d2b;         /* deep forest */
  --brand-2: #1e5a3e;       /* mid forest */
  --brand-3: #4ade80;       /* leaf green */
  --accent: #f4c542;        /* warm yellow */
  --accent-2: #ff7a45;      /* sunset orange */

  --dark: #0b1410;          /* near-black forest */
  --dark-2: #112018;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 27, 20, .06), 0 1px 3px rgba(15,27,20,.04);
  --shadow-md: 0 6px 20px rgba(15, 27, 20, .08);
  --shadow-lg: 0 24px 50px -16px rgba(15, 27, 20, .22);
  --shadow-xl: 0 40px 80px -20px rgba(15, 27, 20, .35);

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(74, 222, 128, .12);
  border: 1px solid rgba(74,222,128,.28);
}
.eyebrow--light {
  color: var(--brand-3);
  background: rgba(74, 222, 128, .14);
  border-color: rgba(74,222,128,.25);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section__head {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}
.section__head--left { margin-inline: 0; text-align: left; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 14px;
}
.section__lead {
  color: var(--ink-3);
  font-size: clamp(16px, 1.2vw, 18px);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(20, 61, 43, .6);
}
.btn--primary:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(20, 61, 43, .55); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink-2); }
.btn--outline {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}
.btn--outline:hover { background: var(--brand); color: #fff; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark);
  color: #d9e3dc;
  font-size: 13px;
  padding: 8px 0;
}
.topbar__row { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__muted { color: #a2b0a6; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, .45); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 245, 0.95);
}
.header__row { display: flex; align-items: center; gap: 24px; padding: 14px 0; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  background: var(--brand);
  color: var(--brand-3);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__line1 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--ink-3);
  letter-spacing: .02em;
}
.brand__line2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand-3);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 14px; }
.link-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink-2);
  font-size: 14px;
}
.link-phone:hover { color: var(--brand); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: 0; margin-top: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 80px) 0 clamp(50px, 6vw, 80px);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 500px at 90% 10%, rgba(74,222,128,.14), transparent 60%),
    radial-gradient(900px 400px at 10% 90%, rgba(244,197,66,.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20, 61, 43, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 61, 43, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 75%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .2);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 20px 0 18px;
}
.accent-underline { position: relative; display: inline-block; }
.accent-word { position: relative; z-index: 1; }
.accent-underline::after {
  content: '';
  position: absolute;
  left: -2px; right: -2px; bottom: 4px;
  height: 16px;
  background: var(--brand-3);
  opacity: .4;
  z-index: 0;
  border-radius: 999px;
  transform: skew(-10deg);
}

.hero__lead {
  color: var(--ink-3);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 560px;
  margin: 0 0 28px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.hero__trust {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink-2);
  font-size: 14.5px;
}
.hero__trust li { display: inline-flex; align-items: center; gap: 10px; }
.hero__trust svg { color: var(--brand-3); flex: 0 0 auto; }

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 460px;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}
.blob--1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,222,128,.55) 0%, rgba(74,222,128,0) 70%);
  top: -40px; right: -40px;
}
.blob--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(244,197,66,.45) 0%, rgba(244,197,66,0) 70%);
  bottom: -40px; left: 10px;
}

.hero__card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid var(--line);
}
.hero__card--booking {
  top: 20px; left: 0;
  width: min(340px, 100%);
  transform: rotate(-3deg);
  animation: floatA 8s ease-in-out infinite;
}
.hero__card--review {
  bottom: 60px; right: 0;
  width: min(300px, 80%);
  transform: rotate(3deg);
  animation: floatB 9s ease-in-out infinite;
}
.hero__card--stat {
  bottom: 10px; left: 40px;
  padding: 18px 22px;
  border-radius: var(--r);
  background: var(--dark);
  color: #fff;
  border-color: transparent;
  transform: rotate(-4deg);
  animation: floatC 7s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(10px); }
}
@keyframes floatC {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}

.mini-calendar__header {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 14px; color: var(--ink);
  margin-bottom: 14px;
}
.pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  font-size: 12px; font-weight: 600; color: var(--ink-2);
}
.pill--green { background: rgba(74,222,128,.14); color: var(--brand-2); }
.mini-calendar__slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.slot {
  padding: 10px 0;
  border-radius: 10px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  color: var(--ink-2);
  font-weight: 600;
  font-size: 13px;
  transition: all .2s ease;
}
.slot:hover { border-color: var(--brand); color: var(--brand); }
.slot--active { background: var(--brand); color: #fff; border-color: var(--brand); }
.slot--busy { opacity: .45; text-decoration: line-through; cursor: not-allowed; }
.mini-calendar__foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: 10px; }
.hero__card--review p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0 0 10px;
  line-height: 1.5;
}
.review__author { font-size: 13px; color: var(--ink-3); font-weight: 500; }

.stat__big {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__big span { font-size: 20px; color: #9bcfae; font-weight: 600; margin-left: 2px; }
.stat__sub { font-size: 12.5px; color: #c4d4ca; margin-top: 4px; }

/* Marquee */
.marquee {
  margin-top: clamp(30px, 5vw, 60px);
  overflow: hidden;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 1; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--surface), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--surface), transparent); }
.marquee__track {
  display: flex; gap: 24px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  color: var(--ink-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.marquee__track span + span { padding: 0; color: var(--muted); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Services ---------- */
.grid { display: grid; gap: 20px; }
.grid--services {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex; flex-direction: column;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,222,128,.4);
}
.service--featured {
  background: linear-gradient(160deg, var(--brand), var(--brand-2));
  color: #e8f2ec;
  border-color: transparent;
}
.service--featured .service__icon { background: rgba(74,222,128,.2); color: var(--brand-3); }
.service--featured h3 { color: #fff; }
.service--featured .service__price { color: var(--brand-3); }
.service--featured p { color: #c4d4ca; }

.service__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(74,222,128,.14);
  color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.service p {
  color: var(--ink-3);
  font-size: 14.5px;
  margin: 0 0 16px;
  flex: 1;
}
.service__price {
  font-weight: 700;
  color: var(--brand);
  font-size: 15px;
}
.service__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- How it works ---------- */
.how {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% 20%, rgba(74,222,128,.1), transparent 70%);
  pointer-events: none;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--brand-3) 0 8px, transparent 8px 16px);
  opacity: .5;
  z-index: 0;
}
.step {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--brand);
  letter-spacing: 0.06em;
  background: rgba(74,222,128,.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.step p { color: var(--ink-3); margin: 0; }
.how__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.how__note { color: var(--ink-3); font-size: 14px; }

/* ---------- Pricing ---------- */
.grid--pricing {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--featured {
  background: var(--dark);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.plan__head h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.plan__head p { margin: 0; color: var(--ink-3); font-size: 14px; }
.plan--featured .plan__head p { color: #a9c7b6; }

.plan__price {
  display: flex; align-items: baseline; gap: 10px;
  margin: 22px 0 22px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.plan--featured .plan__price {
  border-color: rgba(255,255,255,0.08);
}
.plan__amt {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  letter-spacing: -0.02em;
}
.plan__per { color: var(--ink-3); font-size: 14px; }
.plan--featured .plan__per { color: #a9c7b6; }

.plan__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.plan__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.plan--featured .plan__list li { color: #d3e0d7; }
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  background: var(--brand-3);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
}

.plan--featured .btn--primary { background: var(--brand-3); color: var(--dark); }
.plan--featured .btn--primary:hover { background: #22c55e; }

.pricing__note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  padding: 12px 18px;
  background: var(--bg-alt);
  border-radius: 999px;
  color: var(--ink-3);
  font-size: 14px;
}

/* ---------- Area ---------- */
.area {
  background: var(--dark);
  color: #dfe8e1;
  position: relative;
  overflow: hidden;
}
.area::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 15% 20%, rgba(74,222,128,.14), transparent 60%),
    radial-gradient(600px 400px at 85% 90%, rgba(244,197,66,.08), transparent 60%);
  pointer-events: none;
}
.area .section__title { color: #fff; }
.area .eyebrow {
  background: rgba(74,222,128,.14);
  color: var(--brand-3);
  border-color: rgba(74,222,128,.25);
}
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.area__text > p { color: #a9c7b6; font-size: 16.5px; max-width: 520px; margin: 18px 0 26px; }
.area__list {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
  color: #c9dacf;
  font-size: 14.5px;
}
.area__list li { position: relative; padding-left: 20px; }
.area__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-3);
}
.area__kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  background: rgba(255,255,255,0.03);
}
.area__kpis > div { text-align: center; }
.area__kpis strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  color: #fff;
}
.area__kpis span { font-size: 12px; color: #9bcfae; }

.area__map { position: relative; aspect-ratio: 4/3; }
.map {
  position: relative;
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(74,222,128,.14), transparent 55%),
    linear-gradient(180deg, #0f1a15, #091310);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.map svg { width: 100%; height: 100%; }
.map__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: inline-flex;
  align-items: center; gap: 6px;
  padding: 6px 12px 6px 28px;
  background: rgba(17, 32, 24, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px; font-weight: 600;
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 999px;
}
.map__pin::before {
  content: '';
  position: absolute;
  left: 10px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand-3);
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
}
.map__pin--main {
  background: var(--brand);
  border-color: var(--brand-3);
  font-size: 13px;
  padding: 8px 14px 8px 32px;
}
.map__pulse {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--brand-3);
  opacity: 0;
  animation: mapPulse 4s ease-out infinite;
  pointer-events: none;
}
.map__pulse--1 { top: 52%; left: 48%; width: 40px; height: 40px; transform: translate(-50%, -50%); }
.map__pulse--2 { top: 52%; left: 48%; width: 80px; height: 80px; transform: translate(-50%, -50%); animation-delay: 1.3s; }
.map__pulse--3 { top: 52%; left: 48%; width: 140px; height: 140px; transform: translate(-50%, -50%); animation-delay: 2.6s; }
@keyframes mapPulse {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.3); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* ---------- Reviews ---------- */
.grid--reviews {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.review {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review .stars { font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.review footer {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.review__avatar {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c, var(--brand-3));
  color: #fff;
  font-weight: 700; font-size: 14px;
  flex: 0 0 auto;
}
.review footer strong { display: block; font-size: 14.5px; }
.review footer small { color: var(--ink-3); font-size: 13px; }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.about__text p {
  color: var(--ink-3);
  font-size: 16.5px;
  margin: 0 0 16px;
}
.about__badges {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.badge-pill strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
}
.badge-pill span { color: var(--ink-3); font-size: 13px; }

.about__visual { position: relative; }
.about__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}
.about__tag {
  position: absolute;
  bottom: 22px; left: -20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faq__head p { color: var(--ink-3); margin: 10px 0 22px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: rgba(74,222,128,0.45); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__plus {
  font-size: 20px; font-weight: 600;
  color: var(--brand);
  transition: transform .3s ease;
  flex: 0 0 auto;
}
.faq-item[open] .faq-item__plus { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 22px;
  margin: -6px 0 0;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA / Contact ---------- */
.cta {
  background: var(--bg-alt);
  padding: clamp(48px, 7vw, 100px) 0;
}
.cta__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  background: var(--dark);
  border-radius: var(--r-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta__card::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(74,222,128,.25), transparent 65%);
  pointer-events: none;
}
.cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 12px 0 14px;
  color: #fff;
}
.cta__text p { color: #a9c7b6; margin: 0 0 24px; }
.cta__info {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.cta__info li { display: inline-flex; align-items: center; gap: 12px; color: #d3e0d7; font-size: 15px; }
.cta__info svg { color: var(--brand-3); flex: 0 0 auto; }
.cta__info a { color: #fff; font-weight: 600; }
.cta__info a:hover { color: var(--brand-3); }

.cta__form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  z-index: 1;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: #a9c7b6; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #7d8f85; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand-3);
  background: rgba(74,222,128,0.06);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234ade80'%3E%3Cpath d='M5.5 8l4.5 4.5L14.5 8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note {
  margin: 4px 0 0;
  font-size: 12px;
  color: #7d8f85;
  line-height: 1.45;
}

.is-success .btn__label::after {
  content: ' ✓';
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  color: #a9c7b6;
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand .brand { color: #fff; }
.footer__brand .brand__line1 { color: #9bcfae; }
.footer__brand .brand__line2 { color: #fff; }
.footer__brand .brand__mark { background: var(--brand-2); color: var(--brand-3); }
.footer__brand p { margin: 18px 0 20px; font-size: 14.5px; max-width: 340px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05);
  color: #c9dacf;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--brand-3); color: var(--dark); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.footer__col a:hover { color: var(--brand-3); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  font-size: 13px;
  color: #7d8f85;
}
.footer__bottom-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--brand-3); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.06) translateY(-2px); }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  z-index: -1;
  animation: pulseWa 2.2s ease-out infinite;
}
@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; margin-top: 20px; }
  .grid--pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .area__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .cta__card { grid-template-columns: 1fr; padding: 32px; }
  .about__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

@media (max-width: 640px) {
  .topbar__muted { display: none; }
  .hero__title { font-size: 36px; }
  .hero__card--booking { width: 80%; left: 0; top: 0; }
  .hero__card--review { width: 70%; bottom: 30px; right: 0; }
  .hero__card--stat { bottom: 0; left: 0; }
  .grid--services { grid-template-columns: 1fr; }
  .area__list { grid-template-columns: 1fr; }
  .area__kpis { grid-template-columns: 1fr; gap: 10px; }
  .row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-row { flex-direction: column; align-items: flex-start; }
}
