/* ============================================================
   BIN BANDITS — Global Design System
   Fonts: Nunito (headings) + DM Sans (body)
   Palette: Dark charcoal | Orange #F97316 | Green #22C55E
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&family=Nunito:ital,wght@0,300;0,400;0,700;0,800;0,900;1,300;1,700;1,800&display=swap');

/* ---- Tokens ---- */
:root {
  /* Backgrounds — warm dark charcoal */
  --bg-deep:       #111110;
  --bg-base:       #181716;
  --bg-surface:    #222120;
  --bg-elevated:   #2b2a29;
  --bg-glass:      rgba(255,255,255,0.03);
  --bg-glass-hover:rgba(255,255,255,0.055);

  /* Primary — mint green */
  --orange:        #6bcfa1;
  --orange-light:  #8ddec0;
  --orange-dark:   #4fa882;
  --orange-glow:   rgba(107,207,161,0.22);
  --orange-subtle: rgba(107,207,161,0.08);

  /* Secondary — muted teal */
  --green:         #82b6a5;
  --green-light:   #6acf9f;
  --green-dark:    #689b8b;
  --green-glow:    rgba(130,182,165,0.22);
  --green-subtle:  rgba(130,182,165,0.08);

  /* Accent */
  --accent-gray:   #a4a4a4;

  /* Light sections */
  --bg-light:      #f6f5f2;
  --bg-white:      #ffffff;

  /* Text */
  --text-100: #fefefe;
  --text-200: #e2e0dd;
  --text-300: #b5b3b0;
  --text-400: #a4a4a4;
  --text-500: #6e6c6a;

  /* Borders */
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --border-orange: rgba(107,207,161,0.32);
  --border-green:  rgba(130,182,165,0.28);

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.5);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.6);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.7);
  --shadow-orange: 0 0 40px rgba(107,207,161,0.2), 0 4px 24px rgba(0,0,0,0.5);
  --shadow-green:  0 0 40px rgba(130,182,165,0.18), 0 4px 24px rgba(0,0,0,0.5);

  --topbar-h: 38px;
  --nav-h: 228px;
  --nav-bar-h: 58px;
  --section-pad: 96px;
  --container: 1200px;
  --container-sm: 800px;
  --site-zoom: 0.78;

  --ease-out:   cubic-bezier(0.16,1,0.3,1);
  --ease-spring:cubic-bezier(0.34,1.56,0.64,1);
  --ease-in:    cubic-bezier(0.7,0,0.84,0);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  zoom: var(--site-zoom);
  line-height: 1.65;
  color: var(--text-200);
  background: var(--bg-base);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-100);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p { max-width: 65ch; color: var(--text-300); }
.lead { font-size: 1.2rem; line-height: 1.7; }
strong { font-weight: 700; color: var(--text-100); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
  box-sizing: border-box;
}
.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
  box-sizing: border-box;
}
.section {
  padding: var(--section-pad) 0;
}
.section-sm {
  padding: 64px 0;
}

/* ---- Grid utilities ---- */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ---- Section Headers ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-300);
}
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.section-header p { margin-top: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 0.22s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Active white flash */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.18s;
  border-radius: inherit;
  z-index: 2;
}
.btn:active::after { opacity: 0.1; }

/* Arrow icon slides right on hover */
.btn svg:last-child:not(:first-child) {
  transition: transform 0.22s var(--ease-out);
}
.btn:hover svg:last-child:not(:first-child) { transform: translateX(4px); }

/* ---- Primary ---- */
.btn-primary {
  background: var(--orange);
  color: #0A0A0A;
  box-shadow: 0 4px 20px var(--orange-glow);
}
/* Shine sweep */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before { left: 130%; }
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(107,207,161,0.55), 0 8px 32px rgba(107,207,161,0.28);
}
.btn-primary:active { transform: translateY(0); }

/* ---- Green ---- */
.btn-green {
  background: var(--green);
  color: #0A0A0A;
  box-shadow: 0 4px 20px var(--green-glow);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
}

/* ---- Ghost — fill sweeps in from left ---- */
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--orange-subtle);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
.btn-ghost:hover::before { transform: scaleX(1); }
.btn-ghost {
  background: transparent;
  color: var(--text-100);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  background: transparent;
}

/* ---- Outline-orange — fills solid on hover ---- */
.btn-outline-orange::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.38s var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
.btn-outline-orange:hover::before { transform: scaleX(1); }
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline-orange:hover {
  background: transparent;
  color: #0A0A0A;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg svg { width: 20px; height: 20px; }

/* ---- Cards ---- */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.28s var(--ease-out), border-color 0.28s, box-shadow 0.28s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-glass-hover), transparent);
  opacity: 0;
  transition: opacity 0.28s;
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); }
.card:hover::before { opacity: 1; }
.card.card-orange:hover { border-color: var(--border-orange); box-shadow: var(--shadow-orange); }
.card.card-green:hover  { border-color: var(--border-green);  box-shadow: var(--shadow-green); }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-orange { background: var(--orange-subtle); color: var(--orange-light); border: 1px solid var(--border-orange); }
.badge-green  { background: var(--green-subtle);  color: var(--green-light);  border: 1px solid var(--border-green); }
.badge-gray   { background: rgba(255,255,255,0.06); color: var(--text-300); border: 1px solid var(--border); }

/* ---- Icon Box ---- */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 26px; height: 26px; }
.icon-box-orange { background: var(--orange-subtle); color: var(--orange); border: 1px solid var(--border-orange); }
.icon-box-green  { background: var(--green-subtle);  color: var(--green);  border: 1px solid var(--border-green); }
.icon-box-gray   { background: rgba(255,255,255,0.05); color: var(--text-300); border: 1px solid var(--border); }
.icon-box-lg { width: 72px; height: 72px; border-radius: var(--radius-lg); }
.icon-box-lg svg { width: 34px; height: 34px; }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--border); width: 100%; }

/* ---- Highlight text ---- */
.highlight-orange { color: var(--orange); }
.highlight-green  { color: var(--green); }

/* ---- Gradient text — animated shimmer sweep ---- */
.gradient-text {
  background: linear-gradient(
    90deg,
    var(--orange-dark) 0%,
    var(--orange) 22%,
    var(--orange-light) 42%,
    #e8fff5 52%,
    var(--orange-light) 62%,
    var(--orange) 78%,
    var(--orange-dark) 100%
  );
  background-size: 260% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradShimmer 5s ease-in-out infinite;
}
@keyframes gradShimmer {
  0%, 20%  { background-position: 100% 0; }
  80%, 100%{ background-position:   0% 0; }
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Number pill ---- */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #0A0A0A;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
/* ---- Top contact bar ---- */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  /* span the full space above the nav bar pill */
  height: calc(var(--topbar-h) + (var(--nav-h) - var(--topbar-h) - var(--nav-bar-h)) / 2);
  z-index: 2;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 0 24px;
  transition: opacity 0.18s;
}
.topbar-item:hover { opacity: 0.75; }
.topbar-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}
.topbar-icon svg { width: 18px; height: 18px; }
.topbar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.topbar-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.topbar-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.topbar-item:hover .topbar-value { color: var(--green); }
.topbar-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  /* only non-animated properties use CSS transitions — scroll animation is JS-driven */
  transition: background 0.3s, box-shadow 0.3s;
  overflow: visible;
  will-change: transform, opacity;
}

/* ---- Floating nav pill ---- */
#nav-float {
  position: fixed;
  /* The pill has zoom:1/site-zoom, so its `top` is in viewport px (zoom cancels body-zoom).
     Bar renders at (104 body-zoom px) × 0.78 = 81px viewport. Match that. */
  top: calc((var(--topbar-h) + (var(--nav-h) - var(--topbar-h) - var(--nav-bar-h)) / 2) * var(--site-zoom));
  left: 50%;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(17,17,16,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px 10px 10px;
  cursor: pointer;
  user-select: none;
  opacity: 0;
  transform: translateX(-50%) scale(0.88);
  transition: border-color 0.22s, box-shadow 0.22s,
              opacity 0.3s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  will-change: transform, opacity;
  zoom: calc(1 / var(--site-zoom));
}
#nav-float:hover {
  border-color: var(--border-orange);
  box-shadow: 0 6px 32px rgba(107,207,161,0.22);
}

/* ---- Nav bar background (real element — morphs to pill on scroll) ---- */
.nav-bar-bg {
  position: absolute;
  top: calc(var(--topbar-h) + (var(--nav-h) - var(--topbar-h) - var(--nav-bar-h)) / 2);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: var(--nav-bar-h);
  background: rgba(17,17,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  z-index: 0;
  pointer-events: none;
  will-change: width, border-radius, opacity;
  transition:
    width 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-radius 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s ease,
    box-shadow 0.5s ease,
    opacity 0.35s ease;
}
/* nav-bar-bg pill target size is set via JS inline styles to match pill's actual width */
.nav-bar-bg.nav-pill-active {
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}
.nav-float-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elevated);
}
.nav-float-logo img { width: 100%; height: 100%; object-fit: contain; }
.nav-float-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-200);
  letter-spacing: 0.02em;
}
.nav-float-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 2px;
}
.nav-float-bars span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s, width 0.3s;
}
#nav-float.drawer-open .nav-float-bars span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#nav-float.drawer-open .nav-float-bars span:nth-child(2) { opacity: 0; width: 0; }
#nav-float.drawer-open .nav-float-bars span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- Nav modal (centered overlay) ---- */
#nav-modal {
  position: fixed;
  inset: 0;
  z-index: 1099;
  display: flex;
  /* Start below the pill — pill sits above the panel */
  align-items: flex-start;
  justify-content: center;
  padding: 155px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  zoom: calc(1 / var(--site-zoom));
}
#nav-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-modal-panel {
  background: rgba(16,15,14,0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 28px 32px 26px;
  transform: scale(0.93) translateY(16px);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow-y: auto;
  max-height: calc(100vh - 175px);
}
#nav-modal.open .nav-modal-panel {
  transform: scale(1) translateY(0);
}
.nav-modal-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 14px;
}
.nav-modal-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.nav-modal-link {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--text-200);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease, padding-left 0.22s var(--ease-out);
  line-height: 1.2;
}
.nav-modal-link:last-child { border-bottom: none; }
.nav-modal-link:hover { color: var(--orange); padding-left: 10px; }
.nav-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-modal-contacts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-modal-contact {
  font-size: 0.78rem;
  color: var(--text-400);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-modal-contact:hover { color: var(--orange); }
.nav-modal-cta { justify-content: center; }

/* ---- Drawer backdrop ---- */
#nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1098;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  zoom: calc(1 / var(--site-zoom));
}
#nav-overlay.visible { opacity: 1; pointer-events: auto; }
/* When scrolled, deepen the nav bar shadow */
#navbar.scrolled .nav-bar-bg {
  box-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

/* Navbar content transitions (topbar + links fade on collapse) */
#navbar .topbar,
#navbar .nav-inner {
  transition: opacity 0.15s ease;
}
#navbar.nav-collapsed {
  pointer-events: none;
}
#navbar.nav-collapsed .topbar,
#navbar.nav-collapsed .nav-inner {
  opacity: 0;
  pointer-events: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(100% - var(--topbar-h));
  margin-top: var(--topbar-h);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.55));
}
.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-100);
  line-height: 1;
}
.nav-logo-text span { color: var(--orange); }
.nav-logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-300);
  transition: color 0.18s, background 0.18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-100); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-200);
  transition: color 0.18s;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--green); }
.nav-phone:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-100);
  border-radius: 2px;
  transition: all 0.22s var(--ease-out);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(17,17,16,0.99);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 14px 20px;
  flex-direction: column;
  gap: 5px;
  overflow-y: auto;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-200);
  border: 1px solid var(--border);
  transition: all 0.18s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.mobile-menu a:hover {
  color: var(--orange);
  border-color: var(--border-orange);
  background: var(--orange-subtle);
}
.mobile-menu-cta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--text-400);
  max-width: 280px;
  line-height: 1.7;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.footer-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-100);
  line-height: 1.1;
}
.footer-logo-text span { color: var(--orange); }
.footer-logo-sub { font-size: 0.72rem; color: var(--text-500); letter-spacing: 0.06em; text-transform: uppercase; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-400);
  transition: all 0.18s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { color: var(--orange); border-color: var(--border-orange); background: var(--orange-subtle); }

.footer-col h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-300);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-400);
  transition: color 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--orange); }
.footer-col ul a svg { width: 13px; height: 13px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-500);
  max-width: none;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-500);
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: var(--text-300); }

/* ============================================================
   PAGE HERO (shared hero styles)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 45% at 50% 0%, rgba(107,207,161,0.10) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 600px; margin-bottom: 32px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-200);
}
.form-label .required { color: var(--orange); margin-left: 3px; }
.form-input,
.form-textarea,
.form-select {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text-100);
  transition: border-color 0.18s, box-shadow 0.18s;
  width: 100%;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-500); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-helper { font-size: 0.8rem; color: var(--text-400); }
.form-error { font-size: 0.82rem; color: #f87171; display: none; }
.form-error.show { display: block; }
.form-input.error,
.form-textarea.error { border-color: #f87171; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid { display: flex; flex-direction: column; gap: 20px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-500);
  pointer-events: none;
}
.input-icon-wrap .form-input { padding-left: 42px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-spring);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }
.delay-4 { transition-delay: 0.32s !important; }
.delay-5 { transition-delay: 0.40s !important; }
.delay-6 { transition-delay: 0.48s !important; }
.delay-7 { transition-delay: 0.56s !important; }
.delay-8 { transition-delay: 0.64s !important; }

/* ============================================================
   TITLE ANIMATION EFFECTS
   ============================================================ */

/* Word-by-word 3D flip entrance for h1/h2/h3 */
.reveal-words {
  opacity: 0;
  transition: opacity 0s;
  perspective: 900px;
  perspective-origin: 50% 100%;
}
.reveal-words.revealed { opacity: 1; }

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.8em) rotateX(-58deg) skewX(-6deg);
  transform-origin: top center;
  filter: blur(7px);
  backface-visibility: hidden;
  transition: opacity 0.65s var(--ease-spring),
              transform 0.65s var(--ease-spring),
              filter 0.55s var(--ease-out);
  will-change: transform, opacity, filter;
}
.reveal-words.revealed .word {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Animated underline that sweeps in on .highlight-orange inside headings */
h2 .highlight-orange,
h3 .highlight-orange {
  position: relative;
  display: inline-block; /* must be inline-block so ::after absolute + word transform both work */
}
h2 .highlight-orange::after,
h3 .highlight-orange::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  transition: width 0.65s var(--ease-out) 0.45s;
}
h2.revealed .highlight-orange::after,
h3.revealed .highlight-orange::after { width: 100%; }

/* Section labels slide in as one unit — dash and text together */

/* ============================================================
   AMBIENT BACKGROUND ORBS
   ============================================================ */
.ambient-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-orange { background: radial-gradient(circle, rgba(107,207,161,0.14), transparent 70%); }
.orb-green  { background: radial-gradient(circle, rgba(130,182,165,0.1), transparent 70%);  animation-delay: -5s; }
.orb-orange-2 { background: radial-gradient(circle, rgba(107,207,161,0.08), transparent 70%); animation-delay: -8s; animation-duration: 16s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  33%       { transform: translateY(-30px) translateX(20px) scale(1.05); }
  66%       { transform: translateY(20px) translateX(-15px) scale(0.95); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-300);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.trust-item svg { width: 16px; height: 16px; color: var(--orange); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-surface);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: background 0.22s;
}
.stat-item:hover { background: var(--bg-elevated); }
.stat-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-400);
  font-weight: 500;
}

/* ============================================================
   LIVE STATS BAR
   ============================================================ */
.live-stats-section {
  padding: 72px 0 64px;
  position: relative;
  zoom: calc(0.96 / var(--site-zoom));
}
.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.live-stat-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.28s var(--ease-out), box-shadow 0.28s;
  cursor: default;
}
.live-stat-card:hover {
  border-color: rgba(255,119,0,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.lst-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.lst-icon svg { width: 18px; height: 18px; }
.lst-icon-star {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.3);
  color: #d4a017;
}
.lst-icon-avail {
  background: rgba(22, 163, 100, 0.1);
  border-color: rgba(22, 163, 100, 0.25);
  color: #16a364;
}
.lst-icon-guarantee {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.22);
  color: #6366f1;
}
.lst-body {
  flex: 1;
  min-width: 0;
}
.lst-value {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.lst-value-sm {
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  color: #16a364;
}
.lst-label {
  font-size: 0.72rem;
  color: #6b6966;
  font-weight: 500;
  line-height: 1.35;
}

/* pulsing green dot on jobs card */
.lst-pulse {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #16a364;
  box-shadow: 0 0 0 0 rgba(22, 163, 100, 0.5);
  animation: lsPulse 2s ease-in-out infinite;
}
@keyframes lsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 100, 0.5); }
  60%  { box-shadow: 0 0 0 5px rgba(22, 163, 100, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 100, 0); }
}

/* availability dot */
.lst-avail-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #16a364;
}
.lst-avail-dot.amber { background: #f59e0b; }
.lst-avail-dot.red   { background: #ef4444; }

/* count-up flash */
@keyframes lsFlash {
  0%   { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.lst-flash { animation: lsFlash 0.5s var(--ease-out) both; }

/* responsive */
@media (max-width: 1100px) {
  .live-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .live-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .live-stat-card  { padding: 16px 14px; gap: 12px; }
  .lst-icon        { width: 36px; height: 36px; border-radius: 8px; }
  .lst-icon svg    { width: 16px; height: 16px; }
}
@media (max-width: 420px) {
  .live-stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
/* Left accent bar draws down on open */
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), #4ab884);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  z-index: 1;
}
.faq-item.open {
  border-color: rgba(107,207,161,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.faq-item.open::before { transform: scaleY(1); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, color 0.25s;
}
/* Shimmer sweep on hover */
.faq-question::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(107,207,161,0.07) 50%, transparent 100%);
  transform: translateX(-100%);
  pointer-events: none;
}
.faq-question:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}
.faq-question:hover { background: rgba(107,207,161,0.04); }
.faq-item.open .faq-question { background: rgba(107,207,161,0.06); }
.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  font-family: 'DM Sans', sans-serif;
  transition: color 0.25s;
}
.faq-item.open .faq-question h4 { color: var(--green); }
/* Ripple */
.faq-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(107,207,161,0.18);
  transform: scale(0);
  animation: faq-ripple-anim 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes faq-ripple-anim {
  to { transform: scale(4); opacity: 0; }
}
/* Chevron icon */
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  color: var(--text-400);
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.open .faq-icon {
  background: rgba(107,207,161,0.12);
  border-color: rgba(107,207,161,0.35);
  color: var(--green);
}
/* Spring chevron */
.faq-item.open .faq-icon svg {
  animation: faq-chevron-spring 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.faq-item:not(.open) .faq-icon svg {
  animation: faq-chevron-close 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes faq-chevron-spring {
  0%   { transform: rotate(0deg); }
  60%  { transform: rotate(200deg); }
  100% { transform: rotate(180deg); }
}
@keyframes faq-chevron-close {
  from { transform: rotate(180deg); }
  to   { transform: rotate(0deg); }
}
/* Answer panel — uses JS-driven height */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(0.22,1,0.36,1);
  background: rgba(107,207,161,0.03);
}
.faq-answer-inner {
  padding: 4px 26px 22px 30px;
  color: var(--text-300);
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease 0.1s, transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.08s;
}
.faq-item.open .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   REVIEWS MARQUEE
   ============================================================ */
.reviews-section { overflow: hidden; }
.reviews-marquee-wrap {
  margin: 48px 0 8px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 100px, black calc(100% - 100px), transparent);
  mask-image: linear-gradient(to right, transparent, black 100px, black calc(100% - 100px), transparent);
}
.marquee-row {
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}
.marquee-row:first-child { margin-bottom: 20px; }
.marquee-row.is-dragging { cursor: grabbing; }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 340px;
  flex-shrink: 0;
  transition: border-color 0.28s;
  pointer-events: none;
}
.marquee-row.is-paused .testimonial-card { pointer-events: auto; }
.testimonial-card:hover { border-color: var(--border-orange); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; color: var(--orange); fill: var(--orange); }
.testimonial-text { font-size: 0.95rem; color: #ffffff; line-height: 1.7; margin-bottom: 20px; max-width: none; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: #ffffff; }
.author-location { display: none; }

/* Pause button */
.reviews-controls { margin-top: 32px; }
.pause-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text-300);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.pause-btn:hover { border-color: var(--border-orange); color: var(--text-100); }
.pause-btn.is-paused { background: var(--bg-elevated); border-color: var(--orange); color: var(--orange); }
.pause-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,207,161,0.1), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 12px; position: relative; }
.cta-banner p { margin: 0 auto 32px; position: relative; color: var(--text-300); font-size: 1.1rem; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), border-color 0.28s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-orange); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img-placeholder {
  width: 48px;
  height: 48px;
  color: var(--text-500);
}
.blog-card-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta-date { font-size: 0.8rem; color: var(--text-500); }
.blog-card h4 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h4 a:hover { color: var(--orange); }
.blog-card p { font-size: 0.88rem; color: var(--text-400); line-height: 1.6; max-width: none; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 16px;
  transition: gap 0.18s;
}
.blog-read-more:hover { gap: 10px; }
.blog-read-more svg { width: 14px; height: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --topbar-h: 0px; --section-pad: 72px; --nav-h: 72px; --nav-bar-h: 72px; }
  /* Revert to compact single-zone navbar on tablet/mobile */
  .topbar { display: none; }
  .nav-bar-bg { height: 100%; top: 0; }
  .nav-inner { align-items: center; margin-top: 0; height: 100%; }
  .nav-logo { align-items: center; margin-bottom: 0; }
  .nav-logo img { height: 48px; filter: none; }
  .nav-links, .nav-phone { display: none; }
  .nav-links { margin-bottom: 0; }
  .nav-cta { margin-bottom: 0; }
  .hamburger { display: flex; margin-bottom: 0; padding: 10px 14px 10px 10px; }
  .nav-cta .btn  { display: none; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .btn-lg { font-size: 0.95rem; padding: 12px 20px; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .hero-trust-divider { display: none; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  a.btn, button.btn { min-height: 48px; }
  .faq-question { min-height: 48px; }
}

@media (max-width: 900px) {
  #nav-float { top: 10px; }
}

@media (max-width: 640px) {
  /* ---- Reviews section ---- */
  .reviews-marquee-wrap { margin: 20px 0 4px; }
  .marquee-row:first-child { margin-bottom: 10px; }
  .marquee-track { gap: 12px; }
  .testimonial-card { width: 240px; padding: 16px; }
  .stars { margin-bottom: 8px; gap: 2px; }
  .stars svg { width: 12px; height: 12px; }
  .testimonial-text { font-size: 0.78rem; line-height: 1.55; margin-bottom: 12px; }
  .author-avatar { width: 34px; height: 34px; font-size: 0.78rem; }
  .author-name { font-size: 0.78rem; }
  .reviews-controls { margin-top: 16px; }

  :root { --topbar-h: 0px; --section-pad: 56px; --nav-h: 64px; --nav-bar-h: 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ---- Strategy A: Blog Grid swiper ---- */
  .blog-section-wrap { position: relative; }
  .blog-section-wrap::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 16px;
    width: 40px;
    background: linear-gradient(to right, transparent, #ffffff);
    pointer-events: none;
    z-index: 2;
  }
  .blog-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 16px;
    grid-template-columns: unset;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-card {
    flex: 0 0 82%;
    max-width: 300px;
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .section-sm { padding: 24px 0; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.pb-0  { padding-bottom: 0 !important; }
.pt-0  { padding-top: 0 !important; }
.w-full { width: 100%; }
.text-sm { font-size: 0.88rem; }
.text-muted { color: var(--text-400); }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.flex-shrink-0 { flex-shrink: 0; }
.display-light { font-weight: 300 !important; color: var(--text-300); }

/* ============================================================
   CARD TILT — cursor-following glow spot injected via JS
   ============================================================ */
.card-tilt-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    rgba(107, 207, 161, 0.22),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.35s;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (pointer: fine) and (min-width: 900px) {
  body, a, button { cursor: none; }
}
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCc+PGVsbGlwc2UgY3g9JzEyJyBjeT0nMTYuNScgcng9JzUuNScgcnk9JzQuNScgZmlsbD0nd2hpdGUnLz48ZWxsaXBzZSBjeD0nNS41JyBjeT0nMTAuNScgcng9JzIuNCcgcnk9JzInIGZpbGw9J3doaXRlJy8+PGVsbGlwc2UgY3g9JzkuNScgY3k9JzcuNScgcng9JzIuMicgcnk9JzInIGZpbGw9J3doaXRlJy8+PGVsbGlwc2UgY3g9JzE0LjUnIGN5PSc3LjUnIHJ4PScyLjInIHJ5PScyJyBmaWxsPSd3aGl0ZScvPjxlbGxpcHNlIGN4PScxOC41JyBjeT0nMTAuNScgcng9JzIuNCcgcnk9JzInIGZpbGw9J3doaXRlJy8+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCc+PGVsbGlwc2UgY3g9JzEyJyBjeT0nMTYuNScgcng9JzUuNScgcnk9JzQuNScgZmlsbD0nd2hpdGUnLz48ZWxsaXBzZSBjeD0nNS41JyBjeT0nMTAuNScgcng9JzIuNCcgcnk9JzInIGZpbGw9J3doaXRlJy8+PGVsbGlwc2UgY3g9JzkuNScgY3k9JzcuNScgcng9JzIuMicgcnk9JzInIGZpbGw9J3doaXRlJy8+PGVsbGlwc2UgY3g9JzE0LjUnIGN5PSc3LjUnIHJ4PScyLjInIHJ5PScyJyBmaWxsPSd3aGl0ZScvPjxlbGxpcHNlIGN4PScxOC41JyBjeT0nMTAuNScgcng9JzIuNCcgcnk9JzInIGZpbGw9J3doaXRlJy8+PC9zdmc+");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: opacity 0.2s, background 0.2s;
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(107,207,161,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: width 0.22s var(--ease-out), height 0.22s var(--ease-out),
              margin 0.22s var(--ease-out), background 0.22s, border-color 0.22s,
              opacity 0.2s;
}
#cursor-ring.hovered {
  width: 54px; height: 54px;
  margin: -9px;
  background: rgba(107,207,161,0.07);
  border-color: var(--orange);
}
#cursor-dot.on-light { background: #2b2a29; }
#cursor-ring.on-light { border-color: rgba(43,42,41,0.45); }
#cursor-ring.on-light.hovered { border-color: #2b2a29; background: rgba(43,42,41,0.06); }
#cursor-dot.svc-mode, #cursor-ring.svc-mode { opacity: 0 !important; }
@media (pointer: coarse), (max-width: 899px) {
  #cursor-dot, #cursor-ring { display: none !important; }
}

/* ============================================================
   RIPPLE BUTTON EFFECT
   ============================================================ */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
  transform: scale(0);
  animation: btnRippleAnim 0.58s ease-out forwards;
}
@keyframes btnRippleAnim {
  to { transform: scale(1); opacity: 0; }
}

/* ============================================================
   CLIP-PATH TEXT REVEAL
   ============================================================ */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s var(--ease-out);
}
.reveal-clip.revealed { clip-path: inset(0 0% 0 0); }

/* ============================================================
   LIGHT SECTION OVERRIDES
   Sections that use .section-on-light get a dark charcoal bg
   ============================================================ */
.section-on-light {
  background: var(--bg-surface);
}

/* Stats grid on dark-grey */
.section-on-light .stats-grid { background: rgba(255,255,255,0.04); }
.section-on-light .stat-item { background: var(--bg-elevated); }
.section-on-light .stat-item:hover { background: var(--bg-deep); }
.section-on-light .stat-label { color: var(--text-300); }

/* Why features on dark-grey */
.section-on-light .why-feature:hover {
  background: rgba(107,207,161,0.05);
  border-color: rgba(107,207,161,0.15);
}

/* Blog cards on dark-grey */
.section-on-light .blog-card {
  background: var(--bg-elevated);
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.section-on-light .blog-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(107,207,161,0.14);
}
.section-on-light .blog-card-img {
  background: var(--bg-deep);
  border-bottom-color: var(--border);
}

/* ============================================================
   Sections that use .section-white get a pure white bg + dark text
   ============================================================ */
.section-white {
  background: #ffffff;
}
.section-white h1, .section-white h2, .section-white h3,
.section-white h4, .section-white h5 { color: #1c1b1a; }
.section-white p { color: #4a4845; }
.section-white .lead { color: #3a3836; }
.section-white .section-header p { color: #5a5855; }
.section-white .text-muted { color: #6e6c6a; }
.section-white .section-label { color: var(--orange); }
.section-white .highlight-orange { color: var(--orange); }

/* Keep testimonial cards dark on white sections */
.section-white .testimonial-text { color: #ffffff; }
.section-white .author-name { color: #ffffff; }
.section-white .author-location { color: rgba(255,255,255,0.6); }

/* Pause button on white */
.section-white .pause-btn {
  color: #2b2a29;
  border-color: rgba(43,42,41,0.2);
  background: rgba(43,42,41,0.05);
}
.section-white .pause-btn:hover {
  background: rgba(43,42,41,0.1);
  border-color: rgba(43,42,41,0.35);
}

/* Blog cards on white */
.section-white .blog-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-white .blog-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(107,207,161,0.18);
}
.section-white .blog-card-img {
  background: #f0f0ee;
  border-bottom-color: rgba(0,0,0,0.07);
}
.section-white .blog-card h4 a { color: #1c1b1a; }
.section-white .blog-card p { color: #5a5855; }
.section-white .blog-meta-date { color: #8a8885; }

/* Ghost button on white */
.section-white .btn-ghost {
  color: #1c1b1a;
  border-color: rgba(0,0,0,0.2);
}
.section-white .btn-ghost::before { background: rgba(107,207,161,0.12); }
.section-white .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

/* ============================================================
   SUCCESS POPUP (used on contact + request-pickup pages)
   ============================================================ */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 4, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  perspective: 1200px;
}
.success-overlay.success-visible {
  opacity: 1;
  pointer-events: auto;
}
.success-popup {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid rgba(107, 207, 161, 0.22);
  border-radius: 28px;
  padding: 52px 48px 44px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(107, 207, 161, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-origin: center center;
}
.success-popup.success-enter {
  animation: successIn 0.72s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.success-popup.success-exit {
  animation: successYeet 0.52s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
@keyframes successIn {
  0%   { opacity: 0; transform: translateZ(-2000px) scale(0.04); filter: blur(14px); }
  55%  { opacity: 1; filter: blur(0); transform: translateZ(40px) scale(1.055); }
  75%  { transform: translateZ(-12px) scale(0.975); }
  100% { opacity: 1; transform: translateZ(0) scale(1); filter: blur(0); }
}
@keyframes successYeet {
  0%   { transform: scale(1) rotate(0deg) translate(0, 0); opacity: 1; }
  10%  { transform: scale(0.88, 1.14) rotate(-4deg) translate(-8px, 10px); }
  28%  { transform: scale(1.08, 0.9) rotate(7deg) translate(18px, -14px); }
  100% { transform: scale(0.35, 0.65) rotate(44deg) translate(130vw, -80vh); opacity: 0; }
}
.success-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.success-close:hover { background: rgba(255,255,255,0.13); color: #fff; transform: rotate(90deg) scale(1.1); }
.success-close svg  { width: 16px; height: 16px; display: block; }
.success-binny {
  width: 140px;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  filter: drop-shadow(0 8px 24px rgba(107,207,161,0.25));
}
.success-check {
  width: 56px;
  height: 56px;
  background: rgba(107, 207, 161, 0.14);
  border: 2px solid rgba(107, 207, 161, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.success-check svg { width: 26px; height: 26px; }
.success-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.35rem, 4.5vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.2;
}
.success-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 auto 24px;
  max-width: 380px;
}
.success-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.success-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(107, 207, 161, 0.1);
  border: 1px solid rgba(107, 207, 161, 0.22);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.success-pill svg { width: 13px; height: 13px; flex-shrink: 0; }
.success-cta { width: 100%; justify-content: center; display: flex; }

@media (max-width: 540px) {
  .success-popup { padding: 44px 24px 36px; border-radius: 22px; }
  .success-binny { width: 110px; height: 110px; }
}

/* ============================================================
   PHOTO UPLOAD (request-pickup form)
   ============================================================ */
.photo-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.photo-upload-zone:hover,
.photo-upload-zone.drag-over {
  border-color: var(--green);
  background: rgba(107, 207, 161, 0.04);
}
.photo-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.photo-upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-400);
  pointer-events: none;
}
.photo-upload-prompt svg { width: 32px; height: 32px; color: var(--text-500); margin-bottom: 4px; }
.photo-upload-prompt strong { font-size: 0.9rem; color: var(--text-300); }
.photo-upload-prompt small { font-size: 0.78rem; color: var(--text-500); }
.photo-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  z-index: 3;
  transition: background 0.15s;
}
.photo-thumb-remove:hover { background: rgba(220,50,50,0.8); }
.photo-count-label {
  font-size: 0.78rem;
  color: var(--text-400);
  margin-top: 10px;
  text-align: center;
}

/* ============================================================
   SOCIAL PROOF TOAST
   ============================================================ */
.sp-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(107,207,161,0.08);
  max-width: 300px;
  width: max-content;
  transform: translateX(calc(-100% - 32px));
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
.sp-toast.sp-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.sp-toast.sp-hiding {
  transform: translateX(calc(-100% - 32px));
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}
.sp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(107,207,161,0.12);
  border: 1px solid rgba(107,207,161,0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-content {
  flex: 1;
  min-width: 0;
}
.sp-message {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-100);
  margin: 0 0 3px;
  line-height: 1.4;
  max-width: none;
}
.sp-time {
  font-size: 0.75rem;
  color: var(--text-400);
}
.sp-close {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  color: var(--text-500);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.18s, background 0.18s;
  align-self: flex-start;
}
.sp-close:hover { color: var(--text-200); background: rgba(255,255,255,0.06); }
.sp-close svg { width: 12px; height: 12px; pointer-events: none; }
@media (max-width: 480px) {
  .sp-toast { bottom: 14px; left: 14px; max-width: 260px; }
}

/* ============================================================
   BINNY POPUP (sticky bottom-right CTA — all pages)
   ============================================================ */
.binny-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
.binny-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.binny-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px 20px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  width: 320px;
  margin-right: 8px;
}
.binny-bubble::before {
  content: '';
  position: absolute;
  bottom: -13px;
  right: 26px;
  border: 13px solid transparent;
  border-top-color: var(--border);
  border-bottom: 0;
  border-right: 0;
}
.binny-bubble::after {
  content: '';
  position: absolute;
  bottom: -11px;
  right: 27px;
  border: 11px solid transparent;
  border-top-color: var(--bg-elevated);
  border-bottom: 0;
  border-right: 0;
}
.binny-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s, border-color 0.18s;
}
.binny-close:hover { color: var(--text-100); border-color: var(--text-300); }
.binny-close svg { width: 12px; height: 12px; pointer-events: none; }
.binny-bubble-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text-100);
  margin: 0 0 6px;
  padding-right: 24px;
  max-width: none;
}
.binny-bubble-sub {
  font-size: 0.775rem;
  color: var(--text-400);
  margin: 0 0 14px;
  line-height: 1.5;
  max-width: none;
}
.binny-bubble-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.binny-bubble-actions .btn-ghost,
.binny-bubble-actions .btn-primary {
  font-size: 0.85rem;
  padding: 10px 16px;
  justify-content: center;
}
.binny-mascot {
  width: 180px;
  height: auto;
  display: block;
  margin-right: 8px;
  margin-top: 16px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
@media (max-width: 480px) {
  .binny-popup { right: 12px; bottom: 12px; }
  .binny-bubble { width: 260px; }
}
