/* ============================================================
   MAGNOLIA H2O — Premium Design System v3.0
   Inspired by Framer, Linear, Vercel — dark-first, motion-rich
   ============================================================

   TABLE OF CONTENTS
   1.  Design Tokens
   2.  Reset & Base
   3.  Custom Cursor
   4.  Scrollbar
   5.  Typography & Text Effects
   6.  Layout Utilities
   7.  Buttons (Magnetic-ready)
   8.  Badges
   9.  Navigation
   10. Mobile Menu
   11. Hero (Centered, Editorial)
   12. Marquee Strip
   13. Trust / Stats Bar
   14. Services (Dark cards, Spotlight, Tilt)
   15. Before / After Slider
   16. Why Choose Us (Light contrast section)
   17. Testimonials (Dark cards)
   18. FAQ Accordion
   19. Contact / Quote Form (Light)
   20. CTA Band
   21. Footer
   22. Scroll Reveal Animations
   23. Responsive
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* ── Dark palette (primary) ── */
  --bg:        #060D1A;   /* near-black base */
  --bg-2:      #0B1729;   /* dark surfaces   */
  --bg-card:   #0E1C30;   /* card backgrounds */
  --bg-card-h: #111E33;   /* card hover bg    */

  /* ── Light palette (contrast sections) ── */
  --bg-light:  #F2F6FF;
  --bg-white:  #FFFFFF;

  /* ── Brand ── */
  --cyan:      #00CAEE;
  --cyan-d:    #009DC0;
  --cyan-glow: rgba(0, 202, 238, 0.18);
  --blue:      #1156B3;
  --blue-d:    #0C3D8A;
  --blue-glow: rgba(17, 86, 179, 0.22);

  /* ── Text on dark ── */
  --t-bright:  #FFFFFF;
  --t-mid:     rgba(255, 255, 255, 0.68);
  --t-dim:     rgba(255, 255, 255, 0.40);

  /* ── Text on light ── */
  --t-dark:    #0B1829;
  --t-muted:   #526880;

  /* ── Borders ── */
  --bd-dark:   rgba(255, 255, 255, 0.07);
  --bd-mid:    rgba(255, 255, 255, 0.13);
  --bd-light:  #D5E0F0;
  --bd-hover:  rgba(0, 202, 238, 0.28);

  /* ── Spacing (8px grid) ── */
  --s1: 4px;  --s2: 8px;   --s3: 12px;  --s4: 16px;
  --s5: 20px; --s6: 24px;  --s8: 32px;  --s10: 40px;
  --s12: 48px; --s16: 64px; --s20: 80px; --s24: 96px;
  --s32: 128px;

  /* ── Typography ── */
  --font-d: 'Plus Jakarta Sans', sans-serif;
  --font-b: 'Inter', sans-serif;

  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.25rem;
  --t-2xl:  1.5rem;
  --t-3xl:  1.875rem;
  --t-4xl:  2.25rem;
  --t-5xl:  3rem;
  --t-6xl:  3.75rem;
  --t-7xl:  4.5rem;
  --t-8xl:  6rem;

  /* ── Radius ── */
  --r-sm:   6px;  --r:    12px;
  --r-lg:   20px; --r-xl: 28px;
  --r-2xl:  40px; --r-f:  9999px;

  /* ── Shadows ── */
  --sh-sm:   0 2px 12px rgba(0, 0, 0, 0.25);
  --sh:      0 6px 24px rgba(0, 0, 0, 0.30);
  --sh-md:   0 12px 40px rgba(0, 0, 0, 0.38);
  --sh-lg:   0 24px 64px rgba(0, 0, 0, 0.48);
  --sh-xl:   0 40px 80px rgba(0, 0, 0, 0.55);
  --sh-cyan: 0 8px 32px rgba(0, 202, 238, 0.30);
  --sh-blue: 0 8px 32px rgba(17, 86, 179, 0.35);

  /* ── Motion ── */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --spring:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   160ms var(--ease);
  --t:        300ms var(--ease);
  --t-slow:   500ms var(--ease);

  /* ── Layout ── */
  --container: 1160px;
  --nav-h:     72px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-b);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--t-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ============================================================
   3. CUSTOM CURSOR (hidden on touch devices)
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  top: -100px;
  left: -100px;
  will-change: transform, top, left;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  transition: width var(--t-fast), height var(--t-fast), background var(--t-fast);
  z-index: 10001;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 202, 238, 0.50);
  transition: width 0.35s var(--spring), height 0.35s var(--spring),
              border-color var(--t), background var(--t);
}

/* Expand ring on interactive elements */
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring,
body:has(.tilt:hover) .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(0, 202, 238, 0.80);
  background: rgba(0, 202, 238, 0.04);
}

/* Hide on touch screens */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}


/* ============================================================
   4. SCROLLBAR (Chrome/Edge/Safari)
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0,202,238,0.40); }


/* ============================================================
   5. TYPOGRAPHY & TEXT EFFECTS
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-d);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.028em;
}

h1 { font-size: clamp(2.8rem, 6vw, var(--t-7xl)); }
h2 { font-size: clamp(2rem, 3.8vw, var(--t-5xl)); }
h3 { font-size: var(--t-2xl); font-weight: 700; }
h4 { font-size: var(--t-xl);  font-weight: 700; }

/* Gradient text */
.grad {
  background: linear-gradient(115deg, var(--cyan) 0%, #60C8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s5);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Section header centered */
.sec-head {
  text-align: center;
  margin-bottom: var(--s16);
}

.sec-head h2 {
  margin-bottom: var(--s4);
}

.sec-head p {
  max-width: 520px;
  margin: 0 auto;
  font-size: var(--t-lg);
  line-height: 1.72;
}

/* Word-reveal animation containers (set by JS) */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.06em;
  vertical-align: bottom;
}

.word-inner {
  display: inline-block;
  transform: translateY(108%);
  animation: wordUp 0.80s var(--spring) forwards;
}

@keyframes wordUp {
  to { transform: translateY(0); }
}

/* Before JS runs — fallback */
.hero-headline:not(.js-split) .word-wrap,
.hero-headline:not(.js-split) .word-inner {
  display: contents;
  transform: none;
  animation: none;
}


/* ============================================================
   6. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}

.section       { padding: var(--s32) 0; }
.section--sm   { padding: var(--s20) 0; }

/* Background utility classes */
.bg-base   { background: var(--bg); }
.bg-2      { background: var(--bg-2); }
.bg-light  { background: var(--bg-light); }
.bg-white  { background: var(--bg-white); }

/* Text color in dark sections */
.bg-base  h2, .bg-base  h3, .bg-base  h4,
.bg-2     h2, .bg-2     h3, .bg-2     h4 { color: var(--t-bright); }
.bg-base  p,  .bg-2     p               { color: var(--t-mid); }
.bg-base .eyebrow, .bg-2 .eyebrow       { color: var(--cyan); }
.bg-base .sec-head p, .bg-2 .sec-head p,
.ba-section .sec-head p, .services-wrap .sec-head p { color: var(--t-bright); }

.services-wrap .sec-head h2,
.ba-section .sec-head h2 { color: var(--t-bright); }

/* Text color in light sections */
.bg-light h2, .bg-light h3, .bg-light h4,
.bg-white h2, .bg-white h3, .bg-white h4 { color: var(--t-dark); }
.bg-light p,  .bg-white p               { color: var(--t-muted); }
.bg-light .eyebrow, .bg-white .eyebrow  { color: var(--cyan-d); }


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: var(--r-f);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: transform 0.35s var(--spring), box-shadow var(--t), background var(--t),
              border-color var(--t);
  will-change: transform;
}

/* Primary gradient */
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1A7BC8 55%, var(--cyan) 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 42px rgba(17,86,179,0.45);
}

/* Ghost / outlined for dark bg */
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.40);
  color: #fff;
}

/* White (for dark CTA sections) */
.btn-white {
  background: #fff;
  color: var(--t-dark);
  border-color: #fff;
  box-shadow: var(--sh-md);
}
.btn-white:hover { box-shadow: var(--sh-lg); }

/* Size modifier */
.btn-lg { padding: 17px 34px; font-size: var(--t-base); }


/* ============================================================
   8. BADGES
   ============================================================ */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 8px 18px;
  border-radius: var(--r-f);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.80);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  animation: dotPulse 2.2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}


/* ============================================================
   9. NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t), box-shadow var(--t), border-bottom-color var(--t);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--bd-dark);
  box-shadow: 0 2px 32px rgba(0,0,0,0.40);
}

.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark { width: 36px; height: 42px; flex-shrink: 0; }

.logo-name {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--t-bright);
  line-height: 1;
}

.logo-tag {
  font-family: var(--font-d);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.nav-link {
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--t-mid);
  padding: 8px 13px;
  border-radius: var(--r);
  transition: color var(--t-fast), background var(--t-fast);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--t-bright); background: rgba(255,255,255,0.07); }
.nav-link.active { color: var(--cyan); }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--t-mid);
  transition: color var(--t-fast);
}
.nav-tel:hover { color: var(--cyan); }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--t-fast);
}
.ham:hover { background: rgba(255,255,255,0.08); }

.ham-bar {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.80);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}

.ham.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   10. MOBILE MENU
   ============================================================ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  pointer-events: none;
}

.mob-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 26, 0.75);
  opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(6px);
}

.mob-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 90vw);
  background: #0B1729;
  border-left: 1px solid var(--bd-dark);
  padding: calc(var(--nav-h) + var(--s8)) var(--s8) var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  transform: translateX(100%);
  transition: transform 0.38s var(--spring);
  overflow-y: auto;
}

.mob-menu.open { pointer-events: all; }
.mob-menu.open .mob-overlay { opacity: 1; }
.mob-menu.open .mob-drawer  { transform: translateX(0); }

.mob-link {
  display: block;
  font-family: var(--font-d);
  font-size: var(--t-xl);
  font-weight: 700;
  color: var(--t-mid);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--bd-dark);
  letter-spacing: -0.01em;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mob-link:hover { color: var(--cyan); padding-left: 6px; }

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s6);
}
.mob-ctas .btn { justify-content: center; }


/* ============================================================
   11. HERO — Centered, editorial, word-reveal animation
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--bg);
}

/* Radial glow behind headline */
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background: radial-gradient(
    ellipse at center,
    rgba(17, 86, 179, 0.16) 0%,
    rgba(0, 202, 238, 0.06) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* Dot-grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* Decorative light rays */
.hero-ray {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-ray-1 {
  width: 1px;
  height: 500px;
  background: linear-gradient(to bottom, transparent, rgba(0,202,238,0.15), transparent);
  left: 20%;
  top: 10%;
  transform: rotate(-25deg);
  transform-origin: top center;
}
.hero-ray-2 {
  width: 1px;
  height: 400px;
  background: linear-gradient(to bottom, transparent, rgba(17,86,179,0.12), transparent);
  right: 22%;
  top: 20%;
  transform: rotate(20deg);
  transform-origin: top center;
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: var(--s24) var(--s6) var(--s16);
  width: 100%;
}

.hero-headline {
  font-size: clamp(3.2rem, 7.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: var(--t-bright);
  margin: var(--s6) 0 var(--s8);
}

.hero-sub {
  max-width: 500px;
  margin: 0 auto var(--s10);
  font-size: var(--t-xl);
  line-height: 1.65;
  color: var(--t-mid);
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s12);
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--t-dim);
}

.trust-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1px solid rgba(0,202,238,0.35);
  background: rgba(0,202,238,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  cursor: pointer;
  animation: cueBounce 2.8s ease-in-out infinite;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.25));
}

.scroll-cue-text {
  font-family: var(--font-d);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t-dim);
}

@keyframes cueBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   12. MARQUEE STRIP
   ============================================================ */
.marquee-wrap {
  border-top: 1px solid var(--bd-dark);
  border-bottom: 1px solid var(--bd-dark);
  background: var(--bg);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s10);
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.m-item {
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-dim);
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--t-fast);
  user-select: none;
  text-decoration: none;
}

.m-item:hover { color: var(--cyan); }

.m-sep {
  color: var(--cyan);
  font-size: 0.45rem;
  flex-shrink: 0;
  opacity: 0.7;
}


/* ============================================================
   13. TRUST / STATS BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--bd-dark);
  border-bottom: 1px solid var(--bd-dark);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-stat {
  padding: var(--s10) var(--s8);
  text-align: center;
  border-right: 1px solid var(--bd-dark);
  transition: background var(--t-fast);
  cursor: default;
}
.trust-stat:last-child { border-right: none; }
.trust-stat:hover { background: rgba(255,255,255,0.02); }

.trust-n {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 4vw, var(--t-5xl));
  font-weight: 800;
  color: var(--t-bright);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--s2);
}

.trust-n em {
  font-style: normal;
  color: var(--cyan);
}

.trust-l {
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--t-dim);
  letter-spacing: 0.02em;
}


/* ============================================================
   14. SERVICES — Dark cards, spotlight, tilt
   ============================================================ */
.services-wrap { background: var(--bg); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s5);
}

.svc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  max-width: 760px;
  margin: 0 auto;
}

/* Service card — dark, with spotlight + tilt */
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color var(--t), box-shadow var(--t);
  transform-style: preserve-3d;
  will-change: transform;

  /* CSS vars for spotlight, set by JS */
  --mx: -200px;
  --my: -200px;
}

/* Spotlight: cursor glow inside card */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--mx) var(--my),
    rgba(0, 202, 238, 0.09),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 1;
}

/* Top accent line on hover */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--spring);
  z-index: 2;
}

.svc-card:hover {
  border-color: var(--bd-hover);
  box-shadow: 0 0 0 1px rgba(0,202,238,0.08), var(--sh-lg);
}

.svc-card:hover::before { opacity: 1; }
.svc-card:hover::after  { transform: scaleX(1); }

/* All card content above overlays */
.svc-card > * { position: relative; z-index: 3; }

.svc-num {
  position: absolute;
  top: var(--s5);
  right: var(--s6);
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.12);
  z-index: 3;
  transition: color var(--t);
}
.svc-card:hover .svc-num { color: rgba(0,202,238,0.50); }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--bd-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: var(--s5);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  box-shadow: var(--sh-cyan);
  color: #fff;
}

.svc-card h3 {
  color: var(--t-bright);
  font-size: var(--t-xl);
  margin-bottom: var(--s3);
}

.svc-card p {
  color: var(--t-mid);
  font-size: var(--t-base);
  line-height: 1.65;
  margin-bottom: var(--s6);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--cyan-d);
  letter-spacing: 0.02em;
  transition: gap var(--t-fast), color var(--t-fast);
}
.svc-link:hover { color: var(--cyan); gap: var(--s3); }


/* ============================================================
   15. BEFORE / AFTER SLIDER
   ============================================================ */
.ba-section { background: #030810; }

.ba-wrap { max-width: 920px; margin: 0 auto; }

.ba-slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.ba-pane { position: absolute; inset: 0; }

/* Before — stained surface */
.ba-before {
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 40% at 25% 55%, rgba(90,50,15,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 72% 30%, rgba(60,38,10,0.42) 0%, transparent 50%),
    linear-gradient(145deg, #362116 0%, #4A2E18 28%, #362618 52%, #45341E 75%, #2C1C0E 100%);
}
.ba-before::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px,
    transparent 1px, transparent 9px
  );
}

/* After — clean surface */
.ba-after {
  clip-path: inset(0 0 0 50%);
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 50% at 60% 38%, rgba(195,235,255,0.35) 0%, transparent 55%),
    linear-gradient(145deg, #C5E3F5 0%, #DEF1FF 38%, #C8E8F8 65%, #EBF8FF 100%);
}
.ba-after::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, rgba(255,255,255,0.09) 0px, rgba(255,255,255,0.09) 1px,
    transparent 1px, transparent 22px
  );
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: var(--s5);
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.52);
  padding: 5px 14px;
  border-radius: var(--r-f);
  backdrop-filter: blur(8px);
  z-index: 8;
}
.ba-before .ba-label { left: var(--s5); }
.ba-after  .ba-label { right: var(--s5); }

/* Center content */
.ba-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  z-index: 4;
  pointer-events: none;
}
.ba-before .ba-center { color: rgba(220,155,70,0.30); }
.ba-after  .ba-center { color: rgba(40,120,200,0.30); }

.ba-center-icon { font-size: 3.5rem; }
.ba-center-text {
  font-family: var(--font-d);
  font-size: var(--t-base);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.90);
  z-index: 10;
  transform: translateX(-50%);
  cursor: col-resize;
}

.ba-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.ba-handle:active .ba-knob {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 6px 28px rgba(0,0,0,0.50), 0 0 0 4px rgba(0,202,238,0.20);
}

.ba-hint {
  text-align: center;
  margin-top: var(--s5);
  color: var(--t-dim);
  font-size: var(--t-sm);
  font-style: italic;
}


/* ============================================================
   16. WHY CHOOSE US — Light contrast break
   ============================================================ */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s20);
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,24,41,0.12);
  border-color: var(--cyan-d);
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--sh-blue);
}

.why-card h4 { margin-bottom: var(--s2); color: var(--t-dark); }
.why-card p  { font-size: var(--t-base); color: var(--t-muted); }

/* Visual side */
.why-visual {
  background: linear-gradient(155deg, var(--bg-2) 0%, var(--bg) 100%);
  border-radius: var(--r-2xl);
  padding: var(--s10);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bd-dark);
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 20%, rgba(0,202,238,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(17,86,179,0.15) 0%, transparent 60%);
}

.why-bg-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -65%);
  font-size: 10rem;
  opacity: 0.06;
  user-select: none;
  pointer-events: none;
}

.why-stat-box {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: var(--s6);
  backdrop-filter: blur(12px);
}

.why-stat-n {
  font-family: var(--font-d);
  font-size: var(--t-4xl);
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.why-stat-l {
  color: var(--t-mid);
  font-size: var(--t-sm);
  margin-top: var(--s1);
  font-family: var(--font-d);
}

/* Floating badge */
.why-float {
  position: absolute;
  top: var(--s8);
  right: calc(-1 * var(--s4));
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  box-shadow: var(--sh-lg);
  text-align: center;
  z-index: 10;
  min-width: 96px;
}

.why-float-n {
  font-family: var(--font-d);
  font-size: var(--t-2xl);
  font-weight: 800;
  color: var(--t-dark);
  line-height: 1;
}

.why-float-l {
  font-size: var(--t-xs);
  color: var(--t-muted);
  font-family: var(--font-d);
  font-weight: 600;
  margin-top: 2px;
}


/* ============================================================
   17. TESTIMONIALS — Dark cards
   ============================================================ */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.rev-card {
  background: var(--bg-card);
  border: 1px solid var(--bd-dark);
  border-radius: var(--r-xl);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.rev-card::before {
  content: '';
  position: absolute;
  left: 0; top: var(--s6); bottom: var(--s6);
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  border-radius: 0 2px 2px 0;
}

.rev-card:hover {
  transform: translateY(-6px);
  border-color: var(--bd-mid);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.rev-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: var(--s4);
}

.rev-quote {
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--t-mid);
  font-style: italic;
  flex: 1;
  margin-bottom: var(--s6);
}

.rev-quote::before {
  content: '\201C';
  font-family: var(--font-d);
  font-size: 2.8rem;
  color: rgba(0,202,238,0.15);
  line-height: 0;
  position: relative;
  top: 14px;
  left: -2px;
  margin-right: -4px;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s5);
  border-top: 1px solid var(--bd-dark);
}

.rev-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: var(--t-sm);
  color: #fff;
  flex-shrink: 0;
}

.rev-name {
  display: block;
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--t-bright);
}

.rev-loc {
  font-size: var(--t-xs);
  color: var(--t-dim);
}


/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(17,86,179,0.10);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  font-family: var(--font-d);
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--t-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
  background: none;
  border: none;
}
.faq-item.open .faq-btn { color: var(--blue); }

.faq-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--t-muted);
  transition: background var(--t), transform var(--t), color var(--t);
}
.faq-item.open .faq-ico {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.40s var(--spring);
}

.faq-text {
  padding: 0 var(--s6) var(--s5);
  border-top: 1px solid var(--bg-light);
  padding-top: var(--s4);
  color: var(--t-muted);
  font-size: var(--t-base);
  line-height: 1.72;
}


/* ============================================================
   19. CONTACT / QUOTE FORM — Light section
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s16);
  align-items: start;
}

/* Info side */
.contact-info h2   { margin-bottom: var(--s4); }
.contact-info > p  { margin-bottom: var(--s8); }

.info-row {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  padding-bottom: var(--s5);
  margin-bottom: var(--s5);
  border-bottom: 1px solid var(--bd-light);
}
.info-row:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.info-icon {
  width: 46px; height: 46px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--sh-blue);
}

.info-txt strong {
  display: block;
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--t-dark);
  margin-bottom: 3px;
}

.info-txt a, .info-txt span {
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--blue);
}
.info-txt a:hover { color: var(--cyan-d); }

/* Promise list */
.promise-box {
  background: var(--bg-white);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-lg);
  padding: var(--s6);
  margin-top: var(--s6);
}
.promise-box p {
  font-family: var(--font-d);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--t-dark);
  margin-bottom: var(--s4);
}
.promise-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-sm);
  color: var(--t-muted);
  margin-bottom: var(--s3);
}
.promise-item:last-child { margin-bottom: 0; }

/* Form card */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--bd-light);
  border-radius: var(--r-2xl);
  padding: var(--s10);
  box-shadow: 0 20px 60px rgba(11,24,41,0.10);
}

.form-card h3  { color: var(--t-dark); margin-bottom: var(--s2); }
.form-card > p { font-size: var(--t-base); color: var(--t-muted); margin-bottom: var(--s8); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.field { margin-bottom: var(--s5); }

.field label {
  display: block;
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t-dark);
  margin-bottom: var(--s2);
  opacity: 0.70;
}
.field label .req { color: #E53E3E; margin-left: 2px; opacity: 1; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--bd-light);
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: var(--t-base);
  color: var(--t-dark);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(17,86,179,0.10);
}
.field input::placeholder,
.field textarea::placeholder { color: #A0B5CC; }
.field textarea { resize: vertical; min-height: 108px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A7494' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-submit { width: 100%; margin-top: var(--s2); }

.form-note {
  text-align: center;
  font-size: var(--t-xs);
  color: #A0B5CC;
  margin-top: var(--s4);
  font-family: var(--font-d);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s12) var(--s8);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3.5rem; margin-bottom: var(--s4); }
.form-success h3   { color: var(--t-dark); margin-bottom: var(--s3); }
.form-success p    { font-size: var(--t-base); }


/* ============================================================
   20. CTA BAND
   ============================================================ */
.cta-band {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 80% 50%, rgba(0,202,238,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(17,86,179,0.12) 0%, transparent 55%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.cta-inner h2 { color: var(--t-bright); margin-bottom: var(--s4); }
.cta-inner p  { color: var(--t-mid); font-size: var(--t-xl); margin-bottom: var(--s10); }

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4);
}


/* ============================================================
   21. FOOTER
   ============================================================ */
.site-footer {
  background: #030810;
  padding: var(--s20) 0 0;
  border-top: 1px solid var(--bd-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s16);
  border-bottom: 1px solid var(--bd-dark);
}

.footer-brand p {
  color: var(--t-dim);
  font-size: var(--t-sm);
  line-height: 1.7;
  margin: var(--s5) 0 var(--s5);
  max-width: 270px;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-d);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--cyan);
  transition: color var(--t-fast);
}
.footer-tel:hover { color: #fff; }

.footer-col-h {
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: var(--s5);
}

.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a {
  font-size: var(--t-sm);
  color: var(--t-dim);
  font-weight: 500;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s6) 0;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.22);
  font-family: var(--font-d);
}

/* Mobile sticky bar */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(11,23,41,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--bd-dark);
  padding: var(--s3) var(--s4);
  gap: var(--s3);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.40);
}
.mob-bar .btn { flex: 1; justify-content: center; padding: 13px 16px; }


/* ============================================================
   22. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }


/* ============================================================
   23. RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
  .footer-brand { grid-column: span 2; }
  .why-layout { gap: var(--s12); }
}

@media (max-width: 900px) {
  .section { padding: var(--s20) 0; }

  .trust-inner       { grid-template-columns: repeat(2, 1fr); }
  .trust-stat:nth-child(odd)  { border-right: 1px solid var(--bd-dark); }
  .trust-stat:nth-child(1), .trust-stat:nth-child(2) { border-bottom: 1px solid var(--bd-dark); }
  .trust-stat        { border-right: none; }
  .trust-stat:nth-child(2) { border-right: 1px solid var(--bd-dark); }

  .svc-grid          { grid-template-columns: repeat(2, 1fr); }
  .svc-grid-2        { grid-template-columns: 1fr; max-width: 100%; }
  .rev-grid          { grid-template-columns: 1fr; }
  .why-layout        { grid-template-columns: 1fr; }
  .why-float         { display: none; }
  .contact-wrap      { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .footer-bottom     { flex-direction: column; gap: var(--s2); text-align: center; }
}

@media (max-width: 640px) {
  :root { --nav-h: 62px; }

  .section { padding: var(--s16) 0; }

  .container { padding: 0 var(--s4); }

  .nav-links, .nav-tel, .nav-right .btn { display: none; }
  .ham { display: flex; }

  .mob-bar { display: flex; }
  body { padding-bottom: 70px; }

  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .hero-trust { gap: var(--s4); }

  .trust-inner { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: var(--s6); }

  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .why-grid { grid-template-columns: 1fr; }
  .ba-slider { aspect-ratio: 4/3; }
  .ba-pair { grid-template-columns: 1fr; }
}


/* ============================================================
   ADDITIONS — Real photos, dual sliders, team photo
   ============================================================ */

/* Two-column before/after layout */
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s5);
}

.ba-title {
  font-family: var(--font-d);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-dim);
  text-align: center;
  margin-bottom: var(--s4);
}

/* Real-photo sliders: remove CSS texture overlays */
.ba-real .ba-before::after,
.ba-real .ba-after::after { display: none; }

/* Override gradient backgrounds when using real photos */
.ba-real .ba-before,
.ba-real .ba-after {
  background-size: cover;
  background-position: center;
}

/* Slim down center overlay for photo sliders */
.ba-real .ba-center { display: none; }

/* Team photo inside why-visual card */
.why-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  border-radius: inherit;
  z-index: 0;
  opacity: 0.45;
}
