/* =============================================================================
   MOHAZ WEBSITE — STYLESHEET
   Edit fail ini untuk mengubah gaya visual laman web.
   Versi: 1.0.0
   ============================================================================= */

/* ─── ROOT VARIABLES & RESET ─────────────────────────────────────────────── */
:root {
  --black:      #000000;
  --white:      #ffffff;
  --red:        #e00000;
  --red-dim:    #6b0000;
  --red-glow:   rgba(220,0,0,.35);
  --gray-900:   #0a0a0a;
  --gray-800:   #111111;
  --gray-700:   #1a1a1a;
  --gray-600:   #2a2a2a;
  --gray-500:   #555555;
  --gray-400:   #bbbbbb;
  --gray-300:   #cccccc;
  --gray-200:   #dddddd;
  --gray-100:   #eeeeee;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; width: 100%; }
body {
  background: var(--black); color: var(--gray-200);
  font-family: var(--font-body); font-weight: 400;
  overflow-x: hidden; width: 100%; max-width: 100%;
  cursor: none; position: relative;
}
input, textarea, select {
  -webkit-user-select: auto; -moz-user-select: auto;
  -ms-user-select: auto; user-select: auto;
}
main, section, aside { overflow-x: hidden; width: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; -ms-overflow-style: none; }

/* CRT scanline overlay */
body::after {
  content: ''; position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 2px,
    rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
  pointer-events: none; z-index: 9000;
}

/* user-select dibataskan kepada elemen dekoratif sahaja */
.nav-logo, .footer-logo, .gapless-bg-part, .hero-badge,
.hero-headline, .red-bleed-num, .red-bleed-label,
.result-big-wow, .proc-num, .proc-title, .svc-card-num,
.svc-card-title, .section-h2, .marquee-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────────────────────── */
#cur {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%; pointer-events: none;
  z-index: 999999; transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s, opacity .2s;
  mix-blend-mode: difference; opacity: 0;
}
#cur-ring {
  position: fixed; top: 0; left: 0; width: 32px; height: 32px;
  border: 1px solid rgba(220,0,0,.5); border-radius: 50%;
  pointer-events: none; z-index: 999998;
  transform: translate(-50%,-50%); transition: border-color .3s;
}
.cur-active #cur  { width: 16px; height: 16px; opacity: .6; }
.cur-active #cur-ring { border-color: var(--red); transform: translate(-50%,-50%) scale(1.5); }
@media (max-width: 768px) { body { cursor: auto; } #cur, #cur-ring { display: none; } }

/* ─── PRELOADER ──────────────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; background: var(--black); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader-bar {
  width: 0; height: 2px; background: var(--red);
  position: absolute; bottom: 0; left: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 20px var(--red-glow);
}
#preloader-logo { max-width: 180px; width: auto; height: auto; opacity: 0; animation: fadeIn .4s .2s forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 20px 0;
  transition: background .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(0,0,0,.92); backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,.15); padding: 14px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
@keyframes cyber-glitch {
  0%, 93%, 100% { transform: translate(0,0) skew(0deg); filter: brightness(1); }
  94% { transform: translate(-2px,1px) skew(-8deg); filter: drop-shadow(-3px 0 rgba(220,0,0,0.8)) drop-shadow(3px 0 rgba(0,255,255,0.8)); }
  96% { transform: translate(2px,-1px) skew(8deg); filter: drop-shadow(3px 0 rgba(220,0,0,0.8)) drop-shadow(-3px 0 rgba(0,255,255,0.8)); }
  98% { transform: translate(-1px,2px) skew(-4deg); filter: drop-shadow(-2px 0 rgba(220,0,0,0.8)) drop-shadow(2px 0 rgba(0,255,255,0.8)); }
}
.nav-logo img {
  max-width: 150px; width: auto; height: auto; max-height: 48px;
  object-fit: contain; object-position: left;
  animation: cyber-glitch 4.5s infinite; will-change: transform, filter;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gray-400);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; padding: 12px 28px;
  border: 1px solid var(--red); color: var(--white);
  transition: background .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--red); box-shadow: 0 0 30px var(--red-glow); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--white); cursor: pointer; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06);
  color: var(--white); display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s, border-color .25s, background .25s, box-shadow .25s; cursor: pointer;
}
.theme-toggle:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); box-shadow: 0 0 24px rgba(255,255,255,.1); }
.theme-toggle .fa-sun { display: none; }

/* MOBILE NAV */
#mobile-nav {
  position: fixed; inset: 0; background: rgba(10,10,10,0.98);
  backdrop-filter: blur(15px); z-index: 400;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden;
  clip-path: circle(0px at calc(100% - 40px) 40px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease, visibility 0.5s;
}
#mobile-nav.open { opacity: 1; visibility: visible; clip-path: circle(150% at calc(100% - 40px) 40px); }
#mobile-nav a.mob-link {
  font-family: var(--font-display); font-size: 52px; color: var(--white);
  letter-spacing: .05em; opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s ease, text-shadow 0.2s ease;
}
#mobile-nav.open a.mob-link { opacity: 1; transform: translateY(0); }
#mobile-nav.open a.mob-link:nth-of-type(1) { transition-delay: 0.10s; }
#mobile-nav.open a.mob-link:nth-of-type(2) { transition-delay: 0.15s; }
#mobile-nav.open a.mob-link:nth-of-type(3) { transition-delay: 0.20s; }
#mobile-nav.open a.mob-link:nth-of-type(4) { transition-delay: 0.25s; }
#mobile-nav.open a.mob-link:nth-of-type(5) { transition-delay: 0.30s; }
#mobile-nav a.mob-link:hover { color: var(--red); text-shadow: 0 0 15px var(--red-glow), 0 0 30px rgba(220,0,0,0.6); }
#mobile-nav a.mob-link.active { color: var(--red); text-shadow: 0 0 20px var(--red-glow); animation: cyber-glitch 4.5s infinite; }
@media (max-width: 768px) {
  .nav-links, .nav-cta, #theme-toggle { display: none; }
  .nav-mobile-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; z-index: 501; }
}
.hamburger-lines { display: block; width: 24px; height: 2px; background: var(--white); position: relative; transition: background 0.3s ease; }
.hamburger-lines::before, .hamburger-lines::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 100%; background: var(--white);
  border-radius: 2px; transition: transform 0.4s cubic-bezier(0.68,-0.55,0.265,1.55), top 0.4s ease, background 0.3s ease;
}
.hamburger-lines::before { top: -8px; }
.hamburger-lines::after  { top:  8px; }
.nav-mobile-btn.active .hamburger-lines { background: transparent; }
.nav-mobile-btn.active .hamburger-lines::before { top: 0; transform: rotate(45deg);  background: var(--red); }
.nav-mobile-btn.active .hamburger-lines::after  { top: 0; transform: rotate(-45deg); background: var(--red); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero-wrap {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: 80px;
}
#hero {
  padding: 0 20px; max-width: 1000px; width: 100%; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  z-index: 2; position: relative;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 0%, transparent 70%);
}
.gapless-bg-wrap {
  position: absolute; top: 45%; left: 0; width: 100%;
  transform: translateY(-50%) rotate(-3deg);
  z-index: 1; pointer-events: none; overflow: hidden; display: flex;
}
.gapless-bg-inner { display: flex; width: max-content; }
.gapless-bg-part {
  display: flex; white-space: nowrap;
  font-family: var(--font-display); font-size: clamp(80px, 15vw, 180px);
  line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.12);
  text-transform: uppercase;
}
.gapless-bg-part span { padding: 0 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-400); position: relative; z-index: 2; margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red-glow); animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }
.hero-headline {
  font-family: var(--font-display); font-size: clamp(52px, 9vw, 110px);
  line-height: .93; letter-spacing: .01em; color: var(--white);
  flex-shrink: 0; position: relative; z-index: 2; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
}
.hero-headline .line { display: block; }
.hero-headline .red  { color: var(--red); }
.hero-sub {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  margin-top: 32px; position: relative; z-index: 2;
}
.hero-desc { font-size: 18px; line-height: 1.7; color: var(--gray-100); max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.hero-cta-main {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: var(--white);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  padding: 18px 36px; transition: box-shadow .3s, transform .3s;
}
.hero-cta-main:hover { box-shadow: 0 0 40px var(--red-glow), 0 0 80px rgba(220,0,0,.15); transform: translateY(-2px); }
.hero-cta-main .arrow { transition: transform .3s; }
.hero-cta-main:hover .arrow { transform: translateX(5px); }
.hero-cta-secondary {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray-400); transition: color .2s; display: flex; align-items: center; gap: 8px;
}
.hero-cta-secondary:hover { color: var(--white); }
.hero-scroll {
  margin-top: 60px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-400); z-index: 2; opacity: 0; transition: opacity 1s 1.5s;
}
.hero-scroll.vis { opacity: 1; }
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--red));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 768px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-cta-main { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
}

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15);
  padding: 16px 0; overflow: hidden; background: var(--gray-900);
}
.marquee-track { display: flex; width: max-content; animation: marquee 25s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 28px; padding: 0 28px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray-400); white-space: nowrap;
}
.marquee-dot { color: var(--red); font-size: 16px; }

/* ─── STATS (RED BLEED) ──────────────────────────────────────────────────── */
.red-bleed { background: var(--red); padding: 72px 40px; overflow: hidden; position: relative; }
.red-bleed::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.07) 0px, rgba(0,0,0,.07) 1px, transparent 1px, transparent 12px);
}
.red-bleed-inner {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-around; gap: 32px; flex-wrap: wrap; position: relative; z-index: 2;
}
.red-bleed-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.red-bleed-num  { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); color: var(--white); line-height: 1; letter-spacing: .02em; }
.red-bleed-label{ font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.red-bleed-divider { width: 1px; height: 72px; background: rgba(255,255,255,.18); }

/* ─── PAIN POINTS ACCORDION ──────────────────────────────────────────────── */
.pp-wrap { background: var(--black); border-top: 1px solid rgba(255,255,255,.15); }
.pp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pp-list { display: flex; flex-direction: column; gap: 16px; }
.pp-item {
  border: 1px solid rgba(255,255,255,.15); background: var(--gray-900);
  padding: 24px; cursor: pointer; transition: all .3s;
}
.pp-item:hover  { border-color: rgba(220,0,0,.4); background: rgba(220,0,0,.02); }
.pp-item.active { border-color: var(--red); background: rgba(220,0,0,.04); box-shadow: 0 4px 20px rgba(220,0,0,.08); }
.pp-header { display: flex; align-items: center; gap: 20px; }
.pp-check {
  width: 28px; height: 28px; flex-shrink: 0; border: 1px solid var(--gray-600);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.pp-item.active .pp-check  { background: var(--red); border-color: var(--red); }
.pp-check i { color: var(--black); font-size: 12px; opacity: 0; transform: scale(.5); transition: all .3s; }
.pp-item.active .pp-check i{ opacity: 1; transform: scale(1); }
.pp-title { font-size: 18px; color: var(--white); font-weight: 500; }
.pp-content { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.pp-item.active .pp-content { max-height: 500px; } /* Increased — fix for clipped content */
.pp-desc { padding-top: 16px; padding-left: 48px; font-size: 17px; color: var(--gray-400); line-height: 1.6; }

/* ─── ABOUT SECTION ──────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; overflow: hidden; }
.about-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  filter: grayscale(100%) contrast(1.1); opacity: .5;
  mix-blend-mode: luminosity; transform: scale(1.15); will-change: transform;
}
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(220,0,0,.1) 0%, transparent 60%); pointer-events: none;
}
.about-img-frame { position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 1px solid rgba(220,0,0,.2); pointer-events: none; z-index: 2; }
.about-img-frame::before { content: ''; position: absolute; top: -1px; left: -1px; width: 40px; height: 40px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.about-img-frame::after  { content: ''; position: absolute; bottom: -1px; right: -1px; width: 40px; height: 40px; border-bottom: 2px solid var(--red); border-right: 2px solid var(--red); }
.about-checklist { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.about-check { display: flex; align-items: flex-start; gap: 14px; font-size: 17px; color: var(--gray-200); }
.about-check-icon { width: 22px; height: 22px; border: 1px solid var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.about-check-icon i { color: var(--red); font-size: 10px; }

/* ─── SERVICES ───────────────────────────────────────────────────────────── */
.services-wrap { background: var(--black); border-top: 1px solid rgba(255,255,255,.15); }
.services-intro { max-width: 1200px; margin: 0 auto; padding: 100px 40px 56px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.services-intro-body { font-size: 18px; line-height: 1.7; color: var(--gray-300); max-width: 420px; }
.svc-grid-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px 100px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.tilt-card { transform-style: preserve-3d; transform: perspective(1200px); will-change: transform; }
.spotlight-card { position: relative; }
.spotlight-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--x,50%) var(--y,50%), rgba(220,0,0,0.08), transparent 40%);
  z-index: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s;
}
.spotlight-card:hover::before { opacity: 1; }
.svc-card {
  background: var(--black); padding: 36px 32px 32px; position: relative;
  overflow: hidden; cursor: default; transition: background .35s;
  display: flex; flex-direction: column; min-height: 280px;
}
.hover-reveal-img {
  position: absolute; top: 0; left: 0; width: 200px; height: 130px;
  background-size: cover; background-position: center; border-radius: 8px;
  opacity: 0; pointer-events: none; z-index: 0; transform: scale(0.8);
  will-change: transform, opacity; mix-blend-mode: luminosity; filter: contrast(1.2) brightness(0.4);
}
.svc-card > * { position: relative; z-index: 2; }
.svc-card::after {
  content: attr(data-num); position: absolute; bottom: -10px; right: -8px;
  font-family: var(--font-display); font-size: 100px; line-height: 1;
  color: rgba(255,255,255,.03); pointer-events: none; letter-spacing: -.02em;
  transition: color .4s; user-select: none;
}
.svc-card:hover::after { color: rgba(220,0,0,.07); }
.svc-card:hover { background: rgba(220,0,0,.01); }
.svc-card-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(220,0,0,.04) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform .6s cubic-bezier(.4,0,.2,1); pointer-events: none;
}
.svc-card:hover .svc-card-sweep { transform: translateX(100%); }
.svc-card-num   { font-family: var(--font-mono); font-size: 12px; color: var(--red); letter-spacing: .2em; margin-bottom: 20px; opacity: .75; }
.svc-card-icon  { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: border-color .3s, background .3s, transform .3s; }
.svc-card-icon i{ color: var(--red); font-size: 16px; }
.svc-card:hover .svc-card-icon { border-color: rgba(220,0,0,.5); background: rgba(220,0,0,.06); transform: scale(1.05); }
.svc-card-title { font-family: var(--font-display); font-size: clamp(22px,2vw,28px); color: var(--white); letter-spacing: .01em; line-height: 1.05; margin-bottom: 16px; }
.svc-card-divider { width: 32px; height: 1px; background: rgba(220,0,0,.4); margin-bottom: 16px; transition: width .4s, background .3s; }
.svc-card:hover .svc-card-divider { width: 56px; background: var(--red); }
.svc-card-list  { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.svc-card-list li { font-size: 16px; color: var(--gray-400); display: flex; align-items: center; gap: 10px; transition: color .2s; }
.svc-card:hover .svc-card-list li { color: var(--gray-200); }
.svc-card-list li::before { content: ''; width: 14px; height: 1px; background: rgba(220,0,0,.4); flex-shrink: 0; transition: background .3s, width .3s; }
.svc-card:hover .svc-card-list li::before { background: var(--red); width: 20px; }

/* ─── RESULTS ────────────────────────────────────────────────────────────── */
.results-wrap { border-top: 1px solid rgba(255,255,255,.15); }
.results-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; align-items: end; }
.results-view-all { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-400); display: flex; align-items: center; gap: 10px; transition: color .2s; align-self: flex-end; }
.results-view-all:hover { color: var(--red); }
.results-view-all::after { content: '→'; }
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.15); margin-top: 60px; }
.result-card-wow { padding: 52px 44px; position: relative; overflow: hidden; transition: background .35s; background: var(--black); }
.result-card-wow:hover { background: rgba(220,0,0,.02); }
.result-card-wow::after { content: attr(data-num); position: absolute; bottom: -24px; right: -8px; font-family: var(--font-display); font-size: 160px; line-height: 1; color: rgba(255,255,255,.025); pointer-events: none; letter-spacing: -.02em; transition: color .4s; user-select: none; }
.result-card-wow:hover::after { color: rgba(220,0,0,.06); }
.result-big-wow { font-family: var(--font-display); font-size: clamp(60px,8vw,110px); line-height: .92; color: var(--white); margin-bottom: 18px; display: block; }
.result-big-wow .accent { color: var(--red); }
.result-tag     { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-400); border: 1px solid rgba(255,255,255,.2); padding: 6px 12px; display: inline-block; margin-bottom: 28px; }
.result-title   { font-size: 20px; color: var(--gray-100); font-weight: 500; margin-bottom: 12px; }
.result-desc    { font-size: 17px; color: var(--gray-300); line-height: 1.7; }
.result-badge   { margin-top: 24px; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.result-disclaimer { font-size: 14px; color: var(--gray-400); text-align: center; margin-top: 24px; font-style: italic; }
.screenshot-wrap { margin-top: 60px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 20px 60px rgba(0,0,0,.4); background: var(--gray-900); }
.screenshot-wrap:hover img { transform: scale(1.02); }
.screenshot-wrap img { width: 100%; height: auto; transition: transform .5s cubic-bezier(0.4,0,0.2,1); }

/* ─── ROI CALCULATOR ─────────────────────────────────────────────────────── */
.roi-wrap { background: var(--gray-900); border-top: 1px solid rgba(255,255,255,.15); position: relative; overflow: hidden; }
.roi-card { max-width: 800px; margin: 0 auto; background: var(--black); border: 1px solid rgba(255,255,255,.2); padding: 60px; position: relative; z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.roi-box { padding: 32px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.02); text-align: center; }
.roi-box.highlight { border-color: rgba(220,0,0,.4); background: rgba(220,0,0,.05); box-shadow: 0 0 30px rgba(220,0,0,.1); }
.roi-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 12px; }
.roi-value { font-family: var(--font-display); font-size: 52px; color: var(--white); line-height: 1; }
.roi-value.red { color: var(--red); }
.roi-slider-container { margin-top: 48px; }
.roi-slider-label { display: flex; justify-content: space-between; font-size: 18px; color: var(--white); margin-bottom: 16px; font-weight: 500; }
.roi-slider { -webkit-appearance: none; width: 100%; height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; outline: none; cursor: pointer; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--red); cursor: pointer; box-shadow: 0 0 10px var(--red-glow); }
.roi-note { font-size: 15px; color: var(--gray-400); text-align: center; margin-top: 24px; }

/* ─── PROCESS ────────────────────────────────────────────────────────────── */
.process-wrap { background: var(--gray-900); border-top: 1px solid rgba(255,255,255,.15); }
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); position: relative; margin-top: 60px; z-index: 2; }
.process-line-track { position: absolute; top: 28px; left: 28px; right: 28px; height: 2px; background: rgba(255,255,255,.15); z-index: 1; }
.process-line-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--red-dim)); box-shadow: 0 0 12px var(--red); }
.proc-item { padding: 0 20px 0 0; position: relative; }
.proc-num-wrap { display: flex; align-items: center; margin-bottom: 24px; }
.proc-num { width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; color: var(--gray-600); background: var(--gray-900); position: relative; z-index: 2; transition: border-color .4s, color .4s, box-shadow .4s; }
.proc-item.active .proc-num { border-color: var(--red); color: var(--red); box-shadow: 0 0 20px var(--red-glow); }
.proc-title { font-family: var(--font-display); font-size: 24px; color: var(--gray-600); letter-spacing: .02em; margin-bottom: 12px; transition: color .4s; }
.proc-item.active .proc-title { color: var(--white); }
.proc-desc  { font-size: 17px; color: var(--gray-300); line-height: 1.7; transition: color .4s; }

/* ─── WHY US ─────────────────────────────────────────────────────────────── */
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.whyus-list { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(255,255,255,.15); }
.whyus-item { padding: 28px 32px; border-bottom: 1px solid rgba(255,255,255,.15); display: flex; align-items: flex-start; gap: 20px; transition: background .3s; }
.whyus-item:last-child { border-bottom: none; }
.whyus-item:hover { background: rgba(220,0,0,.03); }
.whyus-item-num { font-family: var(--font-mono); font-size: 13px; color: var(--red); letter-spacing: .1em; flex-shrink: 0; margin-top: 2px; }
.whyus-item-content h4 { font-size: 18px; color: var(--white); font-weight: 600; margin-bottom: 8px; }
.whyus-item-content p  { font-size: 17px; color: var(--gray-300); line-height: 1.6; }
.whyus-systems { display: flex; flex-direction: column; gap: 16px; }
.sys-item { padding: 20px 24px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; gap: 16px; transition: border-color .3s, background .3s; }
.sys-item:hover { border-color: var(--red-dim); background: rgba(220,0,0,.03); }
.sys-icon  { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--red); }
.sys-label { font-size: 16px; color: var(--gray-200); font-weight: 500; }
.sys-sub   { font-size: 15px; color: var(--gray-400); margin-top: 4px; }

/* ─── TECH STACK / NETWORK MAP ──────────────────────────────────────────── */
.tech-wrap {
  background: var(--black); border-top: 1px solid rgba(255,255,255,.15); overflow: hidden;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-position: 0 0, 20px 20px; background-size: 40px 40px;
}
.network-map { display: flex; flex-direction: column; gap: 40px; position: relative; margin-top: 80px; align-items: center; }
@media (min-width: 993px) {
  .network-map { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; margin-top: 60px; }
  .tech-col { position: relative; z-index: 2; }
  .network-center-wrap { position: relative; z-index: 10; }
}
.network-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; overflow: visible; }
.pcb-path {
  stroke: rgba(255,255,255,0.2); stroke-width: 2px; fill: none;
  stroke-linejoin: round; stroke-linecap: round; stroke-dasharray: 4 8;
  animation: pcbFlow 4s linear infinite, pcbPulse 3s ease-in-out infinite;
  transition: stroke .3s, filter .3s, opacity .3s;
}
@keyframes pcbPulse { 0%,100% { opacity: .15; } 50% { opacity: .7; } }
.pcb-path.active { stroke: var(--red); stroke-dasharray: 8 6; animation: pcbFlow .6s linear infinite; filter: drop-shadow(0 0 5px var(--red)); opacity: 1; }
@keyframes pcbFlow { to { stroke-dashoffset: -24; } }
.tech-col { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; }
.tech-col.left  { align-items: flex-end; }
.tech-col.right { align-items: flex-start; }
@media (min-width: 993px) {
  .tech-col { justify-content: center; gap: 20px; }
  .tech-col.left  .tech-node:nth-child(1) { margin-right: 0px; }
  .tech-col.left  .tech-node:nth-child(2) { margin-right: 50px; }
  .tech-col.left  .tech-node:nth-child(3) { margin-right: 15px; }
  .tech-col.left  .tech-node:nth-child(4) { margin-right: 70px; }
  .tech-col.left  .tech-node:nth-child(5) { margin-right: 5px; }
  .tech-col.left  .tech-node:nth-child(6) { margin-right: 45px; }
  .tech-col.left  .tech-node:nth-child(7) { margin-right: 20px; }
  .tech-col.right .tech-node:nth-child(1) { margin-left: 30px; }
  .tech-col.right .tech-node:nth-child(2) { margin-left: 0px; }
  .tech-col.right .tech-node:nth-child(3) { margin-left: 60px; }
  .tech-col.right .tech-node:nth-child(4) { margin-left: 15px; }
  .tech-col.right .tech-node:nth-child(5) { margin-left: 80px; }
  .tech-col.right .tech-node:nth-child(6) { margin-left: 5px; }
  .tech-col.right .tech-node:nth-child(7) { margin-left: 40px; }
}
.tech-node {
  display: flex; align-items: center; gap: 14px; padding: 16px 24px;
  background: var(--gray-900); border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  font-family: var(--font-mono); font-size: 15px; letter-spacing: .05em;
  color: var(--gray-300); transition: all .3s cubic-bezier(0.4,0,0.2,1);
  cursor: crosshair; text-transform: uppercase; position: relative; overflow: hidden;
}
.tech-node i { font-size: 22px; color: var(--gray-500); transition: color .3s; width: 24px; text-align: center; }
.tech-node .txt-logo { font-weight: 600; font-style: italic; font-family: var(--font-display); font-size: 20px; letter-spacing: .1em; text-transform: none; }
.tech-node:hover, .tech-node.active { border-color: var(--red); background: rgba(220,0,0,.08); color: var(--white); box-shadow: 0 0 20px rgba(220,0,0,.15); transform: scale(1.05); z-index: 10; }
.tech-node:hover i, .tech-node.active i { color: var(--red); }
.network-center-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; gap: 24px; }
.network-center { width: 200px; height: 200px; border-radius: 50%; background: var(--gray-900); border: 1px solid rgba(220,0,0,.2); display: flex; align-items: center; justify-content: center; position: relative; transition: all .4s; box-shadow: 0 0 15px rgba(220,0,0,.1), 0 20px 50px rgba(0,0,0,.5); }
.network-center.active { border-color: var(--red); animation: centerPulseBright 1.5s infinite; }
@keyframes centerPulseBright { 0%,100% { box-shadow: 0 0 20px rgba(220,0,0,.3), 0 0 30px rgba(220,0,0,.15) inset, 0 20px 50px rgba(0,0,0,.5); } 50% { box-shadow: 0 0 50px rgba(220,0,0,.8), 0 0 50px rgba(220,0,0,.3) inset, 0 20px 50px rgba(0,0,0,.5); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.05); opacity: .8; } }
.nc-glow { position: absolute; inset: -30px; border-radius: 50%; background: radial-gradient(circle, rgba(220,0,0,.15) 0%, transparent 65%); z-index: -1; animation: pulse 4s infinite; opacity: .5; transition: opacity .3s, inset .3s; }
.network-center.active .nc-glow { opacity: 1; inset: -45px; background: radial-gradient(circle, rgba(220,0,0,.3) 0%, transparent 65%); animation: pulse 1.5s infinite; }
.network-center.active .nc-logo { transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(220,0,0,.5)); }
.nc-logo  { max-width: 130px; width: auto; height: auto; object-fit: contain; transition: all .4s cubic-bezier(0.4,0,0.2,1); }
.nc-desc  { font-family: var(--font-mono); font-size: 14px; letter-spacing: .05em; text-transform: uppercase; color: var(--gray-400); text-align: center; transition: color .3s; }
#tech-tooltip { position: fixed; top: 0; left: 0; background: var(--gray-900); border: 1px solid var(--red); color: var(--white); padding: 8px 16px; border-radius: 6px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; pointer-events: none; z-index: 999999; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; box-shadow: 0 4px 20px rgba(0,0,0,.5); }

/* ─── MID CTA ────────────────────────────────────────────────────────────── */
.midcta-wrap { background: var(--gray-900); padding: 80px 40px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.15); }
.midcta-wrap::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(ellipse, rgba(220,0,0,.06) 0%, transparent 70%); pointer-events: none; }
.midcta-h { font-family: var(--font-display); font-size: clamp(40px,6vw,80px); color: var(--white); line-height: 1; margin-bottom: 20px; }
.midcta-p { font-size: 19px; color: var(--gray-200); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── TESTIMONIALS ───────────────────────────────────────────────────────── */
.testi-wrap { border-top: 1px solid rgba(255,255,255,.15); }
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; margin-top: 60px; }
.testi-box { border: 1px solid rgba(255,255,255,.15); padding: 48px 40px; position: relative; transition: border-color .4s; display: flex; flex-direction: column; height: 100%; }
.testi-box:hover { border-color: rgba(220,0,0,.4); }
.testi-box::before { content: '"'; position: absolute; top: -16px; left: 32px; font-family: var(--font-display); font-size: 100px; line-height: 1; color: var(--red); opacity: .15; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 24px; }
.testi-stars i { color: var(--red); font-size: 14px; }
.testi-quote  { font-size: 20px; color: var(--gray-100); line-height: 1.7; font-style: italic; margin-bottom: 36px; flex-grow: 1; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar { width: 52px; height: 52px; border: 1px solid var(--red-dim); overflow: hidden; }
.testi-avatar img { width: 48px; height: 48px; object-fit: cover; filter: grayscale(100%); }
.testi-name { font-size: 16px; color: var(--white); font-weight: 600; }
.testi-role { font-family: var(--font-mono); font-size: 12px; color: var(--gray-400); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-wrap { border-top: 1px solid rgba(255,255,255,.15); background: var(--gray-900); }
.faq-list { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.15); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 24px 20px; cursor: pointer; gap: 24px; }
.faq-q-text { font-size: 18px; color: var(--white); font-weight: 500; }
.faq-toggle { position: relative; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; transition: border-color .3s, background .3s, transform .4s; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background-color: currentColor; }
.faq-toggle::before { width: 14px; height: 1.5px; }
.faq-toggle::after  { width: 1.5px; height: 14px; }
.faq-item.open .faq-toggle { border-color: var(--red); background: rgba(220,0,0,.1); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s; font-size: 17px; color: var(--gray-300); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ─── PRE-QUALIFICATION ──────────────────────────────────────────────────── */
.pq-wrap { border-top: 1px solid rgba(255,255,255,.15); background: var(--black); }
.pq-container { display: flex; align-items: stretch; background: var(--gray-900); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; margin-top: 60px; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.pq-card { flex: 1; padding: 64px 48px; transition: background .4s; }
.pq-yes { background: linear-gradient(135deg, rgba(37,211,102,.04) 0%, transparent 70%); }
.pq-yes:hover { background: linear-gradient(135deg, rgba(37,211,102,.08) 0%, transparent 80%); }
.pq-no  { background: linear-gradient(135deg, rgba(255,255,255,.01) 0%, transparent 70%); }
.pq-no:hover  { background: linear-gradient(135deg, rgba(220,0,0,.03) 0%, transparent 80%); }
.pq-divider { width: 1px; background: rgba(255,255,255,.15); position: relative; }
.pq-divider span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gray-900); border: 1px solid rgba(255,255,255,.2); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--font-display); font-size: 18px; color: var(--gray-400); z-index: 2; }
.pq-icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; font-size: 24px; }
.pq-yes .pq-icon { background: rgba(37,211,102,.15); color: #25D366; box-shadow: 0 0 20px rgba(37,211,102,.2); }
.pq-no  .pq-icon { background: rgba(255,255,255,.05); color: var(--gray-400); }
.pq-title { font-family: var(--font-display); font-size: 36px; color: var(--white); letter-spacing: .02em; margin-bottom: 32px; }
.pq-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.pq-list li { font-size: 17px; color: var(--gray-200); display: flex; align-items: flex-start; gap: 16px; line-height: 1.6; }
.li-icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.pq-yes .li-icon { background: rgba(37,211,102,.2); color: #25D366; font-size: 12px; }
.pq-no  .li-icon { background: rgba(255,255,255,.1); color: var(--gray-500); font-size: 12px; }

/* ─── CONTACT FORM (MODAL) ───────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label   { font-size: 14px; color: var(--gray-200); font-weight: 500; }
.form-control { background: var(--black); border: 1px solid rgba(255,255,255,.15); color: var(--white); padding: 16px 20px; border-radius: 8px; font-family: var(--font-body); font-size: 16px; outline: none; transition: border-color .3s, box-shadow .3s; cursor: text; }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 15px rgba(220,0,0,.15); }
.form-control::placeholder { color: var(--gray-500); }
textarea.form-control { resize: vertical; min-height: 100px; }
.radio-card-group { display: grid; gap: 12px; margin-bottom: 32px; }
.radio-card { cursor: pointer; position: relative; }
.radio-card input { position: absolute; opacity: 0; cursor: pointer; }
.rc-content { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--gray-900); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; transition: all .3s; }
.rc-content i    { font-size: 20px; color: var(--gray-400); transition: color .3s; }
.rc-content span { font-size: 16px; color: var(--gray-200); font-weight: 500; transition: color .3s; }
.radio-card input:checked + .rc-content { border-color: var(--red); background: rgba(220,0,0,.05); box-shadow: 0 4px 20px rgba(220,0,0,.1); }
.radio-card input:checked + .rc-content i    { color: var(--red); }
.radio-card input:checked + .rc-content span { color: var(--white); }

/* ─── FINAL CTA ──────────────────────────────────────────────────────────── */
.finalcta-wrap { border-top: 1px solid rgba(255,255,255,.15); position: relative; overflow: hidden; }
.finalcta-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(220,0,0,.08) 0%, transparent 60%), linear-gradient(to bottom, transparent 40%, rgba(220,0,0,.04) 100%); pointer-events: none; }
.finalcta-bg::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 60px 60px; }
.finalcta-inner { max-width: 900px; margin: 0 auto; padding: 120px 40px; text-align: center; position: relative; z-index: 2; }
.finalcta-alert { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(220,0,0,.3); padding: 10px 22px; margin-bottom: 36px; animation: pulse-border 2s ease-in-out infinite; }
@keyframes pulse-border { 0%,100% { box-shadow: 0 0 0 0 rgba(220,0,0,.2); } 50% { box-shadow: 0 0 0 8px transparent; } }
.finalcta-alert .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.5s infinite; }
.finalcta-h { font-family: var(--font-display); font-size: clamp(52px,7vw,100px); line-height: .95; color: var(--white); margin-bottom: 24px; }
.finalcta-h .break { display: block; }
.finalcta-p { font-size: 19px; color: var(--gray-200); max-width: 640px; margin: 0 auto 48px; line-height: 1.7; }
.finalcta-asterisk { font-family: var(--font-mono); font-size: 13px; color: var(--gray-400); letter-spacing: .05em; margin-top: 24px; }
.cta-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-red { display: inline-flex; align-items: center; gap: 12px; background: var(--red); color: var(--white); font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 20px 44px; transition: box-shadow .3s, transform .3s; position: relative; overflow: hidden; cursor: pointer; }
.btn-red::before { content: ''; position: absolute; top: 50%; left: -100%; width: 80%; height: 200%; background: rgba(255,255,255,.1); transform: translateY(-50%) skewX(-20deg); transition: left .5s; }
.btn-red:hover::before { left: 120%; }
.btn-red:hover { box-shadow: 0 0 50px var(--red-glow); transform: translateY(-3px); }
.btn-wa { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--white); font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 20px 40px; border: 1px solid rgba(255,255,255,.25); transition: border-color .3s, background .3s; cursor: pointer; }
.btn-wa:hover { border-color: #25D366; background: rgba(37,211,102,.08); color: #25D366; }
.btn-wa i { color: #25D366; font-size: 18px; }

/* ─── MODALS (LEGAL) ─────────────────────────────────────────────────────── */
.legal-modal { position: fixed; inset: 0; z-index: 99999; background: rgba(0,0,0,.8); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .4s; }
.legal-modal.open { opacity: 1; visibility: visible; }
.legal-modal-inner { background: var(--gray-900); border: 1px solid rgba(255,255,255,.25); width: 90%; max-width: 800px; max-height: 85vh; border-radius: 16px; overflow-y: auto; position: relative; transform: translateY(30px); transition: transform .4s; padding: 48px; outline: none; }
.legal-modal.open .legal-modal-inner { transform: translateY(0); }
.legal-modal-close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.25); color: var(--white); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; z-index: 10; }
.legal-modal-close:hover { background: var(--red); border-color: var(--red); }
.legal-content h1 { font-family: var(--font-display); font-size: 48px; color: var(--white); margin-bottom: 8px; }
.modal-h2 { font-family: var(--font-display); font-size: clamp(28px,6vw,36px); border: none; padding: 0; margin-top: 0; }
.legal-content .modal-date { font-family: var(--font-mono); font-size: 12px; color: var(--red); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 32px; display: block; }
.legal-content h2:not(.modal-h2) { font-size: 22px; color: var(--white); margin: 32px 0 16px; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 12px; font-weight: 500; }
.legal-content p, .legal-content li { font-size: 16px; color: var(--gray-300); line-height: 1.7; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 20px; list-style-type: square; }
.legal-content a { color: var(--red); text-decoration: underline; text-decoration-color: rgba(220,0,0,.3); text-underline-offset: 4px; transition: all .3s; }
.legal-content a:hover { color: var(--white); text-decoration-color: var(--white); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid rgba(255,255,255,.15); background: var(--gray-900); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 80px 40px 60px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
@keyframes matrix-pulse {
  0%,85%,100% { filter: drop-shadow(0 0 0 transparent) brightness(1); transform: scale(1); }
  90%  { filter: drop-shadow(0 0 10px rgba(220,0,0,.6)) brightness(1.1); transform: scale(1.02); }
  92%  { filter: drop-shadow(0 0 20px rgba(220,0,0,.9)) drop-shadow(0 0 10px rgba(255,255,255,.4)) brightness(1.3); transform: scale(1.04); }
  96%  { filter: drop-shadow(0 0 10px rgba(220,0,0,.6)) brightness(1.1); transform: scale(1.01); }
}
.footer-logo img { max-width: 150px; width: auto; height: auto; max-height: 48px; object-fit: contain; object-position: left; margin-bottom: 20px; animation: matrix-pulse 5s infinite ease-in-out; }
.footer-desc { font-size: 16px; color: var(--gray-300); line-height: 1.75; max-width: 380px; }
.footer-links-title { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a  { font-size: 16px; color: var(--gray-400); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact  { display: flex; flex-direction: column; gap: 14px; }
.footer-contact a{ font-size: 16px; color: var(--gray-400); transition: color .2s; display: flex; align-items: center; gap: 10px; }
.footer-contact a:hover { color: var(--white); }
.footer-contact i{ color: var(--red); font-size: 14px; width: 16px; }
.footer-social   { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--gray-400); transition: border-color .2s, color .2s, background .2s; }
.footer-social a:hover { border-color: var(--red); color: var(--red); background: rgba(220,0,0,.05); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 40px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy  { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--gray-400); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--gray-400); transition: color .2s; cursor: pointer; }
.footer-legal a:hover { color: var(--white); }

/* ─── UTILITIES ──────────────────────────────────────────────────────────── */
.text-highlight { position: relative; display: inline-block; z-index: 1; }
.text-highlight::after { content: ''; position: absolute; bottom: 8px; left: -2%; width: 0; height: 40%; background: rgba(220,0,0,.6); z-index: -1; border-radius: 2px; transition: width .8s cubic-bezier(0.4,0,0.2,1), background .4s; }
.text-highlight.active::after { width: 104%; transition: width .8s cubic-bezier(0.4,0,0.2,1) .4s, background .4s; }
.particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .6; }
.section { max-width: 1200px; margin: 0 auto; padding: 120px 40px; }
.section-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--red); }
.section-h2   { font-family: var(--font-display); font-size: clamp(36px,4.5vw,72px); line-height: 1.0; color: var(--white); letter-spacing: .01em; margin-bottom: 24px; overflow: visible; hyphens: none; }
.section-body { font-size: 19px; line-height: 1.75; color: var(--gray-200); max-width: 640px; }
.skip-link { position: fixed; top: -100%; left: 16px; z-index: 99999; background: var(--red); color: #fff; padding: 12px 20px; font-family: var(--font-mono); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: top .2s; border-radius: 0 0 4px 4px; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* ─── AMBIENT / HERO ANIMATIONS ──────────────────────────────────────────── */
@keyframes ambient-drift-1 { 0%,100%{ transform: translate(0,0) scale(1); opacity:.14; } 33%{ transform: translate(50px,-70px) scale(1.2); opacity:.20; } 66%{ transform: translate(-30px,40px) scale(.85); opacity:.08; } }
@keyframes ambient-drift-2 { 0%,100%{ transform: translate(0,0) scale(1); opacity:.08; } 40%{ transform: translate(-60px,50px) scale(1.25); opacity:.16; } 75%{ transform: translate(25px,-25px) scale(.9); opacity:.05; } }
@keyframes ambient-drift-3 { 0%,100%{ transform: translate(0,0) scale(1); opacity:.06; } 50%{ transform: translate(40px,60px) scale(1.15); opacity:.12; } }
@keyframes ambient-pulse    { 0%,100%{ opacity:.04; } 50%{ opacity:.10; } }
.hero-ambient { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-ambient::before { content:''; position:absolute; top:-15%; left:-10%; width:65vw; height:65vw; background:radial-gradient(circle, rgba(220,0,0,.18) 0%, transparent 68%); border-radius:50%; animation:ambient-drift-1 14s ease-in-out infinite; will-change:transform; }
.hero-ambient::after  { content:''; position:absolute; bottom:-20%; right:-10%; width:50vw; height:50vw; background:radial-gradient(circle, rgba(160,0,0,.12) 0%, transparent 68%); border-radius:50%; animation:ambient-drift-2 18s ease-in-out infinite; will-change:transform; }
.hero-ambient-mid { position:absolute; top:25%; left:25%; width:45vw; height:45vw; background:radial-gradient(circle, rgba(80,0,0,.08) 0%, transparent 70%); border-radius:50%; animation:ambient-drift-3 22s ease-in-out infinite; pointer-events:none; }
.hero-grid-anim { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px, transparent 1px); background-size:60px 60px; pointer-events:none; z-index:0; animation:ambient-pulse 6s ease-in-out infinite; mask-image:radial-gradient(ellipse 80% 80% at 20% 50%, black 0%, transparent 70%); }
@keyframes scan-line { 0%{ top:-2px; opacity:0; } 5%{ opacity:.5; } 95%{ opacity:.3; } 100%{ top:100%; opacity:0; } }
.hero-scan { position:absolute; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(220,0,0,.4), transparent); pointer-events:none; z-index:1; animation:scan-line 8s linear infinite; }

/* ─── PREFERS REDUCED MOTION ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
  .particle-canvas { display: none; }
  .hero-ambient::before, .hero-ambient::after, .hero-ambient-mid, .hero-grid-anim, .hero-scan { animation: none !important; }
}

/* ─── LIGHT MODE ─────────────────────────────────────────────────────────── */
body.light-mode {
  --black:   #ffffff; --white: #0a0a0a;
  --gray-900:#f4f4f4; --gray-800:#ebebeb; --gray-700:#d8d8d8;
  --gray-600:#a8a8a8; --gray-500:#888888; --gray-400:#555555;
  --gray-300:#444444; --gray-200:#333333; --gray-100:#1a1a1a;
  background: #ffffff; color: #333333;
}
body.light-mode::after { display: none; }
body.light-mode #nav { background: rgba(255,255,255,.96); border-color: rgba(0,0,0,.1); box-shadow: 0 1px 20px rgba(0,0,0,.06); }
body.light-mode .nav-links a { color: #555555; font-weight: 500; }
body.light-mode .nav-links a:hover { color: #cc0000; }
body.light-mode .nav-cta { border-color: #cc0000; color: #ffffff; background: #cc0000; }
body.light-mode .nav-cta:hover { background: #aa0000; }
body.light-mode #mobile-nav { background: rgba(255,255,255,.98); }
body.light-mode #mobile-nav a.mob-link { color: #0a0a0a; }
body.light-mode #mobile-nav a.mob-link:hover, body.light-mode #mobile-nav a.mob-link.active { color: #cc0000; text-shadow: none; }
body.light-mode .nav-mobile-btn .hamburger-lines, body.light-mode .nav-mobile-btn .hamburger-lines::before, body.light-mode .nav-mobile-btn .hamburger-lines::after { background: #0a0a0a; }
body.light-mode .nav-mobile-btn.active .hamburger-lines { background: transparent; }
body.light-mode .nav-mobile-btn.active .hamburger-lines::before, body.light-mode .nav-mobile-btn.active .hamburger-lines::after { background: #cc0000; }
body.light-mode .theme-toggle { border-color: rgba(0,0,0,.12); background: rgba(0,0,0,.03); color: #333333; }
body.light-mode .theme-toggle .fa-moon { display: none; }
body.light-mode .theme-toggle .fa-sun  { display: inline-block; }
body.light-mode #cur { background: #cc0000; mix-blend-mode: normal; }
body.light-mode #cur-ring { border-color: rgba(204,0,0,.4); }
body.light-mode .hero-headline { color: #0a0a0a; }
body.light-mode .hero-headline .red { color: #cc0000; }
body.light-mode .hero-desc { color: #444444; }
body.light-mode .hero-badge { color: #666666; }
body.light-mode .gapless-bg-part { -webkit-text-stroke: 1px rgba(0,0,0,.15); }
body.light-mode .marquee-section { background: rgba(204,0,0,.04); }
body.light-mode .marquee-item { color: #555555; font-weight: 500; }
body.light-mode .section-h2 { color: #0a0a0a; }
body.light-mode .section-label { color: #cc0000; font-weight: 600; }
body.light-mode .section-label::before { background: #cc0000; }
body.light-mode .section-body { color: #444444; }
body.light-mode .text-highlight::after { background: rgba(204,0,0,.15); }
body.light-mode .pp-wrap { background: #fdfdfd; }
body.light-mode .pp-item { background: #ffffff; border-color: rgba(0,0,0,.08); }
body.light-mode .pp-item.active { border-color: #cc0000; background: rgba(204,0,0,.03); }
body.light-mode .pp-title { color: #0a0a0a; }
body.light-mode .pp-desc  { color: #444444; }
body.light-mode .about-img-wrap img { filter: grayscale(10%) contrast(1.08); mix-blend-mode: normal; opacity: .92; }
body.light-mode .services-wrap { background: #f6f6f6; }
body.light-mode .svc-card { background: #ffffff; }
body.light-mode .svc-card-title { color: #0a0a0a; }
body.light-mode .svc-card-list li { color: #444444; }
body.light-mode .result-title { color: #1a1a1a; }
body.light-mode .result-desc  { color: #444444; }
body.light-mode .roi-wrap  { background: #f6f6f6; }
body.light-mode .roi-card  { background: #ffffff; border-color: rgba(0,0,0,.08); }
body.light-mode .roi-box   { background: #fcfcfc; border-color: rgba(0,0,0,.08); }
body.light-mode .roi-box.highlight { background: rgba(204,0,0,.03); border-color: rgba(204,0,0,.25); }
body.light-mode .roi-value { color: #0a0a0a; }
body.light-mode .process-wrap { background: #f6f6f6; }
body.light-mode .proc-num   { background: #ffffff; border-color: rgba(0,0,0,.15); color: #888888; }
body.light-mode .proc-item.active .proc-num { border-color: #cc0000; color: #cc0000; }
body.light-mode .proc-title { color: #666666; }
body.light-mode .proc-item.active .proc-title { color: #0a0a0a; }
body.light-mode .proc-desc  { color: #444444; }
body.light-mode .whyus-list { background: #ffffff; border-color: rgba(0,0,0,.08); }
body.light-mode .whyus-item { border-color: rgba(0,0,0,.06); }
body.light-mode .whyus-item-content h4 { color: #0a0a0a; }
body.light-mode .whyus-item-content p  { color: #444444; }
body.light-mode .sys-item   { background: #ffffff; border-color: rgba(0,0,0,.08); }
body.light-mode .sys-label  { color: #1a1a1a; }
body.light-mode .sys-sub    { color: #666666; }
body.light-mode .tech-wrap  { background-color: #fdfdfd; background-image: radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px), radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px); }
body.light-mode .tech-node  { background: #ffffff; border-color: rgba(0,0,0,.1); color: #555555; }
body.light-mode .tech-node:hover, body.light-mode .tech-node.active { border-color: #cc0000; background: rgba(204,0,0,.03); color: #0a0a0a; }
body.light-mode .network-center { background: #ffffff; }
body.light-mode .pcb-path  { stroke: rgba(0,0,0,.1); }
body.light-mode #tech-tooltip { background: #ffffff; color: #0a0a0a; border-color: #cc0000; }
body.light-mode .testi-box { background: #fafafa; border-color: rgba(0,0,0,.08); }
body.light-mode .testi-quote { color: #1a1a1a; }
body.light-mode .testi-name  { color: #0a0a0a; }
body.light-mode .faq-wrap { background: #f6f6f6; }
body.light-mode .faq-q-text { color: #0a0a0a; }
body.light-mode .faq-a { color: #444444; }
body.light-mode .pq-wrap { background: #fdfdfd; }
body.light-mode .pq-container { background: #ffffff; border-color: rgba(0,0,0,.08); }
body.light-mode .pq-title { color: #0a0a0a; }
body.light-mode .pq-list li { color: #333333; }
body.light-mode .midcta-wrap, body.light-mode .finalcta-wrap { background: #0a0a0a; }
body.light-mode .midcta-h, body.light-mode .finalcta-h { color: #ffffff; }
body.light-mode .midcta-p, body.light-mode .finalcta-p { color: #cccccc; }
body.light-mode .finalcta-asterisk { color: #888888; }
body.light-mode .legal-modal { background: rgba(255,255,255,.9); }
body.light-mode .legal-modal-inner { background: #ffffff; border-color: rgba(0,0,0,.1); }
body.light-mode .legal-modal-close { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.15); color: #0a0a0a; }
body.light-mode .legal-modal-close:hover { background: #cc0000; color: #ffffff; border-color: #cc0000; }
body.light-mode .legal-content h1, body.light-mode .legal-content h2:not(.modal-h2), body.light-mode .modal-h2 { color: #0a0a0a; }
body.light-mode .legal-content p, body.light-mode .legal-content li { color: #333333; }
body.light-mode footer { background: #0f0f0f; }
body.light-mode .footer-desc  { color: #888888; }
body.light-mode .footer-links a, body.light-mode .footer-contact a { color: #aaaaaa; }
body.light-mode .footer-links a:hover, body.light-mode .footer-contact a:hover { color: #ffffff; }
body.light-mode .footer-copy, body.light-mode .footer-legal a { color: #666666; }
body.light-mode .footer-legal a:hover { color: #ffffff; }
body.light-mode .footer-social a { border-color: rgba(255,255,255,.15); color: #aaaaaa; }
body.light-mode .footer-social a:hover { border-color: #cc0000; color: #cc0000; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-inner, .section, .footer-main, .footer-bottom, .finalcta-inner { padding-left: 32px !important; padding-right: 32px !important; }
  .svc-grid, .results-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); gap: 28px; }
  .process-line-track { display: none; }
}
@media (max-width: 992px) {
  .hero-headline { font-size: clamp(56px,11vw,110px); }
  .results-intro, .about-grid, .whyus-grid, .pq-container { grid-template-columns: 1fr; flex-direction: column; }
  .results-grid, .svc-grid, .process-grid, .footer-main { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .red-bleed-divider { display: none; }
  .red-bleed-inner { justify-content: center; gap: 40px; }
  .red-bleed-stat { flex: 1 1 40%; }
  .pq-divider { width: 100%; height: 1px; }
  .about-img-wrap img { height: 300px; }
  .network-map { display: flex; flex-direction: column; gap: 16px; margin-top: 60px; padding-bottom: 20px; }
  .network-map::before { content: ''; position: absolute; left: 50%; top: 120px; bottom: 20px; width: 2px; background: rgba(255,255,255,.1); transform: translateX(-50%); z-index: 0; }
  body.light-mode .network-map::before { background: rgba(0,0,0,.1); }
  .network-center-wrap { order: -1; margin-bottom: 24px; z-index: 2; }
  .tech-col.left, .tech-col.right { align-items: center; gap: 16px; flex-direction: column; width: 100%; }
  .network-svg { display: none; }
  .tech-node { padding: 14px 20px; font-size: 14px; width: 85%; max-width: 340px; justify-content: center; z-index: 2; }
}
@media (max-width: 768px) {
  .section, .footer-main, .footer-bottom, .finalcta-inner, .nav-inner { padding-left: 20px !important; padding-right: 20px !important; }
  .svc-grid-wrap { padding: 0 20px 60px; }
  .hero-headline { font-size: clamp(44px,16vw,72px); line-height: .95; margin-bottom: 22px; }
  .hero-desc, .section-body, .midcta-p, .finalcta-p, .testi-quote { font-size: 18px; line-height: 1.6; }
  .section-h2, .midcta-h, .finalcta-h { font-size: clamp(40px,11vw,62px); line-height: 1; }
  .hero-cta-secondary { width: 100%; justify-content: center; }
  .red-bleed-stat { flex: 1 1 100%; }
  .svc-grid, .results-grid, .process-grid, .footer-main, .pp-grid, .roi-grid, .testi-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-intro { padding: 60px 20px 32px !important; flex-direction: column; align-items: flex-start; }
  .pp-grid { gap: 40px; }
  .svc-card, .result-card-wow, .testi-box, .pq-card { padding-left: 24px; padding-right: 24px; }
  .roi-card { padding: 32px 20px; }
  .pq-card  { padding: 40px 24px; }
  .legal-modal-inner { padding: 32px 20px; }
  .legal-content h1 { font-size: 32px; }
  .modal-h2 { font-size: 28px !important; }
  .midcta-wrap { padding: 60px 20px; }
  .midcta-wrap .btn-red { width: 100%; justify-content: center; }
  .footer-main { gap: 32px; padding-bottom: 40px; }
  .pp-desc { padding-left: 0; padding-top: 12px; }
  .faq-q-text { font-size: 18px; }
  .faq-toggle { width: 36px; height: 36px; flex-shrink: 0; }
  .whyus-item, .sys-item { padding: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal { flex-wrap: wrap; gap: 12px 18px; }
}
@media (max-width: 480px) {
  #nav { padding-top: 14px; padding-bottom: 14px; }
  .nav-logo img { max-height: 28px; width: auto; max-width: 120px; }
  .theme-toggle, .nav-mobile-btn { width: 40px; height: 40px; }
  .hero-headline { font-size: clamp(36px,15vw,52px); }
  .hero-cta-main, .btn-red, .btn-wa, .nav-cta { font-size: 12px; padding: 16px 18px; letter-spacing: .1em; }
  .hero-actions, .cta-group { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions a, .cta-group a { width: 100%; justify-content: center; text-align: center; }
  .result-big-wow { font-size: clamp(40px,14vw,58px); }
  .svc-card-title { font-size: clamp(22px,6vw,28px); }
  .proc-title { font-size: 20px; }
  .testi-box { padding: 28px 20px; }
  .testi-box::before { left: 20px; font-size: 84px; top: -14px; }
  .footer-social { flex-wrap: wrap; }
  .hero-scroll { display: none !important; }
  .form-control { padding: 14px 16px; font-size: 16px; }
  .rc-content { padding: 16px; }
  .about-img-wrap img { height: 220px; }
}
