/* ============================================================
   W2 Films — production stylesheet (static build, Neon Cinema).
   Built entirely on tokens from colors_and_type.css.
   Class-based; animations are CSS-driven (work without React).
   ============================================================ */
/* Brand override: signature neon gradient uses lime as the mid accent (was violet) */
:root { --grad-neon: linear-gradient(100deg, var(--magenta) 0%, var(--lime) 50%, var(--cyan) 100%); }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-app); color: var(--fg-1); font-family: var(--font-text);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
::selection { background: var(--magenta); color: var(--ink-950); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-950); }
::-webkit-scrollbar-thumb { background: var(--ink-600); border-radius: 8px; border: 2px solid var(--ink-950); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-500); }

/* skip link (a11y) */
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--magenta); color: var(--ink-950); padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 600; }
.skip:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding-inline: 32px; }
.section { padding: 104px 0; position: relative; }
.section-tight { padding: 72px 0; position: relative; }
.bg-surface { background: var(--bg-surface); }
.bg-void { background: var(--bg-void); }
.bd-top { border-top: 1px solid var(--border-hairline); }
.bd-block { border-block: 1px solid var(--border-hairline); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; opacity: 0.7; }
.eyebrow.magenta { color: var(--magenta); }
.eyebrow.lime { color: var(--lime); }
.center .eyebrow, .eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--font-sans); font-weight: 700; color: var(--fg-1);
  font-size: clamp(30px, 4.2vw, 52px); line-height: 1.08; letter-spacing: -0.022em; margin: 0;
}
.section-sub { font-size: var(--fs-body-lg); line-height: 1.55; color: var(--fg-2); margin: 16px 0 0; }
.section-head.center .section-sub { margin-inline: auto; }
.grad-text { background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; line-height: 1;
  border-radius: var(--r-pill); padding: 14px 26px; border: 1px solid transparent;
  transition: all var(--dur-base) var(--ease-out); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { color: var(--ink-950); background: var(--lime); box-shadow: var(--glow-lime); }
.btn-primary:hover { background: var(--lime-deep); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost { color: var(--fg-1); background: rgba(255,255,255,0.04); border-color: var(--border-soft); }
.btn-ghost:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.btn-cyan { color: var(--ink-950); background: var(--cyan); box-shadow: var(--glow-cyan); }
.btn-cyan:hover { background: var(--cyan-bright); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-pulse { animation: glowpulse 3.2s var(--ease-in-out) infinite; }
@keyframes glowpulse {
  0%,100% { box-shadow: 0 0 0 1px rgba(198,255,61,0.35), 0 8px 32px -4px rgba(198,255,61,0.45); }
  50% { box-shadow: 0 0 0 1px rgba(198,255,61,0.6), 0 10px 44px 2px rgba(198,255,61,0.6); }
}
.link-cyan { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--cyan); transition: gap var(--dur-fast) var(--ease-out); }
.link-cyan svg { width: 16px; height: 16px; }
.link-cyan:hover { gap: 11px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

/* ---------- cards ---------- */
.card { background: var(--bg-card); border: 1px solid var(--border-hairline); border-radius: var(--r-lg);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.card:hover { transform: translateY(-3px); border-color: var(--border-neon); box-shadow: var(--glow-magenta); }

/* ---------- reveal + hero entrance ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay:.08s } .reveal[data-d="2"]{ transition-delay:.16s }
.reveal[data-d="3"]{ transition-delay:.24s } .reveal[data-d="4"]{ transition-delay:.32s } .reveal[data-d="5"]{ transition-delay:.40s }
/* hero entrance — transition-based (robust everywhere); JS adds .in on load, noscript/fallback shows it anyway */
.hero-anim { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.hero-anim.in { opacity: 1; transform: none; }
.hero-content > .pill.hero-anim { transition-delay: .10s; }
.hero-content > h1.hero-anim { transition-delay: .20s; }
.hero-content > .hero-sub.hero-anim { transition-delay: .30s; }
.hero-content > .btn-row.hero-anim { transition-delay: .40s; }
.hero-content > .hero-stats.hero-anim { transition-delay: .50s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-anim { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .btn-pulse, .marquee-track, .svc-feat, .svc-feat-glow, .svc-orbit-ring::before, .svc-orbit-ring::after { animation: none !important; }
  .svc-feat::after { display: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- chips ---------- */
.tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--cyan); text-transform: uppercase; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: var(--r-pill); border: 1px solid var(--border-soft); background: rgba(255,255,255,0.03); font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg-2); }
.dot { width: 7px; height: 7px; border-radius: 99px; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

/* ---------- play button ---------- */
.playbtn { width: 76px; height: 76px; border-radius: var(--r-pill); background: rgba(10,11,14,0.45); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.32); color: #fff; display: flex; align-items: center; justify-content: center; transition: all var(--dur-base) var(--ease-out); }
.playbtn svg { width: 26px; height: 26px; margin-left: 3px; }
.playbtn.sm { width: 58px; height: 58px; } .playbtn.sm svg { width: 20px; height: 20px; margin-left: 2px; }
.media:hover .playbtn { background: var(--magenta); border-color: var(--magenta); box-shadow: var(--glow-magenta); color: var(--ink-950); transform: scale(1.06); }

/* film grain */
.grain::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- marquee ---------- */
.marquee { display: flex; 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; gap: 0; flex-shrink: 0; animation: scrollx 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================ NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(10,11,14,0.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--border-hairline); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 28px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link { color: var(--fg-2); font-size: 15px; font-weight: 500; font-family: var(--font-sans); cursor: pointer; transition: color var(--dur-fast); background: none; border: none; padding: 0; }
.nav-link:hover { color: var(--fg-1); }
.nav-ia { display: inline-flex; align-items: center; gap: 5px; padding: 7px 15px; border: 1px solid rgba(21,230,240,0.4); border-radius: var(--r-pill); color: var(--cyan) !important; font-weight: 600; transition: all var(--dur-fast) var(--ease-out); }
.nav-ia:hover { background: rgba(21,230,240,0.1); border-color: var(--cyan); color: var(--cyan-bright) !important; box-shadow: var(--glow-cyan); }
.nav-mobile .nav-ia { align-self: flex-start; padding: 9px 16px; margin: 6px 0; font-size: 15px; }
.nav-sep { width: 1px; height: 18px; background: var(--border-soft); }
.nav-dd { position: relative; }
.nav-dd-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-dd-trigger svg { width: 15px; height: 15px; transition: transform var(--dur-fast); }
.nav-dd:hover .nav-dd-trigger svg { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px); padding-top: 12px; opacity: 0; pointer-events: none; transition: opacity var(--dur-fast), transform var(--dur-fast); }
.nav-dd:hover .nav-dd-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-inner { background: rgba(15,17,22,0.96); backdrop-filter: blur(16px); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 8px; min-width: 230px; box-shadow: var(--shadow-lg); }
.nav-dd-inner a { display: block; padding: 9px 13px; border-radius: var(--r-sm); color: var(--fg-2); font-size: 14px; font-family: var(--font-sans); transition: all var(--dur-fast); }
.nav-dd-inner a:hover { background: rgba(255,255,255,0.05); color: var(--cyan); }
.lang { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; }
.lang a { color: var(--fg-3); } .lang a.on { color: var(--fg-1); font-weight: 600; } .lang .sl { color: var(--fg-muted); }
.nav-burger { display: none; background: none; border: none; color: var(--fg-1); cursor: pointer; padding: 6px; }
.nav-burger svg { width: 26px; height: 26px; }
.nav-mobile { display: none; border-top: 1px solid var(--border-hairline); max-height: calc(100vh - 72px); overflow-y: auto; background: rgba(10,11,14,0.96); backdrop-filter: blur(16px); }
.nav.open .nav-mobile { display: block; }
.nav.open { background: rgba(10,11,14,0.92); backdrop-filter: blur(16px); border-bottom-color: var(--border-hairline); }
.nav-mobile-inner { padding-block: 16px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a, .nav-mobile .nav-link { padding: 12px 0; font-size: 17px; }
.nav-mobile a[data-toggle], .nav-mobile .nav-link[data-toggle] { display: inline-flex; align-items: center; gap: 7px; }
.nav-mobile a svg, .nav-mobile .nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.nav-mobile-dd { display: flex; flex-direction: column; gap: 2px; padding-left: 14px; padding-bottom: 8px; }
.nav-mobile-dd a { padding: 9px 0; font-size: 15px; color: var(--fg-3); }
.nav-mobile-dd[hidden] { display: none; }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; background: var(--ink-950); }
.hero-bg img, .hero-bg iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; transform: translate(-50%,-50%); object-fit: cover; border: 0; pointer-events: none; }
.hero-bg img { filter: brightness(0.7) saturate(1.1); }
.hero-protect { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,6,8,0.78) 0%, rgba(5,6,8,0.55) 38%, rgba(5,6,8,0.82) 100%); }
.hero-spot { position: absolute; inset: 0; background: var(--grad-spotlight); mix-blend-mode: screen; }
.hero-bar { position: absolute; left: 0; right: 0; top: 0; height: 52px; background: linear-gradient(180deg, var(--ink-950), transparent); pointer-events: none; }
.hero-content { position: relative; text-align: center; padding-top: 100px; padding-bottom: 60px; }
.hero h1 { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; margin: 26px auto 0; max-width: 1000px; font-size: clamp(38px, 7vw, 78px); color: var(--fg-1); }
.hero-sub { font-size: clamp(16px, 2vw, 20px); line-height: 1.55; color: var(--fg-2); max-width: 600px; margin: 26px auto 0; }
.hero .btn-row { margin-top: 38px; }
.hero-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 0; margin-top: 56px; font-family: var(--font-mono); }
.hero-stats span { display: inline-flex; align-items: center; font-size: 13px; color: var(--fg-2); letter-spacing: 0.02em; }
.hero-stats span + span::before { content: '·'; color: var(--magenta); margin: 0 16px; opacity: 0.8; }
.hero-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--fg-3); animation: bobdown 2.4s var(--ease-in-out) infinite; }
.hero-cue svg { width: 26px; height: 26px; }
@keyframes bobdown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* ============================================================ CLIENTS */
.clients-head { text-align: center; margin-bottom: 44px; }
.clients-featured { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 0; margin-bottom: 26px; }
.client-logo { display: flex; align-items: center; justify-content: center; padding: 0 38px; flex-shrink: 0; }
.client-logo img { height: 46px; max-width: 150px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.5; transition: opacity var(--dur-base) var(--ease-out); }
.client-logo:hover img { opacity: 1; }
.marquee .client-logo img { height: 34px; }

/* ============================================================ SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.svc { grid-column: span 4; padding: 28px; display: flex; flex-direction: column; }
.svc-feat { grid-column: span 12; position: relative; overflow: hidden; padding: 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: center; background: linear-gradient(110deg, var(--ink-700) 0%, var(--ink-800) 100%); border-color: var(--border-soft); }
.svc-feat-glow { position: absolute; top: -80px; right: -40px; width: 380px; height: 380px; background: radial-gradient(circle, var(--cyan-glow), transparent 65%); opacity: 0.5; pointer-events: none; }
/* AI feature card — always-on attention: breathing glow + slow neon pulse + drifting sheen */
.svc-feat { animation: featPulse 5.5s var(--ease-in-out) infinite; }
.svc-feat-glow { animation: breathe 6s var(--ease-in-out) infinite; }
.svc-feat::after { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; background: linear-gradient(115deg, transparent 38%, rgba(21,230,240,0.12) 50%, transparent 62%); background-size: 260% 100%; animation: sheen 7s linear infinite; }
.svc-feat-glow { z-index: 0; }
.svc-feat > div:not(.svc-feat-glow) { position: relative; z-index: 1; }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .42; } 50% { transform: scale(1.18); opacity: .82; } }
@keyframes featPulse { 0%, 100% { box-shadow: 0 0 0 1px rgba(21,230,240,0.12), 0 0 30px -12px rgba(21,230,240,0.25); } 50% { box-shadow: 0 0 0 1px rgba(21,230,240,0.42), 0 0 50px -6px rgba(21,230,240,0.5); } }
@keyframes sheen { 0% { background-position: 150% 0; } 100% { background-position: -150% 0; } }
.svc-icon { width: 46px; height: 46px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); color: var(--magenta-bright); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-icon svg { width: 23px; height: 23px; }
.svc h3 { font-family: var(--font-sans); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--fg-1); }
.svc p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0 0 20px; flex: 1; }
.svc-feat-head { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.svc-feat-icon { width: 46px; height: 46px; border-radius: var(--r-md); background: rgba(21,230,240,0.12); border: 1px solid rgba(21,230,240,0.3); color: var(--cyan); display: flex; align-items: center; justify-content: center; }
.svc-feat-icon svg { width: 24px; height: 24px; }
.svc-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-950); background: var(--lime); padding: 4px 10px; border-radius: var(--r-pill); font-weight: 600; }
.svc-feat h3 { font-family: var(--font-sans); font-size: clamp(24px,3vw,32px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--fg-1); }
.svc-feat p { font-size: 16px; line-height: 1.6; color: var(--fg-2); margin: 0 0 22px; max-width: 520px; }
.svc-orbit { position: relative; height: 100%; min-height: 200px; display: flex; align-items: center; justify-content: center; }

/* ===== Subpages (Destaques landing pages) ===== */
.subhero { position: relative; padding: 150px 0 86px; overflow: hidden; border-bottom: 1px solid var(--border-hairline); }
.subhero-spot { position: absolute; top: -12%; left: 50%; transform: translateX(-50%); width: 92%; height: 440px; background: var(--grad-spotlight); pointer-events: none; }
.subhero-inner { position: relative; max-width: 840px; }
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); margin-bottom: 22px; letter-spacing: 0.02em; }
.crumb a { color: var(--fg-3); transition: color var(--dur-fast); }
.crumb a:hover { color: var(--cyan); }
.crumb span { color: var(--fg-muted); }
.subhero-title { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(34px, 6vw, 60px); color: var(--fg-1); margin: 0; }
.subhero-sub { font-size: clamp(16px, 2vw, 20px); line-height: 1.55; color: var(--fg-2); margin: 22px 0 0; max-width: 660px; }
.subhero .btn-row { margin-top: 32px; }
.subhero-stats { display: flex; flex-wrap: wrap; gap: 10px 0; margin-top: 40px; font-family: var(--font-mono); }
.subhero-stats span { display: inline-flex; align-items: center; font-size: 13px; color: var(--fg-2); }
.subhero-stats span + span::before { content: '·'; color: var(--lime); margin: 0 16px; opacity: 0.8; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feat-card { padding: 28px; }
.feat-card .svc-icon { color: var(--cyan); margin-bottom: 18px; }
.feat-card h3 { font-family: var(--font-sans); font-size: 19px; font-weight: 600; color: var(--fg-1); margin: 0 0 10px; letter-spacing: -0.01em; }
.feat-card p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.why-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 880px; margin: 0 auto; }
.why-strip .counter b { background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 860px) { .subhero { padding: 120px 0 64px; } }
@media (max-width: 580px) { .why-strip { grid-template-columns: 1fr; gap: 28px; } }

/* trust badges row in subhero */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 15px; border-radius: var(--r-pill); border: 1px solid var(--border-soft); background: rgba(255,255,255,0.03); font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--fg-2); }
.trust-badge svg { width: 15px; height: 15px; color: var(--lime); }

/* pricing / packages */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; max-width: 1040px; margin: 0 auto; align-items: start; }
.price-card { padding: 32px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border-color: var(--border-neon); box-shadow: var(--glow-magenta); }
.price-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-950); background: var(--lime); padding: 4px 13px; border-radius: var(--r-pill); font-weight: 600; white-space: nowrap; }
.price-tier { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.price-tag { font-family: var(--font-sans); font-weight: 800; font-size: clamp(30px, 4vw, 40px); letter-spacing: -0.02em; line-height: 1; color: var(--fg-1); }
.price-tag small { font-size: 14px; font-weight: 500; color: var(--fg-3); letter-spacing: 0; }
.price-sub { font-size: 14px; color: var(--fg-2); margin: 8px 0 22px; }
.price-features { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--fg-2); }
.price-features li svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.price-note { font-size: 12.5px; color: var(--fg-3); margin: 0 0 18px; line-height: 1.5; }
.price-ideal { font-size: 13.5px; color: var(--fg-2); margin: 0 0 20px; line-height: 1.5; }
.price-ideal b { color: var(--fg-1); }

/* areas served */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.area-col { padding: 26px; }
.area-col h3 { display: flex; align-items: center; gap: 9px; font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--fg-1); margin: 0 0 16px; }
.area-col h3 svg { width: 18px; height: 18px; color: var(--magenta-bright); }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chips span { font-size: 13px; color: var(--fg-2); padding: 5px 12px; border-radius: var(--r-pill); border: 1px solid var(--border-hairline); background: rgba(255,255,255,0.02); }

/* small works/portfolio row on subpages */
.works-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.svc-orbit-ring { position: relative; width: 180px; height: 180px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(21,230,240,0.25); }
.svc-orbit-ring::before { content: ''; position: absolute; inset: 22px; border-radius: 50%; border: 1px solid rgba(255,45,142,0.25); animation: spin 14s linear infinite; }
.svc-orbit-ring::after { content: ''; position: absolute; inset: 44px; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.12); animation: spin 22s linear infinite reverse; }
.svc-orbit-ring svg { width: 56px; height: 56px; color: var(--cyan); filter: drop-shadow(0 0 16px var(--cyan-glow)); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TWEAK: client logos — light chips variant (works with any logo background) ===== */
body.tw-logos-chips .clients-featured { gap: 16px; }
body.tw-logos-chips .clients-featured .client-logo { padding: 16px 22px; margin: 6px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); }
body.tw-logos-chips .clients-featured .client-logo img { filter: none; opacity: 1; }
body.tw-logos-chips .marquee .client-logo { padding: 12px 20px; }
body.tw-logos-chips .marquee .client-logo img { filter: none; opacity: 1; background: #fff; border-radius: 8px; padding: 6px 10px; box-sizing: content-box; }

/* ===== TWEAK: disable AI card always-on animation ===== */
body.tw-ai-static .svc-feat, body.tw-ai-static .svc-feat-glow, body.tw-ai-static .svc-orbit-ring::before, body.tw-ai-static .svc-orbit-ring::after { animation: none !important; }
body.tw-ai-static .svc-feat::after { display: none !important; }

/* ===== Tweaks panel ===== */
.tweaks-panel { position: fixed; top: 86px; right: 20px; z-index: 300; width: 280px; background: rgba(15,17,22,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 18px; display: none; font-family: var(--font-sans); }
.tweaks-panel.show { display: block; }
.tweaks-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tweaks-head h3 { margin: 0; font-size: 15px; font-weight: 600; color: var(--fg-1); letter-spacing: 0.02em; }
.tweaks-close { background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft); color: var(--fg-2); width: 28px; height: 28px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.tweaks-close:hover { color: var(--fg-1); border-color: var(--border-strong); }
.tweaks-close svg { width: 16px; height: 16px; }
.tweak-row { margin-bottom: 16px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-label { display: block; font-size: 12px; font-weight: 600; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.tweak-seg { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); border-radius: 10px; padding: 4px; }
.tweak-seg button { flex: 1; padding: 8px 10px; border-radius: 7px; border: none; background: transparent; color: var(--fg-2); font-family: var(--font-sans); font-size: 13px; font-weight: 500; cursor: pointer; transition: all var(--dur-fast); }
.tweak-seg button:hover { color: var(--fg-1); }
.tweak-seg button.on { background: var(--lime); color: var(--ink-950); font-weight: 600; }

/* ============================================================ SHOWREEL */
.showreel-media { max-width: 1040px; margin: 0 auto; }
.showreel-media .media { position: relative; border-radius: var(--r-xl); overflow: hidden; cursor: pointer; aspect-ratio: 2.39 / 1; background: var(--ink-800); border: 1px solid var(--border-soft); box-shadow: var(--shadow-lg); }
.showreel-media .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.66) saturate(1.1); transition: transform var(--dur-slow) var(--ease-out); }
.showreel-media .media:hover img { transform: scale(1.03); }
.showreel-glow { position: absolute; inset: 0; background: radial-gradient(55% 75% at 50% 50%, rgba(255,45,142,0.18), transparent 70%); }
.media-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.media-meta { position: absolute; bottom: 18px; font-family: var(--font-mono); font-size: 12px; color: #fff; letter-spacing: 0.04em; }
.media-meta.l { left: 20px; } .media-meta.r { right: 20px; color: var(--cyan); }
.cta-band { text-align: center; margin-top: 40px; }
.cta-band p { font-size: 18px; color: var(--fg-1); font-weight: 500; margin: 0 0 20px; }

/* ============================================================ PORTFOLIO */
.pf-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.pf-filter { font-family: var(--font-sans); font-size: 14px; font-weight: 500; cursor: pointer; padding: 9px 18px; border-radius: var(--r-pill); background: rgba(255,255,255,0.03); color: var(--fg-2); border: 1px solid var(--border-soft); transition: all var(--dur-base) var(--ease-out); }
.pf-filter:hover { border-color: var(--border-strong); color: var(--fg-1); }
.pf-filter.active { background: var(--magenta); color: var(--ink-950); border-color: var(--magenta); box-shadow: var(--glow-magenta); }
.pf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.pf-card { overflow: hidden; cursor: pointer; }
.pf-card[hidden] { display: none; }
.pf-media { position: relative; aspect-ratio: 16 / 9; background: var(--ink-800); overflow: hidden; }
.pf-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82); transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-base); }
.pf-card:hover .pf-media img { transform: scale(1.05); filter: brightness(1); }
.pf-media-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,6,8,0.7)); pointer-events: none; }
.pf-body { padding: 18px 20px 20px; }
.pf-body h3 { font-family: var(--font-sans); font-size: 17px; font-weight: 600; margin: 0 0 8px; color: var(--fg-1); letter-spacing: -0.01em; }
.pf-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-tags .tag { padding: 3px 9px; border-radius: var(--r-pill); background: rgba(21,230,240,0.08); border: 1px solid rgba(21,230,240,0.18); }

/* ============================================================ BASTIDORES */
.bts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.bts-card { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-hairline); background: var(--ink-800); cursor: pointer; }
.bts-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(1.05); transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-base); }
.bts-card:hover img { transform: scale(1.06); filter: brightness(0.92) saturate(1.1); }
.bts-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,6,8,0.78)); }
.bts-label { position: absolute; left: 16px; bottom: 14px; font-family: var(--font-mono); font-size: 12px; color: #fff; letter-spacing: 0.03em; display: flex; align-items: center; gap: 7px; }
.bts-label svg { width: 14px; height: 14px; color: var(--cyan); }

/* ============================================================ CASE STUDY */
.case-spot { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 360px; background: var(--grad-spotlight); pointer-events: none; }
.case-media { max-width: 960px; margin: 0 auto 22px; }
.case-media .media { position: relative; border-radius: var(--r-xl); overflow: hidden; cursor: pointer; aspect-ratio: 16 / 9; background: var(--ink-800); border: 1px solid var(--border-soft); box-shadow: var(--shadow-lg); }
.case-media .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62) saturate(1.1); }
.case-badge { position: absolute; left: 20px; top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--lime); letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 11px; background: rgba(5,6,8,0.6); border-radius: var(--r-pill); border: 1px solid rgba(198,255,61,0.25); }
.case-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 960px; margin: 0 auto 56px; }
.case-stat { text-align: center; padding: 22px 12px; background: var(--bg-card); border: 1px solid var(--border-hairline); border-radius: var(--r-lg); }
.case-stat b { font-family: var(--font-sans); font-weight: 800; font-size: clamp(24px,3.4vw,38px); letter-spacing: -0.02em; display: block; background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; color: transparent; }
.case-stat span { font-size: 13px; color: var(--fg-3); margin-top: 4px; display: block; }
.case-sub { text-align: center; margin-bottom: 28px; font-family: var(--font-sans); font-size: 22px; font-weight: 600; color: var(--fg-1); }
.case-challenges { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; max-width: 1000px; margin: 0 auto; }
.case-challenges .card { padding: 24px; }
.chal-icon { display: flex; width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); color: var(--cyan); align-items: center; justify-content: center; margin-bottom: 16px; }
.chal-icon svg { width: 22px; height: 22px; }
.case-challenges h4 { font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--fg-1); margin: 0 0 8px; }
.case-challenges p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }

/* ============================================================ COUNTERS */
.counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.counter { text-align: center; }
.counter b { font-family: var(--font-sans); font-weight: 800; font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.03em; line-height: 1; display: inline-block; }
.counter span { font-size: clamp(13px,1.6vw,16px); color: var(--fg-2); margin-top: 10px; font-weight: 500; display: block; }

/* ============================================================ TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testi-card { padding: 30px; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--lime); }
.stars svg { width: 15px; height: 15px; }
.testi-card blockquote { font-size: 15px; line-height: 1.65; color: var(--fg-1); margin: 0 0 22px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--border-hairline); }
.testi-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-soft); }
.testi-author b { font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--fg-1); display: block; }
.testi-author span { font-size: 13px; color: var(--cyan); }

/* ============================================================ PROCESS */
.process-wrap { position: relative; }
.process-line { position: absolute; top: 30px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-soft) 12%, var(--border-soft) 88%, transparent); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.proc-step { text-align: center; }
.proc-num { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-app); border: 1px solid var(--border-neon); box-shadow: var(--glow-magenta); font-family: var(--font-sans); font-weight: 700; font-size: 24px; color: var(--magenta-bright); }
.proc-step h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 600; color: var(--fg-1); margin: 0 0 8px; }
.proc-step p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.process-cta { text-align: center; margin-top: 52px; }
.process-cta .pill { margin-bottom: 22px; }
.process-cta .pill svg { width: 15px; height: 15px; color: var(--cyan); }

/* ============================================================ ABOUT */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.about-list { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 13px; }
.about-check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(43,224,138,0.12); border: 1px solid rgba(43,224,138,0.35); color: var(--success); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.about-check svg { width: 15px; height: 15px; }
.about-list span { font-size: 16px; line-height: 1.5; color: var(--fg-1); }
.about-media { position: relative; }
.about-media-inner { position: relative; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.about-media-inner img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.about-media-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,6,8,0.5)); }
.about-badge { position: absolute; left: -18px; bottom: 28px; background: rgba(15,17,22,0.92); backdrop-filter: blur(12px); border: 1px solid var(--border-neon); box-shadow: var(--glow-magenta); border-radius: var(--r-lg); padding: 18px 24px; }
.about-badge b { font-family: var(--font-sans); font-weight: 800; font-size: 30px; letter-spacing: -0.02em; color: var(--fg-1); display: block; }
.about-badge b i { color: var(--magenta); font-style: normal; }
.about-badge span { font-size: 13px; color: var(--fg-2); margin-top: 2px; display: block; }

/* ============================================================ CONTACT */
.contact-spot { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 70%; height: 320px; background: var(--grad-spotlight); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info h3 { font-family: var(--font-sans); font-size: 22px; font-weight: 600; color: var(--fg-1); margin: 0 0 24px; }
.contact-rows { display: flex; flex-direction: column; gap: 20px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-row-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); }
.contact-row-icon svg { width: 20px; height: 20px; }
.contact-row .lbl { display: block; font-size: 12px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; font-family: var(--font-sans); font-weight: 600; }
.contact-row .val { display: block; font-size: 16px; color: var(--fg-1); font-weight: 500; white-space: pre-line; line-height: 1.4; }
.socials { display: flex; gap: 12px; margin-top: 30px; }
.social-btn { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.04); border: 1px solid var(--border-soft); color: var(--fg-2); transition: all var(--dur-base) var(--ease-out); }
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { color: var(--magenta); border-color: var(--border-neon); transform: translateY(-2px); }
.contact-form { padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--fg-2); margin-bottom: 7px; font-family: var(--font-sans); }
.field input, .field select, .field textarea { width: 100%; background: var(--bg-input); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 13px 15px; color: var(--fg-1); font-size: 15px; font-family: var(--font-text); outline: none; transition: border-color var(--dur-fast); }
.field textarea { min-height: 110px; resize: vertical; }
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--magenta); }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-muted); }
.form-note { text-align: center; font-size: 13px; color: var(--fg-3); margin: 16px 0 0; }

/* ============================================================ FAQ */
.faq-wrap { max-width: 880px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-hairline); border-radius: var(--r-md); overflow: hidden; transition: border-color var(--dur-base); }
.faq-item.open { border-color: var(--border-neon); box-shadow: var(--glow-magenta); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: transparent; border: none; cursor: pointer; padding: 20px 22px; text-align: left; font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--fg-1); }
.faq-q span { font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--fg-1); }
.faq-q .ic { flex-shrink: 0; color: var(--fg-3); transition: transform var(--dur-base) var(--ease-out), color var(--dur-base); display: flex; }
.faq-q .ic svg { width: 20px; height: 20px; }
.faq-item.open .faq-q .ic { color: var(--magenta); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-item.open .faq-a { max-height: 460px; }
.faq-a p { margin: 0; padding: 0 22px 22px; font-size: 15px; line-height: 1.6; color: var(--fg-2); }

/* ============================================================ FOOTER */
.footer { background: var(--bg-void); border-top: 1px solid var(--border-hairline); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0 0 20px; max-width: 260px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--fg-1); margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: var(--fg-2); font-size: 14px; transition: color var(--dur-fast); line-height: 1.5; }
.footer-col a:hover { color: var(--cyan); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials .social-btn { width: 40px; height: 40px; } .footer-socials .social-btn svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--border-hairline); padding: 24px 0 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span, .footer-bottom a { font-size: 13px; color: var(--fg-3); }
.footer-bottom .sep { margin: 0 8px; opacity: 0.5; }

/* ============================================================ FLOATING WHATSAPP */
.fab-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #062b13; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 28px -4px rgba(37,211,102,0.5); transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base); opacity: 0; transform: translateY(20px) scale(0.8); pointer-events: none; }
.fab-wa svg { width: 28px; height: 28px; }
.fab-wa.show { opacity: 1; transform: none; pointer-events: auto; }
.fab-wa:hover { transform: scale(1.08); }

/* ============================================================ LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(5,6,8,0.86); backdrop-filter: blur(16px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s var(--ease-out); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-soft); color: var(--fg-1); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.lightbox-close svg { width: 22px; height: 22px; }
.lightbox-frame { width: min(1100px, 100%); aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-soft); box-shadow: var(--glow-magenta); background: #000; }
.lightbox-frame iframe { display: block; border: 0; width: 100%; height: 100%; }

/* ============================================================ RESPONSIVE */
@media (max-width: 920px) { .svc { grid-column: span 6; } }
@media (max-width: 860px) {
  .wrap { padding-inline: 20px; }
  .section { padding: 72px 0; } .section-tight { padding: 56px 0; }
  .nav-links { display: none; } .nav-burger { display: flex; }
  .svc-feat { grid-template-columns: 1fr; } .svc-orbit { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-line { display: none; } .process-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .hero h1 br { display: none; }
}
@media (max-width: 580px) {
  .svc, .svc-feat { grid-column: span 12; }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .counters { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
