/* ============================================================
   Drive & Thrive — Design System
   ============================================================ */
:root {
  /* Brand palette (from logo) */
  --red: #e01a1a;
  --red-dk: #b50f0f;
  --blue: #1565c0;
  --blue-dk: #0d47a1;
  --yellow: #f7b500;
  --yellow-lt: #ffd54a;

  /* Neutrals */
  --ink: #14171f;
  --ink-2: #3a4150;
  --muted: #6b7280;
  --line: #e7e9ef;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: #0e1118;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(20, 23, 31, .06);
  --shadow: 0 18px 50px rgba(20, 23, 31, .10);
  --shadow-lg: 0 30px 80px rgba(20, 23, 31, .16);

  --maxw: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --grad-brand: linear-gradient(100deg, var(--red), #ff5a36 45%, var(--yellow));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Sora", "Plus Jakarta Sans", sans-serif; line-height: 1.1; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
picture { display: contents; }
address { font-style: normal; }

/* Accessibility: skip link */
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 300; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px; font-weight: 700; transition: top .2s var(--ease); }
.skip-link:focus { top: 8px; outline: 3px solid var(--yellow); }
em { font-style: normal; }

.section { padding: clamp(64px, 9vw, 130px) clamp(20px, 5vw, 40px); max-width: var(--maxw); margin-inline: auto; }
.grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: .95rem;
  padding: .85em 1.5em; border-radius: 100px; border: 0; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { --bg: var(--red); --fg: #fff; box-shadow: 0 10px 26px rgba(224, 26, 26, .28); }
.btn--primary:hover { background: var(--red-dk); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--lg { padding: 1.05em 1.8em; font-size: 1rem; }
.btn--sm { padding: .6em 1.1em; font-size: .85rem; }
.btn--block { width: 100%; }
.btn--whatsapp { --bg: #25d366; --fg: #053; color: #053; }
.btn--whatsapp:hover { background: #1eb958; }

.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; color: var(--red); transition: gap .3s var(--ease); }
.link-arrow:hover { gap: .75em; }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad-brand); z-index: 200; transition: width .1s linear; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .35s, box-shadow .35s, padding .35s; padding: 14px 0; }
.nav.scrolled { background: rgba(255, 255, 255, .82); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line); padding: 8px 0; }
.nav__inner { max-width: var(--maxw); margin-inline: auto; padding: 0 clamp(20px, 5vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 50px; height: 50px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: "Sora", sans-serif; font-size: 1.08rem; letter-spacing: -.02em; }
.brand__text small { font-size: .72rem; color: var(--muted); font-style: italic; }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 600; font-size: .94rem; color: var(--ink-2); position: relative; transition: color .25s; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--red); transition: width .3s var(--ease); border-radius: 2px; }
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { color: #fff !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 120px clamp(20px, 5vw, 40px) 80px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%); opacity: .5; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: float 16s ease-in-out infinite; }
.blob--red { width: 480px; height: 480px; background: #ff7a5c; top: -120px; right: -80px; }
.blob--blue { width: 420px; height: 420px; background: #6aa9f1; bottom: -140px; left: -100px; animation-delay: -4s; }
.blob--yellow { width: 360px; height: 360px; background: var(--yellow-lt); top: 40%; left: 45%; opacity: .35; animation-delay: -8s; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.08); } }

.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); margin-inline: auto; width: 100%; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: .55em; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: .5em 1em; border-radius: 100px; font-weight: 700; font-size: .82rem; color: var(--ink-2); }
.eyebrow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(224, 26, 26, .5); animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(224, 26, 26, .5); } 70%, 100% { box-shadow: 0 0 0 10px rgba(224, 26, 26, 0); } }

.hero__title { font-size: clamp(2.5rem, 6.2vw, 4.6rem); font-weight: 800; margin: 22px 0 18px; }
.hero__title em { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); transition: transform .9s var(--ease); }
.hero.is-in .reveal-line:nth-child(1) > span { transform: translateY(0); transition-delay: .1s; }
.hero.is-in .reveal-line:nth-child(2) > span { transform: translateY(0); transition-delay: .22s; }

.hero__sub { font-size: clamp(1rem, 1.3vw, 1.18rem); color: var(--ink-2); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.hero__trust { display: flex; align-items: center; gap: 14px; }
.hero__trust p { font-size: .9rem; color: var(--muted); }
.hero__avatars { display: flex; }
.hero__avatars span { width: 34px; height: 34px; border-radius: 50%; background: var(--c); border: 3px solid #fff; margin-left: -10px; box-shadow: var(--shadow-sm); }
.hero__avatars span:first-child { margin-left: 0; }

/* Hero scene */
.hero__scene { position: relative; height: 440px; }
.scene__card { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: min(420px, 90%); aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(160deg, #fff, var(--bg-soft)); box-shadow: var(--shadow-lg); border: 1px solid var(--line); overflow: hidden; }
.scene__card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #eaf2ff 0%, #f7fbff 55%, #fff7e6 100%); }

/* CSS rickshaw */
.rickshaw { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); width: 210px; height: 150px; z-index: 2; animation: bob 2.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 5px)); } }
.rickshaw__hood { position: absolute; top: 0; left: 28px; width: 150px; height: 78px; background: linear-gradient(180deg, var(--yellow-lt), var(--yellow)); border-radius: 80px 80px 12px 12px / 90px 90px 12px 12px; box-shadow: inset 0 -6px 12px rgba(0, 0, 0, .08); }
.rickshaw__body { position: absolute; bottom: 18px; left: 14px; width: 182px; height: 70px; background: linear-gradient(180deg, #2f7fd6, var(--blue)); border-radius: 16px 30px 14px 14px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.rickshaw__ad { color: #fff; font-family: "Sora", sans-serif; font-weight: 800; font-size: .8rem; text-align: center; line-height: 1.05; letter-spacing: .04em; background: var(--red); padding: 8px 12px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, .2); }
.rickshaw__wheel { position: absolute; bottom: -2px; width: 38px; height: 38px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, #444 30%, #111 32%, #111 60%, #555 62%); border: 4px solid #222; animation: spin 1.1s linear infinite; }
.rickshaw__wheel::after { content: ""; position: absolute; inset: 14px; border-radius: 50%; background: #999; }
.rickshaw__wheel--front { right: 18px; }
.rickshaw__wheel--back { left: 22px; }
@keyframes spin { to { transform: rotate(360deg); } }

.scene__road { position: absolute; left: 0; right: 0; bottom: 30px; height: 4px; display: flex; gap: 22px; padding-left: 10px; z-index: 1; }
.scene__road span { width: 32px; height: 4px; background: rgba(20, 23, 31, .25); border-radius: 4px; animation: road 1.1s linear infinite; }
@keyframes road { from { transform: translateX(0); } to { transform: translateX(-54px); } }

.scene__chip { position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 14px; padding: 12px 16px; z-index: 3; animation: floaty 5s ease-in-out infinite; }
.scene__chip strong { display: block; font-family: "Sora", sans-serif; font-size: 1.25rem; color: var(--red); line-height: 1; }
.scene__chip small { font-size: .72rem; color: var(--muted); }
.scene__chip--1 { top: 6%; left: -4%; }
.scene__chip--2 { bottom: 14%; right: -2%; animation-delay: -2s; }
.scene__chip--2 strong { color: var(--blue); }
.scene__chip--3 { bottom: -2%; left: 14%; display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .82rem; animation-delay: -3.5s; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); animation: ping 1.8s infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--ink-2); border-radius: 20px; z-index: 2; opacity: .5; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: var(--ink-2); border-radius: 4px; transform: translateX(-50%); animation: scrolldot 1.6s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); color: #fff; }
.stats__grid { max-width: var(--maxw); margin-inline: auto; padding: 48px clamp(20px, 5vw, 40px); display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 50px; background: rgba(255, 255, 255, .14); }
.stat__num { display: block; font-family: "Sora", sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); background: linear-gradient(120deg, #fff, var(--yellow-lt)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: .9rem; color: rgba(255, 255, 255, .68); }

/* ============================================================
   Section heads
   ============================================================ */
.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.kicker { display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section__title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }
.section__intro { margin-top: 16px; color: var(--ink-2); font-size: 1.08rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.about__lead p { font-size: 1.1rem; color: var(--ink-2); margin-bottom: 18px; }
.about__lead strong { color: var(--ink); }
.about__lead em { color: var(--red); font-weight: 700; }
.about__muted { color: var(--muted) !important; font-size: 1rem !important; }
.about__points { list-style: none; display: grid; gap: 16px; }
.about__points li { display: flex; gap: 16px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.about__points li:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.about__ico { font-size: 1.6rem; flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); }
.about__points h4 { font-size: 1.05rem; margin-bottom: 3px; }
.about__points p { font-size: .92rem; color: var(--muted); }

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--bg-soft); max-width: none; }
.why > * { max-width: var(--maxw); margin-inline: auto; }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.why__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.why__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why__card:hover::before { transform: scaleX(1); }
.why__num { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.4rem; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; }
.why__card h3 { font-size: 1.3rem; margin: 12px 0 10px; }
.why__card p { color: var(--ink-2); font-size: .96rem; }
.why__card--cta { background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.why__card--cta h3 { color: #fff; }
.why__card--cta p { color: rgba(255, 255, 255, .7); margin-bottom: 10px; }
.why__card--cta .btn { align-self: flex-start; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, #fff, var(--bg-soft)); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc__icon { font-size: 2.2rem; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.svc h3 { font-size: 1.15rem; margin-bottom: 8px; }
.svc p { color: var(--ink-2); font-size: .94rem; }

.process { margin-top: clamp(50px, 7vw, 90px); background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); }
.process__title { font-size: clamp(1.5rem, 3vw, 2.2rem); text-align: center; margin-bottom: 44px; }
.process__steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.process__steps li { position: relative; }
.process__steps li:not(:last-child)::after { content: ""; position: absolute; top: 22px; left: 56px; right: -13px; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.3) 0 8px, transparent 8px 16px); }
.process__n { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); font-family: "Sora", sans-serif; font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1; }
.process__steps h4 { font-size: 1.1rem; margin-bottom: 6px; }
.process__steps p { color: rgba(255, 255, 255, .65); font-size: .9rem; }

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage__wrap { display: grid; grid-template-columns: 1.35fr .8fr; gap: clamp(30px, 5vw, 56px); align-items: center; }
.coverage__map .npmap { width: 100%; height: auto; overflow: visible; }
.prov { cursor: pointer; transition: transform .3s var(--ease); transform-box: fill-box; transform-origin: center; }
.prov rect { transition: filter .25s, stroke .2s; }
.prov:hover, .prov:focus-visible { transform: translateY(-7px); outline: none; }
.prov:hover rect, .prov:focus-visible rect, .prov.is-active rect { filter: brightness(1.06) drop-shadow(0 10px 18px rgba(224,26,26,.28)); stroke: #fff; stroke-width: 4; }
.prov text { pointer-events: none; }
.npmap__ricksha { animation: mapdrive 9s linear infinite; }
.npmap__ricksha .w { transform-box: fill-box; transform-origin: center; animation: spin 1s linear infinite; }
@keyframes mapdrive { from { transform: translateX(-50px) translateY(412px); } to { transform: translateX(980px) translateY(412px); } }
.coverage__legend { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; font-size: .8rem; color: var(--muted); }
.coverage__legend .lg { width: 26px; height: 12px; border-radius: 4px; }
.lg--y { background: #ffc933; } .lg--o { background: #ff7a2f; } .lg--r { background: #e01a1a; }

.covInfo__eyebrow { display: inline-block; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.covInfo__name { font-size: 1.8rem; color: #fff; transition: opacity .2s; }
.covInfo__hq { color: rgba(255,255,255,.65); font-size: .92rem; margin: 4px 0 20px; }

.coverage__card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.coverage__big { text-align: center; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 22px; }
.coverage__big .stat__num { font-size: clamp(2rem, 4vw, 2.8rem); }
.coverage__big small { color: rgba(255,255,255,.6); font-size: .86rem; }
.coverage__list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.coverage__list li { display: flex; justify-content: space-between; font-size: .96rem; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.coverage__list span { color: rgba(255,255,255,.65); }
.coverage__list b { color: var(--yellow-lt); }

/* ============================================================
   CLIENTS marquee
   ============================================================ */
.clients { text-align: center; }
.clients .section__head { margin-inline: auto; }
.marquee { position: relative; display: flex; gap: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; flex-shrink: 0; gap: 22px; padding-right: 22px; animation: marquee 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track .logo { flex-shrink: 0; width: 168px; height: 96px; display: grid; place-items: center; padding: 18px 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.marquee__track .logo img { max-height: 56px; max-width: 124px; width: auto; object-fit: contain; }
.marquee__track .logo:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--bg-soft); max-width: none; }
.pricing > * { max-width: var(--maxw); margin-inline: auto; }
.pricing .section__head { text-align: center; margin-inline: auto; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; display: flex; flex-direction: column; position: relative; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price--featured { background: var(--ink); color: #fff; border-color: transparent; transform: scale(1.03); box-shadow: var(--shadow-lg); }
.price--featured:hover { transform: scale(1.03) translateY(-6px); }
.price__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-weight: 800; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; padding: .5em 1.1em; border-radius: 100px; box-shadow: var(--shadow); }
.price__term { font-weight: 700; color: var(--muted); font-size: .95rem; }
.price--featured .price__term { color: rgba(255,255,255,.7); }
.price__amt { font-family: "Sora", sans-serif; font-weight: 800; font-size: 3rem; line-height: 1; margin: 10px 0 4px; display: flex; align-items: flex-start; gap: 2px; }
.price__amt sup { font-size: 1.1rem; font-weight: 700; margin-top: .4em; color: var(--muted); }
.price--featured .price__amt sup { color: rgba(255,255,255,.7); }
.price__amt small { font-size: .9rem; font-weight: 600; color: var(--muted); align-self: flex-end; margin-bottom: .5em; margin-left: 4px; }
.price--featured .price__amt small { color: rgba(255,255,255,.7); }
.price__feats { list-style: none; margin: 24px 0; display: grid; gap: 13px; flex: 1; }
.price__feats li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--ink-2); }
.price--featured .price__feats li { color: rgba(255,255,255,.82); }
.price__feats li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat; }
.price__feats strong { color: inherit; }
.pricing__note { text-align: center; margin-top: 30px; color: var(--muted); font-size: .9rem; max-width: 740px; margin-inline: auto; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder__wrap { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.founder__photo { position: relative; width: min(440px, 100%); justify-self: center; }
.founder__photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.founder__ring { position: absolute; inset: -16px -16px 16px 16px; border-radius: var(--radius-lg); background: var(--grad-brand); z-index: 0; opacity: .85; }
.founder__quote { font-family: "Sora", sans-serif; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.4; font-weight: 600; letter-spacing: -.01em; margin: 18px 0 20px; }
.founder__body { margin-bottom: 24px; }
.founder__body p { color: var(--ink-2); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; }
.founder__body p:last-child { margin-bottom: 0; }
.founder__body strong { color: var(--red); }
.founder__sign strong { display: block; font-size: 1.15rem; color: var(--red); }
.founder__sign span { color: var(--muted); font-size: .94rem; }
.founder__linkedin { display: inline-flex; align-items: center; gap: .5em; margin-top: 14px; padding: .55em 1.1em; border-radius: 100px; background: #0a66c2; color: #fff; font-weight: 700; font-size: .9rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.founder__linkedin:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(10,102,194,.35); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: #fff; max-width: none; }
.contact__wrap { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); }
.contact .kicker { color: var(--yellow-lt); }
.contact .section__title { color: #fff; }
.contact__intro > p { color: rgba(255,255,255,.7); margin: 16px 0 30px; max-width: 440px; }
.contact__details { list-style: none; display: grid; gap: 18px; margin-bottom: 30px; }
.contact__details li { display: flex; gap: 14px; align-items: flex-start; }
.contact__ico { font-size: 1.2rem; width: 44px; height: 44px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; flex-shrink: 0; }
.contact__details small { display: block; color: rgba(255,255,255,.5); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact__details a, .contact__details span { color: #fff; font-weight: 600; }
.contact__details a:hover { color: var(--yellow-lt); }

/* Form */
.contact__form { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-lg); }
.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field input, .field select, .field textarea { width: 100%; padding: 18px 16px 8px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; color: var(--ink); background: #fff; transition: border-color .25s, box-shadow .25s; resize: vertical; }
.field textarea { min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(224, 26, 26, .12); }
.field label { position: absolute; left: 16px; top: 15px; color: var(--muted); font-size: .98rem; pointer-events: none; transition: .2s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label,
.field .label--select { top: 7px; font-size: .72rem; color: var(--red); font-weight: 700; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form__hint { margin-top: 12px; font-size: .9rem; font-weight: 600; min-height: 1.2em; text-align: center; }
.form__hint.ok { color: #16a34a; }
.form__hint.err { color: var(--red); }

/* ============================================================
   WORK / GALLERY
   ============================================================ */
.work__grid { columns: 4; column-gap: 16px; }
.work__item { break-inside: avoid; display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; background: none; cursor: pointer; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.work__item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.work__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,17,24,.72) 0%, rgba(14,17,24,0) 45%); opacity: 0; transition: opacity .4s var(--ease); }
.work__cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-weight: 700; font-size: .92rem; text-align: left; transform: translateY(8px); opacity: 0; transition: transform .4s var(--ease), opacity .4s var(--ease); text-shadow: 0 1px 6px rgba(0,0,0,.4); pointer-events: none; }
.work__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work__item:hover img { transform: scale(1.07); }
.work__item:hover::after, .work__item:hover .work__cap { opacity: 1; }
.work__item:hover .work__cap { transform: none; }
.work__item:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 24px; background: rgba(8,10,15,.92); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__fig { margin: 0; max-width: min(92vw, 1000px); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox__fig img { max-width: 100%; max-height: 78vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); transform: scale(.96); transition: transform .35s var(--ease); }
.lightbox.open .lightbox__fig img { transform: scale(1); }
.lightbox__fig figcaption { color: #fff; font-weight: 600; font-size: 1rem; text-align: center; }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background .25s, transform .25s; }
.lightbox__close:hover { background: rgba(255,255,255,.24); transform: rotate(90deg); }
.lightbox__nav { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .25s, transform .25s; }
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__nav--prev:hover { transform: translateX(-3px); }
.lightbox__nav--next:hover { transform: translateX(3px); }

@media (max-width: 1100px) { .work__grid { columns: 3; } }
@media (max-width: 760px) {
  .work__grid { columns: 2; column-gap: 12px; }
  .work__item { margin-bottom: 12px; }
  .lightbox__nav { position: absolute; bottom: 22px; }
  .lightbox__nav--prev { left: 28%; }
  .lightbox__nav--next { right: 28%; }
}
@media (max-width: 420px) { .work__cap { opacity: 1; transform: none; font-size: .8rem; } .work__item::after { opacity: 1; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: transparent; background: #fff; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.06rem; cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__ico { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2.5px; background: var(--red); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.faq__ico::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__ico::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__item[open] .faq__a { max-height: 300px; }
.faq__a p { padding: 0 24px 22px; color: var(--ink-2); margin: 0; }

/* Language toggle */
.lang-toggle { display: inline-flex; padding: 3px; border: 1.5px solid var(--line); border-radius: 100px; background: #fff; cursor: pointer; font-family: inherit; gap: 2px; }
.lang-toggle span { padding: .28em .7em; border-radius: 100px; font-size: .82rem; font-weight: 800; color: var(--muted); transition: background .25s, color .25s; line-height: 1.4; }
.lang-toggle span.is-on { background: var(--ink); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); color: rgba(255,255,255,.7); padding: 60px clamp(20px, 5vw, 40px) 0; }
.footer__inner { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { width: 60px; height: 60px; object-fit: contain; border-radius: 14px; margin-bottom: 14px; box-shadow: var(--shadow); }
.footer__tag { font-size: .94rem; }
.footer__tag strong { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff; transition: transform .3s var(--ease), background .25s, border-color .25s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a:hover { color: #fff; }
.footer__meta p { font-size: .9rem; margin-bottom: 8px; }
.footer__meta a:hover { color: #fff; }
.footer__bar { max-width: var(--maxw); margin-inline: auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 20px 0; font-size: .84rem; color: rgba(255,255,255,.45); }

/* Floating WhatsApp */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37, 211, 102, .45); transition: transform .35s var(--ease); animation: ping-wa 2.4s ease-out infinite; }
.fab-wa:hover { transform: scale(1.1) translateY(-2px); }
@keyframes ping-wa { 0% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal-line > span { transform: none !important; }
  .blob, .rickshaw, .rickshaw__wheel, .scene__road span, .scene__chip, .marquee__track, .fab-wa, .eyebrow__dot, .pulse, .npmap__ricksha, .npmap__ricksha .w { animation: none !important; }
}

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal { max-width: 800px; margin: 0 auto; padding: clamp(100px, 13vw, 150px) clamp(20px, 5vw, 40px) 90px; }
.legal__back { display: inline-flex; align-items: center; gap: .45em; margin-bottom: 22px; font-weight: 700; color: var(--ink-2); }
.legal__back:hover { color: var(--red); }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 6px; }
.legal__updated { color: var(--muted); margin-bottom: 36px; }
.legal h2 { font-size: 1.25rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 12px; line-height: 1.7; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--red); font-weight: 600; }
.legal__note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; font-size: .9rem; color: var(--muted); margin-top: 36px; }
.legal-nav { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line); }
.legal-nav .nav__inner { padding-top: 12px; padding-bottom: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__scene { height: 360px; order: -1; }
  .about__grid, .coverage__wrap, .founder__wrap, .contact__wrap { grid-template-columns: 1fr; }
  .why__grid, .services__grid, .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps li:nth-child(2)::after { display: none; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; }
  .price--featured { transform: none; }
  .price--featured:hover { transform: translateY(-6px); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .founder__wrap { text-align: center; }
  .founder__photo { margin-bottom: 20px; }
}

@media (max-width: 720px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px; background: #fff; padding: 90px 28px 40px; box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform .45s var(--ease); }
  .nav__links.open { transform: none; }
  .nav__links a { width: 100%; padding: 12px 0; font-size: 1.05rem; }
  .nav__cta { margin-top: 12px; }
  .nav__toggle { display: flex; z-index: 101; }
  body.nav-open { overflow: hidden; }

  .why__grid, .services__grid, .process__steps { grid-template-columns: 1fr; }
  .process__steps li::after { display: none !important; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .scene__chip--1 { left: 0; }
  .scene__chip--2 { right: 0; }
  .stat:not(:last-child)::after { display: none; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 2.2rem; }
  .scene__card { width: 96%; }
}
