/* ═══════════════════════════════════════════════════════════════════
   RAWAAT MOBILE — style.css  (v2 · cinematic scroll-film edition)
   GSAP ScrollTrigger + Lenis · Poppins / Inter
   #0F172A · #2563EB · #38BDF8 · dark film #020617

   01 Tokens & base           06 Section chrome + reveals
   02 Preloader / progress    07 Cards (services, why, expertise)
   03 Navigation              08 Process / marquee / testimonials
   04 SCROLL FILM (pinned)    09 FAQ / contact / footer
   05 Buttons                 10 Floating actions
   ═══════════════════════════════════════════════════════════════════ */

/* ── 01 · Tokens & base ─────────────────────────────────────────── */
:root {
  --primary:   #0F172A;
  --secondary: #2563EB;
  --accent:    #38BDF8;
  --success:   #22C55E;
  --bg:        #FFFFFF;
  --bg-soft:   #F8FAFC;
  --bg-dark:   #020617;
  --ink:       #0F172A;
  --ink-dim:   #55607A;
  --line:      rgba(15, 23, 42, 0.08);
  --card:      #FFFFFF;
  --glass:     rgba(255, 255, 255, 0.72);
  --shadow-sm: 0 1px 2px rgba(2,6,23,.05), 0 4px 12px rgba(2,6,23,.05);
  --shadow-lg: 0 12px 40px -8px rgba(2,6,23,.14), 0 4px 12px rgba(2,6,23,.06);
  --glow:      0 0 40px rgba(56,189,248,.35);
  --radius:    22px;
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html.dark {
  --bg:      #020617;
  --bg-soft: #0B1220;
  --ink:     #E7EDF7;
  --ink-dim: #93A1BC;
  --line:    rgba(231,237,247,0.09);
  --card:    #0B1220;
  --glass:   rgba(11,18,32,0.72);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.35);
  --shadow-lg: 0 16px 48px -8px rgba(0,0,0,.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Lenis smooth-scroll hooks */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark); /* the film opens the page, so body starts dark */
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #02131f; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── 02 · Preloader & scroll progress ───────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transition: opacity .7s ease, visibility .7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader .chip {
  width: 64px; height: 64px; border-radius: 16px;
  border: 1.5px solid rgba(56,189,248,.5); position: relative;
  display: grid; place-items: center; color: var(--accent);
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .12em;
  animation: chipPulse 1.6s ease-in-out infinite;
}
#preloader .chip::before, #preloader .chip::after { content: ''; position: absolute; background: rgba(56,189,248,.5); }
#preloader .chip::before { left: -14px; right: -14px; height: 1.5px; top: 50%; }
#preloader .chip::after  { top: -14px; bottom: -14px; width: 1.5px; left: 50%; }
#preloader .word { color: #cfe6ff; font-family: var(--font-display); letter-spacing: .5em; text-indent: .5em; font-size: 12px; text-transform: uppercase; opacity: .8; }
@keyframes chipPulse { 0%,100% { box-shadow: 0 0 0 rgba(56,189,248,0); } 50% { box-shadow: 0 0 34px rgba(56,189,248,.45); } }

#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  z-index: 120; box-shadow: 0 0 12px rgba(56,189,248,.7);
}

/* ── 03 · Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 5vw; display: flex; align-items: center; justify-content: space-between;
  color: #EAF2FF;
  transition: padding .35s ease, background .35s ease, box-shadow .35s, color .35s;
}
#navbar.scrolled {
  padding: 12px 5vw; color: var(--ink);
  background: var(--glass);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(2,6,23,.08);
}
/* while the film is on screen the scrolled nav stays dark glass */
#navbar.on-film.scrolled { color: #EAF2FF; background: rgba(2,6,23,.55); box-shadow: 0 1px 0 rgba(190,227,255,.08); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--font-display); }
.nav-logo .logo-chip {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; font-size: 17px; box-shadow: var(--glow); flex: 0 0 auto;
}
.nav-logo strong { font-size: 17px; font-weight: 700; }
.nav-logo small  { display: block; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; opacity: .65; font-weight: 500; }

.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; opacity: .82; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width .3s; }
.nav-links a:hover { opacity: 1; } .nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
#theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid currentColor;
  background: transparent; color: inherit; cursor: pointer; display: grid; place-items: center;
  font-size: 15px; opacity: .75; transition: opacity .25s, transform .25s;
}
#theme-toggle:hover { opacity: 1; transform: rotate(18deg); }
#nav-burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; font-size: 17px; }

#mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a { color: #EAF2FF; text-decoration: none; font-family: var(--font-display); font-size: clamp(24px, 6vw, 34px); font-weight: 600; padding: 10px 0; }
#mobile-menu a:hover { color: var(--accent); }

@media (max-width: 900px) { .nav-links, .nav-actions .btn { display: none; } #nav-burger { display: block; } }

/* ── 04 · THE SCROLL FILM ───────────────────────────────────────── */
/* #film is 520vh tall; #stage is pinned (position:sticky) for the ride.
   The GSAP master timeline is scrubbed across the whole #film height. */
#film { position: relative; height: 800vh; background: var(--bg-dark); }

#stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background:
    radial-gradient(1100px 700px at 72% 8%, rgba(37,99,235,.25), transparent 60%),
    radial-gradient(800px 600px at 12% 100%, rgba(56,189,248,.10), transparent 60%),
    var(--bg-dark);
  color: #EAF2FF;
}

/* background circuit — thin strokes only (fill:none inline too) */
#bg-circuit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; pointer-events: none; }
#bg-circuit .trace { fill: none; stroke: rgba(56,189,248,.16); stroke-width: 1.5; }
#bg-circuit .pad   { fill: rgba(56,189,248,.55); }
#bg-circuit .pulse {
  fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 60 1340; stroke-dashoffset: 1400;
  filter: drop-shadow(0 0 6px var(--accent));
  animation: pulseRun 7s linear infinite;
}
#bg-circuit .pulse.p2 { animation-delay: 2.4s; stroke: var(--secondary); }
@keyframes pulseRun { to { stroke-dashoffset: -1400; } }

#stage .mouse-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx,70%) var(--my,35%), rgba(56,189,248,.11), transparent 65%); }

/* the phone — SVG layer stack */
#phone-wrap { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
#phone { width: min(36vh, 64vw); will-change: transform; filter: drop-shadow(0 30px 60px rgba(2,6,23,.8)); }
#phone .layer { will-change: transform, opacity; }

#halo {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: min(58vh, 90vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.28), rgba(37,99,235,.10) 45%, transparent 70%);
  filter: blur(8px); opacity: 0; will-change: opacity, transform;
}

/* scene 1 hero copy */
#hero-copy {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 14vh 6vw 0; pointer-events: none;
}
#hero-copy .eyebrow {
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(56,189,248,.35); border-radius: 100px;
  padding: 8px 18px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #BEE3FF; background: rgba(56,189,248,.07);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
#hero-copy .eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); }
#hero-copy h1 { margin-top: 22px; font-size: clamp(36px, 5.6vw, 78px); font-weight: 700; letter-spacing: -.035em; max-width: 17ch; color: #fff; }
#hero-copy h1 .grad { background: linear-gradient(92deg, var(--accent), var(--secondary) 60%, #7dd3fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
#hero-copy h1 .word { display: inline-block; white-space: pre; } /* JS split targets */
#hero-copy .sub { margin-top: 14px; color: #A9BAD6; font-size: clamp(14px, 1.4vw, 18px); max-width: 52ch; }
#hero-copy .sub strong { color: #DCEBFF; }
#hero-copy .ctas { pointer-events: auto; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; justify-content: center; }

/* chapter captions — positioned, timeline controls opacity/y */
.cap { position: absolute; z-index: 3; max-width: 34ch; opacity: 0; will-change: transform, opacity; pointer-events: none; }
.cap .k { display: block; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; font-weight: 600; }
.cap h2 { font-size: clamp(26px, 3.4vw, 52px); font-weight: 700; color: #fff; }
.cap p  { margin-top: 12px; color: #A9BAD6; font-size: clamp(13px, 1.2vw, 16px); max-width: 38ch; }
.cap-l { left: 6vw; top: 50%; transform: translateY(-50%); }
.cap-r { right: 6vw; top: 50%; transform: translateY(-50%); text-align: right; }
.cap-r p { margin-left: auto; }
.cap-c { left: 50%; bottom: 11vh; transform: translateX(-50%); text-align: center; max-width: 46ch; }
.cap-c p { margin-left: auto; margin-right: auto; }
.cap .ctas { pointer-events: auto; display: flex; gap: 12px; justify-content: center; margin-top: 22px; }
@media (max-width: 760px) {
  .cap-l, .cap-r { left: 6vw; right: 6vw; top: auto; bottom: 9vh; transform: none; text-align: left; max-width: none; }
  .cap-r p { margin-left: 0; }
  #phone { width: min(30vh, 56vw); }
}

/* film chapter dots */
#chapters { position: absolute; right: 22px; top: 50%; translate: 0 -50%; z-index: 4; display: flex; flex-direction: column; gap: 12px; }
#chapters span { width: 8px; height: 8px; border-radius: 50%; background: rgba(190,227,255,.25); transition: all .3s; }
#chapters span.on { background: var(--accent); box-shadow: 0 0 10px var(--accent); transform: scale(1.3); }
@media (max-width: 760px) { #chapters { display: none; } }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #8FA3C4; font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-hint .mouse { width: 24px; height: 40px; border: 1.5px solid #56688c; border-radius: 14px; position: relative; }
.scroll-hint .mouse::after {
  content: ''; position: absolute; left: 50%; top: 7px; translate: -50% 0;
  width: 3px; height: 8px; border-radius: 3px; background: var(--accent);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { opacity: 1; transform: translateY(0); } 70% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ── 05 · Buttons ───────────────────────────────────────────────── */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .3s cubic-bezier(.2,.7,.3,1.2), box-shadow .3s, background .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn-primary { background: linear-gradient(135deg, var(--secondary), var(--accent)); color: #fff; box-shadow: 0 10px 30px -8px rgba(37,99,235,.55); }
.btn-primary:hover { box-shadow: 0 14px 40px -8px rgba(56,189,248,.65); }
.btn-ghost { background: rgba(255,255,255,.06); color: #EAF2FF; border: 1px solid rgba(190,227,255,.28); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--accent); box-shadow: var(--glow); }
.btn-whatsapp { background: #16A34A; color: #fff; box-shadow: 0 10px 30px -8px rgba(34,197,94,.5); }
.btn-whatsapp:hover { background: #15803D; }
.btn-nav { padding: 11px 24px; font-size: 14px; }

.ripple { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,.45); transform: scale(0); animation: rip .6s ease-out forwards; }
@keyframes rip { to { transform: scale(3.2); opacity: 0; } }

/* ── 06 · Section chrome + GSAP reveals ─────────────────────────── */
main.page { background: var(--bg); color: var(--ink); position: relative; z-index: 5; transition: background .4s, color .4s; }

.section { padding: clamp(80px, 11vh, 130px) 5vw; position: relative; }
.section-soft { background: var(--bg-soft); }
.wrap { max-width: 1240px; margin: 0 auto; }

.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--secondary); font-size: 12.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; margin-bottom: 18px; }
.kicker::before { content: ''; width: 28px; height: 2px; background: linear-gradient(90deg, var(--secondary), var(--accent)); border-radius: 2px; }
html.dark .kicker { color: var(--accent); }

.section h2 { font-size: clamp(30px, 3.8vw, 52px); font-weight: 700; max-width: 22ch; }
.section .lead { margin-top: 18px; color: var(--ink-dim); font-size: clamp(15px, 1.3vw, 17.5px); max-width: 58ch; }
.center { text-align: center; }
.center h2, .center .lead, .center .kicker { margin-left: auto; margin-right: auto; }

/* GSAP reveal targets — JS animates them in; without JS they stay visible */
.r { opacity: 0; transform: translateY(34px); }
html:not(.js) .r { opacity: 1; transform: none; }

/* stats band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); box-shadow: var(--shadow-sm);
  padding: 26px; text-align: center;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(56,189,248,.45); }
.stat-card .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 44px); color: var(--secondary); }
html.dark .stat-card .num { color: var(--accent); }
.stat-card .lbl { margin-top: 4px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-dim); }

/* about split */
.about-grid { margin-top: 24px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
@media (max-width: 940px) { .about-grid { grid-template-columns: 1fr; } }
.about-points { margin-top: 30px; display: grid; gap: 16px; }
.about-points li { list-style: none; display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-dim); }
.about-points i { color: var(--success); margin-top: 4px; }
.about-points strong { color: var(--ink); font-weight: 600; }
.about-visual { position: relative; }
.about-board {
  aspect-ratio: 4/3.4; border-radius: 28px; position: relative; overflow: hidden;
  background: radial-gradient(600px 400px at 20% 0%, rgba(37,99,235,.5), transparent 60%), var(--bg-dark);
  box-shadow: var(--shadow-lg); display: grid; place-items: center;
}
.about-board svg { width: 82%; height: 82%; }
.about-float {
  position: absolute; background: var(--glass);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  animation: floaty 6s ease-in-out infinite;
}
.about-float i { color: var(--secondary); font-size: 20px; }
.about-float strong { display: block; font-family: var(--font-display); font-size: 15px; }
.about-float span { font-size: 12px; color: var(--ink-dim); }
.af-1 { top: -22px; right: -14px; }
.af-2 { bottom: -22px; left: -14px; animation-delay: 2s; }
@media (max-width: 600px) { .af-1 { right: 6px; } .af-2 { left: 6px; } }
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

/* ── 07 · Cards ─────────────────────────────────────────────────── */
.svc-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; overflow: hidden; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s;
}
.svc-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--secondary), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .45s; }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(56,189,248,.4); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 21px; color: var(--secondary);
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(56,189,248,.14));
  border: 1px solid rgba(37,99,235,.15); transition: transform .4s, color .4s;
}
.svc-card:hover .svc-icon { transform: rotate(-8deg) scale(1.08); color: var(--accent); }
html.dark .svc-icon { color: var(--accent); }
.svc-card h3 { margin: 20px 0 10px; font-size: 19px; font-weight: 600; }
.svc-card p  { color: var(--ink-dim); font-size: 14.5px; }
.svc-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.svc-tags span { font-size: 11.5px; font-weight: 500; color: var(--ink-dim); border: 1px solid var(--line); border-radius: 100px; padding: 4px 11px; transition: border-color .3s; }
.svc-card:hover .svc-tags span { border-color: rgba(56,189,248,.4); }

.why-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  display: flex; align-items: flex-start; gap: 15px; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px; box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,.35); }
.why-card i { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 15px; color: var(--success); background: rgba(34,197,94,.1); }
.why-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 3px; }
.why-card p  { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }

#expertise { background: radial-gradient(1000px 600px at 85% 10%, rgba(37,99,235,.25), transparent 55%), var(--bg-dark); color: #EAF2FF; }
#expertise .lead { color: #A9BAD6; }
#expertise .kicker { color: var(--accent); }
.exp-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 940px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card {
  text-align: left;
  border: 1px solid rgba(190,227,255,.12); border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding: 32px 28px; transition: transform .4s, border-color .4s, box-shadow .4s;
}
.exp-card:hover { transform: translateY(-8px); border-color: rgba(56,189,248,.5); box-shadow: var(--glow); }
.exp-card i { font-size: 26px; color: var(--accent); }
.exp-card h3 { margin: 18px 0 10px; font-size: 19px; color: #fff; }
.exp-card p  { font-size: 14.5px; color: #A9BAD6; }
.exp-card ul { margin-top: 16px; list-style: none; display: grid; gap: 9px; }
.exp-card li { font-size: 13.5px; color: #C6D5EC; display: flex; gap: 10px; align-items: center; }
.exp-card li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; color: var(--success); }

/* ── 08 · Process / marquee / testimonials ──────────────────────── */
.process { position: relative; margin-top: 70px; }
.process-line { position: absolute; top: 34px; left: 6%; right: 6%; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.process-line .fill {
  position: absolute; inset: 0; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  box-shadow: 0 0 14px rgba(56,189,248,.8);
}
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.step { text-align: center; padding: 0 8px; }
.step .node {
  width: 68px; height: 68px; margin: 0 auto; border-radius: 20px;
  display: grid; place-items: center; font-size: 22px; color: var(--secondary);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  position: relative; z-index: 1; transition: transform .35s, box-shadow .35s, color .35s;
}
.step:hover .node { transform: translateY(-6px) scale(1.05); box-shadow: var(--glow); color: var(--accent); }
.step .n { display: inline-block; margin-top: 20px; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .22em; color: var(--secondary); }
html.dark .step .n { color: var(--accent); }
.step h3 { font-size: 17px; margin-top: 6px; }
.step p  { font-size: 13px; color: var(--ink-dim); margin-top: 6px; }
@media (max-width: 900px) { .process-line { display: none; } .process-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-steps { grid-template-columns: 1fr; } }

.marquee { overflow: hidden; margin-top: 50px; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slide 38s linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; animation-duration: 44s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.device-chip {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  border: 1px solid var(--line); background: var(--card); border-radius: 100px;
  padding: 12px 24px; font-family: var(--font-display); font-weight: 500; font-size: 15px;
  box-shadow: var(--shadow-sm); transition: border-color .3s, color .3s;
}
.device-chip i { color: var(--secondary); }
.device-chip:hover { border-color: var(--accent); color: var(--secondary); }
.marquee + .marquee { margin-top: 16px; }

.testi-track {
  margin-top: 56px; display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 86vw);
  gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 6px 26px; scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  scroll-snap-align: center; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .35s, box-shadow .35s;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #FBBF24; font-size: 14px; letter-spacing: 3px; }
.testi-card blockquote { font-size: 15.5px; line-height: 1.7; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-who .ava { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.testi-who strong { display: block; font-size: 14.5px; }
.testi-who span { font-size: 12.5px; color: var(--ink-dim); }
.testi-nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.testi-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; font-size: 15px; transition: all .3s; }
.testi-nav button:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* ── 09 · FAQ / CTA / contact / footer ──────────────────────────── */
.faq-list { margin-top: 50px; max-width: 860px; margin-left: auto; margin-right: auto; display: grid; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .3s, box-shadow .3s; text-align: left; }
.faq-item.open { border-color: rgba(37,99,235,.4); box-shadow: var(--shadow-lg); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.faq-q i { color: var(--secondary); transition: transform .35s; flex: 0 0 auto; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.3,.6,.2,1), padding .45s; padding: 0 26px; color: var(--ink-dim); font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

#cta-band { background: linear-gradient(120deg, var(--secondary), #1D4ED8 45%, var(--accent)); color: #fff; text-align: center; padding: clamp(70px, 10vh, 110px) 5vw; position: relative; overflow: hidden; }
#cta-band .blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.09); animation: floaty 9s ease-in-out infinite; }
#cta-band .b1 { width: 300px; height: 300px; top: -140px; left: -80px; }
#cta-band .b2 { width: 380px; height: 380px; bottom: -200px; right: -100px; animation-delay: 3s; }
#cta-band h2 { font-size: clamp(28px, 4vw, 50px); position: relative; z-index: 1; }
#cta-band p  { margin: 16px auto 32px; max-width: 52ch; opacity: .9; position: relative; z-index: 1; }
#cta-band .btn-primary { background: #fff; color: var(--secondary); box-shadow: 0 14px 40px -10px rgba(2,6,23,.4); position: relative; z-index: 1; }

.contact-grid { margin-top: 56px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: start; text-align: left; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--bg-dark); color: #EAF2FF; border-radius: var(--radius);
  padding: 40px 36px; position: relative; overflow: hidden;
  background-image: radial-gradient(500px 300px at 100% 0%, rgba(37,99,235,.35), transparent 60%);
}
.contact-info h3 { font-size: 24px; margin-bottom: 8px; }
.contact-info > p { color: #A9BAD6; font-size: 14.5px; margin-bottom: 28px; }
.ci-row { display: flex; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(190,227,255,.1); align-items: flex-start; }
.ci-row i { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--accent); background: rgba(56,189,248,.1); font-size: 16px; }
.ci-row strong { display: block; font-size: 14.5px; font-family: var(--font-display); }
.ci-row span, .ci-row a { font-size: 13.5px; color: #A9BAD6; text-decoration: none; }
.ci-row a:hover { color: var(--accent); }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 40px 36px; }
.contact-form h3 { font-size: 22px; margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-dim); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 14px;
  background: var(--bg-soft); color: var(--ink);
  padding: 13px 16px; font-family: var(--font-body); font-size: 14.5px;
  transition: border-color .3s, box-shadow .3s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(37,99,235,.12); }
.field textarea { resize: vertical; min-height: 110px; }
#form-status { margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--success); display: none; }

.map-shell { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 21/8; background: var(--bg-soft); display: grid; place-items: center; text-align: center; color: var(--ink-dim); }
.map-shell i { font-size: 34px; color: var(--secondary); margin-bottom: 10px; }
.map-shell iframe { width: 100%; height: 100%; border: 0; }
@media (max-width: 700px) { .map-shell { aspect-ratio: 4/3; } }

footer { background: var(--bg-dark); color: #A9BAD6; padding: 80px 5vw 36px; position: relative; z-index: 5; }
.foot-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
footer h4 { color: #fff; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
footer ul { list-style: none; display: grid; gap: 11px; }
footer ul a { text-decoration: none; font-size: 14px; color: #A9BAD6; transition: color .25s, padding-left .25s; }
footer ul a:hover { color: var(--accent); padding-left: 5px; }
.foot-brand p { font-size: 14px; margin: 16px 0 22px; max-width: 34ch; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 1px solid rgba(190,227,255,.14); color: #C6D5EC; text-decoration: none; transition: all .3s; }
.foot-social a:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; transform: translateY(-3px); }
.foot-bottom { max-width: 1240px; margin: 56px auto 0; padding-top: 26px; border-top: 1px solid rgba(190,227,255,.1); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 12.5px; color: #7688A8; }
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover { color: var(--accent); }

/* ── 10 · Floating actions ──────────────────────────────────────── */
.fab {
  position: fixed; right: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; color: #fff; text-decoration: none;
  box-shadow: 0 12px 32px -6px rgba(2,6,23,.35);
  transition: transform .3s cubic-bezier(.2,.7,.3,1.3);
}
.fab:hover { transform: translateY(-4px) scale(1.06); }
#fab-wa { bottom: 96px; background: #25D366; }
#fab-wa::after { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: sonar 2.2s ease-out infinite; }
@keyframes sonar { to { transform: scale(1.7); opacity: 0; } }
#fab-call { bottom: 22px; background: var(--secondary); }

#back-top {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--glass); color: var(--ink); cursor: pointer; font-size: 16px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .35s; box-shadow: var(--shadow-sm);
}
#back-top.show { opacity: 1; visibility: visible; transform: none; }
#back-top:hover { color: var(--secondary); box-shadow: var(--shadow-lg); }


/* ═══ 11 · v3 additions — Lab / Pricing / Before-After ═══════════ */

/* Inside Our Lab (dark band with the animated bench) */
#lab { background: radial-gradient(1000px 600px at 15% 0%, rgba(37,99,235,.25), transparent 55%), var(--bg-dark); color: #EAF2FF; }
#lab .lead { color: #A9BAD6; }
#lab .kicker { color: var(--accent); }
.lab-scene {
  margin-top: 56px; border: 1px solid rgba(190,227,255,.12); border-radius: var(--radius);
  background: linear-gradient(180deg, #050B1A, #020617);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.lab-scene svg { width: 100%; height: auto; display: block; }
.lab-video { width: 100%; display: block; }
.lab-features { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.lab-feat {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(190,227,255,.16); border-radius: 100px; padding: 10px 20px;
  font-size: 13.5px; color: #C6D5EC; background: rgba(255,255,255,.03);
}
.lab-feat i { color: var(--accent); }

/* lab loop animations */
@keyframes smokeRise { 0% { transform: translateY(0) scale(1); opacity: .5; } 100% { transform: translateY(-70px) scale(1.7); opacity: 0; } }
.smoke { animation: smokeRise 3s ease-out infinite; }
.smoke.s2 { animation-delay: 1s; } .smoke.s3 { animation-delay: 2s; }
@keyframes ironRock { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-5deg); } }
.iron-rock { transform-origin: 760px 300px; transform-box: view-box; animation: ironRock 3.4s ease-in-out infinite; }
@keyframes tipGlow { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.tip-glow { animation: tipGlow 1.1s ease-in-out infinite; }
@keyframes coneFlicker { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
.lamp-cone, .lamp-bulb { animation: coneFlicker 4s ease-in-out infinite; }
@keyframes dispBlink { 0%, 100% { opacity: .4; } 50% { opacity: .95; } }
.disp-blink { animation: dispBlink 2s ease-in-out infinite; }
.disp-blink.d2 { animation-delay: .7s; }
.scope-lens, .lab-chip { animation: dispBlink 2.6s ease-in-out infinite; }
.wave { stroke-dasharray: 6 4; animation: waveMove 1.2s linear infinite; }
@keyframes waveMove { to { stroke-dashoffset: -20; } }

/* Popular Repairs pricing cards */
.price-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 26px 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s, border-color .4s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(56,189,248,.4); }
.price-card .svc-icon { margin: 0 auto; }
.price-card h3 { margin: 18px 0 6px; font-size: 19px; }
.price-card .price { color: var(--ink-dim); font-size: 14px; }
.price-card .price strong { font-family: var(--font-display); font-size: 27px; color: var(--secondary); margin-left: 5px; letter-spacing: -.01em; }
html.dark .price-card .price strong { color: var(--accent); }
.price-card ul { list-style: none; margin: 18px 0 24px; display: grid; gap: 8px; }
.price-card li { font-size: 13.5px; color: var(--ink-dim); display: flex; align-items: center; gap: 8px; justify-content: center; }
.price-card li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; color: var(--success); }
.price-card .btn { margin-top: auto; }
.price-card.featured { border-color: rgba(37,99,235,.55); box-shadow: 0 16px 48px -10px rgba(37,99,235,.28); }
.price-card .badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff; font-size: 11px; font-weight: 600; font-family: var(--font-display);
  border-radius: 100px; padding: 5px 13px;
}
.btn-ghost2 { background: transparent; color: var(--secondary); border: 1.5px solid rgba(37,99,235,.4); }
.btn-ghost2:hover { background: var(--secondary); color: #fff; }
html.dark .btn-ghost2 { color: var(--accent); border-color: rgba(56,189,248,.4); }
html.dark .btn-ghost2:hover { background: var(--accent); color: #02131f; }

/* Before / After comparison slider */
.ba-wrap {
  position: relative; margin: 56px auto 0; max-width: 760px; aspect-ratio: 16/9;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  background: radial-gradient(600px 300px at 50% 0%, rgba(37,99,235,.3), transparent 65%), var(--bg-dark);
  cursor: ew-resize; touch-action: none;
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer svg { width: 100%; height: 100%; }
.ba-before { clip-path: inset(0 calc(100% - var(--ba, 50%)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba, 50%); width: 3px;
  background: var(--accent); box-shadow: 0 0 14px rgba(56,189,248,.8);
  translate: -50% 0; pointer-events: none; z-index: 2;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #02131f; display: grid; place-items: center;
  font-size: 15px; box-shadow: 0 8px 24px rgba(2,6,23,.5);
}
.ba-tag {
  position: absolute; top: 14px; z-index: 2;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: #EAF2FF;
  background: rgba(2,6,23,.6); border: 1px solid rgba(190,227,255,.2);
  border-radius: 100px; padding: 6px 14px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ba-tag-l { left: 14px; } .ba-tag-r { right: 14px; }
#ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; z-index: 3; }


/* ═══ 12 · Local-SEO areas section ═══════════════════════════════ */
.area-chips { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--card); border-radius: 100px;
  padding: 9px 18px; font-family: var(--font-display); font-weight: 500; font-size: 13.5px;
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: border-color .3s, color .3s, transform .3s;
}
.area-chip i { color: var(--secondary); font-size: 12px; }
.area-chip:hover { border-color: var(--accent); color: var(--secondary); transform: translateY(-2px); }
.seo-text { margin: 44px auto 0; max-width: 860px; text-align: left; display: grid; gap: 16px; }
.seo-text p { font-size: 14.5px; line-height: 1.85; color: var(--ink-dim); }
.seo-text strong { color: var(--ink); font-weight: 600; }
.seo-text .seo-ar { font-size: 15px; }


/* ═══ 13 · Service pages ═════════════════════════════════════════ */
.page-hero {
  background: radial-gradient(1100px 700px at 75% -10%, rgba(37,99,235,.3), transparent 60%), var(--bg-dark);
  color: #EAF2FF; padding: 160px 5vw 80px;
}
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 13px; color: #8FA3C4; margin-bottom: 22px; }
.breadcrumb a { color: #A9BAD6; text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb em { color: #EAF2FF; font-style: normal; }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 62px); font-weight: 700; letter-spacing: -.03em; max-width: 18ch; }
.page-hero .sub { margin-top: 16px; color: #A9BAD6; font-size: clamp(14.5px, 1.4vw, 18px); max-width: 60ch; }
.page-hero .ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-badges span {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(190,227,255,.2); border-radius: 100px; padding: 8px 16px;
  font-size: 12.5px; color: #C6D5EC; background: rgba(255,255,255,.04);
}
.hero-badges i { color: var(--accent); }

.fix-grid { margin: 50px auto 0; max-width: 980px; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; text-align: left; }
@media (max-width: 720px) { .fix-grid { grid-template-columns: 1fr; } }
.fix-item {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-sm); font-size: 14.5px; color: var(--ink);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.fix-item:hover { transform: translateY(-3px); border-color: rgba(56,189,248,.4); box-shadow: var(--shadow-lg); }
.fix-item i { color: var(--success); margin-top: 3px; flex: 0 0 auto; }

.rel-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 20px; box-shadow: var(--shadow-sm); color: var(--ink);
  font-family: var(--font-display); font-weight: 500; font-size: 14.5px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.rel-card:hover { transform: translateY(-4px); border-color: rgba(56,189,248,.45); box-shadow: var(--shadow-lg); color: var(--secondary); }
.rel-card > i:first-child { color: var(--secondary); font-size: 19px; flex: 0 0 auto; }
.rel-card .arr { margin-left: auto; font-size: 13px; color: var(--ink-dim); transition: transform .3s; }
.rel-card:hover .arr { transform: translateX(4px); color: var(--accent); }
