/*
 * loqal Homepage Styles – Glassmorphism + 3D Carousel Redesign
 * Loads after loqal-global.css
 */

/* ═══ TOKENS (local overrides) ═══ */
:root {
  --green: #19d6dc;
  --green-dim: rgba(25,214,220,0.1);
  --bg: #030610;
  --bg1: #070b18;
  --bg2: #0c1020;
  --t1: #f0f0f0;
  --t2: #6a6a74;
  --t3: #282838;
  --border: rgba(255,255,255,0.07);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  cursor: none;
}
::selection { background: var(--green); color: #000; }
::-webkit-scrollbar { width: 0; }
a { color: inherit; text-decoration: none; }
@media (hover: none) { body { cursor: auto; } }

/* ═══ CURSOR — z-index above contact modal (10000) ═══ */
#cur { position: fixed; width: 10px; height: 10px; border-radius: 50%; background: var(--green); pointer-events: none; z-index: 10002; transform: translate(-50%,-50%); mix-blend-mode: difference; transition: transform .15s cubic-bezier(0.32,0.72,0,1); }
#cur-r { position: fixed; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(25,214,220,.35); pointer-events: none; z-index: 10001; transform: translate(-50%,-50%); }
@media (hover: none) { #cur, #cur-r { display: none; } }

/* ═══ SCROLL PROGRESS ═══ */
#sp { position: fixed; top: 0; left: 0; height: 2px; background: var(--green); z-index: 9997; box-shadow: 0 0 10px rgba(25,214,220,.55); pointer-events: none; }

/* ═══ URGENCY BAR ═══ */
.urgency-banner {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  padding: .55rem 1.5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .01em; color: var(--t2);
  background: linear-gradient(90deg, transparent, rgba(25,214,220,.04), transparent);
  border-bottom: 1px solid rgba(25,214,220,.1);
}
.urgency-banner a { color: var(--green); margin-left: .25rem; }
.urgency-banner a:hover { text-decoration: underline; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; box-shadow: 0 0 6px rgba(25,214,220,.7); animation: blink-dot 1.8s step-end infinite; flex-shrink: 0; }
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ═══ NAV ═══ */
nav.lnav {
  position: fixed; top: 1.25rem; left: 50%; transform: translateX(-50%);
  width: calc(100% - 2.5rem); max-width: 1100px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.25rem; height: 56px; z-index: 500;
  border-radius: 1rem;
  background: rgba(8,8,8,.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color .3s;
}
nav.lnav:hover { border-color: rgba(25,214,220,.12); }
.nav-logo { height: 2rem; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link { padding: .4rem .75rem; border-radius: .5rem; font-size: .8rem; color: var(--t2); transition: color .2s, background .2s; white-space: nowrap; cursor: pointer; }
.nav-link:hover { color: var(--t1); background: rgba(255,255,255,.05); }
.nav-cta {
  background: var(--green); color: #000; font-weight: 700; font-size: .78rem;
  padding: .5rem 1.25rem; border-radius: .5rem; border: none; cursor: pointer;
  transition: box-shadow .25s, transform .15s cubic-bezier(0.32,0.72,0,1); letter-spacing: -.01em;
}
.nav-cta:hover { box-shadow: 0 0 28px rgba(25,214,220,.5); transform: translateY(-1px); }
.nav-drop { position: relative; }
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #0d0d12; border: 1px solid var(--border); border-radius: .75rem;
  padding: .5rem; min-width: 220px; box-shadow: 0 24px 60px rgba(0,0,0,.85); z-index: 600;
}
.nav-drop:hover .nav-drop-menu { display: block; }
.nav-drop-menu a { display: flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border-radius: .5rem; font-size: .78rem; color: var(--t2); transition: background .15s, color .15s; }
.nav-drop-menu a:hover { background: rgba(25,214,220,.07); color: var(--t1); }
.mob-btn { display: none; background: none; border: none; cursor: pointer; color: var(--t1); }
@media (max-width: 900px) { .nav-links { display: none; } .mob-btn { display: flex; } }

/* ═══ MOBILE MENU ═══ */
#mob {
  display: none; position: fixed; inset: 0;
  background: rgba(8,8,8,.97); backdrop-filter: blur(20px);
  z-index: 490; padding: 5.5rem 2rem 2rem; overflow-y: auto;
}
#mob.open { display: block; }
#mob a, .mob-group-title { display: block; padding: .75rem 0; font-size: 1.05rem; color: var(--t2); border-bottom: 1px solid var(--border); }
.mob-group-title { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); margin-top: 1.5rem; border: none; padding-bottom: .5rem; }
#mob a:hover { color: var(--green); }
#mob-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: var(--t1); cursor: pointer; font-size: 1.5rem; }

/* ═══ HERO — PHOTOGRAPHIC SCENE ═══ */
.hero {
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: #050210; /* fallback while photo loads */
}

/* ── Hero background photograph ── */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
/* Multi-layer cinematic overlay:
   bottom: deep dark for text legibility
   top: slightly lighter to let the photo breathe
   radial: brand accent tint center */
.hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(3,1,20,.97) 0%,
      rgba(3,1,20,.80) 30%,
      rgba(3,1,20,.45) 60%,
      rgba(3,1,20,.25) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%,
      rgba(25,214,220,.07) 0%, transparent 60%);
}

/* Noise grain for photographic texture */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06; background-size: 160px 160px; mix-blend-mode: overlay;
}

.hero-bg-clip { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .35; }
.hero-canvas { width: 100%; height: 100%; display: block; }

/* FLOATING CARDS ZONE */
.hero-cards-zone {
  position: absolute;
  top: 5%; left: 0; right: 0; height: 60%;
  z-index: 4;
}

/* TEXT ZONE — anchored at bottom in the dark purple/near-black area */
.hero-text-zone {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 5vw 5.5rem;
  z-index: 4;
  /* Gradient overlay — photo is behind, this ensures text contrast */
  background: linear-gradient(to top, rgba(3,1,16,.98) 0%, rgba(3,1,16,.75) 45%, transparent 100%);
}
.hero-inner-wrap {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-end;
}
@media (max-width: 900px) { .hero-inner-wrap { grid-template-columns: 1fr; gap: 1.5rem; } }

.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.75rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green);
}
.hero-kicker span { width: 28px; height: 1px; background: var(--green); display: block; }

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6.5vw, 7rem); font-weight: 900;
  line-height: .93; letter-spacing: -.04em; color: #f5f0ff;
}
.hero-h1 .accent { color: var(--green); text-shadow: 0 0 50px rgba(25,214,220,.4); }

.hero-sub { font-size: 1rem; line-height: 1.75; color: rgba(220,210,240,.7); max-width: 440px; margin: 1.75rem 0 0; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.25rem; }

/* Right column (text zone) — trust badges */
.hero-trust {
  display: flex; flex-direction: column; gap: 1.25rem; justify-content: flex-end; padding-bottom: .25rem;
}
.hero-trust-badge {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.25rem; border-radius: 1rem;
  background: rgba(6,2,26,.52);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.07);
}
.hero-trust-badge iconify-icon { color: var(--green); font-size: 1.1rem; flex-shrink: 0; }
.hero-trust-badge-t { font-size: .7rem; font-weight: 700; color: rgba(240,235,255,.85); letter-spacing: .01em; }
.hero-trust-badge-v { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 900; color: var(--green); letter-spacing: -.03em; }
@media (max-width: 900px) { .hero-trust { flex-direction: row; flex-wrap: wrap; } .hero-trust-badge { flex: 1; min-width: 140px; } }

/* FLOATING CARDS — glass panels over the photo background
   The backdrop-filter blur reveals the scene behind each card */
.hfc {
  position: absolute;
  padding: 1.35rem 1.6rem; border-radius: 1.375rem;
  /* Light glass: photo shows through the blur */
  background: linear-gradient(150deg,
    rgba(255,255,255,.10) 0%,
    rgba(8,3,28,.28) 50%,
    rgba(3,1,14,.38) 100%);
  backdrop-filter: blur(28px) saturate(180%) brightness(.95);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(.95);
  border: 1px solid rgba(255,255,255,.16);
  border-top-color: rgba(255,255,255,.32);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 6px 18px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.20);
  min-width: 215px; max-width: 275px;
  animation: loqal-float var(--hfc-dur, 4.2s) ease-in-out infinite;
  animation-delay: var(--hfc-delay, 0s);
  pointer-events: auto;
}
.hfc-icon { width: 36px; height: 36px; border-radius: .5rem; background: rgba(25,214,220,.14); border: 1px solid rgba(25,214,220,.25); display: flex; align-items: center; justify-content: center; margin-bottom: .875rem; flex-shrink: 0; }
.hfc-icon iconify-icon { color: var(--green); font-size: 1.1rem; }
.hfc-label { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(200,190,230,.55); margin-bottom: .2rem; }
.hfc-title { font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 700; color: rgba(245,240,255,.9); }
.hfc-stat { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--green); letter-spacing: -.03em; margin-top: .3rem; text-shadow: 0 0 18px currentColor; }
.hfc-stat-l { font-size: .62rem; color: rgba(200,190,230,.55); }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green); color: #000; font-weight: 700; font-size: .9rem;
  padding: .9rem 2rem; border-radius: .625rem; border: none; cursor: pointer;
  transition: box-shadow .25s, transform .15s cubic-bezier(0.32,0.72,0,1); letter-spacing: -.01em;
}
.btn-primary:hover { box-shadow: 0 0 40px rgba(25,214,220,.5), 0 0 80px rgba(25,214,220,.15); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--t2); font-size: .9rem;
  padding: .9rem 1.75rem; border-radius: .625rem; border: 1px solid var(--border); cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.18); color: var(--t1); }

/* Floating stat chips */
.hero-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 2rem;
  background: rgba(13,13,18,.75); border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  font-size: .75rem; font-weight: 600; color: var(--t2);
  white-space: nowrap;
}
.hero-chip iconify-icon { color: var(--green); font-size: .9rem; flex-shrink: 0; }
@media (max-width: 900px) { .hero-chip { display: none; } }

/* ═══ MARQUEE ═══ */
.marquee-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; overflow: hidden; position: relative; }
.marquee-section::before,.marquee-section::after { content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.marquee-section::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.marquee-track { display: flex; gap: 2rem; white-space: nowrap; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.m-item { font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); padding: 0 .5rem; }
.m-dot { color: var(--green); opacity: .35; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ LOGOS BAR ═══ */
.logos-bar { padding: 3.5rem 5vw; border-bottom: 1px solid var(--border); }
.logos-bar-label { text-align: center; font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--t3); margin-bottom: 1.5rem; }
.logos-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.logo-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem 1rem; border-radius: 9999px;
  background: rgba(13,13,18,.6); border: 1px solid var(--border);
  font-size: .78rem; font-weight: 600; color: var(--t2);
  transition: border-color .2s, color .2s;
}
.logo-pill:hover { border-color: rgba(255,255,255,.12); color: var(--t1); }

/* ═══ SECTION BASE ═══ */
.s { padding: 8rem 5vw; }
.s-alt { background: var(--bg1); }
.s-inner { max-width: 1200px; margin: 0 auto; }
.s-kicker { display: inline-flex; align-items: center; gap: .6rem; font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--green); margin-bottom: 1.75rem; }
.s-kicker::before { content: ''; width: 20px; height: 1px; background: var(--green); }
.s-h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.25rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.05; letter-spacing: -.04em; color: var(--t1); }
.s-h2 .dim { color: var(--t3); }
.s-lead { font-size: 1rem; line-height: 1.75; color: var(--t2); max-width: 520px; margin-top: 1.25rem; }

/* ═══ STATS STRIP ═══ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 0; }
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }
.stat-gc {
  padding: 2.5rem 2rem; border-radius: 1.25rem;
  background: var(--glass-card-bg); border: 1px solid var(--glass-card-border);
  box-shadow: var(--glass-card-shadow);
  display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .3s cubic-bezier(0.32,0.72,0,1);
}
.stat-gc:hover { border-color: rgba(25,214,220,.18); }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; color: var(--t1); }
.stat-num.green { color: var(--green); text-shadow: 0 0 40px rgba(25,214,220,.2); }
.stat-label { font-size: .8rem; color: var(--t2); line-height: 1.5; }

/* ═══ PROBLEM ═══ */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 4rem; }
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }
.prob-side { padding: 2.5rem; border-radius: 1.25rem; }
.prob-side.before { background: rgba(239,68,68,.04); border: 1px solid rgba(239,68,68,.12); }
.prob-side.after { background: rgba(25,214,220,.03); border: 1px solid rgba(25,214,220,.12); }
.prob-label { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem; }
.prob-label.red { color: #f87171; }
.prob-label.grn { color: var(--green); }
.prob-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--t2); line-height: 1.6; margin-bottom: .875rem; }
.prob-item iconify-icon { flex-shrink: 0; margin-top: 2px; }

/* ═══ PROOF BAR ═══ */
.proof-bar { padding: 3.5rem 5vw; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(90deg, transparent, rgba(25,214,220,.025), transparent); }
.proof-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 1.25rem; }
.proof-pill { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem 1.1rem; border-radius: 9999px; border: 1px solid rgba(25,214,220,.15); background: rgba(25,214,220,.04); font-size: .78rem; color: var(--t2); }
.proof-pill strong { color: var(--green); font-family: 'Space Grotesk', sans-serif; font-weight: 800; }

/* ═══ PROCESS ═══ */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 4rem; }
@media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }
.proc-card {
  padding: 2.5rem; border-radius: 1.25rem; position: relative; overflow: hidden;
  background: var(--glass-card-bg); border: 1px solid var(--glass-card-border);
  box-shadow: var(--glass-card-shadow);
  transition: border-color .3s cubic-bezier(0.32,0.72,0,1);
}
.proc-card:hover { border-color: rgba(25,214,220,.18); }
.proc-num-label { font-size: .62rem; font-weight: 700; letter-spacing: .12em; color: var(--green); margin-bottom: 1rem; }
.proc-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--t1); margin-bottom: .5rem; }
.proc-desc { font-size: .85rem; line-height: 1.75; color: var(--t2); }
.proc-tag { font-size: .68rem; color: var(--t3); margin-top: 1rem; }
.proc-num-bg { position: absolute; right: -0.5rem; bottom: -1.5rem; font-family: 'Space Grotesk', sans-serif; font-size: 7rem; font-weight: 900; color: rgba(255,255,255,.025); pointer-events: none; user-select: none; letter-spacing: -.05em; line-height: 1; }

/* ═══ 3D CAROUSEL SECTION ═══ */
.carousel-section {
  padding: 8rem 0 6rem; position: relative; overflow: hidden;
  background: var(--bg1); min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.carousel-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(25,214,220,.04) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 90% 10%, rgba(99,102,241,.05) 0%, transparent 55%);
}
.car-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 2; padding: 0 5vw; }
.car-bg-label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900; letter-spacing: -.04em; color: rgba(255,255,255,0);
  pointer-events: none; white-space: nowrap; transition: color .4s ease;
  z-index: 0; text-transform: uppercase;
}
.car-bg-label.visible { color: rgba(255,255,255,.03); }
.car-scene-wrap { position: relative; width: 100%; z-index: 2; }
.car-card-inner {
  width: 100%; height: 100%; border-radius: 1.25rem;
  background: rgba(13,13,18,.82); border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 24px 64px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.055);
  padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .3s;
}
.car-card-inner:hover { border-color: rgba(25,214,220,.2); }
.car-icon { width: 42px; height: 42px; border-radius: .625rem; background: rgba(25,214,220,.09); border: 1px solid rgba(25,214,220,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.car-icon iconify-icon { color: var(--green); font-size: 1.15rem; }
.car-h { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--t1); line-height: 1.2; }
.car-p { font-size: .78rem; line-height: 1.6; color: var(--t2); flex: 1; }
.car-metrics { display: flex; gap: 1rem; }
.car-metric-n { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--green); letter-spacing: -.03em; }
.car-metric-l { font-size: .62rem; color: var(--t3); margin-top: .15rem; }
.car-link { font-size: .75rem; color: var(--t2); display: inline-flex; align-items: center; gap: .3rem; margin-top: auto; transition: color .2s; }
.car-link:hover { color: var(--green); }
.car-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 2.5rem; position: relative; z-index: 2; }
.car-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--t3); transition: background .3s, transform .3s; }
.car-dot.active { background: var(--green); transform: scale(1.4); }
.car-scroll-hint { display: flex; align-items: center; gap: .5rem; font-size: .68rem; color: var(--t3); letter-spacing: .1em; text-transform: uppercase; margin-top: 1.5rem; position: relative; z-index: 2; }

/* ═══ FEATURES ═══ */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 4rem; }
.feat-card {
  padding: 3rem; border-radius: 1.25rem;
  background: var(--glass-card-bg); border: 1px solid var(--glass-card-border);
  box-shadow: var(--glass-card-shadow);
  transition: border-color .3s cubic-bezier(0.32,0.72,0,1);
}
.feat-card:hover { border-color: rgba(25,214,220,.18); }
.feat-card.wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr; } .feat-card.wide { grid-column: auto; grid-template-columns: 1fr; gap: 2rem; } }
.feat-icon { width: 46px; height: 46px; border-radius: .75rem; background: rgba(25,214,220,.09); border: 1px solid rgba(25,214,220,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.feat-icon iconify-icon { color: var(--green); font-size: 1.3rem; }
.feat-h { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 800; color: var(--t1); line-height: 1.15; letter-spacing: -.03em; margin-bottom: .75rem; }
.feat-p { font-size: .875rem; line-height: 1.75; color: var(--t2); }
.feat-stat { font-family: 'Space Grotesk', sans-serif; font-size: 2.75rem; font-weight: 900; color: var(--green); letter-spacing: -.04em; margin-top: 1.5rem; }
.feat-stat-label { font-size: .72rem; color: var(--t2); margin-top: .3rem; }
.feat-nums { display: flex; gap: 2rem; margin-top: 1.5rem; }
.feat-n { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 900; color: var(--green); letter-spacing: -.04em; }
.feat-nl { font-size: .68rem; color: var(--t3); margin-top: .2rem; }
.feat-flow { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.5rem; }
.feat-flow-item { display: flex; align-items: center; gap: .75rem; padding: .7rem .875rem; background: var(--bg2); border-radius: .5rem; border: 1px solid var(--border); font-size: .8rem; color: var(--t2); }
.feat-flow-item.active { border-color: rgba(25,214,220,.22); background: rgba(25,214,220,.03); }
.feat-flow-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feat-flow-check iconify-icon { color: #000; font-size: .7rem; }
.feat-flow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; box-shadow: 0 0 6px rgba(25,214,220,.8); animation: blink-dot 1.5s step-end infinite; }
.feat-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--t2); margin-top: 1.5rem; transition: color .2s; }
.feat-link:hover { color: var(--green); }

/* ═══ CHAT DEMO ═══ */
.chat-demo { max-width: 540px; margin: 3rem auto 0; border-radius: 1.25rem; background: var(--glass-card-bg); border: 1px solid var(--glass-card-border); box-shadow: var(--glass-card-shadow); overflow: hidden; }
.chat-head { display: flex; align-items: center; gap: .75rem; padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--border); }
.chat-msg { display: flex; margin-bottom: .75rem; padding: 0 1.5rem; }
.bubble-u { margin-left: auto; background: rgba(25,214,220,.1); border: 1px solid rgba(25,214,220,.15); border-radius: .875rem .875rem 0 .875rem; padding: .6rem .9rem; font-size: .82rem; color: var(--t1); max-width: 80%; }
.bubble-ai { background: var(--bg2); border: 1px solid var(--border); border-radius: .875rem .875rem .875rem 0; padding: .6rem .9rem; font-size: .82rem; color: var(--t1); max-width: 80%; }
.chat-success { margin: .75rem 1.5rem 1.5rem; padding: .75rem 1rem; background: rgba(25,214,220,.06); border: 1px solid rgba(25,214,220,.15); border-radius: .625rem; font-size: .78rem; color: var(--green); font-weight: 600; }

/* ═══ TESTIMONIALS ═══ */
.testi-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; margin-top: 4rem; }
@media (max-width: 900px) { .testi-grid-new { grid-template-columns: 1fr; } }
.testi-card-new:nth-child(2) { margin-top: 2.5rem; }
.testi-card-new:nth-child(3) { margin-top: 5rem; }
@media (max-width: 900px) { .testi-card-new:nth-child(2), .testi-card-new:nth-child(3) { margin-top: 0; } }
.testi-card-new {
  padding: 2.5rem; border-radius: 1.25rem;
  background: var(--glass-card-bg); border: 1px solid var(--glass-card-border);
  box-shadow: var(--glass-card-shadow);
  transition: border-color .3s cubic-bezier(0.32,0.72,0,1);
  position: relative; overflow: hidden;
}
.testi-card-new:hover { border-color: rgba(25,214,220,.18); }
.testi-metric { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 800; color: var(--green); margin-bottom: .75rem; }
.testi-stars { display: flex; gap: .2rem; margin-bottom: .875rem; }
.testi-stars iconify-icon { color: #fbbf24; font-size: .875rem; }
.testi-text { font-size: .85rem; line-height: 1.75; color: var(--t2); margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(25,214,220,.18); overflow: hidden; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--bg2); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: .8rem; font-weight: 600; color: var(--t1); }
.testi-role { font-size: .7rem; color: var(--t3); }

/* ═══ PRICING ═══ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 840px; margin: 3.5rem auto 0; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 2.5rem; border-radius: 1.25rem; position: relative; overflow: hidden;
  background: var(--glass-card-bg); border: 1px solid var(--glass-card-border);
  box-shadow: var(--glass-card-shadow);
  transition: border-color .3s cubic-bezier(0.32,0.72,0,1);
}
.price-card:hover { border-color: rgba(255,255,255,.12); }
.price-card.featured { border-color: transparent; }
.price-card.featured > * { position: relative; z-index: 1; }
.price-badge { position: absolute; top: -1px; left: 2rem; background: var(--green); color: #000; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .875rem; border-radius: 0 0 .5rem .5rem; z-index: 2; }
.price-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--t1); margin-bottom: .3rem; }
.price-desc { font-size: .78rem; color: var(--t2); margin-bottom: 1.5rem; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 3.25rem; font-weight: 900; color: var(--t1); letter-spacing: -.04em; line-height: 1; }
.price-period { font-size: .78rem; color: var(--t2); margin-top: .3rem; }
.price-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.price-features li { display: flex; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--t2); }
.price-features li iconify-icon { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-cta-main { width: 100%; background: var(--green); color: #000; font-weight: 700; font-size: .875rem; padding: .875rem; border-radius: .625rem; border: none; cursor: pointer; transition: box-shadow .25s; display: block; text-align: center; }
.price-cta-main:hover { box-shadow: 0 0 30px rgba(25,214,220,.4); }
.price-cta-ghost { width: 100%; background: transparent; color: var(--t2); font-size: .85rem; padding: .85rem; border-radius: .625rem; border: 1px solid var(--border); cursor: pointer; transition: border-color .2s, color .2s; display: block; text-align: center; }
.price-cta-ghost:hover { border-color: rgba(255,255,255,.18); color: var(--t1); }
.price-note { text-align: center; font-size: .7rem; color: var(--t3); margin-top: .75rem; }
.price-rows { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.75rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: .65rem .875rem; border-radius: .5rem; background: var(--bg2); font-size: .78rem; }
.price-row span:first-child { color: var(--t2); }
.price-row span:last-child { color: var(--t1); font-weight: 600; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 760px; margin: 3.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); transition: border-bottom-color .2s; }
.faq-item[open] { border-bottom-color: rgba(25,214,220,.2); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 0; cursor: pointer; list-style: none; -webkit-appearance: none; font-size: .9rem; font-weight: 600; color: var(--t1); gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--green); }
.faq-toggle { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.faq-item[open] .faq-toggle { background: rgba(25,214,220,.1); border-color: rgba(25,214,220,.3); }
.faq-answer { padding-bottom: 1.35rem; font-size: .85rem; line-height: 1.75; color: var(--t2); }

/* ═══ BLOG ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border-radius: 1rem; overflow: hidden; background: var(--glass-card-bg); border: 1px solid var(--glass-card-border); transition: border-color .3s cubic-bezier(0.32,0.72,0,1); }
.blog-card:hover { border-color: rgba(25,214,220,.18); }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 1.25rem; }
.blog-cat { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.blog-title { font-family: 'Space Grotesk', sans-serif; font-size: .875rem; font-weight: 700; color: var(--t1); line-height: 1.4; }
.blog-meta { font-size: .7rem; color: var(--t3); margin-top: .5rem; }

/* ═══ CTA ═══ */
.cta-s { padding: 10rem 5vw; text-align: center; position: relative; overflow: hidden; background: var(--bg); }
.cta-s::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(25,214,220,.06) 0%, transparent 65%);
}
.cta-h { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -.04em; color: var(--t1); margin-bottom: 1.5rem; }
.cta-h .g { background: linear-gradient(135deg, #19d6dc, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-sub { font-size: 1rem; color: var(--t2); max-width: 440px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-h .g { background: linear-gradient(135deg, #19d6dc, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
.cta-trust-item { display: flex; align-items: center; gap: .4rem; font-size: .72rem; color: var(--t3); }

/* ═══ FOOTER ═══ */
footer { background: var(--bg1); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 5vw 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 3.5rem; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-brand p { font-size: .82rem; color: var(--t2); line-height: 1.8; margin-top: 1.25rem; }
.footer-brand a:hover { color: var(--green); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 640px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--t3); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: .82rem; color: var(--t2); margin-bottom: .6rem; transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: var(--t3); flex-wrap: wrap; gap: .75rem; }

/* ═══════════════════════════════════════════
   PREMIUM MOTION UPGRADE
═══════════════════════════════════════════ */

/* GSAP takes over the float */
.hfc { animation: none !important; }

/* 3D scene container */
.hero-cards-zone {
  perspective: 900px;
  perspective-origin: 50% 30%;
  transform-style: preserve-3d;
}

/* Increase canvas atmosphere */
.hero-bg-clip { opacity: .38; }

/* ── Depth-layered glass per card ── */
.hfc[data-depth="0.9"] {
  /* Closest: brightest edge, biggest shadow */
  border-top-color: rgba(255,255,255,.38);
  box-shadow: 0 40px 80px rgba(0,0,0,.65), 0 0 50px rgba(25,214,220,.12), inset 0 1px 0 rgba(255,255,255,.22);
  z-index: 5;
}
.hfc[data-depth="0.8"] {
  border-top-color: rgba(255,255,255,.30);
  box-shadow: 0 32px 65px rgba(0,0,0,.58), 0 0 40px rgba(25,214,220,.08), inset 0 1px 0 rgba(255,255,255,.18);
  z-index: 4;
}
.hfc[data-depth="0.6"] {
  box-shadow: 0 26px 52px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.14);
  z-index: 3;
}
.hfc[data-depth="0.5"] {
  box-shadow: 0 20px 42px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.12);
  opacity: .90;
  z-index: 2;
}
.hfc[data-depth="0.4"] {
  /* Farthest: dimmer, slightly blurred (depth of field) */
  box-shadow: 0 16px 34px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.09);
  opacity: .80;
  filter: blur(0.4px);
  z-index: 1;
}

/* Upgrade AOS start state: scale adds visible weight to the reveal */
[data-aos] {
  transform: translateY(36px) scale(0.96);
}
[data-aos].aos-animate {
  transform: translateY(0) scale(1);
}

/* Tilt-card: hint the browser about the coming transform */
.tilt-card {
  transition: box-shadow 0.3s ease;
  will-change: transform;
}
