/* ==========================================================================
   SNESH TECHNO — Premium Digital Business Card Platform
   Design System / Global Stylesheet
   --------------------------------------------------------------------------
   1.  Design Tokens (colors, type, spacing, radii, shadows, motion)
   2.  Reset & Base
   3.  Typography
   4.  Layout Helpers (container, section, grid, dividers)
   5.  Background FX (aurora, grid, noise, particles)
   6.  Custom Cursor
   7.  Preloader
   8.  Buttons
   9.  Glass Cards & Gradient Borders
   10. Navbar
   11. Hero
   12. Marquee / Trusted logos
   13. Feature Grid
   14. Stats / Counters
   15. How It Works / Timeline
   16. Business Categories
   17. Showcase / Screenshots
   18. Why Choose / Benefits
   19. Testimonials
   20. Pricing
   21. FAQ Accordion
   22. Contact
   23. CTA band
   24. Footer
   25. Reveal / Animation utilities
   26. Responsive
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* --- Brand core --- */
  --royal:        #2E7CF6;
  --royal-bright: #4C9BFF;
  --sky:          #7FBAFF;
  --deep:         #0B2E7A;
  --navy:         #061634;
  --emerald:      #13D9A3;
  --emerald-2:    #2BF0BF;

  /* --- Surfaces --- */
  --bg-0:  #04060D;          /* premium black (page)              */
  --bg-1:  #070B15;          /* section base                      */
  --bg-2:  #0C1220;          /* raised surface                    */
  --bg-3:  #121A2B;          /* card surface                      */

  /* --- Glass --- */
  --glass:        rgba(18, 26, 43, 0.55);
  --glass-strong: rgba(20, 30, 52, 0.72);
  --glass-brd:    rgba(120, 160, 230, 0.16);
  --glass-brd-hi: rgba(120, 170, 255, 0.42);

  /* --- Text --- */
  --text:      #EEF3FB;
  --text-soft: #C4D0E4;
  --muted:     #8494AD;
  --faint:     #5B6A82;

  /* --- Gradients --- */
  --grad-brand:  linear-gradient(135deg, var(--royal-bright) 0%, var(--royal) 45%, var(--deep) 100%);
  --grad-brand-2:linear-gradient(120deg, var(--sky) 0%, var(--royal) 50%, var(--emerald) 130%);
  --grad-emerald:linear-gradient(135deg, var(--emerald-2) 0%, var(--emerald) 60%, var(--royal) 130%);
  --grad-text:   linear-gradient(120deg, #ffffff 0%, var(--sky) 55%, var(--royal-bright) 100%);
  --grad-border: linear-gradient(135deg, rgba(124,180,255,.55), rgba(19,217,163,.10) 40%, rgba(124,180,255,.05) 70%, rgba(124,180,255,.4));

  /* --- Glow / Shadow --- */
  --glow-blue:    0 0 40px rgba(46,124,246,.45);
  --glow-emerald: 0 0 40px rgba(19,217,163,.40);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.35);
  --shadow-md: 0 18px 50px rgba(3,7,18,.55);
  --shadow-lg: 0 40px 90px rgba(3,7,18,.65);

  /* --- Type --- */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Space Grotesk", ui-monospace, monospace;

  /* --- Spacing (8px system) --- */
  --sp-1: .5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;   --sp-6: 4rem;   --sp-7: 6rem;    --sp-8: 8rem;

  /* --- Radii --- */
  --r-sm: 12px;  --r-md: 18px;  --r-lg: 26px;  --r-xl: 34px;  --r-pill: 999px;

  /* --- Motion --- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .5s;

  --container: 1240px;
  --nav-h: 82px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(46,124,246,.35); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--royal), var(--deep)); border-radius: 10px; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -.02em; }
.display {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.035em;
}
.h-section { font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -.03em; }
.h-sub { font-size: clamp(1.35rem, 2.2vw, 1.62rem); font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--text-soft); line-height: 1.7; }
.small { font-size: 1rem; }
.gradient-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.emerald-text { background: var(--grad-emerald); -webkit-background-clip: text; background-clip: text; color: transparent; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sky);
  padding: .5rem 1rem; border-radius: var(--r-pill);
  background: rgba(46,124,246,.08);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald); box-shadow: var(--glow-emerald);
}

/* ==========================================================================
   4. LAYOUT HELPERS
   ========================================================================== */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2.6rem, 1440px); margin-inline: auto; }
  section { position: relative; padding: clamp(2.5rem, 5vw, 4rem) 0; }
  .section-head { max-width: 720px; margin: 0 auto clamp(1.5rem,3vw,2.5rem); text-align: center; }
.section-head .lead { margin-top: 1.1rem; }
.text-center { text-align: center; }
.mt-1{margin-top:var(--sp-1)}.mt-2{margin-top:var(--sp-2)}.mt-3{margin-top:var(--sp-3)}
.mt-4{margin-top:var(--sp-4)}.mt-5{margin-top:var(--sp-5)}
.grid { display: grid; gap: 1.5rem; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; gap: 1rem; flex-wrap: wrap; }
.center { align-items: center; justify-content: center; }

.divider {
  height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--glass-brd-hi), transparent);
  position: relative; overflow: visible;
}

/* ==========================================================================
   5. BACKGROUND FX
   ========================================================================== */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-fx .aurora {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  will-change: transform;
}
.aurora.a1 { width: 46vw; height: 46vw; left: -8vw; top: -6vw;
  background: radial-gradient(circle, rgba(46,124,246,.55), transparent 65%); }
.aurora.a2 { width: 40vw; height: 40vw; right: -10vw; top: 22vh;
  background: radial-gradient(circle, rgba(46,124,246,.30), transparent 65%); }
.aurora.a3 { width: 50vw; height: 50vw; left: 30vw; bottom: -20vh;
  background: radial-gradient(circle, rgba(11,46,122,.55), transparent 60%); }

.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(120,160,230,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,160,230,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
}
.bg-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* ==========================================================================
   6. CUSTOM CURSOR
   ========================================================================== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; transform: translate(-50%,-50%); mix-blend-mode: screen;
}
.cursor-dot { width: 7px; height: 7px; background: var(--emerald-2); }
.cursor-ring {
  width: 40px; height: 40px; border: 1.5px solid rgba(46,124,246,.7);
  transition: width .3s var(--ease), height .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease);
}
.cursor-ring.hover { width: 66px; height: 66px; background: rgba(46,124,246,.14); border-color: var(--emerald-2); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ==========================================================================
   7. PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-0);
  display: grid; place-content: center; gap: 1.6rem; justify-items: center;
}
.preloader.done { opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility .7s; }
.pre-mark { width: 90px; height: 90px; border-radius: 14px; background: rgba(255,255,255,.06); padding: 3px; }
.pre-bar { width: 190px; height: 3px; border-radius: 3px; background: rgba(120,160,230,.15); overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 0; background: var(--grad-brand); box-shadow: var(--glow-blue); }
.pre-pct { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .3em; color: var(--muted); }

/* ==========================================================================
   8. BUTTONS
   ========================================================================== */
.btn {
  --pad-y: .95rem; --pad-x: 1.7rem;
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em;
  border-radius: var(--r-pill); overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), color .35s;
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }

.btn-primary { color: #061224; background: var(--grad-brand); box-shadow: 0 10px 34px rgba(46,124,246,.42); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: var(--grad-emerald); transition: opacity .4s var(--ease);
}
.btn-primary:hover { color: #04140f; box-shadow: 0 14px 46px rgba(46,124,246,.5); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  color: var(--text); background: var(--glass); border: 1px solid var(--glass-brd);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { border-color: var(--glass-brd-hi); box-shadow: var(--glow-blue); color: #fff; }

.btn-outline {
  color: var(--sky); background: transparent;
  border: 1px solid var(--glass-brd-hi);
}
.btn-outline:hover { background: rgba(46,124,246,.1); color: #fff; }

.btn-lg { --pad-y: 1.15rem; --pad-x: 2.2rem; font-size: 1.08rem; }
.btn-sm { --pad-y: .7rem; --pad-x: 1.25rem; font-size: .92rem; }
.btn-block { width: 100%; }

/* Ripple */
.ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(46,124,246,.4);
  animation: ripple .65s var(--ease-out); pointer-events: none; }
@keyframes ripple { to { transform: scale(2.6); opacity: 0; } }

/* Magnetic wrapper keeps transform isolated */
.magnetic { display: inline-flex; will-change: transform; }

/* ==========================================================================
   9. GLASS CARDS & GRADIENT BORDERS
   ========================================================================== */
.glass {
  position: relative; background: var(--glass);
  border: 1px solid var(--glass-brd); border-radius: var(--r-lg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}
/* Gradient border via mask */
.grad-border { position: relative; }
.grad-border::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; transition: opacity .4s;
}

.card {
  position: relative; padding: 2rem;
  background: linear-gradient(180deg, rgba(18,26,43,.72), rgba(9,13,21,.72));
  border: 1px solid var(--glass-brd); border-radius: var(--r-lg);
  backdrop-filter: blur(16px); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s, box-shadow .5s;
  will-change: transform;
}
.card::after { /* soft top glow */
  content: ""; position: absolute; top: -40%; left: 50%; width: 140%; height: 60%;
  transform: translateX(-50%); pointer-events: none; opacity: 0; transition: opacity .5s;
  background: radial-gradient(ellipse at center, rgba(46,124,246,.28), transparent 60%);
}
.card:hover { border-color: var(--glass-brd-hi); box-shadow: var(--shadow-lg), var(--glow-blue); }
.card:hover::after { opacity: 1; }

/* Spotlight follows cursor (var set by JS) */
.spotlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  transition: opacity .4s; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(46,124,246,.18), transparent 65%);
}
.spotlight:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-content: center;
  background: linear-gradient(150deg, rgba(46,124,246,.22), rgba(46,124,246,.12));
  border: 1px solid var(--glass-brd-hi); margin-bottom: 1.25rem; color: var(--sky);
  box-shadow: inset 0 1px 0 rgba(46,124,246,.08);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: 1rem; }

/* ==========================================================================
   10. NAVBAR
   ========================================================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s var(--ease), border-color .4s, box-shadow .4s, height .4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(6,10,20,.72); backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--glass-brd); box-shadow: 0 12px 40px rgba(0,0,0,.35);
  height: 70px;
}
.navbar .container-wide {
  display: flex; align-items: center; justify-content: space-between;
  width: min(100% - 2.6rem, 1440px); margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 700; }
.brand .mark { width: 56px; height: 56px; flex-shrink: 0; border-radius: 12px; }
.brand-logo { object-fit: contain; border-radius: 10px; padding: 0; background: transparent !important; box-shadow: none !important; }
.pre-mark.brand-logo { border-radius: 50%; padding: 0; background: transparent !important; box-shadow: none !important; }
.brand .name { font-size: 1.16rem; letter-spacing: -.01em; white-space: nowrap; }
.brand .name b { color: #fff; }
.brand .name span { color: var(--sky); }
.brand small { display: block; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .28em; color: var(--muted); text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  position: relative; padding: .55rem .7rem; font-size: .92rem; font-weight: 500;
  color: var(--text-soft); border-radius: var(--r-pill); transition: color .3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--grad-emerald); border-radius: 2px; transition: width .35s var(--ease), left .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 20px; left: calc(50% - 10px); }
.nav-cta { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-cta .btn-nav-desktop { white-space: nowrap; }

.nav-toggle { display: none; flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--glass-brd); background: var(--glass); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: #fff; border-radius: 2px; transition: .35s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 899; padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
  background: rgba(5,8,16,.94); backdrop-filter: blur(22px);
  transform: translateX(100%); transition: transform .55s var(--ease-out);
  display: flex; flex-direction: column; gap: .4rem; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 1.05rem .4rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  border-bottom: 1px solid var(--glass-brd); }
.mobile-menu .btn { margin-top: 1.4rem; }

/* Tablet: < 1024px — smaller nav, tighter spacing */
@media (max-width: 1024px) {
  .navbar .container-wide { width: 100% - 2rem; }
  .brand .name { font-size: 1.05rem; }
  .brand small { display: none; }
  .nav-links a { padding: .45rem .5rem; font-size: .88rem; }
  .nav-cta .btn-sm { padding: .5rem .9rem; font-size: .88rem; }
}
/* Phone: < 800px — hide desktop nav, show toggle */
@media (max-width: 800px) {
  .nav-links, .nav-cta .btn-nav-desktop { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}
/* Small phone: < 480px — brand compact */
@media (max-width: 480px) {
  .brand .name { font-size: .95rem; }
  .brand .mark { width: 34px; height: 34px; }
  .nav-cta .btn-sm { padding: .45rem .75rem; font-size: .85rem; }
}

/* ==========================================================================
   11. HERO
   ========================================================================== */
.hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 3rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero h1 { margin: 1.6rem 0; }
.hero .lead { max-width: 540px; }
.hero-cta { margin-top: 2.2rem; }
.hero-meta { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta .m-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; }
.hero-meta .m-lab { font-size: .9rem; color: var(--muted); }
.hero-avatars { display: flex; align-items: center; gap: .9rem; margin-top: 2.4rem; }
.avatars { display: flex; }
.avatars img, .avatars span {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--bg-0);
  margin-left: -12px; object-fit: cover; display: grid; place-content: center;
  font-size: .8rem; font-weight: 700; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: var(--emerald-2); letter-spacing: 2px; }

/* Phone mockup */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 560px; }
.phone {
  position: relative; width: 300px; height: 610px; border-radius: 46px; z-index: 3;
  background: linear-gradient(160deg, #182338, #0a0f1c);
  border: 1px solid var(--glass-brd-hi); padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(46,124,246,.28);
  will-change: transform;
}
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; border-radius: 14px; background: #05070d; z-index: 4; }
.phone-screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden; position: relative;
  background: radial-gradient(120% 80% at 50% 0%, rgba(46,124,246,.28), transparent 55%), var(--bg-2);
  display: flex; flex-direction: column; align-items: center; padding: 3.4rem 1.4rem 1.4rem;
}
.pc-avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--grad-brand);
  display: grid; place-content: center; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #04140f;
  box-shadow: var(--glow-blue); margin-bottom: 1rem; }
.pc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.pc-role { color: var(--sky); font-size: .85rem; margin-bottom: 1.2rem; }
.pc-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: .6rem; width: 100%; margin-bottom: 1.2rem; }
.pc-actions i { aspect-ratio: 1; border-radius: 13px; display: grid; place-content: center;
  background: var(--glass); border: 1px solid var(--glass-brd); color: var(--sky); }
.pc-actions i svg { width: 20px; height: 20px; }
.pc-qr { width: 130px; height: 130px; border-radius: 16px; background: #fff; padding: 10px; margin-top: auto; }
.pc-qr svg { width: 100%; height: 100%; }
.pc-tag { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; color: var(--muted); margin-top: .7rem; text-transform: uppercase; }

/* Floating chips around phone */
.float-chip {
  position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem; border-radius: var(--r-pill); font-size: .85rem; font-weight: 600;
  background: var(--glass-strong); border: 1px solid var(--glass-brd-hi);
  backdrop-filter: blur(14px); box-shadow: var(--shadow-md); white-space: nowrap; will-change: transform;
}
.float-chip svg { width: 17px; height: 17px; }
.float-chip.c1 { top: 8%; left: -6%; color: var(--emerald-2); }
.float-chip.c2 { top: 40%; right: -12%; color: var(--sky); }
.float-chip.c3 { bottom: 12%; left: -10%; color: #fff; }
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, rgba(46,124,246,.4), transparent 62%); filter: blur(30px); }

/* ==========================================================================
   12. MARQUEE
   ========================================================================== */
.marquee-wrap { padding: 3rem 0; border-block: 1px solid var(--glass-brd); overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-label { text-align: center; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.marquee { display: flex; gap: 4rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--faint);
  display: inline-flex; align-items: center; gap: .6rem; transition: color .3s; white-space: nowrap; }
.marquee span:hover { color: var(--text); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   13. FEATURE GRID
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.feature-grid .card { padding: 1.7rem; }
.feature-grid .card h3 { font-size: 1.08rem; }
.feature-grid .card p { font-size: .93rem; }
.feature-tabs { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.feature-tab { padding: .6rem 1.2rem; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem;
  color: var(--muted); border: 1px solid var(--glass-brd); background: var(--glass); transition: .3s; }
.feature-tab.active, .feature-tab:hover { color: #fff; border-color: var(--glass-brd-hi); background: rgba(46,124,246,.12); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(6,1fr); grid-auto-rows: minmax(200px,auto); gap: 1.4rem; }
.bento .card { padding: 2rem; display: flex; flex-direction: column; }
.b-wide { grid-column: span 4; } .b-tall { grid-column: span 2; grid-row: span 2; }
.b-md { grid-column: span 3; } .b-sm { grid-column: span 2; }

/* ==========================================================================
   14. STATS / COUNTERS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.stat { text-align: center; padding: 2.4rem 1.4rem; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,4vw,3.4rem);
  line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .num .suf { -webkit-text-fill-color: var(--emerald-2); }
.stat .lab { color: var(--muted); margin-top: .7rem; font-size: .96rem; }

/* ==========================================================================
   15. HOW IT WORKS / TIMELINE
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; position: relative; }
.step { position: relative; padding-top: 1rem; }
.step .num-badge { width: 54px; height: 54px; border-radius: 16px; display: grid; place-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #04140f;
  background: var(--grad-brand); box-shadow: var(--glow-blue); margin-bottom: 1.4rem; }
.step h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.step p { color: var(--muted); }
.step-line { position: absolute; top: 27px; left: 54px; right: -1rem; height: 2px;
  background: linear-gradient(90deg, var(--royal), transparent); opacity: .5; }
.step:last-child .step-line { display: none; }

/* Vertical timeline (About) */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--royal), var(--emerald), transparent); }
.tl-item { position: relative; padding: 0 0 2.6rem 1.6rem; }
.tl-item::before { content: ""; position: absolute; left: -2.05rem; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--bg-0); border: 3px solid var(--royal); box-shadow: var(--glow-blue); }
.tl-year { font-family: var(--font-mono); color: var(--emerald-2); font-size: .9rem; letter-spacing: .1em; }
.tl-item h3 { font-size: 1.25rem; margin: .4rem 0; }
.tl-item p { color: var(--muted); }

/* ==========================================================================
   16. BUSINESS CATEGORIES
   ========================================================================== */
.cats { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.cat {
  display: flex; flex-direction: column; align-items: center; gap: .8rem; padding: 1.6rem 1rem;
  border-radius: var(--r-md); text-align: center;
  background: var(--glass); border: 1px solid var(--glass-brd); backdrop-filter: blur(12px);
  transition: transform .4s var(--ease-out), border-color .4s, background .4s;
}
.cat:hover { transform: translateY(-6px); border-color: var(--glass-brd-hi); background: rgba(46,124,246,.1); }
.cat-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-content: center; color: var(--sky);
  background: linear-gradient(150deg, rgba(46,124,246,.2), rgba(46,124,246,.1)); border: 1px solid var(--glass-brd); }
.cat-ic svg { width: 24px; height: 24px; }
.cat span { font-size: .92rem; font-weight: 600; color: var(--text-soft); }

/* ==========================================================================
   17. SHOWCASE
   ========================================================================== */
.showcase { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.shot { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--glass-brd); background: var(--bg-2);
  transition: transform .5s var(--ease-out), box-shadow .5s; will-change: transform; }
.shot:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow-blue); }
.shot-inner { position: absolute; inset: 0; padding: 1.6rem; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(46,124,246,.14), transparent 40%), var(--bg-2); }
.shot-top { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.shot-av { width: 52px; height: 52px; border-radius: 50%; display: grid; place-content: center;
  font-family: var(--font-display); font-weight: 800; color: #04140f; font-size: 1.2rem; }
.shot h4 { font-size: 1.05rem; } .shot .role { color: var(--muted); font-size: .82rem; }
.shot-badges { margin-top: auto; display: flex; gap: .5rem; flex-wrap: wrap; }
.shot-badges b { font-size: .72rem; font-weight: 600; padding: .35rem .7rem; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-brd); color: var(--sky); }

/* ==========================================================================
   18. WHY CHOOSE / BENEFITS
   ========================================================================== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.benefit { display: flex; gap: 1.1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--glass-brd); }
.benefit:last-child { border-bottom: 0; }
.benefit .b-ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-content: center;
  color: var(--emerald-2); background: rgba(46,124,246,.12); border: 1px solid rgba(46,124,246,.28); }
.benefit .b-ic svg { width: 22px; height: 22px; }
.benefit h4 { font-size: 1.12rem; margin-bottom: .3rem; }
.benefit p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   19. TESTIMONIALS
   ========================================================================== */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.review { padding: 2rem; }
.review .stars { margin-bottom: 1rem; font-size: 1.05rem; }
.review p { color: var(--text-soft); font-size: 1.02rem; line-height: 1.65; }
.review-by { display: flex; align-items: center; gap: .9rem; margin-top: 1.6rem; }
.review-by .av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-content: center;
  font-family: var(--font-display); font-weight: 800; color: #04140f; }
.review-by b { display: block; font-size: .98rem; } .review-by span { color: var(--muted); font-size: .84rem; }

/* ==========================================================================
   20. PRICING
   ========================================================================== */
.price-toggle { display: inline-flex; gap: .3rem; padding: .35rem; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-brd); margin: 0 auto 3rem; }
.price-toggle button { padding: .65rem 1.4rem; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem;
  color: var(--muted); transition: .3s; position: relative; }
.price-toggle button.active { color: #04140f; background: var(--grad-brand); }
.price-toggle .save { font-size: .68rem; margin-left: .4rem; padding: .12rem .45rem; border-radius: var(--r-pill);
  background: rgba(46,124,246,.2); color: var(--emerald-2); }

/* Billing note — stands in for the removed monthly/yearly toggle, so it owns
   the same vertical rhythm the toggle did (margin-bottom 3rem). */
.billing-note { display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem; border-radius: var(--r-pill); margin: 0 auto 3rem;
  background: var(--glass); border: 1px solid var(--glass-brd);
  color: var(--muted); font-size: .85rem; line-height: 1.4; text-align: left; }
.billing-note svg { flex: 0 0 15px; width: 15px; height: 15px; color: var(--sky); }

/* stretch (not start) so every plan card is the same height — that is what
   lets `.plan .btn { margin-top:auto }` line all four CTAs up on one row
   regardless of how many feature bullets each plan has. */
.pricing { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; align-items: stretch; }
.plan { padding: 2.2rem 1.8rem; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--glass-brd-hi); box-shadow: var(--shadow-lg), var(--glow-blue);
  transform: scale(1.03); z-index: 2; }
.plan.featured::before { opacity: 1; }
.plan-badge { position: absolute; top: 1.4rem; right: 1.4rem; font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; padding: .35rem .7rem; border-radius: var(--r-pill);
  background: var(--grad-emerald); color: #04140f; font-weight: 700; }
.plan .p-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--sky); }
.plan .p-desc { color: var(--muted); font-size: .9rem; margin: .4rem 0 1.4rem; min-height: 40px; }
.plan .p-price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; }
.plan .p-price sub { font-size: .95rem; font-weight: 500; color: var(--muted); vertical-align: baseline; }
.plan .p-cycle { color: var(--muted); font-size: .85rem; margin-top: .3rem; }
.plan ul { margin: 1.6rem 0; display: flex; flex-direction: column; gap: .8rem; }
.plan li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--text-soft); }
.plan li svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--emerald-2); margin-top: 3px; }
.plan li.off { color: var(--faint); } .plan li.off svg { color: var(--faint); }
.plan .btn { margin-top: auto; }

/* Comparison table */
.compare { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--r-lg); }
.compare th, .compare td { padding: 1.1rem 1.3rem; text-align: center; border-bottom: 1px solid var(--glass-brd); }
.compare th:first-child, .compare td:first-child { text-align: left; color: var(--text-soft); }
.compare thead th { font-family: var(--font-display); font-size: 1.05rem; background: var(--glass); }
.compare tbody td svg { width: 20px; height: 20px; color: var(--emerald-2); margin-inline: auto; }
.compare .x { color: var(--faint); }
.compare tr:hover td { background: rgba(46,124,246,.05); }

/* ==========================================================================
   21. FAQ ACCORDION
   ========================================================================== */
.faq-search { max-width: 560px; margin: 0 auto 1.4rem; position: relative; }
.faq-search input { width: 100%; padding: 1.05rem 1.3rem 1.05rem 3rem; border-radius: var(--r-pill);
  background: var(--glass); border: 1px solid var(--glass-brd); color: #fff; font-size: 1rem; }
.faq-search input:focus { outline: none; border-color: var(--glass-brd-hi); box-shadow: var(--glow-blue); }
.faq-search svg { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); width: 20px; color: var(--muted); }
.faq-filters { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.faq-filter { padding: .55rem 1.1rem; border-radius: var(--r-pill); font-size: .9rem; font-weight: 600; color: var(--muted);
  background: var(--glass); border: 1px solid var(--glass-brd); transition: .3s; }
.faq-filter.active, .faq-filter:hover { color: #fff; border-color: var(--glass-brd-hi); background: rgba(46,124,246,.12); }

.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 1px solid var(--glass-brd); border-radius: var(--r-md); background: var(--glass);
  overflow: hidden; transition: border-color .3s, background .3s; }
.faq-item.open { border-color: var(--glass-brd-hi); background: rgba(46,124,246,.06); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.35rem 1.6rem; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.faq-q .ic { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-content: center;
  border: 1px solid var(--glass-brd-hi); transition: transform .4s var(--ease), background .4s; color: var(--sky); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); background: var(--grad-brand); color: #04140f; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding: 0 1.6rem 1.5rem; color: var(--muted); line-height: 1.7; }

/* ==========================================================================
   22. CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: stretch; }
.contact-info { padding: 2.4rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-item .ic { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; display: grid; place-content: center;
  color: var(--sky); background: linear-gradient(150deg, rgba(46,124,246,.2), rgba(46,124,246,.1)); border: 1px solid var(--glass-brd); }
.ci-item .ic svg { width: 22px; height: 22px; }
.ci-item b { display: block; font-size: 1.02rem; } .ci-item span, .ci-item a { color: var(--muted); font-size: .95rem; }
.ci-item a:hover { color: var(--sky); }

.form { padding: 2.4rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-soft); margin-bottom: .5rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .95rem 1.1rem; border-radius: var(--r-sm); color: #fff; font-size: 1rem;
  background: rgba(6,10,20,.6); border: 1px solid var(--glass-brd); transition: border-color .3s, box-shadow .3s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--glass-brd-hi); box-shadow: var(--glow-blue); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { color: var(--muted); font-size: .84rem; margin-top: .8rem; text-align: center; }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: var(--r-sm); margin-top: 1rem;
  background: rgba(46,124,246,.12); border: 1px solid rgba(46,124,246,.3); color: var(--emerald-2); font-size: .95rem; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-brd);
  aspect-ratio: 21/9; position: relative; background: var(--bg-2);
  display: grid; place-content: center; text-align: center; gap: .6rem; }
.map-embed::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(120,160,230,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(120,160,230,.06) 1px, transparent 1px);
  background-size: 40px 40px; }
.map-pin { position: relative; width: 54px; height: 54px; border-radius: 50%; display: grid; place-content: center;
  background: var(--grad-brand); color: #04140f; box-shadow: var(--glow-blue); }
.map-pin::after { content: ""; position: absolute; inset: -12px; border-radius: 50%; border: 2px solid var(--royal);
  animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%{transform:scale(.8);opacity:.9} 100%{transform:scale(2);opacity:0} }

/* ==========================================================================
   23. CTA BAND
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2rem,4vw,3rem);
  text-align: center; border: 1px solid var(--glass-brd-hi);
  background: linear-gradient(135deg, rgba(46,124,246,.18), rgba(46,124,246,.08)), var(--bg-2); }
.cta-band::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  top: -60%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(46,124,246,.4), transparent 60%); filter: blur(40px); }
.cta-band > * { position: relative; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ==========================================================================
   24. FOOTER
   ========================================================================== */
.footer { position: relative; padding: 2.5rem 0 1rem; border-top: 1px solid var(--glass-brd);
  background: linear-gradient(180deg, transparent, rgba(6,10,20,.6)); }
/* Brand column carries the most content, so give it the extra width and keep
   the two link columns tight; capping + centring the row stops the columns
   spreading edge-to-edge on wide screens and leaving a big empty middle. */
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; gap: 2rem 3rem;
  padding-bottom: 0; align-items: start; max-width: 1140px; margin-inline: auto; }
/* The QR column is optional (admin toggle), so the track count follows the
   markup with :has() rather than being hard-coded — without this the QR would
   wrap onto its own row under the brand column. */
.footer-top:has(.footer-qr-col) { grid-template-columns: 1.5fr 1fr 1.1fr auto; }
.footer .brand { margin-bottom: 1rem; }
.footer-col h5 { font-family: var(--font-display); font-size: .95rem; letter-spacing: .04em; margin-bottom: 1.2rem; color: #fff; }
.footer-col a { display: block; color: var(--muted); padding: .4rem 0; font-size: .95rem; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: var(--sky); padding-left: 6px; }
.footer p.about { color: var(--muted); font-size: .95rem; max-width: 300px; line-height: 1.6; }

.footer-contact { margin-top: 1.2rem; }
.footer-contact .fc-item { display: flex; align-items: flex-start; gap: .6rem; color: var(--muted); font-size: .9rem; padding: .4rem 0; }
.footer-contact .fc-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--sky); }
.footer-contact .fc-item a { display: inline; padding: 0; color: var(--muted); font-size: .9rem; }
.footer-contact .fc-item a:hover { color: var(--sky); padding-left: 0; }

.footer-newsletter { text-align: center; padding: 1.8rem 0 1.5rem; border-top: 1px solid var(--glass-brd); margin-top: 1.5rem; }
.footer-newsletter h5 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .4rem; color: #fff; }
.footer-newsletter p { color: var(--muted); font-size: .92rem; margin-bottom: 1rem; }
.footer-newsletter .newsletter { max-width: 440px; margin: 0 auto; }

.newsletter { display: flex; gap: .6rem; max-width: 340px; }
.newsletter input { flex: 1; padding: .75rem 1.1rem; border-radius: var(--r-pill);
  background: rgba(6,10,20,.6); border: 1px solid var(--glass-brd); color: #fff; font-size: .92rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.35); }
.newsletter input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(46,124,246,.15); }
.newsletter button { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; display: grid; place-content: center;
  background: var(--grad-brand); color: #04140f; transition: transform .3s; }
.newsletter button:hover { transform: scale(1.08) rotate(-8deg); }

/* ---- Footer QR ---- */
.footer-qr-col { text-align: center; }
.footer-qr { display: inline-block; padding: 8px; border-radius: 14px; background: #fff;
  line-height: 0; box-shadow: 0 12px 30px -14px rgba(0,0,0,.8); transition: transform .3s, box-shadow .3s; }
/* .footer-col a is a block link with hover padding — undo both here, or the
   QR would stretch full width and shunt sideways on hover. */
.footer-col a.footer-qr { display: inline-block; padding: 8px; }
.footer-col a.footer-qr:hover { padding-left: 8px; transform: translateY(-4px); box-shadow: 0 18px 36px -14px rgba(0,0,0,.9); }
.footer-qr img { display: block; width: 140px; height: 140px; object-fit: contain; border-radius: 7px; }
.footer-qr-cap { margin-top: .7rem; color: var(--muted); font-size: .82rem; line-height: 1.5; max-width: 170px;
  margin-inline: auto; }

.socials { display: flex; gap: .7rem; margin-top: 1.4rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-content: center;
  background: var(--glass); border: 1px solid var(--glass-brd); color: var(--text-soft); transition: .3s; }
.socials a:hover { color: #fff; border-color: var(--glass-brd-hi); transform: translateY(-4px); box-shadow: var(--glow-blue); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom { display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding-top: 1.2rem; border-top: 1px solid var(--glass-brd); color: var(--muted); font-size: .88rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--sky); }

/* Sub-page hero */
.page-hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 1.5rem; text-align: center; }
.page-hero .display { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.breadcrumb { font-family: var(--font-mono); font-size: .82rem; letter-spacing: .1em; color: var(--muted);
  margin-bottom: 1.4rem; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--sky); }

/* Values / mission cards */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }

/* Team */
.team { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.member { text-align: center; padding: 2rem 1.4rem; }
.member .av { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 1.2rem; display: grid; place-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #04140f; box-shadow: var(--glow-blue); }
.member h4 { font-size: 1.1rem; } .member .role { color: var(--sky); font-size: .88rem; margin-bottom: .8rem; }
.member .m-soc { display: flex; gap: .5rem; justify-content: center; }
.member .m-soc a { width: 34px; height: 34px; border-radius: 10px; display: grid; place-content: center;
  background: var(--glass); border: 1px solid var(--glass-brd); color: var(--muted); transition: .3s; }
.member .m-soc a:hover { color: #fff; border-color: var(--glass-brd-hi); }
.member .m-soc svg { width: 16px; height: 16px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 180px; gap: 1rem; }
.gallery .g { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--glass-brd); position: relative;
  background: linear-gradient(150deg, var(--bg-3), var(--bg-1)); transition: transform .4s var(--ease-out); }
.gallery .g:hover { transform: scale(1.02); border-color: var(--glass-brd-hi); }
.gallery .g.big { grid-column: span 2; grid-row: span 2; }
.gallery .g .g-label { position: absolute; left: 1rem; bottom: 1rem; font-family: var(--font-mono); font-size: .74rem;
  letter-spacing: .12em; color: var(--sky); text-transform: uppercase; }
.gallery .g .g-ic { position: absolute; inset: 0; display: grid; place-content: center; color: rgba(46,124,246,.28); }
.gallery .g .g-ic svg { width: 54px; height: 54px; }

/* ==========================================================================
   25. REVEAL / ANIMATION UTILITIES
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(38px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-stagger] > * { opacity: 0; transform: translateY(30px); }
.tilt { transform-style: preserve-3d; }
/* Word wrapper for the split-text reveal: inline-block so words flow &
   wrap naturally (not one word per line). overflow clips the reveal;
   padding/margin give descenders (p, g, y) room so they aren't cut. */
.split-line { display: inline-block; overflow: hidden; vertical-align: top;
  margin-right: .26em; padding-bottom: .14em; margin-bottom: -.14em; }
.split-line > span { display: inline-block; will-change: transform; }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--muted); font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; font-family: var(--font-mono); }
.scroll-cue .mouse { width: 24px; height: 40px; border: 2px solid var(--glass-brd-hi); border-radius: 14px; position: relative; }
.scroll-cue .mouse::before { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; border-radius: 4px;
  transform: translateX(-50%); background: var(--emerald-2); animation: wheel 1.6s var(--ease) infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   26. RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .cats { grid-template-columns: repeat(3,1fr); }
  .pricing { grid-template-columns: repeat(2,1fr); }
  .plan.featured { transform: none; }
  .team { grid-template-columns: repeat(2,1fr); }
  .bento { grid-template-columns: repeat(4,1fr); }
  .b-wide { grid-column: span 4; } .b-tall { grid-column: span 2; grid-row: span 1; }
  .b-md, .b-sm { grid-column: span 2; }
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { min-height: 480px; order: -1; }
  .why, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .showcase, .reviews, .values { grid-template-columns: 1fr; }
  .footer-top,
  .footer-top:has(.footer-qr-col) { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .feature-grid, .stats, .cats, .pricing, .team, .bento { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g.big { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top,
  .footer-top:has(.footer-qr-col) { grid-template-columns: 1fr; }
  .footer-qr-col { text-align: left; }
  .footer-qr-cap { margin-inline: 0; }
  .hero-meta { gap: 1.2rem; }
  .phone { width: 260px; height: 540px; }
  .float-chip.c2 { right: -4%; } .float-chip.c1 { left: 0; } .float-chip.c3 { left: 0; }
  .bento .card { grid-column: span 1 !important; }
}
