/* =====================================================================
   G1Seva — Design Prototype Stylesheet
   Palette: royal blue / cyan / white, subtle gold accents
   ===================================================================== */

:root {
  --navy-950: #17220B;
  --navy-900: #202d0b;
  --navy-800: #34420f;
  --navy-700: #536419;
  --blue-600: #c99b00;
  --blue-500: #f4c400;
  --blue-400: #ffd84d;
  --cyan-400: #77bd63;
  --cyan-300: #a7d982;
  --gold-500: #d7ae00;
  --gold-300: #ffe779;
  --white: #ffffff;
  --ink-900: #0B1324;
  --ink-700: #2B3650;
  --ink-500: #5B667F;
  --ink-300: #A5AEC2;
  --line: rgba(11, 19, 36, 0.08);
  --surface: #f7f4e4;
  --surface-2: #fff6d3;

  --font: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(11,19,36,.06), 0 6px 18px -8px rgba(11,19,36,.12);
  --shadow-md: 0 12px 30px -12px rgba(11,31,77,.25), 0 2px 6px rgba(11,31,77,.06);
  --shadow-lg: 0 30px 60px -24px rgba(6,17,49,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--navy-950);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
@media (min-width: 1800px) { .container { width: min(1400px, calc(100% - 80px)); } }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; white-space: nowrap; min-height: 46px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 16px 28px; font-size: 16px; min-height: 54px; }
.btn-sm { padding: 10px 18px; font-size: 14px; min-height: 40px; }
.btn-block { width: 100%; }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 10px 24px -10px rgba(201,155,0,.7), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(201,155,0,.75), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-glass {
  color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-outline { color: var(--navy-800); border-color: rgba(11,31,77,.18); background: #fff; }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn-whatsapp { color: #fff; background: #1FAF5A; box-shadow: 0 10px 24px -10px rgba(31,175,90,.6); }
.btn-whatsapp:hover { background: #189A4E; transform: translateY(-2px); }
.btn-ghost-dark { color: var(--navy-800); background: var(--surface-2); }
.btn .spin { display: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .8s linear infinite; }
.btn.is-loading .lbl { opacity: 0; }
.btn.is-loading .spin { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ------------------------------------------------------------ demo ribbon */
.demo-ribbon {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 90;
  display: flex; align-items: center; gap: 12px; max-width: calc(100% - 24px);
  padding: 10px 12px 10px 16px; border-radius: 14px; font-size: 13px; color: #fff;
  background: rgba(6,17,49,.82); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-lg);
}
.demo-ribbon i.fa-flask { color: var(--gold-300); margin-right: 4px; }
.demo-ribbon button { flex: none; width: 30px; height: 30px; border-radius: 8px; border: 0; background: rgba(255,255,255,.1); color: #fff; }
.demo-ribbon.is-hidden { display: none; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s, height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 66px;
  background: rgba(6,17,49,.72);
  backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.6);
}
.site-header.on-light { background: rgba(255,255,255,.78); border-color: var(--line); box-shadow: 0 10px 40px -24px rgba(11,31,77,.35); }
.header-inner { width: min(1240px, calc(100% - 32px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark svg { filter: drop-shadow(0 6px 14px rgba(201,155,0,.45)); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; font-size: 21px; letter-spacing: -0.02em; }
.brand-name span { color: var(--cyan-400); }
.brand-tag { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; font-weight: 600; margin-top: 3px; }
.on-light .brand { color: var(--navy-800); }
.on-light .brand-name span { color: var(--blue-600); }
.brand--sm .brand-tag { display: none; }

.nav-links { display: flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.nav-link { padding: 9px 16px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.78); transition: background .3s, color .3s; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-link.is-active { color: #fff; background: rgba(255,255,255,.14); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.on-light .nav-links { background: rgba(11,31,77,.05); border-color: rgba(11,31,77,.08); }
.on-light .nav-link { color: var(--ink-700); }
.on-light .nav-link:hover, .on-light .nav-link.is-active { color: var(--navy-800); background: #fff; box-shadow: var(--shadow-sm); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.on-light .nav-toggle { border-color: rgba(11,31,77,.12); background: #fff; }
.on-light .nav-toggle span { background: var(--navy-800); }

.mobile-menu { position: fixed; inset: 0; z-index: 100; visibility: hidden; pointer-events: none; }
.mobile-menu::before { content: ''; position: absolute; inset: 0; background: rgba(4,10,31,.6); opacity: 0; transition: opacity .35s; backdrop-filter: blur(6px); }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88%); padding: 18px 20px 28px;
  background: #fff; display: flex; flex-direction: column; gap: 14px;
  transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.3);
}
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu.is-open::before { opacity: 1; }
.mobile-menu.is-open .mobile-menu-panel { transform: none; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .brand { color: var(--navy-800); }
.mobile-menu .brand-name span { color: var(--blue-600); }
#mobile-close { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--navy-800); font-size: 18px; }
.mobile-links { display: flex; flex-direction: column; margin: 8px 0 auto; }
.mobile-links a { padding: 15px 12px; font-size: 18px; font-weight: 700; color: var(--navy-800); border-bottom: 1px solid var(--line); border-radius: 8px; }
.mobile-links a:active { background: var(--surface); }

/* ================================================================= HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px; color: #fff; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 100%, #34420f 0%, #202d0b 45%, #17220B 100%);
  isolation: isolate;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-canvas.is-ready { opacity: 1; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: -10% 0 0 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 55%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 55%, #000 30%, transparent 100%);
  transform: perspective(900px) rotateX(58deg) translateY(-8%); transform-origin: 50% 0;
  opacity: .75;
}
.beam { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.beam-a { width: 640px; height: 640px; right: -10%; top: -20%; background: radial-gradient(circle, rgba(201,155,0,.55), transparent 65%); animation: beam 14s ease-in-out infinite alternate; }
.beam-b { width: 520px; height: 520px; left: -12%; bottom: -25%; background: radial-gradient(circle, rgba(119,189,99,.35), transparent 65%); animation: beam 18s ease-in-out infinite alternate-reverse; }
.beam-c { width: 600px; height: 600px; left: 50%; top: -40%; transform: translateX(-50%); background: radial-gradient(circle, rgba(201,155,0,.4), transparent 65%); }
.beam-d { width: 560px; height: 560px; right: -10%; bottom: -30%; background: radial-gradient(circle, rgba(119,189,99,.28), transparent 65%); }
@keyframes beam { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-40px, 30px, 0) scale(1.08); } }
.hero-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,10,31,.5) 0%, transparent 25%, transparent 70%, #17220B 100%); }

.hero-inner {
  position: relative; z-index: 2; width: min(1240px, calc(100% - 40px)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 40px; align-items: center;
}
.hero-copy { max-width: 600px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(119,189,99,.18); }
.hero-title { font-size: clamp(38px, 4.6vw, 64px); font-weight: 800; margin: 22px 0 18px; letter-spacing: -0.035em; line-height: 1.04; }
.grad { background: linear-gradient(92deg, #7FB0FF 0%, var(--cyan-300) 55%, var(--gold-300) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-dark { background: linear-gradient(92deg, var(--blue-600), #0E9BB3); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(16px, 1.25vw, 18.5px); color: rgba(255,255,255,.74); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.82); }
.trust-list li { display: inline-flex; align-items: center; gap: 8px; }
.trust-list i { width: 20px; height: 20px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 10px; color: var(--navy-900); background: linear-gradient(180deg, var(--cyan-300), var(--cyan-400)); }
.hero-disclaimer { margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.45); }

/* ---- stage & 3D laptop ---- */
.hero-stage { position: relative; height: clamp(440px, 46vw, 620px); perspective: 1600px; perspective-origin: 50% 40%; }
.stage-tilt { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .6s var(--ease); will-change: transform; }

.laptop {
  position: absolute; left: 50%; top: 50%; width: min(560px, 92%); aspect-ratio: 1.55;
  transform: translate(-50%, -52%) rotateX(8deg) rotateY(-14deg) rotateZ(1deg); transform-style: preserve-3d;
  animation: float 9s ease-in-out infinite; will-change: transform;
}
@keyframes float {
  0%, 100% { transform: translate(-50%, -52%) rotateX(8deg) rotateY(-14deg) rotateZ(1deg) translateZ(0); }
  50% { transform: translate(-50%, -55%) rotateX(9.5deg) rotateY(-11deg) rotateZ(.4deg) translateZ(14px); }
}
.laptop-lid {
  position: absolute; left: 3%; right: 3%; top: 0; height: 78%;
  transform-origin: 50% 100%; transform: rotateX(-6deg) translateZ(4px); transform-style: preserve-3d;
}
.laptop-bezel {
  position: absolute; inset: 0; border-radius: 16px 16px 8px 8px; padding: 2.4% 2.4% 3.6%;
  background: linear-gradient(160deg, #1B2540, #0B1327 60%, #070D1D);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 1px 0 rgba(255,255,255,.14), 0 1px 0 rgba(0,0,0,.6);
}
.laptop-cam { position: absolute; top: 1.1%; left: 50%; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: #1f2b47; box-shadow: inset 0 0 2px #000, 0 0 0 1.5px rgba(255,255,255,.06); }
.laptop-screen {
  position: relative; width: 100%; height: 100%; border-radius: 8px; overflow: hidden;
  background: #F6F8FD; box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 0 40px rgba(201,155,0,.18) inset;
}
.screen-reflection {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(112deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.06) 28%, transparent 40%, transparent 75%, rgba(255,255,255,.05) 100%);
  mix-blend-mode: screen;
}
.laptop-lid-back { position: absolute; inset: 0; border-radius: 16px 16px 8px 8px; transform: translateZ(-6px); background: linear-gradient(180deg, #33415E, #16203A); box-shadow: 0 0 0 1px rgba(255,255,255,.05); }
.laptop-base {
  position: absolute; left: 0; right: 0; bottom: 0; height: 24%;
  transform-origin: 50% 0; transform: rotateX(78deg) translateZ(0); transform-style: preserve-3d;
}
.laptop-deck {
  position: absolute; inset: 0; border-radius: 10px 10px 22px 22px;
  background: linear-gradient(180deg, #2B3856 0%, #1A2440 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 0 0 1px rgba(255,255,255,.06);
}
.laptop-keys {
  position: absolute; left: 8%; right: 8%; top: 12%; height: 48%; border-radius: 6px;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 5.5%, transparent 5.5% 6.7%), repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 18%, transparent 18% 25%);
  background-color: rgba(0,0,0,.25);
  opacity: .9;
}
.laptop-trackpad { position: absolute; left: 38%; right: 38%; bottom: 8%; height: 26%; border-radius: 8px; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.laptop-edge { position: absolute; left: 0; right: 0; bottom: -10px; height: 12px; border-radius: 0 0 22px 22px; background: linear-gradient(180deg, #111A31, #0A1226); transform: rotateX(-90deg); transform-origin: 50% 0; }
.laptop-shadow {
  position: absolute; left: 6%; right: 6%; bottom: -16%; height: 24%; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 40%, transparent 72%);
  transform: translateZ(-60px) rotateX(-8deg); filter: blur(10px); animation: shadowPulse 9s ease-in-out infinite;
}
@keyframes shadowPulse { 0%,100% { opacity: 1; transform: translateZ(-60px) rotateX(-8deg) scale(1); } 50% { opacity: .7; transform: translateZ(-60px) rotateX(-8deg) scale(.92); } }
.laptop-glow { position: absolute; inset: -10% -6% 10% -6%; border-radius: 40%; background: radial-gradient(ellipse at 50% 40%, rgba(201,155,0,.35), transparent 65%); filter: blur(30px); z-index: -1; transform: translateZ(-30px); }

/* ---- Application UI inside screen ---- */
.app-ui { position: absolute; inset: 0; font-size: clamp(7px, .95vw, 11.5px); color: var(--ink-900); background: #F6F8FD; overflow: hidden; }
.app-topbar {
  height: 2.6em; display: flex; align-items: center; gap: 1.2em; padding: 0 1.2em;
  background: #fff; border-bottom: 1px solid var(--line); font-size: 1em;
}
.app-logo { font-weight: 800; color: var(--navy-800); letter-spacing: -.02em; }
.app-logo b { color: var(--blue-600); }
.app-crumb { color: var(--ink-500); font-weight: 500; flex: 1; }
.app-secure { display: inline-flex; gap: .5em; align-items: center; color: #148A4A; font-weight: 700; font-size: .9em; padding: .3em .7em; border-radius: 99px; background: #E8F8EF; }
.app-screen { position: absolute; left: 0; right: 0; top: 2.6em; bottom: 0; padding: 1.4em 1.6em; opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; }
.app-screen.is-visible { opacity: 1; transform: none; }
.app-h { font-weight: 800; font-size: 1.35em; color: var(--navy-800); letter-spacing: -.02em; }
.app-sub { color: var(--ink-500); font-size: .95em; margin-top: .25em; }

.app-pick { display: grid; grid-template-columns: 1fr 1fr; gap: .8em; margin-top: 1.2em; }
.app-pick li { display: flex; align-items: center; gap: .8em; padding: 1.1em 1.1em; border-radius: .9em; background: #fff; border: 1px solid var(--line); font-weight: 700; color: var(--ink-700); font-size: 1.05em; box-shadow: var(--shadow-sm); transition: border-color .3s, box-shadow .3s, transform .3s; }
.app-pick li i { width: 2.2em; height: 2.2em; display: grid; place-items: center; border-radius: .6em; background: #fff9df; color: var(--blue-600); }
.app-pick li.pick-target.is-hover { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(201,155,0,.15), var(--shadow-md); transform: translateY(-2px); }
.pick-badge { margin-left: auto; font-size: .7em; font-weight: 700; color: var(--blue-600); background: #fff9df; padding: .3em .6em; border-radius: 99px; }

.app-form-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1em; }
.app-progress { width: 9em; height: .5em; border-radius: 99px; background: #ece5c4; overflow: hidden; margin-top: .6em; }
.app-progress span { display: block; height: 100%; width: 10%; background: linear-gradient(90deg, var(--blue-500), var(--cyan-400)); transition: width .6s var(--ease); border-radius: 99px; }
.app-fields { display: flex; flex-direction: column; gap: .8em; margin-top: 1.1em; }
.app-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8em; }
.app-field > span { display: block; font-size: .85em; font-weight: 700; color: var(--ink-500); margin-bottom: .3em; text-transform: uppercase; letter-spacing: .06em; }
.app-input { position: relative; display: flex; align-items: center; height: 2.6em; padding: 0 .9em; border-radius: .7em; background: #fff; border: 1px solid var(--line); font-weight: 600; color: var(--ink-900); font-size: 1.05em; transition: border-color .3s, box-shadow .3s; overflow: hidden; }
.app-input .type-text { font-style: normal; white-space: nowrap; }
.app-input .caret { display: none; width: 1.5px; height: 1.2em; background: var(--blue-600); margin-left: 2px; animation: blink 1s steps(1) infinite; }
.app-field.is-typing .app-input { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(201,155,0,.15); }
.app-field.is-typing .caret { display: block; }
.app-input .ok, .app-upload .ok { position: absolute; right: .8em; color: #16A34A; opacity: 0; transform: scale(.6); transition: opacity .3s, transform .4s cubic-bezier(.34,1.56,.64,1); }
.app-field.is-done .ok, .app-upload.is-done .ok { opacity: 1; transform: scale(1); }
@keyframes blink { 50% { opacity: 0; } }
.app-uploads { display: grid; grid-template-columns: 1fr 1fr; gap: .8em; }
.app-upload { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .7em; padding: .7em .9em; border-radius: .7em; background: #fff; border: 1px dashed rgba(11,31,77,.2); font-size: .95em; padding-right: 2.4em; }
.app-upload > i:first-child { font-size: 1.4em; color: var(--blue-500); }
.app-upload b { display: block; font-weight: 700; color: var(--ink-700); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.up-bar { height: .35em; border-radius: 99px; background: #ece5c4; margin-top: .4em; overflow: hidden; }
.up-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--blue-500), var(--cyan-400)); transition: width 1.1s var(--ease); }
.app-upload.is-uploading .up-bar span, .app-upload.is-done .up-bar span { width: 100%; }
.app-upload.is-done { border-style: solid; border-color: rgba(22,163,74,.35); }
.app-actions { display: flex; align-items: center; justify-content: space-between; gap: 1em; margin-top: 1.1em; }
.app-validate { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: #148A4A; font-size: .95em; opacity: 0; transition: opacity .4s; }
.app-validate .fa-shield-check { display: none; }
.app-ui.is-validated .app-validate { opacity: 1; }
.app-submit { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: .85em 1.6em; border-radius: 99px; border: 0; color: #fff; font-weight: 700; font-size: 1.05em; background: linear-gradient(180deg, var(--blue-500), var(--blue-600)); box-shadow: 0 .6em 1.4em -0.5em rgba(201,155,0,.7); opacity: .55; transition: transform .3s, opacity .3s, box-shadow .3s; }
.app-ui.is-validated .app-submit { opacity: 1; }
.app-submit.is-pressed { transform: scale(.96); }
.app-submit .spin { display: none; width: 1.2em; height: 1.2em; border-radius: 50%; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; animation: spin .8s linear infinite; position: absolute; }
.app-submit.is-loading .lbl { opacity: 0; }
.app-submit.is-loading .spin { display: block; }

.app-screen--done { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(80% 60% at 50% 30%, #fff9df, #F6F8FD); }
.done-badge { width: 5.5em; height: 5.5em; }
.done-badge.big { width: 88px; height: 88px; margin: 0 auto 14px; }
.done-badge svg { width: 100%; height: 100%; }
.done-badge circle { fill: #EAF8EF; stroke: #16A34A; stroke-width: 2; stroke-dasharray: 160; stroke-dashoffset: 160; }
.done-badge path { fill: none; stroke: #16A34A; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.is-visible .done-badge circle, .modal-success .done-badge circle { animation: dash .7s var(--ease) forwards; }
.is-visible .done-badge path, .modal-success .done-badge path { animation: dash .5s .5s var(--ease) forwards; }
@keyframes dash { to { stroke-dashoffset: 0; } }
.done-title { font-weight: 800; font-size: 1.7em; color: var(--navy-800); margin-top: .8em; letter-spacing: -.02em; }
.done-sub { color: var(--ink-500); margin-top: .3em; }
.done-id { margin-top: 1.2em; padding: .8em 1.4em; border-radius: .9em; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.done-id span { font-size: .8em; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); font-weight: 700; }
.done-id b { font-size: 1.5em; color: var(--blue-600); letter-spacing: .04em; }
.done-track { margin-top: 1em; display: inline-flex; align-items: center; gap: .5em; font-size: .95em; color: var(--ink-700); padding: .5em 1em; border-radius: 99px; background: #fff; border: 1px solid var(--line); }
.done-track .dot, .step-status .dot { width: .7em; height: .7em; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 .3em rgba(119,189,99,.25); animation: pulseDot 1.6s ease-in-out infinite; }
.done-track em { font-style: normal; font-size: .75em; font-weight: 700; color: var(--gold-500); text-transform: uppercase; letter-spacing: .08em; margin-left: .4em; }
@keyframes pulseDot { 50% { box-shadow: 0 0 0 .6em rgba(119,189,99,.08); } }

.app-cursor { position: absolute; left: 60%; top: 55%; z-index: 5; opacity: 0; transition: left 1s var(--ease), top 1s var(--ease), opacity .4s; filter: drop-shadow(0 2px 4px rgba(0,0,0,.35)); pointer-events: none; }
.app-cursor.is-visible { opacity: 1; }

/* ---- floating 3D elements ---- */
.float-el { position: absolute; transform-style: preserve-3d; will-change: transform; animation: orbit 12s ease-in-out infinite; animation-delay: var(--d, 0s); }
@keyframes orbit {
  0%, 100% { transform: translate3d(0,0,var(--z, 40px)) rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg)); }
  50% { transform: translate3d(0,-14px,calc(var(--z, 40px) + 16px)) rotateY(calc(var(--ry, 0deg) + 6deg)) rotateX(calc(var(--rx, 0deg) - 3deg)); }
}
.doc {
  width: clamp(120px, 12vw, 168px); aspect-ratio: 1.58; border-radius: 12px; padding: 9px 10px;
  color: var(--ink-900); font-size: 8px;
  background: linear-gradient(150deg, #FFFFFF 0%, #fff9df 100%);
  box-shadow: 0 30px 50px -22px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.6) inset, 0 1px 0 rgba(255,255,255,.9) inset;
}
.doc::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(115deg, rgba(255,255,255,.55) 0%, transparent 35%, transparent 70%, rgba(255,255,255,.25) 100%); pointer-events: none; }
.doc-label { position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%); font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.doc-band { height: 6px; border-radius: 4px; background: linear-gradient(90deg, #FF9933 0 33%, #fff 33% 66%, #138808 66%); box-shadow: 0 0 0 1px rgba(0,0,0,.05); margin-bottom: 8px; }
.doc-head { display: flex; justify-content: space-between; align-items: center; font-weight: 800; letter-spacing: .12em; color: var(--navy-800); margin-bottom: 8px; }
.doc-head i { color: var(--blue-500); }
.doc-body { display: flex; gap: 8px; align-items: flex-start; }
.doc-photo { width: 26%; aspect-ratio: .82; border-radius: 4px; background: linear-gradient(180deg, #ece5c4, #B8C6E2); position: relative; overflow: hidden; }
.doc-photo::before { content: ''; position: absolute; left: 30%; top: 22%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: #8FA2C8; }
.doc-photo::after { content: ''; position: absolute; left: 12%; top: 66%; width: 76%; height: 50%; border-radius: 50% 50% 0 0; background: #8FA2C8; }
.doc-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.doc-lines i { display: block; height: 5px; border-radius: 3px; background: #D3DBEC; width: 100%; }
.doc-lines i.short { width: 55%; }
.doc-num { margin-top: 8px; font-weight: 800; letter-spacing: .12em; color: var(--navy-800); font-size: 9.5px; }
.doc--aadhaar { left: -4%; top: 8%; --z: 90px; --ry: 18deg; --rx: 4deg; }
.doc--pan { right: -6%; top: 4%; --z: 60px; --ry: -16deg; --rx: 6deg; background: linear-gradient(150deg, #fff9df, #fff9df); }
.doc--voter { right: -4%; bottom: 14%; --z: 110px; --ry: -14deg; --rx: -4deg; }
.doc--cert { left: -2%; bottom: 10%; --z: 40px; --ry: 14deg; --rx: -6deg; aspect-ratio: .78; width: clamp(96px, 9.5vw, 128px); padding: 14px 12px; background: linear-gradient(160deg, #fff, #FBF6E6); }
.cert-seal { width: 30px; height: 30px; margin: 0 auto 10px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 13px; background: radial-gradient(circle at 30% 30%, var(--gold-300), var(--gold-500) 60%, #A98720); box-shadow: 0 4px 10px -3px rgba(169,135,32,.6); }
.cert-lines i { margin: 0 auto; }
.cert-lines i:nth-child(1) { width: 70%; } .cert-lines i:nth-child(2) { width: 90%; } .cert-lines i:nth-child(3) { width: 80%; }

.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px 9px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.18);
}
.chip i { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.chip .fa-badge-check { display: none; }
.chip--pay { left: 8%; top: -2%; --z: 140px; } .chip--pay i { background: linear-gradient(180deg, var(--gold-300), var(--gold-500)); color: var(--navy-900); }
.chip--track { right: 12%; top: 46%; --z: 150px; } .chip--track i { background: linear-gradient(180deg, var(--cyan-300), var(--cyan-400)); color: var(--navy-900); }
.chip--verify { left: 16%; bottom: -3%; --z: 120px; } .chip--verify i { background: linear-gradient(180deg, #4ADE80, #16A34A); }

.glass { border-radius: 22px; background: linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(6px); }
.glass--a { width: 34%; height: 36%; left: -8%; top: 30%; --z: -80px; --ry: 24deg; }
.glass--b { width: 30%; height: 42%; right: -10%; top: 22%; --z: -120px; --ry: -26deg; }
.spark { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan-300); box-shadow: 0 0 12px 2px rgba(103,232,249,.55); animation: sparkle 5s ease-in-out infinite; opacity: .8; }
.s1 { left: 12%; top: 22%; animation-delay: 0s; } .s2 { left: 82%; top: 18%; animation-delay: 1s; background: var(--gold-300); box-shadow: 0 0 12px 2px rgba(241,215,122,.5); }
.s3 { left: 30%; top: 88%; animation-delay: 2s; } .s4 { left: 92%; top: 66%; animation-delay: 3s; }
.s5 { left: 50%; top: 4%; animation-delay: 1.5s; width: 3px; height: 3px; } .s6 { left: 6%; top: 60%; animation-delay: 2.5s; width: 3px; height: 3px; background: var(--gold-300); }
@keyframes sparkle { 0%,100% { transform: translateY(0) scale(1); opacity: .5; } 50% { transform: translateY(-16px) scale(1.4); opacity: 1; } }

.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); width: 26px; height: 42px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.25); z-index: 2; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--cyan-400); animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

/* ============================================================== sections */
.section { position: relative; padding: clamp(72px, 9vw, 120px) 0; }
.section-light { background: var(--surface); color: var(--ink-900); }
.section-light + .section-light { padding-top: 0; }
.section-dark { background: radial-gradient(120% 100% at 50% 0%, #34420f 0%, #202d0b 50%, #17220B 100%); color: #fff; overflow: hidden; }
.dark-bg { position: absolute; inset: 0; pointer-events: none; }
.dark-bg .hero-grid { opacity: .45; }
.section-dark .container { position: relative; z-index: 1; }
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2, .contact-card h2, .track-copy h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; margin: 14px 0 16px; letter-spacing: -.03em; }
.section-head p { font-size: clamp(15.5px, 1.1vw, 17.5px); color: var(--ink-500); }
.section-head--light p { color: rgba(255,255,255,.68); }
.kicker { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-600); padding: 6px 12px; border-radius: 999px; background: rgba(201,155,0,.08); }
.section-dark .kicker { color: var(--cyan-300); background: rgba(119,189,99,.1); }
.on-dark { color: #fff; }
.on-dark-muted { color: rgba(255,255,255,.68); font-size: 17px; }

/* tilt helper */
.tilt { transform-style: preserve-3d; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; will-change: transform; }

/* -------------------------------------------------------------- services */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.svc-card {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 26px 24px 22px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px); overflow: hidden;
}
.svc-card:hover { box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,155,0,.25); border-color: rgba(201,155,0,.3); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 22px; color: var(--blue-600);
  background: linear-gradient(160deg, #fff9df, #fff9df); box-shadow: inset 0 1px 0 #fff, 0 8px 18px -10px rgba(201,155,0,.5);
  transform: translateZ(20px); transition: transform .5s var(--ease), background .4s, color .4s;
}
.svc-card:hover .svc-icon { background: linear-gradient(160deg, var(--blue-500), var(--blue-600)); color: #fff; transform: translateZ(30px) rotateY(-8deg); }
.svc-name { font-size: 18px; font-weight: 800; color: var(--navy-800); margin-top: 6px; transform: translateZ(14px); }
.svc-desc { font-size: 14px; color: var(--ink-500); flex: 1; transform: translateZ(10px); }
.svc-apply { align-self: flex-start; margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 0; border: 0; background: none; color: var(--blue-600); font-weight: 700; font-size: 14px; transform: translateZ(16px); }
.svc-apply i { transition: transform .3s var(--ease); }
.svc-card:hover .svc-apply i { transform: translateX(5px); }
.svc-glow { position: absolute; inset: -40% -40% auto auto; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(201,155,0,.12), transparent 70%); pointer-events: none; opacity: 0; transition: opacity .5s; }
.svc-card:hover .svc-glow { opacity: 1; }

/* ---------------------------------------------------------- how it works */
.steps { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; padding-top: 30px; }
.steps-line { position: absolute; left: 0; right: 0; top: 74px; width: 100%; height: 120px; pointer-events: none; }
.steps-path-bg { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 2; stroke-dasharray: 6 8; }
.steps-path { fill: none; stroke: url(#line-g); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; filter: drop-shadow(0 0 6px rgba(119,189,99,.6)); }
.steps.in-view .steps-path { animation: drawLine 2.2s var(--ease) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.step {
  position: relative; padding: 34px 28px 28px; border-radius: var(--radius-lg); color: #fff;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.12);
  opacity: 0; transform: translateY(24px);
}
.steps.in-view .step { animation: rise .8s var(--ease) forwards; }
.steps.in-view .step[data-step="2"] { animation-delay: .5s; } .steps.in-view .step[data-step="3"] { animation-delay: 1s; }
@keyframes rise { to { opacity: 1; transform: none; } }
.step-no { position: absolute; top: 22px; right: 26px; font-size: 44px; font-weight: 800; letter-spacing: -.05em; color: rgba(255,255,255,.08); line-height: 1; }
.step-icon { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; font-size: 24px; margin-bottom: 22px; color: #fff; background: linear-gradient(160deg, var(--blue-500), var(--navy-700)); box-shadow: 0 16px 30px -14px rgba(201,155,0,.9), inset 0 1px 0 rgba(255,255,255,.25); transform: translateZ(24px); }
.step[data-step="2"] .step-icon { background: linear-gradient(160deg, #77bd63, #0E7490); box-shadow: 0 16px 30px -14px rgba(119,189,99,.8), inset 0 1px 0 rgba(255,255,255,.25); }
.step[data-step="3"] .step-icon { background: linear-gradient(160deg, var(--gold-300), #A98720); color: var(--navy-900); box-shadow: 0 16px 30px -14px rgba(212,175,55,.8), inset 0 1px 0 rgba(255,255,255,.4); }
.step h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.7); font-size: 15px; }
.step-mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.step-mini li { padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.step-upload { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; margin-top: 20px; padding: 10px 14px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px dashed rgba(255,255,255,.2); font-size: 13px; font-weight: 600; }
.step-upload > i:first-child { color: var(--cyan-300); font-size: 16px; }
.step-upload em { grid-column: 1 / -1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.step-upload em b { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--cyan-400), var(--blue-400)); }
.steps.in-view .step-upload em b { animation: fill 2s 1.4s var(--ease) forwards; }
@keyframes fill { to { width: 100%; } }
.step-upload .fa-circle-check { color: #4ADE80; opacity: 0; }
.steps.in-view .step-upload .fa-circle-check { animation: fadeIn .4s 3.3s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.step-status { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); font-size: 13px; font-weight: 600; }
.step-status b { color: var(--gold-300); letter-spacing: .04em; }

/* ------------------------------------------------------------------ trust */
.trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.trust-card { padding: 30px 26px; border-radius: var(--radius-lg); background: #fff; border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow-sm); }
.trust-card:hover { box-shadow: var(--shadow-md); }
.trust-card h3 { font-size: 18px; font-weight: 800; color: var(--navy-800); margin: 20px 0 8px; }
.trust-card p { font-size: 14.5px; color: var(--ink-500); }
.trust-icon { position: relative; width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 22px; color: #fff; transform: translateZ(20px); }
.trust-icon .pulse { position: absolute; inset: 0; border-radius: inherit; border: 2px solid currentColor; opacity: 0; animation: ring 3s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.9); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
.ti-shield { background: linear-gradient(160deg, var(--blue-500), var(--navy-700)); color: var(--blue-500); box-shadow: 0 14px 26px -14px rgba(201,155,0,.9); }
.ti-verify { background: linear-gradient(160deg, #77bd63, #0E7490); color: var(--cyan-400); box-shadow: 0 14px 26px -14px rgba(119,189,99,.9); }
.ti-fast { background: linear-gradient(160deg, var(--gold-300), #A98720); color: var(--gold-500); box-shadow: 0 14px 26px -14px rgba(212,175,55,.9); }
.ti-track { background: linear-gradient(160deg, #4ADE80, #15803D); color: #22C55E; box-shadow: 0 14px 26px -14px rgba(34,197,94,.9); }
.trust-icon i { color: #fff; }
.ti-fast i { color: var(--navy-900); }
.trust-card:hover .trust-icon i { animation: wiggle .6s var(--ease); }
@keyframes wiggle { 30% { transform: rotate(-10deg) scale(1.1); } 60% { transform: rotate(8deg); } }
.about-note { margin-top: 34px; text-align: center; font-size: 13.5px; color: var(--ink-500); display: flex; gap: 8px; justify-content: center; align-items: flex-start; }
.about-note i { color: var(--blue-500); margin-top: 3px; }

/* --------------------------------------------------------------- tracking */
.track-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
.track-form { display: flex; gap: 12px; margin-top: 28px; }
.track-input-wrap { position: relative; flex: 1; display: flex; align-items: center; }
.track-input-wrap i { position: absolute; left: 18px; color: rgba(255,255,255,.45); font-size: 14px; }
.track-input-wrap input {
  width: 100%; height: 54px; padding: 0 16px 0 44px; border-radius: 999px; font: inherit; font-weight: 600; font-size: 15.5px; letter-spacing: .04em; color: #fff;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); outline: 0; transition: border-color .3s, box-shadow .3s, background .3s;
}
.track-input-wrap input::placeholder { color: rgba(255,255,255,.4); letter-spacing: 0; font-weight: 500; }
.track-input-wrap input:focus { border-color: var(--cyan-400); box-shadow: 0 0 0 4px rgba(119,189,99,.18); background: rgba(255,255,255,.1); }
.track-hint { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.5); min-height: 20px; }
.track-hint.is-error { color: #FCA5A5; }
.track-hint code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--cyan-300); }
.glass-panel { border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 40px 80px -40px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.14); }
.hero-track-form { margin: 22px 0 14px; padding: 17px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.hero-track-form > label { display:block; margin-bottom:8px; color:rgba(255,255,255,.86); font-size:.78rem; font-weight:800; }
.hero-track-row { display:flex; gap:8px; }
.hero-track-row input { flex:1; min-width:0; min-height:48px; padding:10px 13px; border:1px solid rgba(255,255,255,.2); border-radius:12px; color:#17220b; background:#fff; font:600 .83rem var(--font); }
.hero-track-form small { display:block; margin-top:8px; color:rgba(255,255,255,.62); font-size:.7rem; line-height:1.5; }
.track-account-link { display:inline-flex; align-items:center; gap:8px; margin-top:8px; color:#ffe779; font-size:.8rem; font-weight:750; }
.track-account-link:hover { color:#fff; }
.track-panel { padding: 30px 32px; transition: transform .4s var(--ease), opacity .4s; }
.track-panel.is-refreshing { opacity: .4; transform: scale(.985); }
.track-panel-head { display: flex; flex-wrap: wrap; gap: 20px 36px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tp-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.tp-id { font-size: 22px; font-weight: 800; letter-spacing: .05em; color: var(--cyan-300); }
.tp-service { font-size: 17px; font-weight: 700; }
.demo-tag { margin-left: auto; align-self: flex-start; font-size: 10.5px; font-weight: 800; letter-spacing: .14em; padding: 6px 10px; border-radius: 6px; color: var(--navy-900); background: linear-gradient(180deg, var(--gold-300), var(--gold-500)); }
.timeline { position: relative; display: flex; flex-direction: column; gap: 0; padding: 26px 0 6px; }
.tl-step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding-bottom: 26px; }
.tl-step:not(:last-child)::before { content: ''; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: rgba(255,255,255,.12); }
.tl-step:not(:last-child)::after { content: ''; position: absolute; left: 21px; top: 44px; width: 2px; height: 0; background: linear-gradient(180deg, var(--cyan-400), var(--blue-400)); transition: height .7s var(--ease); }
.tl-step.is-done:not(:last-child)::after { height: calc(100% - 44px); }
.tl-node { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 15px; font-weight: 800; background: rgba(255,255,255,.06); border: 2px solid rgba(255,255,255,.14); color: rgba(255,255,255,.55); transition: all .5s var(--ease); position: relative; }
.tl-node i { display: none; }
.tl-step.is-done .tl-node { background: linear-gradient(180deg, #4ADE80, #16A34A); border-color: transparent; color: #fff; box-shadow: 0 10px 20px -10px rgba(34,197,94,.9); }
.tl-step.is-done .tl-node i { display: block; } .tl-step.is-done .tl-node b { display: none; }
.tl-step.is-active .tl-node { background: linear-gradient(180deg, var(--blue-500), var(--blue-600)); border-color: transparent; color: #fff; box-shadow: 0 0 0 6px rgba(201,155,0,.2), 0 10px 20px -10px rgba(201,155,0,.9); animation: nodePulse 2s ease-in-out infinite; }
@keyframes nodePulse { 50% { box-shadow: 0 0 0 10px rgba(201,155,0,.08), 0 10px 20px -10px rgba(201,155,0,.9); } }
.tl-text h4 { font-size: 16.5px; font-weight: 700; margin-top: 8px; color: rgba(255,255,255,.55); transition: color .4s; }
.tl-text p { font-size: 13.5px; color: rgba(255,255,255,.4); margin-top: 3px; }
.tl-step.is-done .tl-text h4, .tl-step.is-active .tl-text h4 { color: #fff; }
.tl-step.is-active .tl-text h4::after { content: 'In progress'; margin-left: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-300); vertical-align: middle; }
.tl-step.is-done .tl-text p, .tl-step.is-active .tl-text p { color: rgba(255,255,255,.62); }
.tp-foot { font-size: 12.5px; color: rgba(255,255,255,.45); padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); display: flex; gap: 8px; align-items: center; }

/* ---------------------------------------------------------------- contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; align-items: stretch; }
.contact-card { padding: clamp(28px, 3vw, 44px); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.9); }
.contact-address { font-style: normal; display: flex; flex-direction: column; gap: 10px; margin: 8px 0 26px; color: var(--ink-700); font-size: 15.5px; }
.contact-address strong { font-size: 20px; color: var(--navy-800); font-weight: 800; }
.contact-address > span:nth-child(2) { color: var(--ink-500); font-weight: 600; margin-top: -8px; }
.contact-address .addr { margin-top: 10px; line-height: 1.6; }
.contact-address i { width: 22px; color: var(--blue-600); }
.contact-address a { font-weight: 600; color: var(--navy-800); }
.contact-address a:hover { color: var(--blue-600); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-map { position: relative; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(120% 100% at 30% 20%, #142B66, #071538 60%, #17220B); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.08); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 48px 48px; }
.map-road { position: absolute; height: 14px; border-radius: 8px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.map-road--a { left: -10%; right: -10%; top: 46%; transform: rotate(-12deg); }
.map-road--b { top: -10%; bottom: -10%; left: 58%; width: 14px; height: auto; transform: rotate(16deg); }
.map-pin { position: absolute; left: 52%; top: 44%; transform: translate(-50%, -100%); color: #fff; font-size: 40px; filter: drop-shadow(0 12px 20px rgba(0,0,0,.5)); animation: pinBounce 3s ease-in-out infinite; }
.map-pin i { color: var(--gold-300); }
@keyframes pinBounce { 50% { transform: translate(-50%, -110%); } }
.pin-ring { position: absolute; left: 50%; bottom: -8px; width: 40px; height: 16px; margin-left: -20px; border-radius: 50%; border: 2px solid rgba(119,189,99,.6); animation: ringPulse 2s ease-out infinite; }
@keyframes ringPulse { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }
.pin-card { position: absolute; left: 50%; top: -70px; transform: translateX(-50%); padding: 10px 14px; border-radius: 12px; font-size: 13px; white-space: nowrap; background: rgba(255,255,255,.95); color: var(--navy-800); box-shadow: var(--shadow-md); }
.pin-card b { display: block; font-weight: 800; } .pin-card span { color: var(--ink-500); font-size: 12px; }
.map-label { position: absolute; left: 18px; bottom: 16px; font-size: 12px; color: rgba(255,255,255,.5); }

/* ----------------------------------------------------------------- footer */
.site-footer { background: #17220B; color: rgba(255,255,255,.72); padding: 72px 0 32px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { color: #fff; }
.footer-tag { margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-300); }
.footer-text { margin-top: 10px; font-size: 14.5px; max-width: 380px; color: rgba(255,255,255,.6); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,.62); transition: color .3s; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-disclaimer { display: flex; gap: 12px; align-items: flex-start; margin-top: 52px; padding: 18px 22px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-disclaimer i { color: var(--gold-300); margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.45); }
.footer-demo { color: var(--gold-300); font-weight: 600; }

/* ------------------------------------------------------------------ modal */
.modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 16px; visibility: hidden; pointer-events: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,10,31,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity .35s; }
.modal-card { position: relative; width: min(560px, 100%); max-height: calc(100dvh - 32px); overflow: auto; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); padding: 32px; transform: translateY(24px) scale(.97); opacity: 0; transition: transform .45s var(--ease), opacity .35s; }
.modal.is-open { visibility: visible; pointer-events: auto; }
.modal.is-open .modal-backdrop { opacity: 1; }
.modal.is-open .modal-card { transform: none; opacity: 1; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--navy-800); font-size: 16px; }
.modal h3 { font-size: 26px; font-weight: 800; color: var(--navy-800); margin: 14px 0 6px; }
.modal-sub { font-size: 14px; color: var(--ink-500); margin-bottom: 22px; }
.apply-form { display: flex; flex-direction: column; gap: 14px; }
.apply-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink-700); }
.apply-form input, .apply-form select, .apply-form textarea { font: inherit; font-size: 15px; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(11,31,77,.15); background: var(--surface); color: var(--ink-900); outline: 0; transition: border-color .3s, box-shadow .3s; width: 100%; }
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(201,155,0,.14); background: #fff; }
.apply-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form textarea { resize: vertical; }
.modal-success { text-align: center; padding: 8px 0; }
.modal-success h3 { margin-top: 6px; }
.modal-success p { color: var(--ink-500); font-size: 14.5px; margin-top: 6px; }
.big-id { display: block; margin: 10px 0 12px; font-size: 32px; font-weight: 800; letter-spacing: .06em; color: var(--blue-600); }
.modal-success .muted { font-size: 13px; margin-bottom: 22px; }

.toast { position: fixed; left: 50%; top: 20px; transform: translate(-50%, -20px); z-index: 120; padding: 12px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; color: #fff; background: rgba(6,17,49,.92); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .3s, transform .4s var(--ease); max-width: calc(100% - 32px); text-align: center; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* -------------------------------------------------------- scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================ responsive */
@media (max-width: 1180px) {
  .svc-grid, .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-inner { gap: 24px; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
  .hero { padding-top: calc(var(--header-h) + 24px); padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .hero-copy { max-width: 640px; margin: 0 auto; }
  .hero-sub { margin: 0 auto; }
  .hero-cta, .trust-list { justify-content: center; }
  .hero-stage { height: clamp(380px, 62vw, 560px); max-width: 720px; margin: 0 auto; width: 100%; }
  .track-layout, .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; gap: 20px; max-width: 560px; margin: 0 auto; }
  .steps-line { display: none; }
  .step { opacity: 1; transform: none; }
}
@media (max-width: 820px) {
  .svc-grid, .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .svc-card { padding: 22px 18px 18px; }
  .demo-ribbon { font-size: 12px; bottom: 12px; }
  .demo-ribbon .fa-flask { display: none; }
}
/* -------- dedicated mobile hero composition -------- */
@media (max-width: 640px) {
  .hero-track-row { flex-direction:column; }
  .hero-track-row .btn { width:100%; }
  :root { --header-h: 66px; }
  .container { width: calc(100% - 32px); }
  .brand-tag { display: none; }
  .hero { padding-top: calc(var(--header-h) + 16px); padding-bottom: 56px; min-height: 0; }
  .hero-inner { width: calc(100% - 32px); gap: 12px; }
  .eyebrow { font-size: 11.5px; padding: 6px 12px 6px 9px; }
  .hero-title { font-size: clamp(31px, 9vw, 40px); margin: 16px 0 12px; }
  .hero-sub { font-size: 15.5px; }
  .hero-cta { flex-direction: column; margin: 22px 0 18px; }
  .hero-cta .btn { width: 100%; min-height: 54px; }
  .trust-list { gap: 8px 14px; font-size: 13px; }
  .hero-disclaimer { margin-top: 16px; font-size: 12px; }
  .hero-stage { height: 300px; margin-top: 8px; perspective: 1000px; overflow: visible; }
  .laptop { width: 82%; transform: translate(-50%, -50%) rotateX(6deg) rotateY(-8deg); animation-name: floatMobile; }
  @keyframes floatMobile {
    0%, 100% { transform: translate(-50%, -50%) rotateX(6deg) rotateY(-8deg); }
    50% { transform: translate(-50%, -53%) rotateX(7deg) rotateY(-6deg); }
  }
  .app-ui { font-size: 6.4px; }
  .doc { width: 92px; font-size: 6px; padding: 6px 7px; border-radius: 8px; }
  .doc-label { display: none; }
  .doc-num { font-size: 7px; margin-top: 4px; }
  .doc-band { height: 4px; margin-bottom: 5px; }
  .doc--aadhaar { left: -2%; top: 2%; }
  .doc--pan { right: -2%; top: 0; }
  .doc--voter { right: 0; bottom: 4%; }
  .doc--cert { display: none; }
  .chip { font-size: 10.5px; padding: 6px 10px 6px 7px; }
  .chip i { width: 20px; height: 20px; font-size: 9px; }
  .chip--pay { left: 2%; top: auto; bottom: 8%; }
  .chip--track { right: auto; left: 50%; top: auto; bottom: -6%; transform: translateX(-50%) !important; animation: none; }
  .chip--verify { display: none; }
  .glass--a, .glass--b { display: none; }
  .laptop-shadow { bottom: -12%; }
  .scroll-hint { display: none; }
  .section-head h2, .contact-card h2, .track-copy h2 { font-size: clamp(27px, 7.6vw, 34px); }
  .svc-grid, .trust-grid { grid-template-columns: 1fr; }
  .svc-card { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 6px 16px; padding: 18px; }
  .svc-icon { width: 48px; height: 48px; font-size: 19px; border-radius: 14px; }
  .svc-name { flex: 1; margin: 0; font-size: 17px; }
  .svc-desc { flex-basis: 100%; }
  .svc-apply { margin-top: 0; padding: 6px 0; }
  .track-form { flex-direction: column; }
  .track-panel { padding: 22px 18px; }
  .track-panel-head { gap: 14px 24px; }
  .demo-tag { margin-left: 0; order: -1; }
  .tp-id { font-size: 19px; }
  .contact-actions .btn { flex: 1 1 100%; }
  .contact-map { min-height: 300px; }
  .pin-card { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .apply-form .row { grid-template-columns: 1fr; }
  .modal-card { padding: 26px 20px; }
  .demo-ribbon { left: 12px; right: 12px; transform: none; max-width: none; }
}
@media (max-width: 380px) {
  .hero-stage { height: 250px; }
  .app-ui { font-size: 5.6px; }
  .doc { width: 78px; }
}
@media (min-width: 1800px) {
  .hero-inner { width: min(1500px, calc(100% - 80px)); }
  .hero-stage { height: 700px; }
  .laptop { width: 660px; }
  .hero-title { font-size: 72px; }
}

/* -------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .laptop, .float-el, .beam, .spark, .map-pin, .trust-icon .pulse { animation: none !important; }
  .step { opacity: 1; transform: none; }
  .steps-path { stroke-dashoffset: 0; }
  .hero-canvas { display: none; }
  .reveal { opacity: 1; transform: none; }
  .app-screen.is-visible { opacity: 1; }
}

/* G1Seva yellow and green brand finish */
.btn-primary{color:#27320b;background:linear-gradient(180deg,#ffe779,#f4c400);box-shadow:0 10px 24px -10px rgba(201,155,0,.55),inset 0 1px 0 rgba(255,255,255,.5)}
.btn-primary:hover{color:#27320b;box-shadow:0 16px 30px -10px rgba(201,155,0,.6),inset 0 1px 0 rgba(255,255,255,.5)}
.svc-apply{color:#806300}
.app-submit{color:#27320b}
.demo-ribbon,.demo-tag{background:#34420f}
.grad{background-image:linear-gradient(92deg,#ffe779 0%,#a7d982 56%,#f4c400 100%)}
.grad-dark{background-image:linear-gradient(92deg,#b18400,#537a24)}

/* Show the complete laptop deck and legible key rows */
.laptop-base{height:40%;transform:rotateX(60deg) translateZ(0)}
.laptop-keys{left:7%;right:7%;top:8%;height:56%;background-image:repeating-linear-gradient(90deg,rgba(255,255,255,.2) 0 4.8%,transparent 4.8% 5.8%),repeating-linear-gradient(0deg,rgba(255,255,255,.18) 0 14%,transparent 14% 19%);background-color:rgba(5,10,18,.55);box-shadow:inset 0 0 0 1px rgba(255,255,255,.1)}
.laptop-trackpad{bottom:5%;height:25%;background:rgba(255,255,255,.12)}
.app-ui{transform:scale(.92);transform-origin:top left;width:108.7%;height:108.7%;font-size:clamp(6px,.82vw,10px)}

/* Bring back the shop logo managed in Portal Settings */
.brand-mark{display:inline-flex;align-items:center;justify-content:center;flex:none}
.brand-mark img{width:54px;height:54px;max-width:none;max-height:none;object-fit:cover;border:2px solid #f4c400;border-radius:50%;background:#fff;box-shadow:0 5px 16px rgba(201,155,0,.28)}

/* Category-wise service directory */
.all-services-open{margin-top:18px}
.services-modal{position:fixed;inset:0;z-index:120;display:grid;place-items:center;padding:20px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s,visibility .25s}
.services-modal.is-open{opacity:1;visibility:visible;pointer-events:auto}
.services-modal-backdrop{position:absolute;inset:0;border:0;background:rgba(9,15,7,.76);backdrop-filter:blur(8px)}
.services-modal-panel{position:relative;z-index:1;width:min(920px,100%);max-height:min(84dvh,860px);overflow:auto;padding:clamp(20px,4vw,36px);border:1px solid rgba(255,255,255,.65);border-radius:24px;background:#fffdf3;box-shadow:0 32px 100px rgba(0,0,0,.4);transform:translateY(14px) scale(.985);transition:transform .3s var(--ease)}
.services-modal.is-open .services-modal-panel{transform:none}
.services-modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:20px}
.services-modal-head h2{font-size:clamp(26px,4vw,36px);color:#26340c;margin:8px 0}
.services-modal-head p{color:var(--ink-500)}
.services-modal-close{width:42px;height:42px;border:1px solid #e7dfbd;border-radius:13px;background:#fff;color:#29350e;font-size:18px}
.services-search{display:flex;align-items:center;gap:12px;padding:13px 16px;margin-bottom:22px;border:1px solid #e5dfc8;border-radius:13px;background:#fff;color:#876800}
.services-search input{width:100%;border:0;outline:0;background:transparent;color:#1e2811;font:inherit}
.services-category-group{padding:18px 0;border-top:1px solid #ece7d5}
.services-category-group[hidden],.services-directory-link[hidden]{display:none!important}
.services-category-group h3{display:flex;align-items:center;gap:10px;margin:0 0 12px;color:#334311;font-size:17px}
.services-category-group h3 span{display:grid;place-items:center;min-width:25px;height:25px;padding:0 7px;border-radius:99px;background:#fff1a8;color:#705400;font-size:12px}
.services-category-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.services-directory-link{display:flex;align-items:center;gap:12px;min-width:0;padding:12px 14px;border:1px solid #eee9d9;border-radius:12px;background:#fff;color:#314113;transition:transform .2s,border-color .2s,box-shadow .2s}
.services-directory-link:hover{transform:translateY(-2px);border-color:#e2bb18;box-shadow:0 8px 20px rgba(90,74,15,.09)}
.services-directory-link>i:first-child{color:#bb9200}.services-directory-link span{flex:1;min-width:0;font-size:14px;font-weight:700}.services-directory-link>i:last-child{font-size:11px;color:#859166}

/* Official service portal shortcuts */
.official-section{background:#fffdf4}
.official-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.official-card{display:flex;align-items:center;gap:14px;min-height:96px;padding:18px;border:1px solid #eae4cc;border-radius:17px;background:#fff;box-shadow:0 8px 25px rgba(42,49,18,.045);transition:transform .25s,border-color .25s,box-shadow .25s}
.official-card:hover{transform:translateY(-4px);border-color:#e2be22;box-shadow:0 16px 30px rgba(83,73,19,.11)}
.official-icon{display:grid;place-items:center;flex:none;width:48px;height:48px;border-radius:15px;background:linear-gradient(150deg,#ffed8f,#f5c400);color:#394811;font-size:20px}
.official-copy{display:flex;flex:1;min-width:0;flex-direction:column;gap:4px}.official-copy strong{color:#28350d}.official-copy small{color:#69715c;line-height:1.4}.official-arrow{color:#9b7900;font-size:12px}

/* Restored Google rating block */
.reviews-section{background:#f5f2e4;padding-top:58px;padding-bottom:58px}
.reviews-layout{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:34px}
.reviews-score h2{margin:9px 0 18px;color:#1e2811;font-size:clamp(26px,3vw,36px)}
.rating-line{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:18px}
.rating-line>strong{font-size:42px;line-height:1;color:#25320e}.rating-stars{color:#e2ad00;letter-spacing:.08em;font-size:20px}.rating-count{color:#65705b;font-size:14px}
.review-quote{margin:0;padding:26px 30px;border:1px solid #eae4cc;border-radius:20px;background:#fff;box-shadow:var(--shadow-sm)}
.review-google{display:flex;align-items:center;gap:12px}.review-google .fa-google{font-size:22px;color:#4285f4}.review-quote p{margin:14px 0 10px;color:#28350d;font-size:18px;font-weight:700}.review-quote cite{font-style:normal;color:#727a68;font-size:13px}

/* Real Google map in the existing 3D contact frame */
.contact-map.map-3d{isolation:isolate;perspective:1100px;transform-style:preserve-3d;transition:transform .35s var(--ease);background:#dce5d0;min-height:clamp(420px,36vw,560px);height:100%}
.contact-map.map-3d:hover{transform:perspective(1100px) rotateY(-2deg) rotateX(1deg) translateY(-3px)}
.contact-map.map-3d iframe{position:absolute!important;inset:0!important;display:block;width:100%!important;height:100%!important;min-height:100%!important;border:0;filter:saturate(.88) contrast(1.02)}
.contact-map.map-3d .map-label{display:none!important}
.map-live-badge{position:absolute;right:18px;top:18px;z-index:2;display:flex;align-items:center;gap:8px;padding:8px 11px;border-radius:99px;background:rgba(35,54,15,.9);color:#fff;font-size:11px;font-weight:700;letter-spacing:.04em;box-shadow:0 8px 20px rgba(0,0,0,.2);pointer-events:none}
.map-live-badge i{width:8px;height:8px;border-radius:50%;background:#73d586;box-shadow:0 0 0 4px rgba(115,213,134,.2)}

/* Compact footer */
.site-footer{padding:38px 0 18px}
.footer-grid{gap:24px}
.footer-text{margin-top:7px;font-size:13.5px;line-height:1.45}
.footer-tag{margin-top:10px}
.footer-col{gap:8px}
.footer-disclaimer{margin-top:24px;padding:12px 16px;font-size:12.5px}
.footer-bottom{margin-top:16px;padding-top:12px}
.laptop{width:min(520px,88%);left:47%}

@media(max-width:900px){.official-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:640px){.services-modal{padding:10px}.services-modal-panel{max-height:90dvh;padding:20px 16px;border-radius:18px}.services-category-items{grid-template-columns:1fr}.official-grid,.reviews-layout{grid-template-columns:1fr}.reviews-section{padding-top:42px;padding-bottom:42px}.contact-map.map-3d{min-height:380px;height:380px}.laptop{width:82%;left:50%}.laptop-base{height:34%;transform:rotateX(64deg)}.brand-mark img{width:46px;height:46px}.app-ui{transform:scale(.9);width:111.12%;height:111.12%}.footer-grid{gap:18px}.footer-disclaimer{margin-top:18px}.footer-bottom{margin-top:12px;padding-top:10px}}

/* Tighter page rhythm: reduce blank vertical space while keeping all sections */
.hero{min-height:min(100svh,850px);padding:calc(var(--header-h) + 24px) 0 52px}
.section{padding:clamp(42px,5vw,68px) 0}
.section-head{margin-bottom:clamp(24px,3vw,38px)}
.section-head h2,.contact-card h2,.track-copy h2{margin-top:8px;margin-bottom:10px}
.svc-grid{gap:14px}
.svc-card{gap:8px;padding:21px 20px 18px}
.all-services-open{margin-top:12px}
.steps{gap:18px;padding-top:12px}
.step{padding:26px 22px 22px}
.step-icon{margin-bottom:14px}
.step-mini,.step-upload,.step-status{margin-top:14px}
.official-grid{gap:12px}
.official-card{min-height:82px;padding:14px}
.trust-grid{gap:14px}
.trust-card{padding:22px 20px}
.trust-card h3{margin:14px 0 6px}
.about-note{margin-top:20px}
.track-layout{gap:32px}
.track-panel{padding:22px 24px}
.track-panel-head{padding-bottom:16px}
.timeline{padding:18px 0 2px}
.tl-step{gap:14px;padding-bottom:18px}
.contact-layout{gap:22px}
.contact-card{padding:clamp(22px,2.2vw,32px)}
.contact-address{gap:7px;margin:6px 0 18px}
.contact-address .addr{margin-top:5px}
.contact-actions{gap:9px}
.reviews-section{padding:34px 0}
.reviews-layout{gap:24px}
.review-quote{padding:22px 24px}
.site-footer{padding:32px 0 14px}
.footer-disclaimer{margin-top:18px}

@media(max-width:900px){
  .track-layout,.contact-layout{gap:20px}
  .section{padding:44px 0}
  .section-head{margin-bottom:26px}
}
@media(max-width:640px){
  .hero{min-height:0;padding:calc(var(--header-h) + 12px) 0 34px}
  .section{padding:36px 0}
  .section-head{margin-bottom:22px}
  .official-card{min-height:74px;padding:12px}
  .trust-card,.step{padding:20px 18px}
  .track-panel{padding:18px}
  .contact-card{padding:22px 18px}
  .contact-map.map-3d{margin-top:0;min-height:360px;height:360px}
  .reviews-section{padding:32px 0}
  .site-footer{padding:28px 0 12px}
}
