/* ==========================================================================
   Bin Buddy — Design tokens
   ========================================================================== */
:root {
  --navy: #08283e;
  --navy-2: #0b2c45;
  --navy-3: #0f3654;
  --green: #8bd129;
  --green-dark: #6bab1c;
  --green-light: #eafbd7;
  --blue: #3ebaea;
  --orange: #f5a623;
  --white: #ffffff;
  --ink: #14212b;
  --muted: #5b6b76;
  --bg: #faf9f5;
  --tint: #f2f7ee;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(8, 40, 62, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 40, 62, 0.12);
  --shadow-lg: 0 20px 50px rgba(8, 40, 62, 0.18);
  --font-head: "Baloo 2", "Nunito Sans", sans-serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}
p { margin: 0 0 1em; color: var(--muted); }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-light { color: var(--white); }
.text-light-muted { color: rgba(255,255,255,0.72); }
.text-accent { color: var(--green); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-size: 1rem;
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--green-dark); }
.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: rgba(8,40,62,0.06); color: var(--navy); }
.btn--ghost:hover { background: rgba(8,40,62,0.12); }
.btn--sm { padding: 10px 16px; font-size: 0.9rem; }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.badge { display: inline-block; font-weight: 700; font-size: 0.85rem; }
.badge--pill {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(139,209,41,0.4);
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 44px;
  font-size: 0.9rem;
  position: relative;
}
.announce p { margin: 0; color: var(--white); }
.announce strong { color: var(--green); }
.announce__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.announce__close:hover { color: var(--white); }
.announce.is-hidden { display: none; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 249, 245, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8,40,62,0.08);
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo { height: 44px; width: 44px; object-fit: contain; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy); }
.brand__name--accent { color: var(--green-dark); }

.nav { display: flex; gap: 26px; }
.nav__link { font-weight: 700; font-size: 0.95rem; color: var(--navy); position: relative; padding: 4px 0; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--green); transition: width .2s ease;
}
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__call { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger span { display: block; height: 2px; width: 22px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; margin: 0 auto; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(78vw, 320px);
  background: var(--navy);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 100px 28px 28px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { color: var(--white); font-weight: 700; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .btn { margin-top: 14px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--tint) 100%);
  padding: 70px 0 40px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.hero__lead { font-size: 1.15rem; max-width: 520px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0; }
.hero__trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.hero__art { position: relative; display: flex; justify-content: center; }
.hero__logo { width: min(100%, 420px); animation: float 5s ease-in-out infinite; filter: drop-shadow(0 25px 40px rgba(8,40,62,0.2)); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero__bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__bubbles span {
  position: absolute;
  bottom: -60px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(62,186,234,0.55), rgba(62,186,234,0.05));
  animation: rise linear infinite;
}
.hero__bubbles span:nth-child(1) { left: 5%; width: 18px; height: 18px; animation-duration: 9s; animation-delay: 0s; }
.hero__bubbles span:nth-child(2) { left: 15%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 1s; }
.hero__bubbles span:nth-child(3) { left: 28%; width: 14px; height: 14px; animation-duration: 8s; animation-delay: 2s; }
.hero__bubbles span:nth-child(4) { left: 45%; width: 22px; height: 22px; animation-duration: 12s; animation-delay: 0.5s; }
.hero__bubbles span:nth-child(5) { left: 60%; width: 16px; height: 16px; animation-duration: 10s; animation-delay: 3s; }
.hero__bubbles span:nth-child(6) { left: 75%; width: 26px; height: 26px; animation-duration: 13s; animation-delay: 1.5s; }
.hero__bubbles span:nth-child(7) { left: 88%; width: 12px; height: 12px; animation-duration: 7.5s; animation-delay: 2.5s; }
.hero__bubbles span:nth-child(8) { left: 95%; width: 20px; height: 20px; animation-duration: 10.5s; animation-delay: 0.8s; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(-110vh) translateX(30px); opacity: 0; }
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(8,40,62,0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 2px; background: var(--green-dark); animation: cue 1.6s ease infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { background: var(--navy); padding: 34px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num, .stat__suffix { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--green); }
.stat p { color: rgba(255,255,255,0.75); margin: 4px 0 0; font-size: 0.9rem; }

/* ==========================================================================
   Sections generic
   ========================================================================== */
.section { padding: 84px 0; }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--tint { background: var(--tint); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.eyebrow--light { color: var(--green); }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: var(--navy); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.step__icon { font-size: 2.4rem; margin: 14px 0 10px; }
.step h3 { font-size: 1.2rem; }
.step p { margin: 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.price-card {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,0.3); }
.price-card--featured { background: var(--green); }
.price-card--blue { border-top: 3px solid var(--blue); }
.price-card--plan { background: var(--white); }
.price-card--plan .price-card__amount,
.price-card--plan .price-card__desc,
.price-card--plan h4 { color: var(--navy); }
.price-card--plan .price-card__amount span { font-size: 1rem; font-weight: 700; }

.tag { display: inline-block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 999px; margin: 0 6px 12px 0; }
.tag--orange { background: rgba(245,166,35,0.18); color: var(--orange); }
.price-card--featured .tag--orange { background: rgba(8,40,62,0.15); color: var(--navy); }
.tag--dark { background: rgba(8,40,62,0.6); color: var(--white); }
.price-card--featured .tag--dark { background: var(--navy); color: var(--white); }
.tag--green { background: var(--green-light); color: var(--green-dark); }

.price-card__amount { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1; margin: 4px 0 6px; }
.price-card--featured .price-card__amount { color: var(--navy); }
.price-card__desc { color: rgba(255,255,255,0.85); font-weight: 700; margin: 0 0 8px; }
.price-card--featured .price-card__desc { color: rgba(8,40,62,0.8); }
.price-card__note { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }
.price-card--featured .price-card__note { color: rgba(8,40,62,0.65); }
.price-card--plan .price-card__note { color: var(--muted); }

.addon-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }
.addon-card { background: rgba(255,255,255,0.05); border-left: 3px solid var(--blue); border-radius: var(--radius-md); padding: 20px 22px; }
.addon-card--dark { background: rgba(0,0,0,0.25); border-left-color: var(--green); }
.addon-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.addon-card p { color: rgba(255,255,255,0.72); margin: 0; font-size: 0.92rem; }

/* Calculator */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.calculator__head { text-align: center; margin-bottom: 24px; }
.calculator__head h3 { margin-bottom: 6px; }
.calculator__head p { margin: 0; }
.calculator__body { display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: center; }
.control { margin-bottom: 22px; }
.control label { display: flex; justify-content: space-between; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-size: 0.95rem; }
.control__value { color: var(--green-dark); font-family: var(--font-head); font-size: 1.05rem; }
input[type="range"] {
  width: 100%;
  accent-color: var(--green-dark);
  height: 6px;
}
.toggle { display: flex; background: var(--tint); border-radius: 999px; padding: 4px; gap: 4px; }
.toggle__opt { flex: 1; border: none; background: transparent; padding: 10px 14px; border-radius: 999px; font-weight: 700; font-family: var(--font-body); cursor: pointer; color: var(--muted); transition: all .2s ease; font-size: 0.88rem; }
.toggle__opt.is-active { background: var(--navy); color: var(--white); }

.calculator__result {
  background: var(--tint);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}
.calculator__label { display: block; font-weight: 700; color: var(--muted); font-size: 0.9rem; }
.calculator__price { display: block; font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--navy); margin: 4px 0; transition: transform .15s ease; }
.calculator__price.is-pulsing { transform: scale(1.08); }
.calculator__hint { font-size: 0.85rem; min-height: 1.3em; margin-bottom: 18px; }

/* ==========================================================================
   Why grid
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-item__icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.why-item p { margin: 0; font-weight: 700; color: var(--navy); font-size: 0.92rem; }

/* ==========================================================================
   Before / after slider
   ========================================================================== */
.ba-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; }
.ba-tabs__opt {
  border: 1.5px solid rgba(8,40,62,0.15); background: var(--white); color: var(--muted);
  font-family: var(--font-head); font-weight: 700; padding: 10px 20px; border-radius: 999px;
  cursor: pointer; transition: all .2s ease; font-size: 0.92rem;
}
.ba-tabs__opt.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.ba-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  background: var(--tint);
}
.ba-slider__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: background-image .2s ease;
}
.ba-slider__img--before { overflow: hidden; clip-path: inset(0 50% 0 0); }
.ba-slider__tag { position: absolute; top: 16px; padding: 6px 14px; border-radius: 999px; font-size: 0.75rem; letter-spacing: 0.05em; font-family: var(--font-head); font-weight: 800; }
.ba-slider__tag--after { right: 16px; background: rgba(8,40,62,0.85); color: var(--white); }
.ba-slider__tag--before { left: 16px; background: rgba(0,0,0,0.6); color: var(--white); }
.ba-slider__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; width: 4px; background: var(--white);
  transform: translateX(-50%); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ba-slider__handle span {
  width: 38px; height: 38px; border-radius: 50%; background: var(--white);
  color: var(--navy); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-weight: 800;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { max-width: 720px; margin: 0 auto; text-align: center; }
.testi-track { position: relative; min-height: 190px; }
.testi { position: absolute; inset: 0; opacity: 0; transform: translateX(20px); transition: opacity .4s ease, transform .4s ease; pointer-events: none; margin: 0; }
.testi.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 12px; font-size: 1.1rem; }
.testi p { font-size: 1.2rem; color: var(--navy); font-style: italic; }
.testi cite { font-style: normal; font-weight: 700; color: var(--muted); font-size: 0.9rem; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(8,40,62,0.2); cursor: pointer; padding: 0; }
.testi-dots button.is-active { background: var(--green-dark); width: 22px; border-radius: 6px; }

/* ==========================================================================
   Service area
   ========================================================================== */
.area { text-align: center; }
.area-checker { max-width: 480px; margin: 0 auto; }
.area-checker__input { display: flex; gap: 10px; }
.area-checker__input input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: none; font-size: 1rem; font-family: var(--font-body);
}
.area-checker__result { min-height: 1.6em; margin: 16px 0 6px; font-weight: 700; color: var(--green); }
.area-checker__result.is-negative { color: var(--orange); }
.area-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.chip { background: rgba(139,209,41,0.15); color: var(--green); padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; }
.chip--muted { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(8,40,62,0.1); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy);
}
.faq-icon { font-size: 1.4rem; color: var(--green-dark); transition: transform .2s ease; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 20px; margin: 0; }

/* ==========================================================================
   Booking
   ========================================================================== */
.booking-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; align-items: start; }
.booking-form { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid rgba(8,40,62,0.15);
  font-family: var(--font-body); font-size: 0.95rem; background: var(--bg); transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--green-dark);
}
.form-note { text-align: center; font-size: 0.82rem; margin: 12px 0 0; }
.form-success { display: none; text-align: center; color: var(--green-dark); font-weight: 700; margin-top: 14px; }
.form-success.is-visible { display: block; }

.booking-alt { display: flex; flex-direction: column; gap: 20px; }
.alt-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.alt-card--dark { background: var(--navy); }
.alt-card--dark h3 { color: var(--white); }
.alt-link { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(8,40,62,0.08); }
.alt-link:last-child { border-bottom: none; }
.alt-link__icon { font-size: 1.4rem; }
.alt-link strong { color: var(--navy); }
.alt-area { color: var(--green); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.alt-note { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-3); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__logo { height: 54px; margin-bottom: 10px; }
.footer__tag { color: rgba(255,255,255,0.6); font-style: italic; }
.footer__col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.65); margin-bottom: 10px; font-size: 0.92rem; }
.footer__col a:hover { color: var(--green); }
.footer__bottom-inner { display: flex; justify-content: space-between; padding: 20px 24px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ==========================================================================
   Floating elements
   ========================================================================== */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px;
  background: var(--navy); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease; z-index: 400;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 450;
  background: var(--green); color: var(--navy); font-weight: 800;
  padding: 14px 20px; text-align: center; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
}
.sticky-cta__or { opacity: 0.6; font-weight: 600; }
.sticky-cta__book { text-decoration: underline; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav { display: none; }
  .header__call { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__trust { justify-content: center; }
  .hero__art { order: -1; }
  .hero__logo { width: 240px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .addon-row { grid-template-columns: 1fr; }
  .calculator__body { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 58px; }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}
