/* ============================================================
   THE GARBAGE GURU — Design System v2 · Dark Night Edition
   Pure Vanilla CSS · No Framework · No CDN Dependencies
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul, ol { list-style: none; }

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --c-bg:         #0b1512;
  --c-surface:    #0f1a14;
  --c-raised:     #162219;
  --c-card:       #1c2d21;
  --c-card-h:     #223528;
  --c-input:      #111d16;

  /* Green scale */
  --c-g900:       #082f15;
  --c-g700:       #155728;
  --c-g500:       #22c55e;
  --c-g400:       #4ade80;
  --c-lime:       #b4f256;

  /* Text */
  --c-text:       #e8f5ea;
  --c-sub:        #9cbfa3;
  --c-muted:      #5e8065;

  /* Borders */
  --c-border:     rgba(255,255,255,0.05);
  --c-border-v:   rgba(255,255,255,0.10);

  /* Semantic */
  --c-primary:    #4ade80;
  --c-primary-d:  #22c55e;
  --c-accent:     #b4f256;
  --c-error:      #f87171;
  --c-error-bg:   rgba(248,113,113,0.08);
  --c-warn:       #fbbf24;
  --c-warn-bg:    rgba(251,191,36,0.07);

  /* Shadows */
  --sh-xs:  0 1px 4px  rgba(0,0,0,0.3);
  --sh-sm:  0 2px 8px  rgba(0,0,0,0.35);
  --sh-md:  0 8px 24px rgba(0,0,0,0.4);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.5);
  --sh-glow:0 0 40px rgba(74,222,128,0.14);

  /* Gradients */
  --g-cta:  linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
  --g-text: linear-gradient(135deg, #4ade80 0%, #b4f256 100%);
  --g-dark: linear-gradient(135deg, #082f15, #155728);

  /* Layout */
  --max-w:      1280px;
  --max-w-n:    880px;
  --max-w-f:    740px;
  --sec-py:     5.5rem;
  --px:         2rem;
  --nav-h:      68px;

  /* Radius */
  --r-xs:  4px;
  --r-sm:  6px;
  --r:     10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 40px;
  --r-f:   9999px;

  /* Motion */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.15s;
  --t:      0.3s;
  --t-slow: 0.65s;
}

/* ── BASE ──────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scrollbar-color: var(--c-card) var(--c-surface);
  scrollbar-width: thin;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--c-text);
}

p      { color: var(--c-sub); line-height: 1.75; }
a      { color: inherit; text-decoration: none; }
strong { color: var(--c-text); font-weight: 700; }

/* ── LAYOUT ────────────────────────────────────────────── */
.container         { max-width: var(--max-w);   margin-inline: auto; padding-inline: var(--px); }
.container--narrow { max-width: var(--max-w-n); margin-inline: auto; padding-inline: var(--px); }
.container--form   { max-width: var(--max-w-f); margin-inline: auto; padding-inline: var(--px); }

section         { padding-block: var(--sec-py); }
.section--alt   { background: var(--c-surface); }
.section--raised{ background: var(--c-raised); }
.pt-nav         { padding-top: var(--nav-h); }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(11,21,18,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.nav.scrolled {
  background: rgba(11,21,18,0.97);
  box-shadow: var(--sh-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--c-text);
  transition: opacity var(--t-fast);
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img   { width: 38px; height: 38px; border-radius: var(--r-f); object-fit: contain; background: var(--c-card); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--c-sub);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--c-primary); }

.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.nav-phone  { display: none; flex-direction: column; align-items: flex-end; gap: 1px; }
.nav-phone .nl { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--c-accent); }
.nav-phone .nn { font-size: 0.8rem; font-weight: 800; }

@media (min-width: 1024px) { .nav-phone { display: flex; } }

/* ── HAMBURGER BUTTON ──────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border-v);
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
  flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, width 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ─────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,21,18,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border-v);
  z-index: 99;
  padding: 1.5rem var(--px) 2rem;
  display: flex; flex-direction: column; gap: 0.375rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem; border-radius: var(--r-md);
  font-weight: 700; font-size: 1rem; color: var(--c-sub);
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.nav-drawer a:hover { color: var(--c-primary); background: rgba(74,222,128,0.05); border-color: rgba(74,222,128,0.12); }
.nav-drawer a .material-symbols-outlined { font-size: 1.1rem; color: var(--c-primary); }
.nav-drawer .drawer-divider { height: 1px; background: var(--c-border); margin: 0.625rem 0; }
.nav-drawer .drawer-book {
  margin-top: 0.5rem;
  background: var(--g-cta); color: #082f15; font-weight: 800;
  justify-content: center; border-color: transparent;
}
.nav-drawer .drawer-book:hover { filter: brightness(1.08); border-color: transparent; }

@media (max-width: 768px) {
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn .material-symbols-outlined { font-size: 1.1rem; }

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 0.975rem;
  border-radius: var(--r-md);
}

.btn-primary {
  background: var(--g-cta);
  color: #082f15;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(74,222,128,0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,222,128,0.38);
  filter: brightness(1.06);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
  border: 1px solid var(--c-border-v);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid currentColor;
}
.btn-outline:hover {
  background: rgba(74,222,128,0.07);
  transform: translateY(-1px);
}

.btn-text { background: transparent; color: var(--c-primary); padding-inline: 0; }
.btn-text:hover { text-decoration: underline; }

/* ── CARDS ─────────────────────────────────────────────── */
.card {
  background: var(--c-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  padding: 2.25rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--c-border-v); }

.card--featured {
  background: linear-gradient(145deg, #1c2d21, #132219);
  border-color: rgba(74,222,128,0.25);
  box-shadow: 0 0 0 1px rgba(74,222,128,0.08), var(--sh-md);
}
.card--featured:hover {
  border-color: rgba(74,222,128,0.45);
  box-shadow: var(--sh-glow), var(--sh-lg);
}

/* ── BADGES ────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-f);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-lime  { background: rgba(180,242,86,0.12);  color: var(--c-lime);    border: 1px solid rgba(180,242,86,0.25); }
.badge-green { background: rgba(74,222,128,0.1);   color: var(--c-primary); border: 1px solid rgba(74,222,128,0.2); }
.badge-error { background: var(--c-error-bg);      color: var(--c-error);   border: 1px solid rgba(248,113,113,0.2); }

/* ── OVERLINE ──────────────────────────────────────────── */
.overline {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

/* ── SECTION HEADER ────────────────────────────────────── */
.sec-hd          { margin-bottom: 3.5rem; }
.sec-hd--center  { text-align: center; }
.sec-hd h2       { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-top: 0.35rem; }
.sec-hd p        { max-width: 52ch; margin-top: 0.875rem; font-size: 1.02rem; }
.sec-hd--center p{ margin-inline: auto; }

/* ── TRUST BAR ─────────────────────────────────────────── */
.trust-bar { background: var(--c-surface); border-block: 1px solid var(--c-border); padding: 1.125rem 0; overflow-x: auto; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2.75rem; align-items: center; padding-inline: var(--px); }
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 700; color: var(--c-sub); white-space: nowrap;
}
.trust-item .material-symbols-outlined { font-size: 1.05rem; color: var(--c-primary); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; max-width: 780px; margin-inline: auto; }

.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item:hover { border-color: var(--c-border-v); }
.faq-item.open  { border-color: rgba(74,222,128,0.2); }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  color: var(--c-text); font-weight: 700; font-size: 0.95rem;
  text-align: left; gap: 1rem; font-family: inherit; letter-spacing: -0.01em;
}
.faq-q .icon { font-size: 1.2rem; color: var(--c-primary); transition: transform var(--t) var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(180deg); }

.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease); }
.faq-item.open .faq-ans { max-height: 400px; }

.faq-ans-inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--c-sub);
}

/* ── STEP INDICATOR ────────────────────────────────────── */
.steps { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; }
.step-dot {
  width: 32px; height: 32px; border-radius: var(--r-f);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem; flex-shrink: 0; transition: all var(--t);
}
.step-dot.active  { background: var(--g-cta);   color: #082f15; }
.step-dot.done    { background: var(--c-primary);color: #082f15; }
.step-dot.pending { background: var(--c-card);   color: var(--c-muted); border: 1px solid var(--c-border-v); }
.step-lbl         { font-size: 0.85rem; font-weight: 700; }
.step-lbl.active  { color: var(--c-text); }
.step-lbl.pending { color: var(--c-muted); }
.step-line        { flex: 1; max-width: 48px; height: 2px; background: var(--c-border-v); border-radius: 2px; transition: background var(--t); }
.step-line.done   { background: var(--c-primary); }

/* ── FORMS ─────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--c-sub);
}

.form-input,
.form-textarea {
  width: 100%; background: var(--c-input); border: 1px solid var(--c-border-v);
  border-radius: var(--r); padding: 0.875rem 1rem; color: var(--c-text);
  font-size: 0.95rem; transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none; appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--c-muted); }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(74,222,128,0.1);
  background: var(--c-card);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-hint       { font-size: 0.73rem; color: var(--c-muted); }
.form-hint-error { font-size: 0.73rem; color: var(--c-error); font-weight: 600; }

/* Bin radio selectors */
.bin-selector { display: flex; gap: 0.625rem; }
.bin-option { flex: 1; position: relative; }
.bin-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.bin-face {
  display: flex; align-items: center; justify-content: center;
  height: 52px; border-radius: var(--r); background: var(--c-input);
  border: 1px solid var(--c-border-v); font-weight: 800; font-size: 1.05rem;
  cursor: pointer; transition: all var(--t) var(--ease); color: var(--c-muted); user-select: none;
}
.bin-option input:checked + .bin-face {
  background: var(--g-cta); color: #082f15; border-color: transparent;
  box-shadow: 0 4px 16px rgba(74,222,128,0.25); transform: scale(1.04);
}
.bin-face:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* Checkbox labels */
.check-label {
  display: flex; align-items: flex-start; gap: 0.875rem; cursor: pointer;
  padding: 0.875rem 1rem; border-radius: var(--r); background: var(--c-input);
  border: 1px solid var(--c-border-v); transition: all var(--t-fast);
}
.check-label:hover { border-color: var(--c-primary); background: rgba(74,222,128,0.04); }
.check-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--c-primary); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.check-label .ck-txt { font-size: 0.9rem; font-weight: 600; color: var(--c-sub); line-height: 1.5; }
.check-label .ck-txt strong { color: var(--c-text); }

/* ── STAT CHIPS ────────────────────────────────────────── */
.stat-chip {
  display: flex; align-items: center; gap: 0.625rem;
  background: rgba(11,21,18,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--c-border-v); border-radius: var(--r-md);
  padding: 0.625rem 1rem; box-shadow: var(--sh-md); position: absolute;
}
.stat-chip .sc-icon { font-size: 1.2rem; color: var(--c-primary); }
.stat-chip .sc-text { font-size: 0.78rem; font-weight: 700; color: var(--c-text); }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--c-surface); border-top: 1px solid var(--c-border); }
.footer-inner { max-width: var(--max-w); margin-inline: auto; padding: 4rem var(--px) 2rem; }

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--c-border);
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-size: 1rem; color: var(--c-text); margin-bottom: 0.75rem; }
.footer-logo img { width: 34px; height: 34px; border-radius: var(--r-f); object-fit: contain; background: var(--c-card); }
.footer-brand p { font-size: 0.875rem; max-width: 30ch; margin-bottom: 1rem; }

.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--c-sub); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--c-primary); }
.footer-contact .material-symbols-outlined { font-size: 1rem; }

.footer-nav h4  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1.125rem; }
.footer-nav ul  { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a   { font-size: 0.875rem; font-weight: 600; color: var(--c-sub); transition: color var(--t-fast); }
.footer-nav a:hover { color: var(--c-primary); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: 0.78rem; color: var(--c-muted); flex-wrap: wrap; gap: 0.5rem;
}

/* ── STICKY BAR ────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(11,21,18,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--c-border-v);
  padding: 0.875rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .sb-text { font-weight: 600; font-size: 0.875rem; color: var(--c-sub); }
@media (max-width: 480px) { .sticky-bar .sb-text { display: none; } }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 20px rgba(74,222,128,0.1); }
  50%     { box-shadow: 0 0 52px rgba(74,222,128,0.3); }
}

.anim-up    { animation: fadeUp var(--t-slow) var(--ease) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.34s; }
.d4 { animation-delay: 0.48s; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── ICONS ─────────────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle; font-size: 1.25rem; line-height: 1;
}
.icon-fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* ── UTILS ─────────────────────────────────────────────── */
.text-muted  { color: var(--c-muted); }
.text-sub    { color: var(--c-sub); }
.text-lime   { color: var(--c-lime); }
.text-green  { color: var(--c-primary); }
.text-error  { color: var(--c-error); }


/* ========================================================
   PAGE-SPECIFIC STYLES
   ======================================================== */

/* ── HOMEPAGE: HERO ────────────────────────────────────── */
.hero {
  padding-block: calc(var(--nav-h) + 3.5rem) 4rem;
  padding-inline: var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
}

.hero::before {
  content: '';
  position: fixed; top: 0; left: 0;
  width: 55vw; height: 65vh;
  background: radial-gradient(ellipse at top left, rgba(34,197,94,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
}

.hero-headline {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.0;
  margin: 0.5rem 0 1.25rem;
}

.hero-accent {
  background: var(--g-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub { font-size: 1.05rem; max-width: 46ch; margin-bottom: 1.5rem; }

.hero-phone-row {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem;
}
.hero-phone-row a { font-weight: 800; font-size: 1.1rem; color: var(--c-primary); }
.hero-phone-row a:hover { text-decoration: underline; }
.hero-phone-row .material-symbols-outlined { color: var(--c-primary); font-size: 1.2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }

.hero-visual { position: relative; }

.hero-photo-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,21,18,0.55) 0%, transparent 55%);
}

.chip-tr { top: -1rem; right: -1rem; }
.chip-bl { bottom: -1rem; left: -1rem; }

/* ── HOMEPAGE: HOW IT WORKS ────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.how-card:hover { transform: translateY(-4px); border-color: var(--c-border-v); }

.how-num {
  font-size: 2.75rem; font-weight: 800; line-height: 1; margin-bottom: 1.25rem;
  background: var(--g-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.how-icon {
  width: 52px; height: 52px; background: rgba(74,222,128,0.1); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.how-icon .material-symbols-outlined { font-size: 1.5rem; color: var(--c-primary); }
.how-card h3 { font-size: 1.18rem; margin-bottom: 0.625rem; }
.how-card p  { font-size: 0.9rem; }
.how-cta { text-align: center; margin-top: 2.5rem; }

/* ── HOMEPAGE: SERVICE CARDS ───────────────────────────── */
.service-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem;
}
@media (max-width: 700px) { .service-grid { grid-template-columns: 1fr; } }

.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.svc-icon.green { background: rgba(74,222,128,0.12); }
.svc-icon.lime  { background: rgba(180,242,86,0.10); }
.svc-icon.green .material-symbols-outlined { color: var(--c-primary); font-size: 1.5rem; }
.svc-icon.lime  .material-symbols-outlined { color: var(--c-lime);    font-size: 1.5rem; }

.card h3         { margin: 0.875rem 0 0.625rem; font-size: 1.35rem; }
.service-price   { display: flex; align-items: baseline; gap: 0.25rem; margin: 1.25rem 0; }
.service-price .price { font-size: 2.75rem; font-weight: 800; line-height: 1; }
.service-price .per   { font-size: 0.875rem; font-weight: 600; color: var(--c-muted); }

.service-perks { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.75rem; }
.service-perks li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 600; color: var(--c-sub);
}
.service-perks .material-symbols-outlined { font-size: 1.05rem; }

.svc-more { text-align: center; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 700; font-size: 0.925rem; color: var(--c-primary);
  transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 0.65rem; }

/* ── HOMEPAGE: MEMBERSHIP ──────────────────────────────── */
.membership-wrap {
  padding-block: var(--sec-py);
  padding-inline: var(--px);
  background: var(--c-raised);
}

.membership-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) { .membership-inner { grid-template-columns: 1fr; gap: 3rem; } }

.mem-copy h2    { margin-bottom: 0.875rem; }
.mem-copy > p   { max-width: 46ch; margin-bottom: 2rem; }

.mem-perks { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.perk-row  { display: flex; gap: 1rem; align-items: flex-start; }

.perk-icon {
  width: 40px; height: 40px; background: rgba(74,222,128,0.1); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.perk-icon .material-symbols-outlined { font-size: 1.2rem; color: var(--c-primary); }
.perk-row strong { display: block; font-size: 0.95rem; margin-bottom: 0.1rem; }
.perk-row span   { font-size: 0.875rem; color: var(--c-sub); }

/* Price comparison card */
.price-card {
  background: var(--c-card);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--r-xl);
  padding: 2rem; min-width: 240px;
  animation: glowPulse 4s ease-in-out infinite;
}
.pc-head { text-align: center; margin-bottom: 1.5rem; }
.pc-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); display: block; margin-bottom: 0.25rem; }
.pc-value { font-size: 4rem; font-weight: 800; line-height: 1; background: var(--g-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pc-unit  { font-size: 0.8rem; font-weight: 600; color: var(--c-muted); }
.pc-divider { height: 1px; background: var(--c-border); margin-bottom: 1.25rem; }
.pc-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--c-sub); }
.pc-row--hl { background: rgba(74,222,128,0.07); border-radius: var(--r-sm); padding-inline: 0.625rem; }
.pc-price      { font-weight: 800; color: var(--c-text); }
.pc-price--green { color: var(--c-primary); }

/* ── BOOK PAGE ─────────────────────────────────────────── */
.book-page-header {
  padding: calc(var(--nav-h) + 2.5rem) var(--px) 0;
  max-width: var(--max-w);
  margin-inline: auto;
}
.book-page-header h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin: 0.375rem 0 0.625rem; }

.book-layout {
  display: grid; grid-template-columns: 1fr 310px; gap: 2rem;
  max-width: var(--max-w); margin-inline: auto;
  padding: 2rem var(--px) 5rem; align-items: start;
}
@media (max-width: 960px) { .book-layout { grid-template-columns: 1fr; } }

.book-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-2xl); overflow: hidden; }
.book-card-hd {
  background: var(--g-dark);
  padding: 2rem 2.5rem; border-bottom: 1px solid rgba(74,222,128,0.12);
}
.book-card-hd h2 { font-size: 1.5rem; margin-bottom: 0.375rem; }
.book-card-hd p  { font-size: 0.875rem; color: rgba(232,245,234,0.65); }
.book-card-body  { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.book-form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .book-form-2 { grid-template-columns: 1fr; } }

.confirm-reqs { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid var(--c-border); }

.book-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: calc(var(--nav-h) + 1.5rem); }

.sidebar-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 1.625rem; }
.sidebar-card h3 { font-size: 0.72rem; font-weight: 700; color: var(--c-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.25rem; }

.sidebar-rule { display: flex; align-items: flex-start; gap: 0.75rem; padding-block: 0.875rem; border-bottom: 1px solid var(--c-border); }
.sidebar-rule:last-of-type { border-bottom: none; }
.sidebar-rule .material-symbols-outlined { font-size: 1.05rem; color: var(--c-primary); flex-shrink: 0; margin-top: 1px; }
.rule-text { font-size: 0.83rem; font-weight: 600; color: var(--c-sub); line-height: 1.4; }
.rule-text strong { color: var(--c-text); display: block; margin-bottom: 0.1rem; }

.book-success { text-align: center; padding: 2.5rem; }
.book-success-icon { width: 80px; height: 80px; border-radius: var(--r-f); background: rgba(74,222,128,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.book-success-icon .material-symbols-outlined { font-size: 2.5rem; color: var(--c-primary); }

/* ── SERVICES PAGE ─────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) var(--px) 0;
  max-width: var(--max-w-n);
  margin-inline: auto;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 4rem); margin: 0.625rem 0 1.25rem; }
.page-hero p  { font-size: 1.02rem; max-width: 50ch; margin-inline: auto; }
.page-hero .hero-actions { justify-content: center; margin-top: 2rem; }

.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; } }

.process-card {
  background: var(--c-card); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 2.25rem 2rem; position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.process-card:hover { transform: translateY(-4px); border-color: var(--c-border-v); }
.process-card-num {
  position: absolute; top: -0.5rem; right: 1.25rem;
  font-size: 6rem; font-weight: 800; color: rgba(255,255,255,0.025); line-height: 1; pointer-events: none;
}
.process-icon { width: 52px; height: 52px; background: rgba(74,222,128,0.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.process-icon .material-symbols-outlined { font-size: 1.5rem; color: var(--c-primary); }
.process-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.process-card p  { font-size: 0.9rem; }

.clean-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 700px) { .clean-grid { grid-template-columns: 1fr; } }

.clean-item {
  display: flex; align-items: center; gap: 0.875rem; padding: 1.25rem;
  background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  transition: border-color var(--t-fast);
}
.clean-item:hover { border-color: var(--c-border-v); }
.clean-item .material-symbols-outlined { font-size: 1.2rem; color: var(--c-primary); flex-shrink: 0; }
.clean-item span { font-size: 0.9rem; font-weight: 600; color: var(--c-text); }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 800px; margin-inline: auto; }
@media (max-width: 700px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── ABOUT PAGE ────────────────────────────────────────── */
.about-hero { padding: calc(var(--nav-h) + 3.5rem) var(--px) 4rem; max-width: var(--max-w); margin-inline: auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-photo { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3 / 4; max-height: 560px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-copy h1     { font-size: clamp(2.25rem, 5vw, 3.75rem); margin: 0.5rem 0 1.25rem; }
.about-copy > p    { margin-bottom: 1.25rem; font-size: 1.02rem; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
@media (max-width: 480px) { .about-stats { grid-template-columns: 1fr; } }

.about-stat { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-lg); padding: 1.25rem; text-align: center; }
.about-stat .stat-val { display: block; font-size: 2rem; font-weight: 800; background: var(--g-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.2; }
.about-stat .stat-lbl { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-muted); margin-top: 0.25rem; }

.about-story { max-width: var(--max-w-n); margin-inline: auto; padding-inline: var(--px); }
.story-block { display: flex; gap: 2rem; align-items: flex-start; padding-block: 2.5rem; border-bottom: 1px solid var(--c-border); }
.story-block:last-child { border-bottom: none; }
.story-icon { width: 48px; height: 48px; background: rgba(74,222,128,0.1); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.story-icon .material-symbols-outlined { font-size: 1.4rem; color: var(--c-primary); }
.story-block h3 { font-size: 1.15rem; margin-bottom: 0.625rem; }
.story-block p  { font-size: 0.9rem; }

/* ── CONFIRMATION PAGE ─────────────────────────────────── */
.confirm-page { padding: calc(var(--nav-h) + 3.5rem) var(--px) 5rem; max-width: var(--max-w-n); margin-inline: auto; }
.confirm-hero { text-align: center; margin-bottom: 3rem; }

.confirm-circle {
  width: 100px; height: 100px; border-radius: var(--r-f);
  background: rgba(74,222,128,0.1); border: 2px solid rgba(74,222,128,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  animation: glowPulse 3s ease-in-out infinite;
}
.confirm-circle .material-symbols-outlined { font-size: 3rem; color: var(--c-primary); }
.confirm-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.875rem; }

.confirm-num {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.875rem; background: rgba(180,242,86,0.1);
  border: 1px solid rgba(180,242,86,0.22); border-radius: var(--r-f);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--c-lime);
  margin-bottom: 2rem;
}

.confirm-summary {
  background: var(--c-card); border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--r-xl); padding: 2rem; margin-bottom: 2rem;
}
.confirm-summary h2 { font-size: 1.05rem; margin-bottom: 1.25rem; color: var(--c-sub); font-weight: 700; }
.sum-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding-block: 0.75rem; border-bottom: 1px solid var(--c-border); font-size: 0.875rem; }
.sum-row:last-child { border-bottom: none; }
.sum-row .key { color: var(--c-muted); font-weight: 600; }
.sum-row .val { color: var(--c-text); font-weight: 700; text-align: right; }

.reminder-box { background: var(--c-warn-bg); border: 1px solid rgba(251,191,36,0.15); border-radius: var(--r-xl); padding: 1.75rem; margin-bottom: 2rem; }
.reminder-box h3 { font-size: 0.75rem; color: var(--c-warn); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.125rem; }

.reminder-item { display: flex; align-items: flex-start; gap: 0.875rem; padding-block: 0.875rem; border-bottom: 1px solid rgba(251,191,36,0.1); }
.reminder-item:last-child { border-bottom: none; }
.reminder-item .material-symbols-outlined { color: var(--c-warn); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.reminder-item p { font-size: 0.9rem; }

.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
@media (max-width: 700px) { .next-steps { grid-template-columns: 1fr; } }

.ns-card { background: var(--c-card); border: 1px solid var(--c-border); border-radius: var(--r-xl); padding: 1.75rem; text-align: center; }
.ns-num { width: 40px; height: 40px; border-radius: var(--r-f); background: rgba(74,222,128,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-weight: 800; font-size: 0.875rem; color: var(--c-primary); }
.ns-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.ns-card p  { font-size: 0.85rem; }

.confirm-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── BEFORE / AFTER GALLERY ────────────────────────────── */
.gallery-section { padding-block: var(--sec-py); }

.gallery-tabs {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.gallery-tab {
  padding: 0.5rem 1.25rem; border-radius: var(--r-f);
  font-size: 0.82rem; font-weight: 700; cursor: pointer;
  background: var(--c-card); border: 1px solid var(--c-border);
  color: var(--c-sub); transition: all var(--t-fast);
}
.gallery-tab.active, .gallery-tab:hover {
  background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.3);
  color: var(--c-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 1 / 1; cursor: pointer;
  border: 1px solid var(--c-border);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(74,222,128,0.3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.03); }

.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,47,21,0.92) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.25rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 0.5rem;
}
.gallery-label .gl-text { font-size: 0.85rem; font-weight: 700; color: var(--c-text); }
.gallery-label .gl-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: var(--r-f);
}
.gl-badge--before { background: rgba(248,113,113,0.2); color: var(--c-error); border: 1px solid rgba(248,113,113,0.25); }
.gl-badge--after  { background: rgba(74,222,128,0.15); color: var(--c-primary); border: 1px solid rgba(74,222,128,0.3); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-f); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; font-size: 1.4rem; transition: background var(--t-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-section { padding-block: var(--sec-py); background: var(--c-raised); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform var(--t) var(--ease), border-color var(--t), box-shadow var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--c-border-v); box-shadow: var(--sh-md); }

.t-stars { display: flex; gap: 2px; }
.t-stars .material-symbols-outlined { font-size: 1rem; color: var(--c-warn); }

.t-quote {
  font-size: 0.92rem; line-height: 1.75; color: var(--c-sub);
  flex: 1;
}
.t-quote::before { content: '"'; font-size: 1.8rem; line-height: 0; vertical-align: -0.5rem; color: var(--c-primary); margin-right: 2px; font-weight: 800; }

.t-footer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 0.875rem; border-top: 1px solid var(--c-border);
}

.t-avatar {
  width: 40px; height: 40px; border-radius: var(--r-f);
  background: var(--g-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  color: var(--c-primary); flex-shrink: 0;
  border: 1px solid rgba(74,222,128,0.2);
}

.t-name { font-size: 0.875rem; font-weight: 800; color: var(--c-text); }
.t-meta { font-size: 0.72rem; color: var(--c-muted); font-weight: 600; }

.t-verified {
  margin-left: auto; display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.65rem; font-weight: 700; color: var(--c-primary); letter-spacing: 0.06em;
}
.t-verified .material-symbols-outlined { font-size: 0.85rem; }

/* Leave a review CTA */
.review-cta {
  text-align: center; margin-top: 2.5rem;
  padding: 2rem; background: var(--c-card);
  border: 1px dashed rgba(74,222,128,0.25); border-radius: var(--r-xl);
}
.review-cta h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.review-cta p  { font-size: 0.875rem; margin-bottom: 1.25rem; max-width: 42ch; margin-inline: auto; }

