/* ============================================================
   HOME PAGE — v2 Redesign
   SCA-inspired: cinematic, editorial, immersive
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: url('../assets/team-photo.webp') center / cover no-repeat;
  background-color: #0a0a09;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,4,0.88) 0%,
    rgba(5,5,4,0.70) 40%,
    rgba(5,5,4,0.30) 100%
  );
  z-index: 0;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 75% 50%, rgba(107,207,161,0.06), transparent),
    radial-gradient(ellipse 60% 70% at 5%  20%, rgba(130,182,165,0.035), transparent);
  pointer-events: none;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,207,161,0.35), transparent);
  z-index: 2;
}
.hero > .container { position: relative; z-index: 2; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 80px 0;
  max-width: 640px;
}

.hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-100);
  margin-bottom: 24px;
}
.hero-headline .thin {
  font-weight: 300;
  color: var(--text-400);
}

/* ---- Rotating word pill ---- */
.rotating-word-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 0.18em;
  padding: 0.02em 0.2em 0.04em;
  overflow: hidden;
  vertical-align: baseline;
  position: relative;
  background: #6bcfa1;
  color: #0f231c;
  transition: background 0.4s ease, color 0.4s ease;
  line-height: inherit;
  white-space: nowrap;
}

.rotating-word-inner {
  display: block;
}

.rotating-word-inner.word-exit {
  animation: rwExit 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.rotating-word-inner.word-enter {
  animation: rwEnter 0.36s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes rwExit {
  0%   { transform: translateY(0);     opacity: 1; }
  100% { transform: translateY(-115%); opacity: 0; }
}

@keyframes rwEnter {
  0%   { transform: translateY(115%);  opacity: 0; }
  100% { transform: translateY(0);     opacity: 1; }
}

/* ---- Why section rotating word (text only, no background) ---- */
.why-rotating-inner {
  display: inline-block;
}

.why-rotating-inner.word-exit-soft {
  animation: rwExitSoft 0.26s ease forwards;
}

.why-rotating-inner.word-enter-soft {
  animation: rwEnterSoft 0.32s ease forwards;
}

@keyframes rwExitSoft {
  0%   { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(-50%); opacity: 0; }
}

@keyframes rwEnterSoft {
  0%   { transform: translateY(50%);  opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

.hero-content {
  width: 100%;
}

.hero-content .lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 14px;
}
.hero-btns .btn {
  flex: 1;
  justify-content: center;
  white-space: nowrap;
  padding-left: 20px;
  padding-right: 20px;
}
.hero-btns .btn:last-child {
  flex: 2;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-400);
  white-space: nowrap;
}
.hero-trust-item svg { width: 13px; height: 13px; color: var(--green); }
.hero-trust-divider { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }

/* ---- Mascot ---- */
.hero-mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.mascot-glow {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,207,161,0.1), transparent 70%);
  filter: blur(50px);
  animation: glowPulse 4.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.12); opacity: 0.62; }
}
.mascot-img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 24px 64px rgba(107,207,161,0.15));
  animation: mascotBob 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes mascotBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-20px) rotate(1deg); }
}
.mascot-bubble {
  position: absolute;
  top: 12%; right: -4%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  animation: bubbleBounce 4s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
.mascot-bubble .bubble-tail {
  position: absolute;
  bottom: -14px; left: 22px;
  width: 20px; height: 14px;
}
.mascot-bubble .bubble-tail path { fill: var(--bg-elevated); }
@keyframes bubbleBounce {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(0.5deg); }
}

/* ---- Hero title: continuous wave after entrance ---- */
@keyframes heroWordFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%, 60% { transform: translateY(-8px) rotate(-0.4deg); }
}
.hero-headline.wave-ready .word {
  animation: heroWordFloat 3.8s ease-in-out infinite var(--wave-delay, 0s);
}

/* ---- Hero buttons: pulsing ring ---- */
/* Exclude outline from transition so the ring animation doesn't get interpolated */
.hero-btns .btn-primary,
.hero-btns .btn-ghost {
  transition: background 0.22s var(--ease-out), color 0.22s,
              box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
@keyframes heroRingPrimary {
  0%, 100% { outline: 0px solid rgba(107,207,161,0);    outline-offset: 0px; }
  50%       { outline: 3px solid rgba(107,207,161,0.55); outline-offset: 7px; }
}
@keyframes heroRingGhost {
  0%, 100% { outline: 0px solid rgba(107,207,161,0);    outline-offset: 0px; }
  50%       { outline: 2px solid rgba(107,207,161,0.35); outline-offset: 5px; }
}
.hero-btns .btn-primary {
  animation: heroRingPrimary 2.6s ease-in-out infinite;
}
.hero-btns .btn-ghost {
  animation: heroRingGhost 3s ease-in-out infinite 0.8s;
}

/* ---- Scroll hint ---- */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}
.scroll-dot {
  width: 3px; height: 6px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  81%  { transform: translateY(0);    opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--bg-white);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* ============================================================
   IMMERSIVE SERVICE CARDS
   ============================================================ */
.service-cards-section { background: var(--bg-deep); }

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.svc-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  color: inherit;
}
.svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.svc-card:hover .svc-card-bg { transform: scale(1.055); }

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.9)  0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.14) 100%);
  z-index: 1;
  transition: background 0.45s;
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.62) 45%,
    rgba(0,0,0,0.28) 100%);
}

/* Subtle grid texture */
.svc-card-grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  pointer-events: none;
}

.svc-card-label {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
}

.svc-card-icon-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2;
  opacity: 0.1;
  transition: opacity 0.45s;
  pointer-events: none;
}
.svc-card-icon-bg svg { width: 120px; height: 120px; color: white; }
.svc-card:hover .svc-card-icon-bg { opacity: 0.05; }

.svc-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
  z-index: 3;
}
.svc-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.svc-card-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.svc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}
.svc-card-cta {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.svc-card:hover .svc-card-cta { color: rgba(255,255,255,0.9); }

.svc-card-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.32s var(--ease-spring), background 0.2s;
}
.svc-card-arrow svg { width: 17px; height: 17px; color: #000; }
.svc-card:hover .svc-card-arrow { transform: rotate(-45deg); }

/* ============================================================
   WIDE SERVICE LIST
   ============================================================ */
.wide-list-section { background: var(--bg-base); }

.wide-list { border-top: 1px solid var(--border); }

.wide-list-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: padding-left 0.35s var(--ease-out);
}
.wide-list-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(107,207,161,0.08), transparent);
  transition: width 0.45s var(--ease-out);
}
.wide-list-item:hover { padding-left: 14px; }
.wide-list-item:hover::before { width: 100%; }

.wide-list-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-500);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  transition: color 0.22s;
}
.wide-list-item:hover .wide-list-number { color: var(--orange); }

.wide-list-text { position: relative; z-index: 1; }
.wide-list-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--text-100);
  line-height: 1.1;
  transition: color 0.22s;
}
.wide-list-sub {
  font-size: 0.82rem;
  color: var(--text-500);
  font-weight: 400;
  margin-top: 2px;
  transition: color 0.22s;
}
.wide-list-item:hover .wide-list-sub { color: var(--text-400); }

.wide-list-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-500);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.26s var(--ease-out);
}
.wide-list-item:hover .wide-list-arrow {
  border-color: var(--orange);
  color: var(--orange);
  transform: rotate(-45deg);
  background: var(--orange-subtle);
}
.wide-list-arrow svg { width: 14px; height: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
/* ============================================================
   HOW IT WORKS — ANIMATED PROCESS STEPS
   ============================================================ */
.how-it-works {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.how-it-works .section-header h2 { color: #1c1b1a; }
.how-it-works .section-header p  { color: #5a5855; }
.how-it-works .section-label     { color: var(--orange); }

.proc-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
  position: relative;
}

/* Connector track */
.proc-track {
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(107,207,161,0.12);
  border-radius: 2px;
  overflow: hidden;
  pointer-events: none;
}
.proc-track-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
  transition: width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step */
.proc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 0 8px;
  position: relative;
  z-index: 1;
  outline: none;
}

/* Icon wrap */
.proc-icon-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  flex-shrink: 0;
}

/* Pulsing ring */
.proc-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.proc-step.active .proc-ring {
  opacity: 0.4;
  transform: scale(1);
  animation: proc-ring-pulse 2.2s ease-in-out infinite;
}
@keyframes proc-ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.1; transform: scale(1.18); }
}

/* Icon circle */
.proc-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #f5f5f3;
  border: 2px solid rgba(107,207,161,0.18);
  color: #c0bfbd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out),
              color 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out),
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.proc-step.active .proc-icon {
  background: rgba(107,207,161,0.1);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 0 8px rgba(107,207,161,0.07), 0 16px 40px rgba(107,207,161,0.18);
  transform: scale(1.1);
}
.proc-step:not(.active):hover .proc-icon {
  border-color: rgba(107,207,161,0.45);
  color: #888;
  background: rgba(107,207,161,0.04);
}

/* Step badge */
.proc-num {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d8d7d4;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, box-shadow 0.4s,
              transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.proc-step.active .proc-num {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(107,207,161,0.25);
  transform: scale(1.15);
}

/* Text */
.proc-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #c0bfbd;
  line-height: 1.3;
  transition: color 0.4s;
}
.proc-body p {
  font-size: 0.85rem;
  line-height: 1.68;
  color: #d0cfcd;
  margin: 0;
  max-width: none;
  transition: color 0.4s;
}
.proc-step.active .proc-body h4     { color: #1c1b1a; }
.proc-step.active .proc-body p      { color: #5a5855; }
.proc-step:not(.active):hover .proc-body h4 { color: #6a6866; }
.proc-step:not(.active):hover .proc-body p  { color: #8a8785; }

/* Auto-advance progress bar */
.proc-progress {
  height: 2px;
  background: rgba(107,207,161,0.1);
  border-radius: 2px;
  margin-top: 48px;
  overflow: hidden;
}
.proc-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 860px) {
  .proc-track { display: none; }
  .proc-wrapper { flex-direction: column; gap: 8px; margin-top: 48px; }
  .proc-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    border: 1.5px solid transparent;
    transition: background 0.3s, border-color 0.3s;
  }
  .proc-step.active {
    background: rgba(107,207,161,0.05);
    border-color: rgba(107,207,161,0.25);
  }
  .proc-icon-wrap { margin-bottom: 0; flex-shrink: 0; }
  .proc-ring { inset: -6px; }
  .proc-icon { width: 72px; height: 72px; }
  .proc-icon-wrap { width: 72px; height: 72px; }
  .proc-num { width: 22px; height: 22px; font-size: 0.58rem; top: 0; right: 0; }
  .proc-body { text-align: left; }
  .proc-body h4 { margin-bottom: 4px; }
}
@media (max-width: 480px) {
  .proc-icon-wrap { width: 60px; height: 60px; }
  .proc-icon { width: 60px; height: 60px; }
  .proc-ring { inset: -5px; }
  .proc-step { gap: 14px; padding: 14px 14px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header photo"
    "body   photo";
  column-gap: 80px;
  row-gap: 0;
  align-items: start;
}
.why-header { grid-area: header; }
.why-body   { grid-area: body; padding-top: 32px; }
.why-photo  { grid-area: photo; align-self: center; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: border-color 0.22s, background 0.22s;
}
.why-feature:hover { border-color: var(--border); background: var(--bg-surface); }
.why-feature .icon-box { flex-shrink: 0; }
.why-feature h5 { margin-bottom: 4px; font-family: 'Nunito', sans-serif; }
.why-feature p { max-width: none; }

.why-photo { display: flex; align-items: center; justify-content: center; }
.why-photo-inner { position: relative; width: 100%; max-width: 440px; }
.photo-placeholder {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  position: relative;
}
.photo-placeholder.has-photo {
  padding: 0;
}
.photo-placeholder.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}
.photo-placeholder.has-photo::before { display: none; }
.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(107,207,161,0.06), transparent);
  pointer-events: none;
}
.photo-badge-1, .photo-badge-2 {
  position: absolute;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-100);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  animation: badgeFloat 3s ease-in-out infinite;
  z-index: 1;
}
.photo-badge-1 { top: 24px; right: -20px; }
.photo-badge-2 { bottom: 48px; left: -20px; animation-delay: -1.5s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ---- Service card arrow (older grid) ---- */
.card-arrow {
  font-size: 0.88rem; font-weight: 700;
  color: var(--orange);
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.18s;
}
.card:hover .card-arrow { gap: 10px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-binny {
  position: absolute;
  bottom: 0; right: 5%;
  opacity: 0.14;
  pointer-events: none;
}

/* ============================================================
   FAQ LAYOUT
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

/* ============================================================
   PHONE CTA STRIP (between service list & how-it-works)
   ============================================================ */
.phone-cta-strip {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.phone-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.phone-cta-strip h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--text-100);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  margin-bottom: 8px;
}
.phone-cta-strip p {
  color: var(--text-400);
  font-size: 0.93rem;
  max-width: none;
  margin: 0;
}
.phone-cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .phone-cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .phone-cta-strip-actions { width: 100%; }
  .phone-cta-strip-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   BINNY POPUP — bottom-left mascot + speech bubble
   ============================================================ */
/* ============================================================
   BROTHERS CALLOUT STRIP
   ============================================================ */
.brothers-callout {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.brothers-callout-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brothers-callout-mascot {
  width: 126px;
  flex-shrink: 0;
}
.brothers-callout-text {
  flex: 1;
  min-width: 220px;
}
.brothers-callout-text h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: var(--text-100);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  margin-bottom: 8px;
}
.brothers-callout-text p {
  font-size: 0.93rem;
  color: var(--text-400);
  max-width: none;
  margin-bottom: 16px;
}
.brothers-callout-phone {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--orange);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
  gap: 2px;
}
.brothers-callout-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--orange-glow);
}
.callout-phone-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.55);
}
.callout-phone-number {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: #0A0A0A;
  line-height: 1.2;
}

/* ============================================================
   MINT GREEN CTA SECTION
   ============================================================ */
.cta-section-mint {
  background: linear-gradient(135deg, #4fa882 0%, var(--orange) 50%, #7dd9b0 100%);
}
.cta-section-mint .cta-banner {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}
.cta-section-mint .cta-banner::before { display: none; }
.cta-section-mint .cta-banner h2 { color: #052010; }
.cta-section-mint .cta-banner p { color: rgba(5,32,16,0.7); max-width: none; }
.cta-section-mint .cta-binny { opacity: 0.22; }
.cta-section-mint .btn-primary {
  background: #052010;
  color: var(--orange-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-section-mint .btn-primary:hover {
  background: #0a2e1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.cta-section-mint .btn-ghost {
  color: #052010;
  border-color: rgba(5,32,16,0.35);
}
.cta-section-mint .btn-ghost:hover {
  background: rgba(5,32,16,0.1);
  border-color: rgba(5,32,16,0.5);
}
.cta-section-mint .gradient-text {
  background: linear-gradient(135deg, #052010, #0e3d20);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   HORIZONTAL SCROLL SERVICES
   ============================================================ */
.horiz-scroll-section {
  position: relative;
  background: var(--bg-deep);
  /* no zoom here — zoom on an ancestor breaks position:sticky in Chrome/WebKit */
}

.horiz-pin-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100dvh / var(--site-zoom));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* counter-zoom lives here, inside the sticky wrapper, not on the section */
.horiz-pin-inner {
  zoom: calc(1 / var(--site-zoom));
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.horiz-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px 0 20px;
  flex-shrink: 0;
}

.horiz-header-text h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--text-100);
  margin: 6px 0 0;
  line-height: 1.1;
}

.horiz-scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.5s;
  padding-bottom: 4px;
}
.horiz-scroll-hint svg { color: var(--orange); animation: hintArrow 1.5s ease-in-out infinite; }
@keyframes hintArrow {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50%       { transform: translateX(6px); opacity: 1; }
}
.horiz-scroll-section.scrolling .horiz-scroll-hint { opacity: 0; pointer-events: none; }

.horiz-progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  overflow: hidden;
}
.horiz-progress-fill {
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.horiz-track-outer {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.horiz-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 0 10vw 0 5vw;
  will-change: transform;
}

/* ---- Base card ---- */
.horiz-card {
  flex-shrink: 0;
  width: clamp(270px, 26vw, 360px);
  height: clamp(380px, 62vh, 540px);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* ---- Service card ---- */
.horiz-card-svc {
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: border-color 0.32s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  isolation: isolate;
  --img-x: 0px; --img-y: 0px;
}

/* Absolutely-positioned photo layer — sits below the ::before gradient overlay */
.horiz-card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% + var(--img-x, 0px)) calc(50% + var(--img-y, 0px));
  z-index: -1;
  opacity: 0.72;
  pointer-events: none;
  display: block;
  border-radius: inherit;
  transition: object-position 0.12s linear;
}
.horiz-card-svc:hover {
  border-color: var(--border-orange);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(107,207,161,0.13);
}

/* Gradient overlay — dark at bottom for text readability, transparent at top so image shows */
.horiz-card-svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 11, 10, 0.95) 0%,
    rgba(12, 11, 10, 0.65) 45%,
    rgba(12, 11, 10, 0.35) 70%,
    rgba(12, 11, 10, 0.45) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Subtle green edge glow on hover */
.horiz-card-svc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 110%, rgba(107,207,161,0.09), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}
.horiz-card-svc:hover::after { opacity: 1; }

/* Card content always above overlay */
.horiz-card-svc .horiz-card-num,
.horiz-card-svc .horiz-card-icon,
.horiz-card-svc .horiz-card-name,
.horiz-card-svc .horiz-card-desc,
.horiz-card-svc .horiz-card-footer { position: relative; z-index: 2; }
.horiz-card-svc .horiz-card-bg-num  { z-index: 2; }

/* ---- Intro card ---- */
.horiz-card-intro {
  width: clamp(310px, 32vw, 460px);
  background-color: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  justify-content: flex-end;
  isolation: isolate;
}
.horiz-card-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 11, 10, 0.92) 0%,
    rgba(12, 11, 10, 0.55) 45%,
    rgba(12, 11, 10, 0.15) 70%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}
.horiz-card-intro .horiz-card-intro-label,
.horiz-card-intro .horiz-card-title-lg,
.horiz-card-intro .horiz-card-desc { position: relative; z-index: 2; }

/* ---- Callout card ---- */
.horiz-card-callout {
  width: clamp(310px, 32vw, 460px);
  background: var(--orange);
  border: none;
  justify-content: space-between;
}

/* ---- Card internals ---- */
.horiz-card-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.76rem;
  color: var(--text-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.horiz-card-callout .horiz-card-num { color: rgba(0,0,0,0.42); }

.horiz-card-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: var(--orange-subtle);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 26px;
  flex-shrink: 0;
}
.horiz-card-icon svg { width: 25px; height: 25px; }

.horiz-card-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--text-100);
  line-height: 1.1;
  margin-bottom: 12px;
  flex-grow: 1;
}

.horiz-card-desc {
  font-size: 0.86rem;
  color: var(--text-400);
  line-height: 1.65;
  margin-bottom: 28px;
}

.horiz-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.horiz-card-learn {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-500);
  transition: color 0.25s, letter-spacing 0.3s var(--ease-out);
}
.horiz-card-arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.32s var(--ease-spring);
}
.horiz-card-arrow-btn svg { width: 17px; height: 17px; color: #000; }
.horiz-card-svc:hover .horiz-card-arrow-btn { transform: rotate(-45deg); }

/* Large decorative number on service cards */
.horiz-card-bg-num {
  position: absolute;
  bottom: -16px; right: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s, transform 0.5s var(--ease-spring);
}
.horiz-card-svc:hover .horiz-card-bg-num {
  color: rgba(107,207,161,0.11);
  transform: translateY(-18px) scale(1.06);
}

/* ---- Service card: hover content cascade ---- */
.horiz-card-svc .horiz-card-icon {
  transition: transform 0.48s var(--ease-spring), box-shadow 0.4s;
}
.horiz-card-svc:hover .horiz-card-icon {
  transform: translateY(-7px) scale(1.18);
  box-shadow: 0 10px 30px rgba(107,207,161,0.32);
}

.horiz-card-svc .horiz-card-name {
  transition: transform 0.38s var(--ease-out);
}
.horiz-card-svc:hover .horiz-card-name {
  transform: translateY(-4px);
}

.horiz-card-svc .horiz-card-desc {
  transition: transform 0.44s var(--ease-out), color 0.3s;
  transform: translateY(6px);
}
.horiz-card-svc:hover .horiz-card-desc {
  transform: translateY(0);
  color: var(--text-200);
}

.horiz-card-svc .horiz-card-learn {
  transition: color 0.2s, letter-spacing 0.3s var(--ease-out);
}
.horiz-card-svc:hover .horiz-card-learn {
  color: var(--orange);
  letter-spacing: 0.14em;
}

/* ---- Shine sweep ---- */
.horiz-shine {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}
.horiz-shine::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,0.07) 50%,
    transparent 70%
  );
  transform: translateX(-150%);
}
@keyframes shineSwipe {
  to { transform: translateX(150%); }
}
.horiz-card-svc.card-shine .horiz-shine::after {
  animation: shineSwipe 0.72s var(--ease-out) forwards;
}

/* ---- Card entrance ---- */
@keyframes cardFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.horiz-card.card-entering {
  animation: cardFadeIn 0.65s var(--ease-out) both;
}

/* ---- Progress bar: glow dot at leading edge ---- */
.horiz-progress-fill {
  position: relative;
}
.horiz-progress-fill::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange-glow), 0 0 20px var(--orange-glow);
  transition: transform 0.3s var(--ease-spring);
}
.horiz-scroll-section.scrolling .horiz-progress-fill::after {
  transform: translateY(-50%) scale(1);
}

/* ---- Intro card specifics ---- */
.horiz-card-intro-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.horiz-card-title-lg {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
}
.horiz-card-title-lg .thin { font-weight: 300; color: rgba(255,255,255,0.7); }
.horiz-card-intro .horiz-card-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 0; }

/* ---- Callout card specifics ---- */
.horiz-callout-quote {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.15;
  color: #071810;
  margin-bottom: 18px;
}
.horiz-callout-sub {
  font-size: 0.88rem;
  color: rgba(7,24,16,0.62);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}
.horiz-callout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.horiz-card-callout .btn-primary {
  background: #071810;
  color: var(--orange);
  box-shadow: none;
}
.horiz-card-callout .btn-primary:hover { background: #0f2e1c; transform: translateY(-2px); }
.horiz-card-callout .btn-ghost {
  border-color: rgba(7,24,16,0.28);
  color: #071810;
}
.horiz-card-callout .btn-ghost:hover {
  background: rgba(7,24,16,0.08);
  border-color: rgba(7,24,16,0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 48px; }
  .hero-inner { padding: 40px 0 60px; max-width: none; align-items: center; text-align: center; }
  .hero-badge { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-content .lead { margin-left: auto; margin-right: auto; }

  .service-cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc-card { aspect-ratio: 16/9; }

  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .how-step-connector {
    width: 2px; height: 36px;
    margin: 0 auto;
    background: linear-gradient(rgba(107,207,161,0.4), transparent);
  }
  .how-step-connector::after {
    right: auto; top: auto;
    bottom: -5px; left: calc(50% - 4px);
    border-top: none; border-left: none;
    border-bottom: 1.5px solid var(--orange);
    border-right: 1.5px solid var(--orange);
    transform: rotate(45deg);
    opacity: 0.5;
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "photo"
      "body";
    gap: 32px;
  }
  .why-body { padding-top: 0; }
  .why-photo { display: flex; justify-content: center; }
  .why-photo-inner { max-width: 50%; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }

  .wide-list-name { font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .wide-list-item { grid-template-columns: 48px 1fr auto; }

  /* Horizontal scroll — native swipe on mobile */
  .horiz-scroll-section { height: auto !important; }
  .horiz-pin-wrap { position: static !important; top: auto !important; bottom: auto !important;
    left: auto !important; width: auto !important; height: auto !important;
    overflow: visible; padding-bottom: 40px; }
  .horiz-pin-inner { zoom: 1; height: auto; overflow: visible; flex: none; }
  .horiz-track-outer { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .horiz-track-outer::-webkit-scrollbar { display: none; }
  .horiz-track { transform: none !important; padding: 16px 24px 0; align-items: stretch; }
  .horiz-card,
  .horiz-card-intro,
  .horiz-card-callout { width: 272px; height: 380px; padding: 26px 22px; }
  .horiz-progress-bar { display: none; }
  .horiz-scroll-section.scrolling .horiz-scroll-hint { opacity: 1; pointer-events: auto; }
  .horiz-header { padding: 28px 0 14px; }
}

@media (max-width: 640px) {
  /* Why Bin Bandits — reorder: label → h2 → photo → lead text → features → button */
  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  /* Dissolve text wrappers so their children become direct flex items */
  .why-header,
  .why-body { display: contents; }
  /* Keep photo as a single block unit and assign order */
  .why-photo { display: block; order: 3; margin: 24px 0; }
  .why-photo-inner { max-width: 100%; }
  .why-grid .section-label  { order: 1; display: block; }
  .why-grid h2               { order: 2; display: block; }
  .why-grid .lead            { order: 4; display: block; margin-top: 4px; }
  .why-grid .why-features    { order: 5; margin-top: 24px; }
  .why-grid .btn             { order: 6; display: inline-flex; margin-top: 28px; }

  /* ---- Strategy B: Why Features 2-column grid ---- */
  .why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .why-feature {
    padding: 12px;
    border-radius: var(--radius-sm);
  }
  .why-feature:hover {
    transform: none;
  }
  .why-feature .icon-box {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
  .why-feature h5 { font-size: 0.85rem; }
  .why-feature p  { font-size: 0.75rem; }

  /* ---- Strategy A: Service Cards Grid swiper ---- */
  .service-cards-section { position: relative; }
  .service-cards-section::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 16px;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--bg-deep));
    pointer-events: none;
    z-index: 2;
  }
  .service-cards-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;
  }
  .service-cards-grid::-webkit-scrollbar { display: none; }
  .svc-card {
    flex: 0 0 72%;
    max-width: 260px;
    scroll-snap-align: center;
    aspect-ratio: 3/4;
  }

  .hero-headline { font-size: clamp(3.1rem, 11.7vw, 5.2rem); }
  /* 3-line headline on mobile: Orlando's Go-To / [pill] / Removal */
  .hl-br-1 { display: none; }
  .hl-for  { display: none; }
  .hero-inner { max-width: 100%; align-items: center; text-align: center; }
  .hero-content { width: 100%; text-align: center; }
  .hero-headline { text-align: center; width: 100%; }
  /* Cap pill width so long words never overflow the viewport */
  .rotating-word-pill {
    display: inline-flex;
    max-width: calc(100vw - 32px);
    overflow: hidden;
  }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { flex: none; width: 100%; justify-content: center; }
  .hero-book { flex-direction: column; width: 100%; }
  .hero-book .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .hero-trust-divider { display: none; }
  .wide-list-name { font-size: clamp(1.1rem, 6.5vw, 1.5rem); }
  .wide-list-item { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .brothers-callout-inner { flex-direction: column; justify-content: center; text-align: center; }
  .brothers-callout-phone { width: 100%; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .estimator-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-photo-overlay {
    background: rgba(5,5,4,0.72);
  }
  .hero { background-position: 68% center; overflow: hidden; }
  .hero-headline { font-size: clamp(45px, 9.5vw, 3.8rem); }
  .hero .container { padding-left: 8px; padding-right: 8px; }
  .rotating-word-pill { font-size: 40px; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 45px; margin-bottom: 48px; }
  .hero .container { padding-left: 8px; padding-right: 8px; }
  .rotating-word-pill { font-size: 40px; max-width: 100%; }
  /* .service-cards-grid is already a flex swiper at ≤640px — no grid override needed */
  .heroes-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .sa-city-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-strip { padding: 48px 0; }
  .transform-cta { flex-direction: column; padding: 20px; }
}

/* ============================================================
   PROMO POPUP
   ============================================================ */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 4, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  perspective: 1200px;
}

.promo-overlay.promo-visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid rgba(107, 207, 161, 0.2);
  border-radius: 28px;
  padding: 52px 52px 44px;
  max-width: 560px;
  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;
}

.promo-popup.promo-enter {
  animation: promoIn 0.72s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.promo-popup.promo-exit {
  animation: promoYeet 0.52s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes promoIn {
  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 promoYeet {
  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; }
}

.promo-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;
  flex-shrink: 0;
}
.promo-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
}
.promo-close svg { width: 16px; height: 16px; display: block; }

.promo-mascot {
  margin: 0 auto 16px;
  width: 160px;
  height: 160px;
}
.promo-mascot img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.promo-badge {
  display: inline-block;
  background: rgba(107, 207, 161, 0.14);
  border: 1px solid rgba(107, 207, 161, 0.28);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.promo-discount {
  font-size: clamp(4rem, 13vw, 6.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  text-shadow: 0 0 60px rgba(107, 207, 161, 0.42);
}

.promo-title {
  font-size: clamp(1.3rem, 4.5vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}

.promo-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 auto 30px;
  max-width: 400px;
}

.promo-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
  display: flex;
}

.promo-fine {
  font-size: 0.7rem;
  color: var(--accent-gray);
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 540px) {
  .promo-popup { padding: 44px 24px 32px; border-radius: 22px; }
  .promo-mascot { width: 120px; height: 120px; }
  .promo-mascot img { width: 120px; height: 120px; }
}

/* ============================================================
   BANDIT TRANSFORMATIONS — Before / After Slider
   ============================================================ */
.transform-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.transform-stage {
  position: relative;
}

/* All slides stack in the same grid cell */
.transform-track {
  display: grid;
}

.transform-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.transform-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* ---- BA Compare container ---- */
.ba-compare {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-art {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* After clips from the left — reveals right side as handle moves right */
.ba-after { clip-path: inset(0 0 0 50%); }

/* ---- Labels ---- */
.ba-label {
  position: absolute;
  bottom: 18px;
  z-index: 5;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 100px;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ba-label-before {
  left: 18px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-label-after {
  right: 18px;
  background: var(--green);
  color: #0d1e16;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---- Drag handle ---- */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: none;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.45);
}

.ba-knob {
  position: relative;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(107, 207, 161, 0.4);
  color: #0d1e16;
  transition: transform 0.2s, box-shadow 0.2s;
}

.ba-compare:hover .ba-knob,
.ba-compare.ba-dragging .ba-knob {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(107, 207, 161, 0.55);
}

/* ---- Carousel nav arrows ---- */
.transform-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(43, 42, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.22s, color 0.22s, transform 0.22s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.transform-prev { left: -30px; }
.transform-next { right: -30px; }

.transform-nav:hover {
  background: var(--green);
  color: #0d1e16;
  transform: translateY(-50%) scale(1.1);
}

.transform-nav svg { width: 20px; height: 20px; display: block; }

/* ---- Dots ---- */
.transform-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.transform-dot {
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.transform-dot.active {
  background: var(--green);
  width: 28px;
}

/* ---- Captions ---- */
.transform-captions {
  margin-top: 20px;
  position: relative;
}

.transform-caption {
  text-align: center;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}

.transform-caption.active {
  opacity: 1;
  pointer-events: auto;
  position: static;
}

.transform-caption-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-200);
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  max-width: none;
}

.transform-caption-desc {
  font-size: 0.875rem;
  color: var(--text-400);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CSS art placeholders (swap for real photos later) ---- */
.ba-art-before-garage {
  background:
    radial-gradient(ellipse 55% 45% at 28% 65%, rgba(185, 95, 22, 0.5) 0%, transparent 65%),
    radial-gradient(ellipse 42% 52% at 76% 36%, rgba(145, 70, 12, 0.55) 0%, transparent 62%),
    radial-gradient(ellipse 70% 55% at 54% 85%, rgba(105, 52, 10, 0.4) 0%, transparent 65%),
    linear-gradient(168deg, #1e1007 0%, #301c0d 30%, #402511 60%, #2b1609 100%);
}

.ba-art-before-yard {
  background:
    radial-gradient(ellipse 62% 42% at 34% 58%, rgba(65, 85, 22, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 48% 58% at 72% 36%, rgba(55, 70, 16, 0.5) 0%, transparent 62%),
    radial-gradient(ellipse 80% 52% at 50% 88%, rgba(85, 58, 16, 0.35) 0%, transparent 65%),
    linear-gradient(160deg, #0d1606 0%, #161f09 30%, #1e2c0d 60%, #0d1606 100%);
}

.ba-art-before-basement {
  background:
    radial-gradient(ellipse 62% 42% at 50% 48%, rgba(82, 80, 76, 0.45) 0%, transparent 62%),
    radial-gradient(ellipse 42% 32% at 26% 72%, rgba(72, 70, 66, 0.5) 0%, transparent 52%),
    radial-gradient(ellipse 52% 48% at 80% 34%, rgba(78, 74, 70, 0.4) 0%, transparent 58%),
    linear-gradient(165deg, #111111 0%, #1a1918 35%, #222120 65%, #111111 100%);
}

.ba-art-before-estate {
  background:
    radial-gradient(ellipse 62% 52% at 34% 55%, rgba(155, 95, 32, 0.5) 0%, transparent 62%),
    radial-gradient(ellipse 48% 42% at 76% 36%, rgba(145, 88, 26, 0.45) 0%, transparent 58%),
    radial-gradient(ellipse 72% 48% at 54% 82%, rgba(125, 72, 20, 0.35) 0%, transparent 65%),
    linear-gradient(165deg, #1d1106 0%, #2a1809 30%, #361f0d 60%, #1d1106 100%);
}

.ba-art-after {
  background:
    radial-gradient(ellipse 62% 52% at 50% 24%, rgba(107, 207, 161, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 42% 42% at 82% 76%, rgba(107, 207, 161, 0.07) 0%, transparent 58%),
    linear-gradient(168deg, #0d1f17 0%, #111f18 30%, #16291e 60%, #0d1f17 100%);
}

.ba-art-after-yard {
  background:
    radial-gradient(ellipse 60% 50% at 50% 28%, rgba(107, 207, 161, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(130, 182, 165, 0.1) 0%, transparent 58%),
    linear-gradient(160deg, #0c1e11 0%, #102118 30%, #162c1e 60%, #0c1e11 100%);
}

.ba-art-after-basement {
  background:
    radial-gradient(ellipse 58% 48% at 50% 30%, rgba(150, 155, 155, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 38% at 80% 70%, rgba(107, 207, 161, 0.07) 0%, transparent 55%),
    linear-gradient(165deg, #141616 0%, #191c1b 35%, #1e2220 65%, #141616 100%);
}

.ba-art-after-estate {
  background:
    radial-gradient(ellipse 60% 50% at 50% 26%, rgba(107, 207, 161, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 44% 44% at 78% 78%, rgba(107, 207, 161, 0.07) 0%, transparent 58%),
    linear-gradient(165deg, #0e1e17 0%, #122018 30%, #172a1e 60%, #0e1e17 100%);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .transform-prev { left: 10px; }
  .transform-next { right: 10px; }
  .transform-nav { background: rgba(43, 42, 41, 0.7); }
}

@media (max-width: 600px) {
  .ba-compare { aspect-ratio: 4 / 3; border-radius: 14px; }
  .transform-nav { width: 40px; height: 40px; }
  .transform-nav svg { width: 18px; height: 18px; }
  .ba-label { font-size: 0.62rem; padding: 4px 10px; bottom: 12px; }
  .ba-label-before { left: 12px; }
  .ba-label-after  { right: 12px; }
  .ba-knob { width: 38px; height: 38px; }
}

/* ============================================================
   SERVICE BLOB CURSOR
   ============================================================ */
#svc-blob-wrap {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  will-change: transform;
}
#svc-blob {
  width: 186px;
  height: 186px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45) rotate(-8deg);
  transition: opacity 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: svc-blob-morph 9s ease-in-out infinite;
  will-change: border-radius;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.08);
}
#svc-blob.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
@keyframes svc-blob-morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  12%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  25%  { border-radius: 50% 40% 60% 50% / 30% 50% 70% 50%; }
  37%  { border-radius: 40% 60% 30% 70% / 70% 30% 60% 40%; }
  50%  { border-radius: 60% 30% 50% 40% / 40% 70% 30% 60%; }
  62%  { border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%; }
  75%  { border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%; }
  87%  { border-radius: 40% 30% 70% 50% / 50% 70% 40% 30%; }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
#svc-blob-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
@media (max-width: 900px) { #svc-blob-wrap { display: none; } }


/* ============================================================
   PRICING STRIP
   ============================================================ */
.pricing-strip {
  background: #6bcfa1;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.pricing-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(255,255,255,0.12), transparent),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(43,42,41,0.08), transparent);
  pointer-events: none;
}
.pricing-strip-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.pricing-strip-badge {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(43,42,41,0.12);
  border: 1px solid rgba(43,42,41,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1b1a;
}
.pricing-strip-badge svg { width: 26px; height: 26px; }
.pricing-strip-text {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1c1b1a;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pricing-strip-text strong {
  color: #111110;
  font-weight: 800;
}
.pricing-strip-sub {
  font-size: 1.05rem;
  color: rgba(43,42,41,0.72);
  margin: -8px 0 0;
}
.pricing-strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #1c1b1a;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  color: #6bcfa1;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.22s, transform 0.18s;
  margin-top: 8px;
}
.pricing-strip-cta:hover {
  background: #111110;
  transform: translateY(-1px);
}

/* ============================================================
   TRANSFORMATIONS CTA
   ============================================================ */
.transform-cta {
  margin-top: 40px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(13,32,26,0.6) 0%, rgba(18,34,25,0.4) 100%);
  border: 1px solid rgba(107,207,161,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.transform-cta h3 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 4px;
}
.transform-cta p {
  color: var(--text-300);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================================
   COMMUNITY HEROES
   ============================================================ */
.heroes-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.heroes-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 15% 50%, rgba(107,207,161,0.06), transparent),
    radial-gradient(ellipse 55% 60% at 85% 50%, rgba(107,207,161,0.04), transparent),
    radial-gradient(ellipse 40% 50% at 50% 0%,  rgba(107,207,161,0.05), transparent);
  pointer-events: none;
}
.heroes-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(107,207,161,0.08);
  border: 1px solid rgba(107,207,161,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.heroes-section .section-header p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.heroes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.heroes-card {
  background-color: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 32px 36px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --mx: -9999px; --my: -9999px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.heroes-card:hover {
  border-color: rgba(107,207,161,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
/* Dark overlay with spotlight hole */
.heroes-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 17, 16, 0.65);
  -webkit-mask-image: radial-gradient(circle 130px at var(--mx) var(--my), transparent 0%, black 65%);
          mask-image: radial-gradient(circle 130px at var(--mx) var(--my), transparent 0%, black 65%);
  z-index: 0;
  pointer-events: none;
}
/* Card content above overlay */
.heroes-card > * { position: relative; z-index: 1; }
.heroes-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #fff;
}
.heroes-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}
.heroes-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.heroes-icon-military  { background: rgba(245,168,56,0.15);  color: #f5a838; border: 1px solid rgba(245,168,56,0.3);  }
.heroes-icon-responder { background: rgba(229,82,67,0.14);   color: #e55243; border: 1px solid rgba(229,82,67,0.28);  }
.heroes-icon-teacher   { background: rgba(74,144,226,0.14);  color: #4a90e2; border: 1px solid rgba(74,144,226,0.28); }
.heroes-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
}
.heroes-id-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .heroes-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .heroes-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.sa-section {
  background: url('../assets/service-area-bg.webp') center / cover no-repeat;
  background-color: #0e1a13;
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.sa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 10, 0.68);
  pointer-events: none;
}

/* Header text */
.sa-section .section-label {
  color: var(--orange);
  letter-spacing: 0.12em;
}
.sa-section .section-header {
  margin-bottom: 20px;
}
.sa-section .section-header h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: 20px;
}
.sa-section .section-header p {
  color: rgba(255,255,255,0.62);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* 4-column city grid */
.sa-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 752px;
  margin: 0 auto 36px;
}
.sa-city-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  background: rgba(12, 28, 20, 0.62);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sa-city-card svg {
  color: var(--orange);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  min-width: 14px;
}
.sa-city-card:hover {
  background: rgba(107,207,161,0.16);
  border-color: rgba(107,207,161,0.38);
  color: #ffffff;
}

/* CTA + nudge */
.sa-section .text-center { margin-bottom: 0; }
.sa-not-listed {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  margin-top: 18px;
  margin-bottom: 0;
  max-width: none;
  width: 100%;
}

@media (max-width: 820px) {
  .sa-city-grid { grid-template-columns: repeat(3, 1fr); max-width: 560px; }
}
@media (max-width: 560px) {
  .sa-city-grid { grid-template-columns: repeat(2, 1fr); max-width: 360px; }
}

/* ============================================================
   INDUSTRIES WE SERVE
   ============================================================ */
.industries-section {
  background: var(--bg-surface);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
  margin-bottom: 52px;
}

.industry-card {
  background-color: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  isolation: isolate;
  --mx: -9999px; --my: -9999px;
}

/* Dark overlay with spotlight hole at cursor */
.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, 0.72);
  -webkit-mask-image: radial-gradient(circle 120px at var(--mx) var(--my), transparent 0%, black 65%);
          mask-image: radial-gradient(circle 120px at var(--mx) var(--my), transparent 0%, black 65%);
  z-index: 0;
  pointer-events: none;
}

.industry-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}

.industry-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(107,207,161,0.1);
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-subtle);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.industry-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-100);
  margin: 0 0 10px;
  max-width: none;
}

.industry-card p {
  font-size: 0.875rem;
  color: var(--text-300);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.industries-section .section-header p {
  margin-top: 24px;
}

.industries-footer {
  text-align: center;
  padding-top: 8px;
}

.industries-footer-note {
  color: var(--text-400);
  font-size: 0.95rem;
  margin-bottom: 0;
  max-width: none;
}

.industries-footer .btn {
  margin-top: 24px;
}

@media (max-width: 960px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
  .industries-section { position: relative; }
  .industries-section::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 48px;
    background: linear-gradient(to right, transparent, var(--bg-surface));
    pointer-events: none;
    z-index: 2;
  }
  .industries-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: 14px;
    margin-left: calc(-1 * clamp(16px, 5vw, 80px));
    margin-right: calc(-1 * clamp(16px, 5vw, 80px));
    padding-left: clamp(16px, 5vw, 80px);
    padding-right: clamp(16px, 5vw, 80px);
    padding-bottom: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .industries-grid::-webkit-scrollbar { display: none; }
  .industry-card {
    flex: 0 0 75%;
    max-width: 280px;
    scroll-snap-align: center;
    height: 260px;
  }
}

/* ---- Book Now button ---- */
.hero-book {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 34px;
}

/* ============================================================
   BANDIT PRICE ESTIMATOR
   ============================================================ */
.estimator-section { background: var(--bg-deep); }

.estimator-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: stretch;
  max-width: 1020px;
  margin: 0 auto;
}

/* --- Chat box shell --- */
.chat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.45),
    0 4px 16px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
}

/* --- Header --- */
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.chat-header-left { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange-subtle);
  border: 2px solid var(--border-orange);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.chat-avatar img { width: 36px; height: 36px; object-fit: contain; }
.chat-header-name { font-weight: 700; font-size: 0.95rem; color: var(--text-100); line-height: 1; }
.chat-header-status { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--text-400); margin-top: 4px; }
.chat-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
  flex-shrink: 0;
  animation: chatStatusPulse 2s ease-in-out infinite;
}
@keyframes chatStatusPulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }
  50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
.chat-disclaimer { font-size: 0.71rem; color: var(--text-600); text-align: right; max-width: 170px; line-height: 1.4; }

/* --- Messages area --- */
.chat-messages {
  padding: 20px;
  flex: 1;
  min-height: 0;
  max-height: 520px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* --- Message row --- */
.chat-msg { display: flex; gap: 10px; align-items: flex-end; max-width: 88%; }
.chat-msg-binny { align-self: flex-start; }
.chat-msg-user  { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-subtle); border: 1.5px solid var(--border-orange);
  overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.chat-msg-avatar img { width: 26px; height: 26px; object-fit: contain; }
.chat-msg-body { display: flex; flex-direction: column; gap: 3px; }
.chat-msg-user .chat-msg-body { align-items: flex-end; }

/* --- Bubbles --- */
.chat-bubble {
  padding: 11px 15px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-100);
}
.chat-msg-binny .chat-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-msg-user .chat-bubble {
  background: var(--orange);
  color: #0d0d0d;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}
.chat-msg-time { font-size: 0.7rem; color: var(--text-600); padding: 0 4px; }
.chat-msg-cta  { padding-left: 42px; margin-top: 2px; }

/* --- Typing indicator --- */
.chat-typing { display: flex; gap: 10px; align-items: flex-end; align-self: flex-start; }
.chat-typing-dots {
  padding: 13px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px; border-bottom-left-radius: 4px;
  display: flex; gap: 5px; align-items: center;
}
.chat-typing-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-500);
  animation: chatTypingDot 1.2s ease-in-out infinite;
}
.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatTypingDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* --- Quick reply chips --- */
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 40px; margin-top: -4px; }
.quick-reply-chip {
  padding: 7px 13px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-orange);
  border-radius: 20px;
  font-size: 0.81rem; font-weight: 600;
  color: var(--orange);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.12s;
}
.quick-reply-chip:hover { background: var(--orange-subtle); transform: translateY(-1px); }
.quick-reply-chip:active { transform: translateY(0); }

/* --- Photo preview bar --- */
.chat-photo-preview {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  font-size: 0.81rem; color: var(--text-300);
}
.chat-photo-preview img { width: 38px; height: 38px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }
.chat-photo-remove { margin-left: auto; cursor: pointer; color: var(--text-500); font-size: 0.78rem; transition: color 0.18s; }
.chat-photo-remove:hover { color: #ef4444; }

/* --- Input bar --- */
.chat-input-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.chat-photo-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 13px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-300);
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  flex-shrink: 0; white-space: nowrap;
  user-select: none;
}
.chat-photo-btn svg { width: 15px; height: 15px; }
.chat-photo-btn:hover { border-color: var(--border-orange); color: var(--orange); background: var(--orange-subtle); }
.chat-text-input {
  flex: 1;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 0.88rem;
  color: var(--text-100);
  font-family: inherit;
  transition: border-color 0.18s;
  outline: none;
  min-width: 0;
}
.chat-text-input:focus { border-color: var(--border-orange); }
.chat-text-input::placeholder { color: var(--text-600); }
.chat-send-btn {
  width: 40px; height: 40px;
  background: var(--orange);
  border: none; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: transform 0.15s, opacity 0.15s;
  color: #0d0d0d;
}
.chat-send-btn svg { width: 17px; height: 17px; }
.chat-send-btn:hover  { transform: scale(1.08); }
.chat-send-btn:active { transform: scale(0.94); }
.chat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* --- Side info cards --- */
.estimator-info { display: flex; flex-direction: column; gap: 14px; }
.estimator-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.estimator-info-card h5 { font-size: 0.9rem; color: var(--text-100); margin-bottom: 6px; }
.estimator-info-card p  { font-size: 0.81rem; color: var(--text-400); margin: 0; line-height: 1.6; }
.ei-icon {
  width: 32px; height: 32px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px; color: var(--text-400);
}
.ei-icon svg { width: 15px; height: 15px; }
.ei-green  { background: rgba(34,197,94,0.08);  border-color: rgba(34,197,94,0.2);  color: #22c55e; }
.ei-orange { background: var(--orange-subtle); border-color: var(--border-orange); color: var(--orange); }

/* --- Message enter animation --- */
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg { animation: chatMsgIn 0.28s ease; }

/* --- Responsive --- */
@media(max-width:900px) {
  .estimator-wrap { grid-template-columns: 1fr; }
  .chat-header-right { display: none; }
  .estimator-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media(max-width:600px) {
  .estimator-info { grid-template-columns: 1fr; }
  .chat-quick-replies { padding-left: 0; }
  .chat-disclaimer { display: none; }
}

/* ============================================================
   ESTIMATOR BOOK MODAL
   ============================================================ */
.est-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.est-modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.est-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s var(--ease-spring), opacity 0.25s ease;
}
.est-modal-overlay.open .est-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.est-modal-header {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: sticky; top: 0; z-index: 1;
}
.est-modal-binny { width: 56px; flex-shrink: 0; }
.est-modal-header-text { flex: 1; min-width: 0; }
.est-modal-header-text h3 { color: #0a0a0a; margin: 0 0 3px; font-size: 1.2rem; }
.est-modal-header-text p  { color: rgba(0,0,0,0.6); margin: 0; font-size: 0.83rem; }
.est-modal-close {
  margin-left: 0; flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(0,0,0,0.12); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(0,0,0,0.65);
  transition: background 0.18s, color 0.18s;
}
.est-modal-close:hover { background: rgba(0,0,0,0.22); color: #000; }
.est-modal-body {
  padding: 28px;
  display: flex; flex-direction: column; gap: 0;
}
.est-modal-body .form-group { margin-bottom: 16px; }
.est-modal-body .form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.est-estimate-input {
  border-color: var(--border-orange) !important;
  background: var(--orange-subtle) !important;
  color: var(--orange) !important;
  font-weight: 600;
}
.est-modal-success-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px; padding: 24px 0 8px;
}
.est-success-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(34,197,94,0.1); border: 2px solid rgba(34,197,94,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #22c55e;
}
.est-modal-success-inner h4 { color: #4ade80; margin: 0; }
.est-modal-success-inner p  { color: var(--text-300); max-width: 300px; margin: 0; }
@media(max-width:520px) {
  .est-modal-body { padding: 20px; }
  .est-modal-body .form-row { grid-template-columns: 1fr; gap: 0; }
  .est-modal-header { padding: 18px 20px; }
  .est-modal-binny { width: 44px; }
}
