@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --g0: #00ff88; --g1: #00cc66; --g2: #009944; --g3: #004422;
  --bg: #040a06; --bg1: #080f0a; --bg2: #0d1610; --bg3: #111a14;
  --card: rgba(255,255,255,.032);
  --border: rgba(0,255,136,.12); --border2: rgba(0,255,136,.06);
  --text: #e8f5ec; --text2: rgba(232,245,236,.55);
  --text3: rgba(232,245,236,.28); --text4: rgba(232,245,236,.12);
  --gold: #f0b429; --red: #ff4040;
  --ff: 'DM Sans', sans-serif; --ffd: 'Syne', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --glow: 0 0 40px rgba(0,255,136,.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { color: var(--text2); line-height: 1.78; }
h1,h2,h3,h4,h5 { font-family: var(--ffd); line-height: 1.05; letter-spacing: -.02em; color: var(--text); }
::-webkit-scrollbar { width: 4px; } ::-webkit-scrollbar-track { background: var(--bg); } ::-webkit-scrollbar-thumb { background: var(--g3); }

/* EYEBROW */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--g0); font-family: var(--ffd); }
.eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--g0); box-shadow: 0 0 6px var(--g0); }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: clamp(28px,3.5vw,44px); margin-top: 14px; }
.section-head p { max-width: 520px; margin-top: 14px; font-size: 16px; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
section { padding: 96px 0; }
.sect-dark { background: var(--bg1); }

/* DOT GRID BG */
.dot-grid-bg { background-image: radial-gradient(circle,rgba(0,255,136,.16) 1px,transparent 1px); background-size: 28px 28px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ffd); font-size: 13.5px; font-weight: 600; letter-spacing: .03em; padding: 13px 26px; border: none; cursor: pointer; transition: all .2s var(--ease); position: relative; overflow: hidden; white-space: nowrap; }
.btn-primary { background: var(--g0); color: #020a04; }
.btn-primary:hover { background: #1aff96; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,255,136,.3); }
.btn-outline { background: transparent; color: var(--g0); border: 1px solid rgba(0,255,136,.4); }
.btn-outline:hover { background: rgba(0,255,136,.07); border-color: var(--g0); box-shadow: 0 0 20px rgba(0,255,136,.1); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(0,255,136,.06); border-color: var(--g0); color: var(--text); }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-xl { padding: 18px 44px; font-size: 16px; }

/* TOPBAR */
.topbar { background: var(--bg); border-bottom: 1px solid var(--border2); height: 38px; display: flex; align-items: center; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 48px; width: 100%; }
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-left i { color: var(--g0); font-size: 10px; }
.topbar-left span,.topbar-left a { font-size: 12px; color: var(--text3); }
.topbar-left a:hover { color: var(--g0); }
.topbar-right { display: flex; gap: 20px; }
.topbar-right a { font-size: 12px; color: var(--text3); transition: color .2s; }
.topbar-right a:hover { color: var(--text); }

/* NAV */
.nav { height: 70px; background: rgba(4,10,6,.92); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border2); position: sticky; top: 0; z-index: 200; display: flex; align-items: center; transition: border-color .3s; }
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.nav-logo img { height: 44px; object-fit: contain; }
.nav-menu { display: flex; gap: 2px; list-style: none; }
.nav-menu a { display: block; padding: 9px 15px; font-size: 13.5px; font-weight: 500; color: var(--text2); font-family: var(--ffd); transition: color .2s; position: relative; }
.nav-menu a:hover { color: var(--text); }
.nav-menu a.active { color: var(--g0); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: -1px; left: 15px; right: 15px; height: 1px; background: var(--g0); box-shadow: 0 0 8px var(--g0); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text2); width: 38px; height: 38px; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; }
.mobile-nav { display: none; position: fixed; top: 70px; inset-inline: 0; background: rgba(4,10,6,.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); z-index: 199; padding: 20px 24px; }
.mobile-nav ul { list-style: none; }
.mobile-nav li a { display: block; padding: 13px 0; font-size: 15px; font-weight: 500; color: var(--text2); border-bottom: 1px solid var(--border2); font-family: var(--ffd); }

/* HERO */
.hero { background: var(--bg); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0 60px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(0,255,136,.15) 1px,transparent 1px); background-size: 28px 28px; opacity: .5; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.orb1 { width: 700px; height: 700px; top: -200px; right: -100px; background: var(--g2); opacity: .1; }
.orb2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: var(--g3); opacity: .15; }
.scan-line { position: absolute; height: 1px; background: linear-gradient(90deg,transparent,var(--g0),transparent); opacity: .12; width: 100%; animation: scan 9s ease-in-out infinite; }
@keyframes scan { 0%{top:0%;opacity:0} 5%{opacity:.12} 95%{opacity:.05} 100%{top:100%;opacity:0} }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; min-height: calc(100vh - 140px); position: relative; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,255,136,.07); border: 1px solid rgba(0,255,136,.2); padding: 6px 14px; margin-bottom: 28px; }
.hero-tag i { color: var(--g0); font-size: 9px; }
.hero-tag span { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--g0); font-family: var(--ffd); }
.hero h1 { font-size: clamp(40px,5.5vw,70px); line-height: .95; font-weight: 800; letter-spacing: -.04em; }
.hero h1 em { font-style: normal; color: var(--g0); text-shadow: 0 0 40px rgba(0,255,136,.4); }
.hero-desc { font-size: 17px; line-height: 1.72; margin: 24px 0 38px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; padding-top: 36px; border-top: 1px solid var(--border2); }
.hstat-num { font-family: var(--ffd); font-size: 28px; font-weight: 800; color: var(--text); line-height: 1; }
.hstat-num em { font-style: normal; color: var(--g0); }
.hstat-lbl { font-size: 11px; color: var(--text3); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }

/* HERO DASHBOARD */
.hero-visual { position: relative; }
.dashboard { background: var(--bg2); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--glow), 0 40px 80px rgba(0,0,0,.5); }
.dash-titlebar { background: var(--bg3); border-bottom: 1px solid var(--border2); padding: 11px 14px; display: flex; align-items: center; gap: 8px; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 8px; height: 8px; border-radius: 50%; }
.dash-dots span:nth-child(1){background:#ff5f57} .dash-dots span:nth-child(2){background:#febc2e} .dash-dots span:nth-child(3){background:#28c840}
.dash-ttl { font-size: 10.5px; font-weight: 600; color: var(--text3); letter-spacing: .1em; text-transform: uppercase; margin-left: 4px; font-family: var(--ffd); }
.dash-live { margin-left: auto; display: flex; align-items: center; gap: 5px; }
.dash-live i { color: var(--g0); font-size: 7px; animation: blink 1.5s ease-in-out infinite; }
.dash-live span { font-size: 11px; color: var(--g0); font-weight: 600; letter-spacing: .06em; font-family: var(--ffd); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.dash-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dash-row3 { grid-template-columns: 1fr 1fr 1fr; }
.dcard { background: var(--bg3); border: 1px solid var(--border2); padding: 12px 14px; position: relative; overflow: hidden; }
.dcard::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: linear-gradient(90deg,var(--g0),transparent); }
.dcard-lbl { font-size: 9px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: .1em; }
.dcard-val { font-family: var(--ffd); font-size: 22px; font-weight: 800; color: var(--text); margin: 3px 0 1px; line-height: 1; }
.dcard-val.green { color: var(--g0); text-shadow: 0 0 16px rgba(0,255,136,.4); }
.dcard-val.gold { color: var(--gold); }
.dcard-sub { font-size: 9.5px; color: var(--text3); }
.dcard-icon { position: absolute; right: 10px; bottom: 8px; font-size: 18px; opacity: .07; }
.dash-map { background: var(--bg3); border: 1px solid var(--border2); height: 130px; position: relative; overflow: hidden; }
.map-dots-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,255,136,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,255,136,.05) 1px,transparent 1px); background-size: 18px 18px; }
.map-ping { position: absolute; top: 50%; left: 55%; transform: translate(-50%,-50%); }
.ping-core { width: 8px; height: 8px; background: var(--g0); border-radius: 50%; position: relative; z-index: 2; box-shadow: 0 0 10px var(--g0); }
.ping-r { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1.5px solid rgba(0,255,136,.5); border-radius: 50%; animation: pr 2s ease-out infinite; }
.ping-r.r1 { width: 26px; height: 26px; } .ping-r.r2 { width: 48px; height: 48px; animation-delay: .5s; opacity: .4; }
@keyframes pr { 0%{transform:translate(-50%,-50%) scale(.4);opacity:.8} 100%{transform:translate(-50%,-50%) scale(2);opacity:0} }
.map-sm { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--g1); }
.dash-bars { display: flex; flex-direction: column; gap: 7px; }
.dbar-item-top { display: flex; justify-content: space-between; margin-bottom: 3px; font-size: 9.5px; color: var(--text3); }
.dbar-track { height: 3px; background: var(--border2); }
.dbar-fill { height: 100%; background: linear-gradient(90deg,var(--g2),var(--g0)); }
.dash-alerts { display: flex; flex-direction: column; }
.dalert { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border2); }
.dalert:last-child { border-bottom: none; }
.dalert-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dalert-txt { font-size: 10px; color: var(--text2); flex: 1; }
.dalert-time { font-size: 9.5px; color: var(--text3); }
.hero-float { position: absolute; right: -18px; top: 28%; background: var(--bg2); border: 1px solid var(--border); padding: 14px 18px; text-align: center; box-shadow: var(--glow); }
.hf-num { font-family: var(--ffd); font-size: 26px; font-weight: 800; color: var(--g0); line-height: 1; text-shadow: 0 0 20px rgba(0,255,136,.4); }
.hf-lbl { font-size: 9px; color: var(--text3); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }

/* PRODUCTS STRIP */
.prod-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--border2); }
.prod-tile { background: var(--bg1); padding: 30px 22px 26px; display: block; transition: background .2s; position: relative; overflow: hidden; border-top: 2px solid transparent; }
.prod-tile::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(0,255,136,.04),transparent); opacity: 0; transition: opacity .2s; }
.prod-tile:hover { background: var(--bg2); border-top-color: var(--g0); }
.prod-tile:hover::before { opacity: 1; }
.pt-icon { width: 42px; height: 42px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--g0); margin-bottom: 18px; transition: all .2s; }
.prod-tile:hover .pt-icon { border-color: var(--g0); box-shadow: 0 0 16px rgba(0,255,136,.15); }
.prod-tile h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 7px; font-family: var(--ffd); }
.prod-tile p { font-size: 12px; color: var(--text3); line-height: 1.55; margin: 0; }
.pt-link { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--g0); margin-top: 14px; opacity: 0; transform: translateY(4px); transition: all .2s; font-family: var(--ffd); }
.prod-tile:hover .pt-link { opacity: 1; transform: none; }

/* FEATURE BLOCKS */
.feat-block { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--border2); }
.feat-block:last-child { border-bottom: none; }
.feat-block.rev .feat-vis { order: -1; }
.feat-title { font-size: clamp(22px,2.8vw,34px); margin: 14px 0 16px; }
.feat-desc { font-size: 15px; margin-bottom: 28px; }
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14px; color: var(--text2); }
.feat-list li i { color: var(--g0); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.feat-vis { background: var(--bg2); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.feat-vis-icon { font-size: 90px; color: var(--g2); opacity: .1; position: absolute; }
.feat-vis::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%,rgba(0,255,136,.06),transparent 70%); }
.feat-vis-content { position: relative; z-index: 2; text-align: center; }
.fvc-num { font-family: var(--ffd); font-size: 72px; font-weight: 800; color: var(--g0); text-shadow: 0 0 40px rgba(0,255,136,.35); line-height: 1; }
.fvc-lbl { font-size: 12px; color: var(--text3); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; }

/* STAT BAND */
.stat-band { background: var(--g0); position: relative; overflow: hidden; }
.stat-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(0,0,0,.12),transparent); }
.stat-band-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1200px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }
.stat-col { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(0,0,0,.1); }
.stat-col:last-child { border-right: none; }
.stat-col i { font-size: 24px; color: rgba(0,0,0,.4); margin-bottom: 10px; display: block; }
.stat-num { font-family: var(--ffd); font-size: clamp(32px,4vw,52px); font-weight: 800; color: #020a04; line-height: 1; display: block; }
.stat-lbl { font-size: 11px; font-weight: 600; color: rgba(0,0,0,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; display: block; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border2); }
.why-card { background: var(--bg1); padding: 36px 30px; position: relative; transition: background .2s; }
.why-card:hover { background: var(--bg2); }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--g0),transparent); opacity: 0; transition: opacity .2s; }
.why-card:hover::after { opacity: 1; }
.why-icon { width: 48px; height: 48px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--g0); margin-bottom: 22px; }
.why-card h4 { font-size: 16px; margin-bottom: 10px; font-family: var(--ffd); }
.why-card p { font-size: 14px; color: var(--text3); line-height: 1.7; margin: 0; }

/* TESTIMONIAL */
.t-wrap { background: var(--bg2); border: 1px solid var(--border); padding: 52px; position: relative; overflow: hidden; }
.t-wrap::before { content: '"'; position: absolute; top: -20px; left: 32px; font-family: var(--ffd); font-size: 200px; font-weight: 800; color: var(--g0); opacity: .04; line-height: 1; pointer-events: none; }
.t-stars { color: var(--g0); font-size: 12px; margin-bottom: 18px; letter-spacing: 3px; }
.t-quote { font-size: clamp(15px,1.8vw,20px); font-weight: 300; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 28px; position: relative; z-index: 2; }
.t-auth { display: flex; align-items: center; gap: 14px; }
.t-av { width: 42px; height: 42px; background: var(--g0); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #020a04; font-family: var(--ffd); }
.t-name { font-size: 14px; font-weight: 600; display: block; }
.t-role { font-size: 12px; color: var(--text3); }

/* POSTS GRID */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border2); }
.post-card { background: var(--bg1); display: block; transition: background .2s; overflow: hidden; }
.post-card:hover { background: var(--bg2); }
.post-thumb { background: var(--bg2); height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border2); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-thumb-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 52px; color: rgba(255,255,255,.1); background: var(--bg2); }
.post-thumb-fallback i { font-size: 40px; color: rgba(255,255,255,.12); }
.post-body { padding: 24px; }
.post-cat { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--g0); margin-bottom: 10px; font-family: var(--ffd); }
.post-body h4 { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 8px; font-family: var(--ffd); }
.post-body p { font-size: 13px; color: var(--text3); line-height: 1.65; margin: 0; }
.post-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px; border-top: 1px solid var(--border2); }
.post-date { font-size: 11px; color: var(--text4); }
.post-read { font-size: 11.5px; font-weight: 600; color: var(--g0); display: flex; align-items: center; gap: 5px; font-family: var(--ffd); }

/* BLOG PAGE */
.blog-filter-bar { margin-bottom: 48px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.blog-search { flex: 1; min-width: 200px; position: relative; }
.blog-search input { width: 100%; background: var(--bg2); border: 1px solid var(--border); padding: 11px 40px 11px 16px; font-family: var(--ff); font-size: 14px; color: var(--text); outline: none; transition: border-color .2s; }
.blog-search input:focus { border-color: var(--g0); }
.blog-search input::placeholder { color: var(--text3); }
.blog-search i { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 12px; }
.cat-btn { padding: 10px 18px; font-size: 12px; font-weight: 600; letter-spacing: .04em; background: var(--bg2); border: 1px solid var(--border); color: var(--text3); cursor: pointer; font-family: var(--ffd); transition: all .2s; text-transform: capitalize; }
.cat-btn:hover,.cat-btn.active { border-color: var(--g0); color: var(--g0); background: rgba(0,255,136,.06); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border2); }
.post-featured { background: var(--bg1); grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; transition: background .2s; }
.post-featured:hover { background: var(--bg2); }
.pf-thumb { background: var(--bg2); display: flex; align-items: center; justify-content: center; min-height: 280px; position: relative; overflow: hidden; border-right: 1px solid var(--border2); }
.pf-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.post-featured:hover .pf-thumb img { transform: scale(1.04); }
.pf-thumb .post-thumb-fallback { font-size: 80px; }
.pf-thumb::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(0,255,136,.06),transparent 70%); z-index: 1; pointer-events: none; }
.pf-badge { position: relative; z-index: 2; }
.pf-badge { position: absolute; top: 14px; left: 14px; background: var(--g0); color: #020a04; font-size: 10px; font-weight: 700; padding: 4px 10px; letter-spacing: .08em; font-family: var(--ffd); }
.pf-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.pf-body h3 { font-size: clamp(15px,1.8vw,20px); line-height: 1.3; margin: 10px 0 12px; }
.pf-body p { font-size: 13.5px; color: var(--text3); line-height: 1.65; margin-bottom: 20px; }
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 56px; }
.page-btn { padding: 10px 16px; background: var(--bg2); border: 1px solid var(--border); color: var(--text3); font-family: var(--ffd); font-size: 13px; cursor: pointer; transition: all .2s; }
.page-btn:hover { border-color: var(--g0); color: var(--g0); }
.page-btn.active { background: var(--g0); border-color: var(--g0); color: #020a04; font-weight: 700; }

/* POST PAGE */
.post-layout { display: grid; grid-template-columns: 1fr 290px; gap: 56px; align-items: start; }
.post-hero-img { width: 100%; height: 420px; position: relative; overflow: hidden; margin-bottom: 40px; background: var(--bg2); border: 1px solid var(--border); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-hero-img--empty { display: flex; align-items: center; justify-content: center; }
.post-hero-img--empty i { font-size: 64px; color: rgba(255,255,255,.1); }
.post-content { font-size: 16px; line-height: 1.82; color: var(--text2); }
.post-content h2 { color: var(--text); font-size: clamp(18px,2.2vw,26px); margin: 36px 0 14px; padding-top: 12px; border-top: 1px solid var(--border2); font-family: var(--ffd); }
.post-content p { margin-bottom: 20px; } .post-content ul,.post-content ol { padding-left: 22px; margin-bottom: 20px; } .post-content li { margin-bottom: 8px; }
.post-sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 14px; }
.sidebar-widget { background: var(--bg2); border: 1px solid var(--border); padding: 22px; }
.sidebar-widget h4 { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text3); margin-bottom: 14px; font-family: var(--ffd); }
.sidebar-cta-box { background: var(--g0); padding: 22px; }
.sidebar-cta-box h4 { color: #020a04; font-size: 15px; margin-bottom: 8px; font-family: var(--ffd); }
.sidebar-cta-box p { color: rgba(0,0,0,.6); font-size: 13px; margin-bottom: 14px; }
.share-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: var(--bg3); border: 1px solid var(--border2); font-size: 13px; color: var(--text2); margin-bottom: 6px; transition: all .2s; }
.share-link:hover { border-color: var(--g0); color: var(--g0); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text3); transition: color .2s; }
.back-link:hover { color: var(--g0); }
.post-hero-meta { display: flex; gap: 20px; margin-top: 14px; font-size: 13px; color: var(--text3); }
.post-hero-meta i { color: var(--g0); margin-right: 4px; }

/* PAGE HERO */
.page-hero { background: var(--bg); padding: 80px 0 68px; position: relative; overflow: hidden; }
.ph-dot-grid { position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(0,255,136,.14) 1px,transparent 1px); background-size: 28px 28px; opacity: .45; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 80% at 70% 50%,rgba(0,255,136,.05),transparent); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(32px,5vw,60px); margin-top: 14px; }
.page-hero p { font-size: 17px; margin-top: 14px; max-width: 500px; }

/* SOLUCOES */
.problems-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border2); margin-top: 40px; }
.problem-card { background: var(--bg2); padding: 28px; display: flex; gap: 18px; }
.prob-icon { width: 40px; height: 40px; border: 1px solid rgba(255,64,64,.25); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #ff8080; flex-shrink: 0; }
.problem-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; font-family: var(--ffd); }
.problem-card p { font-size: 13px; color: var(--text3); margin: 0; line-height: 1.6; }
.prod-section { padding: 80px 0; border-top: 1px solid var(--border2); }
.prod-vis-box { background: var(--bg2); border: 1px solid var(--border); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.pvb-icon { font-size: 90px; color: var(--g2); opacity: .1; }
.prod-vis-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%,rgba(0,255,136,.06),transparent 70%); }
.pvb-badge { position: absolute; top: 18px; left: 18px; background: rgba(0,255,136,.1); border: 1px solid rgba(0,255,136,.25); padding: 5px 12px; font-size: 10.5px; font-weight: 700; color: var(--g0); letter-spacing: .1em; font-family: var(--ffd); text-transform: uppercase; }
.pvb-metrics { position: absolute; bottom: 16px; right: 16px; left: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.pvb-metric { background: rgba(4,10,6,.85); border: 1px solid var(--border); padding: 9px 12px; }
.pvb-val { font-family: var(--ffd); font-size: 18px; font-weight: 800; color: var(--g0); display: block; }
.pvb-lbl { font-size: 9px; color: var(--text3); text-transform: uppercase; letter-spacing: .08em; }
.feat-list2 { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feat-list2 li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text2); }
.feat-list2 li i { color: var(--g0); font-size: 11px; flex-shrink: 0; margin-top: 3px; }

/* CENTRAL 24H */
.central-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border2); margin-top: 32px; }
.cstat { background: var(--bg2); padding: 28px 24px; text-align: center; position: relative; }
.cstat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; background: var(--g0); opacity: .4; }
.cstat i { font-size: 24px; color: var(--g0); display: block; margin-bottom: 10px; }
.cstat-val { font-family: var(--ffd); font-size: 36px; font-weight: 800; color: var(--g0); text-shadow: 0 0 20px rgba(0,255,136,.3); display: block; }
.cstat small { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: .1em; display: block; margin-top: 4px; }

/* SOBRE */
.value-card { background: var(--bg2); border: 1px solid var(--border); padding: 34px; position: relative; }
.value-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--g0); }
.value-icon { font-size: 28px; color: var(--g0); margin-bottom: 18px; display: block; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; font-family: var(--ffd); }
.value-card p { font-size: 14px; color: var(--text3); line-height: 1.7; margin: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border2); }
.mission-cards { display: flex; flex-direction: column; gap: 10px; }
.mc { background: var(--bg2); border: 1px solid var(--border); border-left: 2px solid var(--g0); padding: 20px 22px; }
.mc h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; font-family: var(--ffd); }
.mc p { font-size: 13px; color: var(--text3); margin: 0; }

/* TIMELINE */
.tl-wrap { position: relative; padding-left: 32px; }
.tl-wrap::before { content: ''; position: absolute; left: 5px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item { position: relative; padding: 0 0 32px 26px; }
.tl-item::before { content: ''; position: absolute; left: -3px; top: 5px; width: 9px; height: 9px; border-radius: 50%; background: var(--bg); border: 2px solid var(--g0); box-shadow: 0 0 8px rgba(0,255,136,.4); }
.tl-year { font-size: 10.5px; font-weight: 700; color: var(--g0); letter-spacing: .1em; margin-bottom: 4px; font-family: var(--ffd); }
.tl-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; font-family: var(--ffd); }
.tl-item p { font-size: 13.5px; color: var(--text3); margin: 0; line-height: 1.65; }

/* CONTATO */
.contact-tabs { display: flex; border-bottom: 1px solid var(--border2); margin-bottom: 52px; overflow-x: auto; }
.ctab { padding: 14px 26px; background: none; border: none; border-bottom: 2px solid transparent; font-family: var(--ffd); font-size: 13.5px; font-weight: 600; cursor: pointer; color: var(--text3); margin-bottom: -1px; transition: all .2s; white-space: nowrap; }
.ctab:hover { color: var(--text); }
.ctab.active { border-bottom-color: var(--g0); color: var(--g0); }
.ci-list { display: flex; flex-direction: column; gap: 18px; }
.ci-item { display: flex; gap: 14px; align-items: center; }
.ci-icon { width: 42px; height: 42px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--g0); flex-shrink: 0; }
.ci-item small { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 2px; font-family: var(--ffd); }
.ci-item strong { font-size: 15px; font-weight: 500; }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 7px; font-family: var(--ffd); }
.form-input { width: 100%; padding: 12px 15px; background: var(--bg2); border: 1px solid var(--border2); font-family: var(--ff); font-size: 14px; color: var(--text); transition: border-color .2s; outline: none; }
.form-input:focus { border-color: var(--g0); background: var(--bg3); }
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 120px; line-height: 1.6; }
select.form-input { cursor: pointer; }
select.form-input option { background: var(--bg2); }

/* CLIENTS */
.clients-row { display: flex; flex-wrap: wrap; gap: 1px; background: var(--border2); }
.client-chip { padding: 16px 28px; background: var(--bg1); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text3); transition: all .2s; font-family: var(--ffd); }
.client-chip:hover { color: var(--text2); background: var(--bg2); }

/* CTA BAND */
.cta-band { position: relative; overflow: hidden; padding: 96px 0; }
.ctab-bg { position: absolute; inset: 0; background: var(--bg1); }
.ctab-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%,rgba(0,255,136,.05),transparent); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-size: clamp(26px,4vw,48px); margin: 16px 0; }
.cta-inner p { font-size: 17px; max-width: 460px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--bg1); border-top: 1px solid var(--border2); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border2); }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: .6; }
.footer-tagline { font-size: 14px; color: var(--text3); line-height: 1.7; margin: 16px 0 22px; }
.footer-social { display: flex; gap: 7px; }
.fsoc { width: 34px; height: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text3); transition: all .2s; }
.fsoc:hover { border-color: var(--g0); color: var(--g0); box-shadow: 0 0 12px rgba(0,255,136,.15); }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text3); margin-bottom: 18px; font-family: var(--ffd); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: var(--text3); transition: color .2s; }
.footer-col ul li a:hover { color: var(--g0); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 12px; color: var(--text4); }
.footer-bottom a { color: var(--text4); transition: color .2s; }
.footer-bottom a:hover { color: var(--text3); }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; font-size: 10px; font-weight: 600; letter-spacing: .05em; font-family: var(--ffd); }
.badge-green { background: rgba(0,255,136,.1); color: var(--g0); border: 1px solid rgba(0,255,136,.2); }
.badge-gray  { background: var(--bg3); color: var(--text3); border: 1px solid var(--border2); }

/* EMPTY */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text3); }
.empty-state i { font-size: 48px; color: var(--text4); display: block; margin-bottom: 16px; }
.empty-state h3 { color: var(--text2); margin-bottom: 8px; font-family: var(--ffd); }
.empty-state a { color: var(--g0); font-weight: 600; }

/* TOAST */
.toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--bg2); border: 1px solid var(--border); border-left: 3px solid var(--g0); padding: 13px 20px; font-size: 14px; font-weight: 500; color: var(--text); transform: translateY(16px); opacity: 0; transition: all .3s var(--ease); pointer-events: none; font-family: var(--ffd); box-shadow: var(--glow); }
.toast.show { transform: none; opacity: 1; }
.toast.error { border-left-color: var(--red); }

/* FADE */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1100px) { .container { padding: 0 28px; } .prod-grid { grid-template-columns: repeat(3,1fr); } .stat-band-inner { padding: 0 28px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .topbar { display: none; }
  .nav-menu, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(36px,10vw,52px); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .grid-2 { grid-template-columns: 1fr !important; gap: 40px !important; }
  .grid-3 { grid-template-columns: 1fr !important; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .stat-band-inner { grid-template-columns: repeat(2,1fr); }
  .stat-col:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .posts-grid, .blog-grid { grid-template-columns: 1fr; }
  .post-featured { grid-column: 1; grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .feat-block { grid-template-columns: 1fr !important; }
  .feat-block.rev .feat-vis { order: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .central-stats { grid-template-columns: 1fr 1fr; }
}
