/* =========================================================
   180º Soluções — Components & Sections
   ========================================================= */

/* =========================================================
   NAV — Glass floating top bar
   ========================================================= */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(8, 13, 42, 0.55);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 10px 40px -10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transition: top 0.4s var(--ease-out), background 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
  max-width: calc(100vw - 32px);
}
:root[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px -10px rgba(10, 28, 90, 0.18),
              0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.nav.is-scrolled {
  background: rgba(5, 8, 31, 0.78);
  box-shadow:
    0 12px 50px -8px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 212, 255, 0.08) inset;
}
:root[data-theme="light"] .nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 12px 50px -8px rgba(10, 28, 90, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 4px 18px 4px 12px;
  border-right: 1px solid var(--border);
  margin-right: 6px;
  transition: transform 0.4s var(--ease-out);
}
.nav__logo:hover { transform: scale(1.04); }
.nav__wordmark-img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  min-width: max-content;
  aspect-ratio: 4069 / 796;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.35));
  transition: filter 0.4s var(--ease-out);
}
:root[data-theme="light"] .nav__wordmark-img {
  filter: none;
}
.nav__logo:hover .nav__wordmark-img {
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.7));
}
:root[data-theme="light"] .nav__logo:hover .nav__wordmark-img {
  filter: drop-shadow(0 0 8px rgba(30, 107, 255, 0.35));
}
.nav__logo .logo-dark { display: block; }
.nav__logo .logo-light { display: none; }
:root[data-theme="light"] .nav__logo .logo-dark { display: none; }
:root[data-theme="light"] .nav__logo .logo-light { display: block; }
@media (max-width: 760px) {
  .nav__wordmark-img { height: 26px; }
  .nav__logo { padding: 4px 12px 4px 10px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.nav__link:hover { color: var(--text); background: var(--surface-glass-strong); }
.nav__link.is-active { color: var(--cyan-500); text-shadow: var(--glow-cyan-sm); }

.nav__tools {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 8px;
  margin-left: 4px;
  border-left: 1px solid var(--border);
}
.nav__icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--text-2);
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
              transform 0.25s var(--ease-out);
}
.nav__icon-btn:hover { background: var(--surface-glass-strong); color: var(--cyan-500); transform: scale(1.06); }
.nav__icon-btn svg { width: 18px; height: 18px; }

.nav__cta {
  margin-left: 4px;
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta .btn-label { display: none; }
  .nav { padding: 6px 6px 6px 14px; }
}

.lang__btn {
  width: auto !important;
  padding: 0 12px 0 10px;
  gap: 7px;
  border-radius: var(--radius-pill);
}
.lang__globe {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease-out);
}
.lang__btn:hover .lang__globe { transform: rotate(30deg); }
.lang__current {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Lang dropdown */
.lang {
  position: relative;
}
.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: rgba(8, 13, 42, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 6px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.98);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
}
:root[data-theme="light"] .lang__menu {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 60px -10px rgba(10, 28, 90, 0.18);
}
.lang.is-open .lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.lang__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.lang__item:hover { background: var(--surface-glass-strong); color: var(--text); }
.lang__item.is-active { color: var(--cyan-500); }
.lang__flag {
  font-size: 16px;
  width: 22px;
  display: inline-flex;
  justify-content: center;
}

/* =========================================================
   Side Menu (overlay panel)
   ========================================================= */
.side-toggle {
  position: relative;
}
.side {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  z-index: 110;
  padding: 28px 28px 32px;
  background: rgba(5, 8, 31, 0.9);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
:root[data-theme="light"] .side {
  background: rgba(255, 255, 255, 0.96);
}
.side.is-open { transform: translateX(0); }
.side__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 26, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  z-index: 105;
}
.side__backdrop.is-open { opacity: 1; visibility: visible; }

.side__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.side__logo { display: flex; align-items: center; gap: 12px; }
.side__mark { height: 38px; width: 38px; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0, 212, 255, 0.5)); }
:root[data-theme="light"] .side__mark { filter: none; }
.side__word { height: 24px; width: auto; object-fit: contain; }
.side__head .logo-dark { display: block; }
.side__head .logo-light { display: none; }
:root[data-theme="light"] .side__head .logo-dark { display: none; }
:root[data-theme="light"] .side__head .logo-light { display: block; }
.side__close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  color: var(--text);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.side__close:hover { color: var(--cyan-500); background: var(--surface-glass-strong); transform: rotate(90deg); }
.side__close svg { width: 18px; height: 18px; }

.side__nav { display: flex; flex-direction: column; gap: 2px; }
.side__nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  transition: background 0.2s, color 0.2s, padding-left 0.3s var(--ease-out);
  position: relative;
}
.side__nav-link .arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  color: var(--cyan-500);
}
.side__nav-link:hover { background: var(--surface-glass-strong); padding-left: 22px; color: var(--cyan-500); }
.side__nav-link:hover .arrow { opacity: 1; transform: translateX(0); }
.side__nav-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-right: 16px;
  min-width: 30px;
}

.side__foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.side__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.side__meta a:hover { color: var(--cyan-500); }
.side__socials { display: flex; gap: 10px; }
.side__socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.25s var(--ease-out);
}
.side__socials a:hover {
  color: var(--cyan-500);
  border-color: var(--border-neon);
  box-shadow: var(--glow-cyan-sm);
  transform: translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__globe-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.hero__globe {
  width: clamp(540px, 90vmin, 1080px);
  aspect-ratio: 1;
  position: relative;
  opacity: 0.95;
  filter: drop-shadow(0 0 80px rgba(0, 140, 255, 0.4));
}
:root[data-theme="light"] .hero__globe { opacity: 0.6; filter: drop-shadow(0 0 30px rgba(30, 107, 255, 0.25)); }

.hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  border: 1px solid var(--border-neon);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  box-shadow: var(--glow-cyan-sm), 0 0 0 1px rgba(0, 212, 255, 0.08) inset;
}
.hero__chip-pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--cyan-500);
}
.hero__chip-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--cyan-500);
  animation: pulse-glow 2s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}
.hero__title .line { display: block; }
.hero__title .accent {
  background: linear-gradient(135deg, #88f0ff 0%, #4d9fff 35%, #1e6bff 70%, #1c3196 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(30, 107, 255, 0.4));
}
:root[data-theme="light"] .hero__title .accent {
  background: linear-gradient(135deg, #1e6bff 0%, #1c3196 60%, #0d1b4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(30, 107, 255, 0.25));
}

.hero__sub {
  color: var(--text-2);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 620px;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero__metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  padding: 22px 32px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.hero__metric-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  background: var(--grad-text-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__metric-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
@media (max-width: 600px) {
  .hero__metrics { gap: 18px; padding: 16px 20px; }
  .hero__metric-num { font-size: 22px; }
  .hero__metric-label { font-size: 10px; }
}

/* Bottom scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--cyan-500), transparent);
  animation: float-y 2s ease-in-out infinite;
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero__orb--1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue-500), transparent 70%);
  top: 10%; left: -10%;
  animation: float-y 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--cyan-500), transparent 70%);
  bottom: 15%; right: -8%;
  animation: float-y 10s ease-in-out infinite reverse;
}

/* =========================================================
   DIFFERENTIALS — Comparison + cards
   ========================================================= */
.diff__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 760px) {
  .diff__compare { grid-template-columns: 1fr; }
}
.diff__col {
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.diff__col--them {
  background: linear-gradient(180deg, rgba(80, 30, 40, 0.18), rgba(60, 20, 30, 0.06));
  border: 1px solid rgba(255, 90, 110, 0.18);
}
:root[data-theme="light"] .diff__col--them {
  background: linear-gradient(180deg, rgba(255, 80, 100, 0.06), rgba(255, 80, 100, 0.02));
}
.diff__col--us {
  background: linear-gradient(180deg, rgba(30, 107, 255, 0.18), rgba(0, 212, 255, 0.06));
  border: 1px solid var(--border-neon);
  box-shadow: var(--glow-blue-sm);
}
.diff__col-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
.diff__col-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
.diff__col--them h3 { color: #ff8aa0; }
.diff__col--us h3 { color: var(--cyan-500); text-shadow: var(--glow-cyan-sm); }

.diff__list {
  display: flex; flex-direction: column; gap: 14px;
  list-style: none; padding: 0; margin: 0;
}
.diff__item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.5;
  color: var(--text-2);
}
.diff__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  margin-top: 1px;
}
.diff__col--them .diff__icon { background: rgba(255, 90, 110, 0.12); color: #ff8aa0; }
.diff__col--us .diff__icon {
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
}
.diff__icon svg { width: 12px; height: 12px; stroke-width: 3; }

/* differential pillars row */
.pillars {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 24px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.pillar:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: var(--glow-cyan-sm);
}
.pillar__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 107, 255, 0.2), rgba(0, 212, 255, 0.1));
  border: 1px solid var(--border-neon);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
}
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   DIVISÕES EXCLUSIVAS — Sub-brands featured cards
   ========================================================= */
.divisions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .divisions { grid-template-columns: 1fr; } }

.division {
  position: relative;
  padding: 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.division:hover {
  transform: translateY(-6px);
}
.division__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.division::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  pointer-events: none;
}

/* 180º IA — cosmic blue/violet */
.division--ai {
  border: 1px solid rgba(140, 90, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(140, 90, 255, 0.08) inset,
              0 20px 60px -20px rgba(60, 30, 140, 0.6);
}
.division--ai:hover {
  border-color: rgba(140, 90, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(140, 90, 255, 0.12) inset,
              0 30px 80px -16px rgba(60, 30, 200, 0.55),
              0 0 40px rgba(140, 90, 255, 0.3);
}
.division__bg--ai {
  background:
    radial-gradient(circle at 70% 80%, rgba(180, 100, 255, 0.45), transparent 55%),
    radial-gradient(circle at 30% 20%, rgba(60, 80, 220, 0.5), transparent 60%),
    linear-gradient(135deg, #1a0b3a 0%, #0a0b30 50%, #050822 100%);
}
.division--ai .division__icon {
  background: linear-gradient(135deg, rgba(180, 100, 255, 0.22), rgba(76, 122, 255, 0.12));
  border: 1px solid rgba(180, 100, 255, 0.5);
  color: #d0b4ff;
  box-shadow: 0 0 24px rgba(180, 100, 255, 0.4);
}
.division--ai .division__badge {
  border-color: rgba(180, 100, 255, 0.5);
  color: #d0b4ff;
  background: rgba(180, 100, 255, 0.1);
}
.division--ai .division__badge .chip-dot {
  background: #d0b4ff;
  box-shadow: 0 0 10px rgba(180, 100, 255, 0.8);
}
.division--ai .division__title .text-neon {
  background: linear-gradient(135deg, #e9d5ff 0%, #b48aff 50%, #6a5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(180, 100, 255, 0.4));
}

/* Cereja Digital — deep red/magenta cherry */
.division--cereja {
  border: 1px solid rgba(255, 70, 140, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 70, 140, 0.08) inset,
              0 20px 60px -20px rgba(140, 20, 60, 0.5);
}
.division--cereja:hover {
  border-color: rgba(255, 70, 140, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 70, 140, 0.12) inset,
              0 30px 80px -16px rgba(180, 20, 80, 0.55),
              0 0 40px rgba(255, 70, 140, 0.3);
}
.division__bg--cereja {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 60, 120, 0.45), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(140, 30, 90, 0.5), transparent 60%),
    linear-gradient(135deg, #3a0b1f 0%, #240916 50%, #0e0410 100%);
}
.division--cereja .division__icon {
  background: linear-gradient(135deg, rgba(255, 80, 140, 0.22), rgba(180, 30, 90, 0.12));
  border: 1px solid rgba(255, 80, 140, 0.5);
  color: #ff8aae;
  box-shadow: 0 0 24px rgba(255, 70, 140, 0.4);
}
.division__badge--cereja {
  border-color: rgba(255, 80, 140, 0.5) !important;
  color: #ff8aae !important;
  background: rgba(255, 80, 140, 0.1) !important;
}
.division__badge--cereja .chip-dot {
  background: #ff8aae !important;
  box-shadow: 0 0 10px rgba(255, 70, 140, 0.8) !important;
}
.cereja-grad {
  background: linear-gradient(135deg, #ffd5e0 0%, #ff80b0 50%, #d6306c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(255, 70, 140, 0.4));
}

.division__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  position: relative;
}
.division__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-neon);
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan-500);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 500;
  width: max-content;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.division__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.division__icon svg { width: 32px; height: 32px; }
.division__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
:root[data-theme="light"] .division__title { color: #fff; }
.division__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  max-width: 50ch;
  margin: 0;
}
:root[data-theme="light"] .division__desc { color: rgba(255, 255, 255, 0.85); }
.division__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}
.division__chips .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}
.division a.btn {
  margin-top: auto;
  width: max-content;
}

.btn-cereja {
  background: transparent;
  color: #ff8aae;
  border: 1px solid #ff8aae;
  box-shadow: 0 0 14px rgba(255, 70, 140, 0.5), inset 0 0 12px rgba(255,70,140,0.1);
  text-shadow: 0 0 8px rgba(255, 70, 140, 0.5);
}
.btn-cereja:hover {
  background: rgba(255, 70, 140, 0.08);
  box-shadow: 0 0 28px rgba(255, 70, 140, 0.6), inset 0 0 20px rgba(255,70,140,0.2);
  transform: translateY(-2px);
}

.division__orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}
.division__orb--ai {
  background: radial-gradient(circle, #6a5cff, transparent 70%);
  right: -80px; bottom: -80px;
  animation: float-y 12s ease-in-out infinite;
}
.division__orb--cereja {
  background: radial-gradient(circle, #ff4488, transparent 70%);
  left: -80px; bottom: -80px;
  animation: float-y 14s ease-in-out infinite reverse;
}

@media (max-width: 600px) {
  .division { padding: 28px 24px; min-height: 380px; }
  .division__icon { width: 54px; height: 54px; }
  .division__icon svg { width: 26px; height: 26px; }
}

/* =========================================================
   INFRAESTRUTURA — 2-card mini section
   ========================================================= */
.infra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 760px) { .infra { grid-template-columns: 1fr; } }

.infra__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.infra__card:hover {
  border-color: var(--border-neon);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.infra__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(30, 107, 255, 0.08));
  border: 1px solid var(--border-neon);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
  flex-shrink: 0;
}
.infra__icon svg { width: 28px; height: 28px; }
.infra__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  line-height: 1.2;
}
.infra__card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 22px;
  line-height: 1.55;
  text-wrap: pretty;
}
.infra__stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.infra__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.infra__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  background: var(--grad-text-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.infra__stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 480px) {
  .infra__card { grid-template-columns: 1fr; }
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }
.service {
  position: relative;
  padding: 32px 28px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
}
.service::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service:hover {
  border-color: var(--border-neon);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(30, 107, 255, 0.08));
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan-500);
  border: 1px solid var(--border-neon);
  box-shadow: var(--glow-cyan-sm), inset 0 0 14px rgba(0, 212, 255, 0.05);
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
}
.service p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
}
.service__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(76, 122, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text-2);
}

/* =========================================================
   PORTFOLIO — Dashboard mockups
   ========================================================= */
.portfolio__tabs {
  display: flex;
  gap: 8px;
  margin: 0 auto 40px;
  padding: 6px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  max-width: max-content;
  overflow-x: auto;
  scrollbar-width: none;
}
.portfolio__tabs::-webkit-scrollbar { display: none; }
.portfolio__tab {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
}
.portfolio__tab:hover { color: var(--text); }
.portfolio__tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  box-shadow: var(--glow-blue-sm);
}

.portfolio__stage {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  overflow: hidden;
  min-height: 580px;
}
.portfolio__stage-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  pointer-events: none;
}
.portfolio__panel {
  position: relative;
  display: none;
}
.portfolio__panel.is-active {
  display: block;
  animation: fadeIn 0.5s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Browser/window chrome wrapper for mockups */
.window {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
:root[data-theme="light"] .window { background: #fff; }
.window__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(8, 13, 42, 0.6);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
:root[data-theme="light"] .window__chrome { background: #f1f4ff; }
.window__dots { display: flex; gap: 6px; }
.window__dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--text-dim);
}
.window__dot--r { background: #ff5f57; }
.window__dot--y { background: #febc2e; }
.window__dot--g { background: #28c840; }
.window__url {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  color: var(--text-2);
  border: 1px solid var(--border);
}
:root[data-theme="light"] .window__url { background: #fff; border-color: #e0e6ff; color: #4a5a85; }
.window__body { padding: 20px; min-height: 460px; position: relative; }

/* Dashboard primitives */
.dash {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  min-height: 500px;
}
@media (max-width: 720px) { .dash { grid-template-columns: 1fr; } }
.dash__side {
  background: rgba(5, 8, 31, 0.5);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--border);
}
:root[data-theme="light"] .dash__side { background: #f5f8ff; }
.dash__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}
.dash__brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 12px;
}
.dash__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.dash__nav svg { width: 16px; height: 16px; }
.dash__nav:hover { background: var(--surface-glass-strong); color: var(--text); }
.dash__nav.is-active {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.18), transparent);
  color: var(--cyan-500);
  border-left: 2px solid var(--cyan-500);
  padding-left: 10px;
}
.dash__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.dash__top h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}
.dash__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 600px) { .dash__kpis { grid-template-columns: repeat(2, 1fr); } }
.kpi {
  background: rgba(8, 13, 42, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
:root[data-theme="light"] .kpi { background: #fff; }
.kpi__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kpi__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-top: 6px;
  background: var(--grad-text-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kpi__trend {
  font-family: var(--font-mono);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  color: #4ade80;
}
.kpi__trend.is-down { color: #ff7a8a; }
.kpi__spark {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  height: 24px;
  opacity: 0.7;
}

.dash__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .dash__row { grid-template-columns: 1fr; } }

.dash__card {
  background: rgba(8, 13, 42, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
:root[data-theme="light"] .dash__card { background: #fff; }
.dash__card-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: var(--text-2);
}
.dash__card-head .chip { font-size: 10px; padding: 3px 9px; }

.dash__chart {
  height: 160px;
  position: relative;
}

/* Table */
.dash__table {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash__tr {
  display: grid;
  grid-template-columns: 1fr 70px 70px 70px;
  gap: 8px;
  padding: 9px 8px;
  border-radius: 6px;
  align-items: center;
}
.dash__tr--head {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding-bottom: 8px;
}
.dash__tr:not(.dash__tr--head):hover { background: var(--surface-glass-strong); }
.dash__avatar {
  display: flex; align-items: center; gap: 8px;
}
.dash__avatar-img {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  flex-shrink: 0;
}
.dash__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan-500);
  border: 1px solid var(--border-neon);
  display: inline-block;
}
.dash__badge.is-warn { background: rgba(255, 180, 0, 0.12); color: #ffc94a; border-color: rgba(255, 180, 0, 0.25); }
.dash__badge.is-bad { background: rgba(255, 90, 110, 0.12); color: #ff8aa0; border-color: rgba(255, 90, 110, 0.25); }
.dash__badge.is-ok { background: rgba(74, 222, 128, 0.12); color: #65e69a; border-color: rgba(74, 222, 128, 0.25); }

/* Phone mockup */
.phone {
  width: 280px;
  margin: 0 auto;
  border-radius: 38px;
  background: #02041a;
  border: 1px solid var(--border);
  padding: 12px 10px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
}
.phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 99px;
  z-index: 2;
}
.phone__screen {
  background: linear-gradient(180deg, #05081f, #0a1240);
  border-radius: 28px;
  padding: 38px 16px 24px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 40px; } }
.about__visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--border);
  padding: 32px;
  overflow: hidden;
}
.about__visual-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-strong) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid-strong) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
  height: 100%;
  justify-content: center;
}
.timeline__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: baseline;
}
.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  background: var(--grad-text-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.timeline__label {
  font-size: 14px;
  color: var(--text-2);
  border-left: 1px solid var(--border-neon);
  padding-left: 18px;
  position: relative;
}
.timeline__label::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
}

/* =========================================================
   PROCESS (steps)
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.process__step {
  position: relative;
  padding: 24px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s;
}
.process__step:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
}
.process__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--cyan-500), transparent 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.process__step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}
.process__step p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   STACK marquee
   ========================================================= */
.stack__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stack__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-2);
  flex-shrink: 0;
  transition: all 0.3s;
}
.stack__chip:hover {
  border-color: var(--border-neon);
  color: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
}
.stack__chip-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan-500);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .testi { grid-template-columns: 1fr; } }
.testi__card {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.testi__card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.testi__quote-icon {
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0.5;
  background: var(--grad-text-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
}
.testi__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  text-wrap: pretty;
  flex: 1;
}
.testi__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testi__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
}
.testi__name { font-weight: 600; font-size: 14px; }
.testi__role { font-size: 12px; color: var(--text-muted); }
.testi__stars { display: flex; gap: 2px; color: var(--cyan-500); }
.testi__stars svg { width: 14px; height: 14px; }

/* =========================================================
   STATS row
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 50px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(30, 107, 255, 0.12), rgba(0, 212, 255, 0.04));
  border: 1px solid var(--border-neon);
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; } }
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -6px; top: 18%;
  bottom: 18%;
  width: 1px;
  background: var(--border);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #88c1ff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.25));
  letter-spacing: -0.03em;
}
:root[data-theme="light"] .stat__num {
  background: linear-gradient(135deg, #0d1b4a 0%, #1e6bff 70%, #00b4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat__suffix { font-size: 0.5em; vertical-align: top; margin-left: 2px; opacity: 0.8; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  background: var(--surface-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq__item.is-open {
  border-color: var(--border-neon);
  box-shadow: var(--glow-cyan-sm);
}
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--cyan-500); }
.faq__icon {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan-500);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--cyan-500);
  color: #02041a;
  border-color: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a-inner {
  padding: 0 22px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}

/* =========================================================
   CTA final + Contact form
   ========================================================= */
.cta {
  position: relative;
  padding: 80px 50px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
  border: 1px solid var(--border-neon);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
:root[data-theme="light"] .cta {
  background: linear-gradient(135deg, #0d1b4a 0%, #122470 100%);
  color: #fff;
}
:root[data-theme="light"] .cta .lead { color: rgba(255,255,255,0.8); }
:root[data-theme="light"] .cta .eyebrow { color: #88f0ff; }
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.25), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(30, 107, 255, 0.25), transparent 50%);
  z-index: -1;
}
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid-strong) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid-strong) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000, transparent 80%);
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 600px) { .cta { padding: 50px 24px; } }

/* Contact form */
.form {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field--full { grid-column: 1 / -1; }
.form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form__input, .form__textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(2, 4, 26, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
:root[data-theme="light"] .form__input,
:root[data-theme="light"] .form__textarea {
  background: rgba(255,255,255,0.92);
  color: #050a26;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm), 0 0 0 3px rgba(0, 212, 255, 0.12);
  background: rgba(2, 4, 26, 0.85);
}
:root[data-theme="light"] .form__input:focus,
:root[data-theme="light"] .form__textarea:focus {
  background: #fff;
}
.form__textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.form__submit { grid-column: 1 / -1; justify-self: center; margin-top: 8px; }

.form__success {
  grid-column: 1 / -1;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(30, 107, 255, 0.08));
  border: 1px solid var(--border-neon);
  text-align: center;
  display: none;
}
.form.is-sent .form__success { display: block; }
.form.is-sent > *:not(.form__success) { display: none; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.footer__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(30, 107, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.footer__mega {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--blue-400) 0%, var(--cyan-500) 40%, transparent 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin: 0;
  padding: 20px 0 40px;
  user-select: none;
  filter: drop-shadow(0 0 30px rgba(30, 107, 255, 0.25));
}
:root[data-theme="light"] .footer__mega {
  background: linear-gradient(180deg, #1e6bff 0%, #1c3196 50%, transparent 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer__mark { height: 44px; width: 44px; object-fit: contain; filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0, 212, 255, 0.5)); }
:root[data-theme="light"] .footer__mark { filter: none; }
.footer__word { height: 28px; width: auto; object-fit: contain; }
.footer__brand .logo-dark { display: block; }
.footer__brand .logo-light { display: none; }
:root[data-theme="light"] .footer__brand .logo-dark { display: none; }
:root[data-theme="light"] .footer__brand .logo-light { display: block; }
.footer__tag {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.55;
}
.footer__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s, padding-left 0.25s var(--ease-out);
  display: inline-block;
}
.footer__col a:hover { color: var(--cyan-500); padding-left: 4px; }

.footer__bottom {
  padding: 28px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}
.footer__bottom-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom-meta a:hover { color: var(--cyan-500); }
.footer__signal { display: flex; align-items: center; gap: 8px; }
.footer__signal-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* Section dividers - subtle */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-neon), transparent);
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}
.divider-glow::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--cyan-500);
  box-shadow: var(--glow-cyan-sm);
}

/* Small typed cursor */
.type-cursor {
  display: inline-block;
  width: 0.55ch;
  background: currentColor;
  height: 0.9em;
  vertical-align: -0.05em;
  margin-left: 2px;
  animation: blink 0.9s steps(1) infinite;
}

/* Theme toggle icons */
.theme-icon-sun, .theme-icon-moon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.theme-icon-sun svg, .theme-icon-moon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease-out);
}
[data-theme-toggle]:hover .theme-icon-sun svg { transform: rotate(45deg); }
[data-theme-toggle]:hover .theme-icon-moon svg { transform: rotate(-15deg); }
:root[data-theme="light"] .theme-icon-moon { display: inline-flex; }
:root:not([data-theme="light"]) .theme-icon-sun { display: inline-flex; }
