/* ═══════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════ */
:root {
  --green-500: #96be39;
  --green-400: #a8cc54;
  --green-600: #7da22e;
  --cyan-500: #00a3e4;
  --cyan-400: #00a3e4;
  --navy-500: #142936;
  --navy-600: #0f1f29;
  --navy-700: #0a151c;
  --navy-800: #070e13;
  --navy-900: #040910;
  --white: #ffffff;
  --gray-100: #e2e6ea;
  --gray-200: #c5ccd3;
  --gray-300: #a0aab4;
  --gray-400: #7b8894;
  --gray-500: #5a6672;
  --gray-600: #3d4750;
  --gray-700: #2a3138;
  --border: rgba(255,255,255,0.06);
  --border-card: rgba(255,255,255,0.08);
  --font: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow-g: 0 0 40px rgba(150,190,57,0.25);
  --shadow-glow-c: 0 0 40px rgba(0,163,228,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ═══════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--white);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.2s; }
.reveal-d2 { transition-delay: 0.8s; }
.reveal-d3 { transition-delay: 1.2s; }
.reveal-d4 { transition-delay: 1.6s; }
.reveal-d5 { transition-delay: 2.0s; }
.reveal-d6 { transition-delay: 2.4s; }
.reveal-d7 { transition-delay: 2.8s; }
.reveal-d8 { transition-delay: 3.2s; }

@keyframes fadeUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%,100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes linesDown {
  from { background-position: 0 0; }
  to   { background-position: 0 100px; }
}
@keyframes linesRight {
  from { background-position: 0 0; }
  to   { background-position: 100px 0; }
}
@keyframes glowSpread {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* ═══════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 36px; border-radius: var(--radius-full);
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.btn--primary { background: var(--green-500); color: var(--navy-900); }
.btn--primary:hover { background: var(--green-400); box-shadow: var(--shadow-glow-g); transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.15); }
.btn--secondary:hover { border-color: var(--green-500); color: var(--green-500); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green-500); padding: 14px 0; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.btn--ghost svg { transition: transform 0.25s var(--ease); }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn--outline-cyan { background: transparent; color: var(--cyan-500); border: 1.5px solid rgba(0,163,228,0.25); }
.btn--outline-cyan:hover { border-color: var(--cyan-500); box-shadow: var(--shadow-glow-c); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════ */
.section { padding: 7rem 0; position: relative; }
.section--alt { background: #ffffff; color: var(--navy-900); }
.section--dark { background: var(--navy-900); color: var(--white); }
.section__overline {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-500);
  padding: 7px 18px; border-radius: var(--radius-full);
  background: rgba(150,190,57,0.06);
  border: 1px solid rgba(150,190,57,0.2);
  margin-bottom: 1.5rem;
  position: relative; overflow: hidden;
}
.section__overline::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(150,190,57,0.15), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite linear;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.section__overline--cyan { 
  color: var(--cyan-500); 
  background: rgba(0,163,228,0.06);
  border-color: rgba(0,163,228,0.2);
}
.section__overline--cyan::before { 
  background: linear-gradient(90deg, transparent, rgba(0,163,228,0.15), transparent);
}
.section__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.08;
  color: inherit;
}
.section__desc {
  font-size: 1rem; color: var(--gray-400); line-height: 1.75;
  max-width: 560px;
}
.section--alt .section__desc { color: var(--gray-600); }
.section__header {
  text-align: center; max-width: 680px; margin: 0 auto 4rem;
}
.section__header .section__overline { justify-content: center; }
.section__header .section__overline::before { display: none; }
.section__header .section__desc { margin: 0 auto 0; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 18px 2rem;
  transition: padding 0.4s var(--ease);
}
.navbar__inner {
  max-width: 940px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(4,9,16,0.72);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled { padding: 10px 2rem; }
.navbar.scrolled .navbar__inner {
  background: rgba(255,255,255,0.97);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 4px 40px rgba(0,0,0,0.14), 0 1px 8px rgba(0,0,0,0.08);
}

/* Logo images */
.navbar__logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar__logo img { height: 34px; width: auto; }
.navbar__logo-branca { display: block; }
.navbar__logo-color { display: none; }
.navbar.scrolled .navbar__logo-branca { display: none; }
.navbar.scrolled .navbar__logo-color { display: block; }

.navbar__links { display: flex; gap: 1.75rem; align-items: center; }
.navbar__link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  transition: color 0.2s ease; padding: 4px 0;
}
.navbar__link:hover { color: var(--white); }
.navbar.scrolled .navbar__link { color: rgba(10,21,28,0.55); }
.navbar.scrolled .navbar__link:hover { color: var(--navy-900); }

.navbar__cta {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; background: var(--green-500); color: var(--navy-900);
  padding: 12px 28px; border-radius: var(--radius-full);
  transition: all 0.25s var(--ease); flex-shrink: 0;
}
.navbar__cta:hover { background: var(--green-400); box-shadow: var(--shadow-glow-g); transform: translateY(-1px); }
.navbar.scrolled .navbar__cta { background: var(--green-500); color: var(--navy-900); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 92px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 35%, rgba(0,163,228,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 15% 75%, rgba(150,190,57,0.15) 0%, transparent 65%),
    linear-gradient(170deg, rgba(0,0,0,0.85) 0%, rgba(4,9,16,0.65) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45; /* Darkened to pop the overlays */
  filter: grayscale(0.2) brightness(0.8);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__grid::before {
  content: ''; position: absolute;
  inset: -100px;
  background-image: 
    linear-gradient(rgba(0,163,228,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,163,228,0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 10%, transparent 80%);
  animation: bgMove 20s linear infinite;
  will-change: transform;
}
.hero__grid::after {
  content: ''; position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0,163,228,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(150,190,57,0.04) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0,163,228,0.03) 0%, transparent 60%);
  animation: glowSpread 8s ease-in-out infinite alternate;
}
.hero__texture {
  position: absolute; inset: 0;
  background-image: url('../images/textura.png');
  background-repeat: repeat;
  opacity: 0.15;
  mix-blend-mode: screen; /* Changed to screen for more visibility */
  pointer-events: none;
  z-index: 4;
}
@keyframes bgMove {
  from { transform: translateY(0); }
  to { transform: translateY(80px); }
}
@keyframes rotateBorder {
  to { transform: rotate(360deg); }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 980px; margin: 0 auto; padding: 7rem 2rem 8rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 2.25rem; width: 100%;
}
.hero__text { display: flex; flex-direction: column; gap: 1.75rem; }
.hero__overline {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white);
  padding: 8px 20px; border-radius: var(--radius-full);
  background: var(--navy-900);
  margin-bottom: 0.5rem;
  overflow: hidden;
  animation: fadeUp 0.8s var(--ease) both;
  z-index: 10;
}
.hero__overline::before {
  content: '';
  position: absolute; inset: -400%; /* Giant spinning element */
  background: conic-gradient(from 0deg, transparent 40%, var(--green-500) 50%, transparent 60%);
  animation: rotateBorder 4s linear infinite;
  z-index: -2;
}
.hero__overline::after {
  content: '';
  position: absolute; inset: 1px;
  background: var(--navy-900);
  border-radius: inherit;
  border: 1px solid #ffffff26;
  z-index: -1;
}
.hero__title {
  font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.04;
  max-width: 660px; margin: 0 auto;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}
.hero__title .green { color: var(--green-500); }
.hero__title .cyan, .hero__title .blue, .section__title .blue { color: var(--cyan-500); }
.hero__subtitle {
  font-size: 1.05rem; font-weight: 300; color: #ffffff;
  line-height: 1.75; max-width: 760px; margin: 0 auto;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.hero__actions {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}
.hero__trust {
  display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.4s both;
  padding-top: 0.5rem;
}
.hero__trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; color: var(--gray-400); font-weight: 500;
}
.hero__trust-item svg { color: var(--green-500); flex-shrink: 0; }
.hero__visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}
.hero__visual-glow {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,163,228,0.07) 0%, transparent 65%);
  animation: pulse 5s ease-in-out infinite;
  pointer-events: none;
}
.hero__product-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 520px;
  animation: float 7s ease-in-out infinite;
}
.hero__product-placeholder {
  width: 100%; aspect-ratio: 2.5/1;
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero__product-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,163,228,0.04) 0%, transparent 50%, rgba(150,190,57,0.03) 100%);
}
.hero__product-label {
  font-size: 0.6rem; color: var(--gray-500); letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px dashed var(--gray-700);
  padding: 0.625rem 1rem; border-radius: var(--radius-sm); position: relative;
}
.hero__product-badge {
  position: absolute; top: -1px; right: -1px;
  background: linear-gradient(135deg, rgba(0,163,228,0.12), rgba(150,190,57,0.08));
  border: 1px solid rgba(0,163,228,0.15); border-radius: 0 var(--radius-lg) 0 var(--radius-md);
  padding: 0.625rem 1rem;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan-500);
  text-transform: uppercase;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--white); z-index: 10; opacity: 0.5;
  animation: fadeUp 1s var(--ease) 0.8s both;
}
.mouse-icon {
  width: 22px; height: 36px;
  border: 1.5px solid var(--white);
  border-radius: 12px;
  position: relative;
}
.mouse-wheel {
  width: 3px; height: 6px;
  background: var(--green-500);
  border-radius: 2px;
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: mouseMove 1.5s infinite var(--ease);
}
@keyframes mouseMove {
  0% { transform: translate(-50%, 0); opacity: 0; }
  20% { opacity: 1; }
  80% { transform: translate(-50%, 8px); opacity: 0; }
  100% { opacity: 0; }
}
.hero__scroll-text { 
  font-size: 0.58rem; letter-spacing: 0.15em; 
  text-transform: uppercase; font-weight: 700; 
}

/* Feature Cards inside Hero */
.hero__features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  width: 100%; max-width: 1100px; margin-top: 5rem;
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}
.h-feature {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  padding: 2rem; position: relative;
}
.h-feature::after {
  content: ''; position: absolute; right: -1rem; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}
.h-feature:last-child::after { display: none; }
.h-feature__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--green-500);
  margin-bottom: 0.5rem; transition: all 0.3s var(--ease);
}
.h-feature:hover .h-feature__icon {
  background: rgba(150,190,57,0.08); border-color: rgba(150,190,57,0.2);
  transform: translateY(-4px); box-shadow: var(--shadow-glow-g);
}
.h-feature__title { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.h-feature__desc { font-size: 0.82rem; color: var(--gray-400); line-height: 1.6; max-width: 240px; }

/* ═══════════════════════════════════════════
   STATS BAR (Apple-style)
   ═══════════════════════════════════════════ */
.stats-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--navy-800);
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.stat-item {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease; cursor: default;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(150,190,57,0.02); }
.stat-item__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--cyan-500) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}
.stat-item__label {
  font-size: 0.78rem; color: var(--gray-400); margin-top: 0.625rem;
  font-weight: 400; line-height: 1.4;
}
.stat-item__sublabel {
  font-size: 0.65rem; color: var(--gray-600); margin-top: 0.25rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem {
  padding: 8rem 0; 
  background-color: #ffffff; 
  position: relative; 
  overflow: hidden;
  color: #0D0F10;
}
.problem__bg-lines {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.problem__bg-lines::before {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(150,190,57,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,190,57,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 90%);
}
.circuit-svg {
  position: absolute; inset: -5% -5%; width: 110%; height: 110%;
  opacity: 0.3; stroke-width: 1.25; stroke: var(--green-500); fill: none;
  stroke-dasharray: 1000; filter: drop-shadow(0 0 5px var(--green-500));
}
.circuit-svg path { 
  stroke-dashoffset: 2000; stroke-dasharray: 2000; 
  animation: trace 12s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.section.is-active .circuit-svg path {
  animation-play-state: running;
}
@keyframes trace { to { stroke-dashoffset: 0; } }
.problem .section__header { text-align: center; margin: 0 auto 3rem; max-width: 720px; }
.problem .section__title { color: #0D0F10; text-align: center; }
.problem .section__desc { color: #4B5563; text-align: center; margin-top: 1.5rem; }

.problem__grid {
  display: flex; flex-direction: column; align-items: center; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 10;
}

/* ═══════════════════════════════════════════
   DASHBOARD MONITOR COMPONENT (adapted)
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   DASHBOARD MONITOR COMPONENT (adapted)
   ═══════════════════════════════════════════ */
.dashboard-wrap {
  width: 100%; display: flex; justify-content: center;
  margin-top: 1rem; perspective: 2000px;
  --bg-outer: #0e1318;
  --bg: #0b1117;
  --bg-card: #222222;
  --bg-card-alt: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --border-alert: rgba(255,255,255,0.06);
  --red: #ff3b4f;
  --red-dim: #cc2f3f;
  --red-glow: rgba(255,59,79,0.15);
  --red-bg: rgba(255,59,79,0.06);
  --amber: #ffaa2c;
  --amber-dim: #cc882a;
  --amber-glow: rgba(255,170,44,0.12);
  --amber-bg: rgba(255,170,44,0.06);
  --green: #3ddc84;
  --green-dim: #2aad66;
  --green-bg: rgba(61,220,132,0.06);
  --cyan: #00c2e0;
  --text: #e2e6ea;
  --text-dim: #7b8894;
  --text-muted: #4a5562;
  --font-mono: 'JetBrains Mono', monospace;
  --font-ui: 'Montserrat', sans-serif;
}
.mac-window {
  width: 100%; max-width: 880px; border-radius: 12px; overflow: hidden;
  box-shadow: 
    0 40px 100px rgba(0,0,0,0.4), 
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 120px rgba(255,59,79,0.04);
  position: relative; background: var(--bg);
}
.mac-titlebar {
  height: 38px; background: linear-gradient(180deg, #1e252d 0%, #181f27 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; padding: 0 14px; position: relative;
}
.mac-dots { display: flex; gap: 7px; }
.mac-dot { width: 11px; height: 11px; border-radius: 50%; }
.mac-dot--red { background: #ff5f57; }
.mac-dot--yellow { background: #febc2e; }
.mac-dot--green { background: #28c840; }
.mac-titlebar__text {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 500; color: var(--text-muted);
  font-family: var(--font); letter-spacing: 0.02em;
}
.mac-titlebar__right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.mac-titlebar__indicator { 
  width: 6px; height: 6px; border-radius: 50%; background: var(--red); 
  box-shadow: 0 0 8px var(--red-glow); animation: pulse-dot 1s ease-in-out infinite;
}
.mac-titlebar__badge {
  font-size: 8px; font-weight: 700; color: var(--red); 
  letter-spacing: 0.04em; font-family: 'JetBrains Mono', monospace;
}

.dashboard { 
  background: var(--bg); display: grid; grid-template-columns: 1fr 1fr 1fr; 
  gap: 5px; padding: 5px; position: relative; height: 500px;
}
.monitor-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; display: flex; flex-direction: column; overflow: hidden; position: relative;
}
.monitor-card--alert { border-color: rgba(255,59,79,0.12); }
.monitor-card--warn { border-color: rgba(255,170,44,0.08); }
.monitor-card--span2 { grid-row: span 2; }
.monitor-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.monitor-card__label { font-size: 8px; font-weight: 600; color: #e8e8e8; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font); }
.monitor-card__status { font-size: 7px; font-weight: 700; padding: 2px 7px; border-radius: 99px; letter-spacing: 0.08em; }
.monitor-card__status--critical { color: var(--red); background: var(--red-bg); border: 1px solid rgba(255,59,79,0.15); animation: badge-pulse 1.5s ease-in-out infinite; }
.monitor-card__status--warning { color: var(--amber); background: var(--amber-bg); border: 1px solid rgba(255,170,44,0.12); }

.cpu-chart { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.cpu-chart__value { font-size: 32px; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 2px; font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }
.cpu-chart__unit { font-size: 13px; color: var(--red-dim); font-weight: 500; }
.cpu-chart__bars { display: flex; align-items: flex-end; gap: 2px; height: 48px; margin-top: 6px; }
.cpu-bar { flex: 1; border-radius: 2px 2px 0 0; transition: height 0.6s ease, background 0.4s ease; min-height: 3px; }

.mem-ring { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; }
.mem-ring__svg { width: 88px; height: 88px; }
.mem-ring__circle-bg { fill: none; stroke: rgba(255,255,255,0.04); stroke-width: 7; }
.mem-ring__circle { fill: none; stroke-width: 7; stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease; }
.mem-ring__text { position: absolute; font-size: 20px; font-weight: 700; font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }
.mem-ring__label { position: absolute; bottom: -4px; font-size: 7px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font); font-weight: 600; }

.alerts-log { flex: 1; overflow: hidden; display: flex; flex-direction: column; gap: 3px; }
.alert-item { 
  display: flex; align-items: flex-start; gap: 7px; padding: 7px 9px; border-radius: 5px; 
  background: var(--bg-card-alt); border: 1px solid var(--border-alert); opacity: 0; transform: translateX(-10px); animation: alert-slide-in 0.4s ease forwards;
}
.alert-item--critical { border-left: 2px solid var(--red); }
.alert-item--warning { border-left: 2px solid var(--amber); }
.alert-item__icon { width: 14px; height: 14px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 700; margin-top: 1px; }
.alert-item__icon--critical { background: var(--red-bg); color: var(--red); }
.alert-item__icon--warning { background: var(--amber-bg); color: var(--amber); }
.alert-item__content { flex: 1; min-width: 0; }
.alert-item__title { font-size: 8px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alert-item__desc { font-size: 7px; color: var(--text-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alert-item__time { font-size: 6.5px; color: var(--text-muted); flex-shrink: 0; font-variant-numeric: tabular-nums; margin-top: 2px; }

.server-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; flex: 1; }
.server-node { background: var(--bg-card-alt); border: 1px solid var(--border); border-radius: 5px; padding: 6px 8px; display: flex; flex-direction: column; gap: 3px; transition: all 0.5s ease; }
.server-node--down { border-color: rgba(255,59,79,0.15); background: rgba(255,59,79,0.03); }
.server-node--warn { border-color: rgba(255,170,44,0.1); background: rgba(255,170,44,0.02); }
.server-node__header { display: flex; align-items: center; justify-content: space-between; }
.server-node__name { font-size: 7px; font-weight: 700; letter-spacing: 0.04em; color: #FFF; }
.server-node__dot { width: 5px; height: 5px; border-radius: 50%; }
.server-node__dot--up { background: var(--green); box-shadow: 0 0 5px rgba(61,220,132,0.3); }
.server-node__dot--down { background: var(--red); box-shadow: 0 0 5px var(--red-glow); animation: pulse-dot 0.8s ease-in-out infinite; }
.server-node__dot--warn { background: var(--amber); box-shadow: 0 0 5px var(--amber-glow); }
.server-node__metric { font-size: 6.5px; color: var(--text-muted); display: flex; justify-content: space-between; }
.server-node__metric span { font-variant-numeric: tabular-nums; }
.server-node__metric .red { color: var(--red); font-weight: 600; }
.server-node__metric .amber { color: var(--amber); font-weight: 600; }
.server-node__metric .green { color: var(--green-dim); }

.disk-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; justify-content: center; }
.disk-row { display: flex; align-items: center; gap: 7px; }
.disk-row__label { font-size: 7px; color: var(--text-muted); min-width: 40px; font-weight: 600; }
.disk-row__bar { flex: 1; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.04); overflow: hidden; }
.disk-row__fill { height: 100%; border-radius: 99px; transition: width 1.5s ease, background 0.5s ease; }
.disk-row__val { font-size: 7px; min-width: 28px; text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }

/* Overlays */
.vignette { position: absolute; inset: 0; pointer-events: none; z-index: 5; opacity: 0; animation: vignette-pulse 4s ease-in-out infinite; background: radial-gradient(ellipse at center, transparent 50%, rgba(255,59,79,0.04) 100%); }
.scanline { position: absolute; inset: 0; pointer-events: none; z-index: 4; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px); }

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes badge-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes alert-slide-in { to { opacity: 1; transform: translateX(0); } }
@keyframes toast-in { to { opacity: 1; transform: translateX(0); } }
@keyframes vignette-pulse { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }

/* --- Toasts --- */
.toasts {
  position: absolute; top: 8px; right: 8px;
  display: flex; flex-direction: column; gap: 5px;
  z-index: 100; pointer-events: none;
}
.toast {
  background: #1a1215; border: 1px solid rgba(255,59,79,0.2);
  border-left: 3px solid var(--red); border-radius: 7px;
  padding: 9px 12px; min-width: 200px; max-width: 220px;
  opacity: 0; transform: translateX(30px);
  animation: toast-in 0.4s ease forwards;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px var(--red-glow);
}
.toast--amber {
  background: #1a1610; border-color: rgba(255,170,44,0.2);
  border-left-color: var(--amber); box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 0 16px var(--amber-glow);
}
.toast__header { display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.toast__icon { font-size: 9px; }
.toast__title { font-size: 8px; font-weight: 700; color: var(--text); font-family: var(--font); }
.toast__body { font-size: 7px; color: var(--text-dim); line-height: 1.4; }
.toast__time { font-size: 6.5px; color: var(--text-muted); margin-top: 3px; }

.problem__content { display: flex; flex-direction: column; gap: 2rem; }
.problem__pains { display: flex; flex-direction: column; gap: 1.25rem; }
.pain-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-md);
  border: 1px solid var(--border-card); background: rgba(255,255,255,0.01);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.pain-item::before {
  content: ''; position: absolute; inset: -400%;
  background: conic-gradient(from 0deg, transparent 40%, var(--green-500) 50%, transparent 60%);
  animation: rotateBorder 4s linear infinite;
  z-index: -2; opacity: 0; transition: opacity 0.3s var(--ease);
}
.pain-item::after {
  content: ''; position: absolute; inset: 1px;
  background: #222222; border-radius: inherit; z-index: -1;
}
.pain-item:hover {
  transform: translateY(-4px);
}
.pain-item:hover::before { opacity: 1; }
.pain-item__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(150,190,57,0.1); color: var(--green-500);
  border-radius: var(--radius-sm);
}
.pain-item__title { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.pain-item__desc { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; }

.problem__visual {
  position: relative; width: 100%; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  animation: float 8s ease-in-out infinite;
}
.problem__video-sequence {
  width: 100%; max-width: 480px; border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.pain-item__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm); background: rgba(150,190,57,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-500);
}
.problem__pains-3d {
  position: relative; 
  height: 440px; 
  margin-top: 0;
  perspective: 2000px;
}
.problem__3d-base {
  position: absolute;
  top: 0; left: 0; width: 85%; height: 320px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
  overflow: visible;
  display: flex;
}
.base-sidebar {
  width: 60px; height: 100%; border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding-top: 1.5rem;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
}
.base-sidebar span { width: 24px; height: 24px; background: rgba(255,255,255,0.03); border-radius: 4px; }
.base-content { flex: 1; padding: 2rem; position: relative; }
.base-header { height: 12px; width: 40%; background: rgba(255,255,255,0.05); border-radius: 99px; margin-bottom: 2rem; }
.base-search { height: 32px; width: 100%; background: rgba(255,255,255,0.03); border-radius: 6px; }

/* Notification Bell */
.base-bell {
  position: absolute; top: 1.25rem; right: 1.25rem; 
  cursor: pointer; color: rgba(255,255,255,0.3); 
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
}
.base-bell:hover { color: var(--green-500); transform: scale(1.1); }
.base-bell__dot {
  position: absolute; top: -1px; right: -1px; width: 6px; height: 6px; 
  background: #ff3b30; border-radius: 50%; box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
}
.base-bell__balloon {
  position: absolute; bottom: calc(100% + 15px); right: -10px; width: 240px;
  background: #1e1e1e; border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 12px; padding: 1rem; color: #fff; 
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-10px); transition: all 0.4s var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.base-bell__balloon::before {
  content: ''; position: absolute; bottom: -6px; right: 15px; 
  width: 12px; height: 12px; background: #1e1e1e; 
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transform: rotate(45deg);
}
.base-bell.active .base-bell__balloon {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.base-bell__balloon strong { 
  display: block; font-size: 0.75rem; margin-bottom: 0.5rem; 
  color: var(--green-500); letter-spacing: 0.05em; text-transform: uppercase;
}
.base-bell__balloon p { font-size: 0.7rem; color: var(--gray-400); margin: 0; line-height: 1.5; }

.pain-item {
  position: absolute;
  width: 90%; max-width: 380px;
  padding: 1.25rem 1.5rem; border-radius: var(--radius-lg);
  background: #282828;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  transition: all 0.4s var(--ease), opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 20;
}
.pain-item.reveal:not(.visible) {
  opacity: 0;
  transform: scale(0.5) translateY(60px) translateZ(-100px) rotateX(20deg) !important;
}
.pain-item:nth-child(2) { top: 70px; left: 100px; transform: rotateX(2deg) rotateY(-2deg) translateZ(20px); }
.pain-item:nth-child(3) { top: 180px; left: 140px; transform: rotateX(2deg) rotateY(-2deg) translateZ(40px); }
.pain-item:nth-child(4) { top: 290px; left: 80px; transform: rotateX(2deg) rotateY(-2deg) translateZ(60px); }

.pain-item:hover {
  transform: scale(1.05) translateZ(100px) rotateX(0) rotateY(0) !important;
  z-index: 100 !important;
  border-color: rgba(150,190,57,0.4);
  background: #333;
}
.pain-item__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(150,190,57,0.1); color: var(--green-500);
  border-radius: var(--radius-sm); margin-bottom: 0.5rem;
}
.pain-item__title { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.pain-item__desc { font-size: 0.78rem; color: #999; line-height: 1.4; }
.problem__visual-inner {
  display: flex; flex-direction: column; gap: 0.75rem; padding: 2rem; width: 100%;
}
.problem__visual-bar {
  height: 6px; border-radius: 99px;
  background: linear-gradient(90deg, rgba(150,190,57,0.8) var(--w, 70%), rgba(255,255,255,0.05) 0);
  transition: width 1.5s var(--ease);
}
.problem__visual-row {
  display: flex; align-items: center; gap: 1rem;
}
.problem__visual-label {
  font-size: 0.65rem; color: var(--gray-500); letter-spacing: 0.06em;
  text-transform: uppercase; min-width: 80px;
}
.problem__visual-val {
  font-size: 0.7rem; font-weight: 700; color: var(--white); margin-left: auto;
}

/* ═══════════════════════════════════════════
   ABOUT / SOLUTION
   ═══════════════════════════════════════════ */
#sobre { background: #4478AC; }
#sobre .about__title { color: var(--white); }
#sobre .about__text { color: rgba(255,255,255,0.85); }
#sobre .about__check { color: var(--white); }
#sobre .about__check svg { color: var(--green-400); }
#sobre .about__visual { 
  background: rgba(255,255,255,0.05); 
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
#sobre .about__visual-label { 
  color: rgba(255,255,255,0.6); 
  border-color: rgba(255,255,255,0.2); 
}

.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about__visual {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 1; background: #f8fafc;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 40px 80px rgba(0,0,0,0.03);
}
.about__visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(0,163,228,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(150,190,57,0.04) 0%, transparent 55%);
}
.about__visual-label {
  position: relative; font-size: 0.6rem; color: var(--gray-500);
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px dashed var(--gray-300); padding: 0.625rem 1rem; border-radius: var(--radius-sm);
}
.about__content { display: flex; flex-direction: column; gap: 1.75rem; }
.about__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--navy-900);
}
.about__text { font-size: 0.95rem; color: #4b5563; line-height: 1.8; }
.about__checks { 
  display: flex; flex-direction: column; gap: 1.5rem; 
  position: relative; padding-left: 2px;
}
.about__checks::before {
  content: ''; position: absolute; left: 18px; top: 20px; bottom: 20px;
  width: 1px; background: rgba(255,255,255,0.15);
}
.about__check {
  display: flex; align-items: center; gap: 1.25rem;
  position: relative; z-index: 1;
}
.about__check-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease);
}
.about__check:hover .about__check-icon {
  border-color: var(--green-400); color: var(--green-400);
  background: rgba(255,255,255,0.2);
  transform: scale(1.1); box-shadow: 0 8px 16px rgba(150,190,57,0.15);
}
.about__check-text {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.about__check-title { 
  font-size: 0.875rem; color: var(--white); font-weight: 700; 
  line-height: 1.3;
}
.about__check-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.7); font-weight: 400;
}

/* ═══════════════════════════════════════════
   FEATURE CARDS
   ═══════════════════════════════════════════ */
#diferenciais { background: #222222; }
#diferenciais .section__desc { margin-top: 20px; max-width: 590px; color: #fff; }

.features__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.55);
}
.feature-card__visual {
  height: 180px; background: #f4f4f4;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.feature-card__visual--icon { color: rgba(150,190,57,0.7); }
.feature-card__body {
  padding: 2.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.feature-card__title {
  font-size: 1.1rem; font-weight: 700; color: #111; letter-spacing: -0.01em;
}
.feature-card__text {
  font-size: 0.9rem; color: rgb(0 0 0 / 77%); line-height: 1.65;
}

/* ── Animated component: Uptime Monitor (card 1 – Confiabilidade) ── */
.fc-uptime {
  width: calc(100% - 2.5rem);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.fc-uptime__header {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.67rem; color: rgba(0,0,0,0.4); letter-spacing: 0.02em;
}
.fc-uptime__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #96be39; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(150,190,57,0.6);
  animation: fc-dot-ping 2.4s ease-in-out infinite;
}
@keyframes fc-dot-ping {
  0%   { box-shadow: 0 0 0 0   rgba(150,190,57,0.65); }
  70%  { box-shadow: 0 0 0 6px rgba(150,190,57,0); }
  100% { box-shadow: 0 0 0 0   rgba(150,190,57,0); }
}
.fc-uptime__bars { display: flex; flex-direction: column; gap: 0.5rem; }
.fc-uptime__row  { display: flex; align-items: center; gap: 0.55rem; }
.fc-uptime__lbl  {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(0,0,0,0.3); width: 20px; flex-shrink: 0;
}
.fc-uptime__track {
  flex: 1; height: 3px; background: rgba(0,0,0,0.08); border-radius: 2px; overflow: hidden;
}
.fc-uptime__fill {
  height: 100%; border-radius: 2px; width: 0%;
  background: #96be39;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-uptime__pct {
  font-size: 0.6rem; color: rgb(0 0 0 / 60%); width: 24px; text-align: right; flex-shrink: 0;
}
.fc-uptime__footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.55rem; border-top: 1px solid rgba(0,0,0,0.07);
}
.fc-uptime__uptime { font-size: 0.65rem; color: #6a9a1f; font-weight: 700; }
.fc-uptime__days   { font-size: 0.6rem;  color: rgb(0 0 0 / 60%); }

/* ── Animated component: Config Sliders (card 2 – Flexibilidade) ── */
.fc-config {
  width: calc(100% - 2.5rem);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.fc-config__header {
  display: flex; align-items: center; justify-content: space-between;
}
.fc-config__label {
  font-size: 0.67rem; color: rgba(0,0,0,0.38); letter-spacing: 0.02em;
}
.fc-config__tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6a9a1f; background: rgba(150,190,57,0.12);
  border-radius: 4px; padding: 2px 8px;
}
.fc-config__rows { display: flex; flex-direction: column; gap: 0.6rem; }
.fc-config__row  { display: flex; align-items: center; gap: 0.6rem; }
.fc-config__name {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(0,0,0,0.3); width: 46px; flex-shrink: 0;
}
.fc-config__slider {
  flex: 1; height: 4px; background: rgba(0,0,0,0.08); border-radius: 2px;
  overflow: visible; position: relative;
}
.fc-config__fill {
  height: 100%; border-radius: 2px; width: 0%; background: #96be39;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.fc-config__fill::after {
  content: ''; position: absolute; right: -3px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: #96be39;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px rgba(150,190,57,0.35);
  transition: opacity 1.2s ease;
}
.fc-config__val {
  font-size: 0.72rem; font-weight: 700; color: #111;
  width: 52px; text-align: right; flex-shrink: 0; font-variant-numeric: tabular-nums;
}
.fc-config__footer {
  padding-top: 0.55rem; border-top: 1px solid rgba(0,0,0,0.07);
}
.fc-config__hint {
  font-size: 0.62rem; color: #6a9a1f; font-weight: 600;
}

/* ── Animated component: Security Scan (card 3 – Proteção Multinível) ── */
.fc-shield {
  width: calc(100% - 2.5rem);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.fc-shield__checks { display: flex; flex-direction: column; gap: 0.42rem; }
.fc-shield__item {
  display: flex; align-items: center; gap: 0.55rem;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fc-shield__item.fc-done { opacity: 1; transform: translateX(0); }
.fc-shield__circle {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.fc-shield__item.fc-done .fc-shield__circle { background: #96be39; }
.fc-shield__circle svg { opacity: 0; transition: opacity 0.2s ease 0.15s; }
.fc-shield__item.fc-done .fc-shield__circle svg { opacity: 1; }
.fc-shield__layer {
  font-size: 0.71rem; font-weight: 600; color: rgba(0,0,0,0.35);
  transition: color 0.3s ease;
}
.fc-shield__item.fc-done .fc-shield__layer { color: rgba(0,0,0,0.72); }
.fc-shield__status {
  display: flex; align-items: center; gap: 0.45rem;
  padding-top: 0.55rem; border-top: 1px solid rgba(0,0,0,0.07);
  opacity: 0; transition: opacity 0.4s ease;
  font-size: 0.67rem; font-weight: 700; color: #6a9a1f;
}
.fc-shield__status.fc-done { opacity: 1; }
.fc-shield__sdot {
  width: 6px; height: 6px; border-radius: 50%; background: #96be39; flex-shrink: 0;
  animation: fc-dot-ping 2.4s ease-in-out infinite;
}

/* ── Animated component: TCO Chart (card 4 – Baixo TCO) ── */
.fc-tco {
  width: calc(100% - 2.5rem);
  display: flex; flex-direction: column; gap: 0.55rem;
}
.fc-tco__header {
  display: flex; justify-content: space-between; align-items: center;
}
.fc-tco__hlabel { font-size: 0.67rem; color: rgba(0,0,0,0.38); letter-spacing: 0.02em; }
.fc-tco__legend {
  display: flex; align-items: center; gap: 0.9rem;
}
.fc-tco__leg {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.58rem; color: rgba(0,0,0,0.38); font-weight: 600;
}
.fc-tco__leg-line {
  width: 14px; height: 2px; border-radius: 1px;
}
.fc-tco__leg-line--ref  { background: rgba(0,0,0,0.2); }
.fc-tco__leg-line--intel { background: #96be39; }
.fc-tco__svg { width: 100%; display: block; overflow: visible; }
.fc-tco__path {
  stroke-dasharray: 235;
  stroke-dashoffset: 235;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.fc-tco__path.fc-done { stroke-dashoffset: 0; }
.fc-tco__dot {
  transition: opacity 0.3s ease 1.3s;
  opacity: 0;
}
.fc-tco__dot.fc-done { opacity: 1; }
.fc-tco__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.5rem; border-top: 1px solid rgba(0,0,0,0.07);
}
.fc-tco__kpi { display: flex; align-items: baseline; gap: 0.15rem; }
.fc-tco__num {
  font-size: 1.5rem; font-weight: 800; color: #111;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.fc-tco__unit { font-size: 0.78rem; font-weight: 700; color: #6a9a1f; }
.fc-tco__tag  {
  font-size: 0.6rem; color: rgba(0,0,0,0.32); font-weight: 500;
}

/* ── Animated component: Support Network Map (card 5 – Suporte Local) ── */
.fc-map {
  width: 100%; height: 100%; align-self: stretch;
  display: flex; flex-direction: column;
  padding: 0.9rem 1rem 0.7rem;
  box-sizing: border-box;
}
.fc-map__svg { flex: 1; width: 100%; display: block; overflow: visible; min-height: 0; }
.fc-map__edge {
  stroke: rgba(150,190,57,0.22); stroke-width: 1;
  opacity: 0; transition: opacity 0.4s ease;
}
.fc-map__edge.fc-done { opacity: 1; }
.fc-map__ring {
  fill: none; stroke: #96be39; stroke-width: 1;
  opacity: 0;
  animation: fc-map-ring 2.4s ease-out infinite;
  animation-play-state: paused;
}
.fc-map__ring.fc-done { opacity: 1; animation-play-state: running; }
@keyframes fc-map-ring {
  0%   { r: 5; opacity: 0.6; }
  100% { r: 13; opacity: 0; }
}
.fc-map__node {
  opacity: 0;
  transform-box: fill-box; transform-origin: center;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.fc-map__node.fc-done { opacity: 1; transform: scale(1); }
.fc-map__label-txt {
  font-size: 6.5px; fill: rgba(0,0,0,0.4); font-family: inherit;
}
.fc-map__footer {
  display: flex; align-items: center; gap: 0.45rem;
  padding-top: 0.4rem; border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 0.67rem; font-weight: 700; color: #6a9a1f;
}
.fc-map__sdot {
  width: 6px; height: 6px; border-radius: 50%; background: #96be39; flex-shrink: 0;
  animation: fc-dot-ping 2.4s ease-in-out infinite;
}

/* ── Animated component: CPU Core Grid (card 6 – Intel® Xeon® 6) ── */
.fc-cpu {
  width: calc(100% - 2rem);
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
}
.fc-cpu__header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
}
.fc-cpu__hlabel { font-size: 0.67rem; color: rgba(0,0,0,0.38); }
.fc-cpu__badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #6a9a1f; background: rgba(150,190,57,0.12); border-radius: 4px; padding: 2px 7px;
}
.fc-cpu__grid {
  display: grid;
  grid-template-columns: repeat(8, 18px);
  grid-template-rows: repeat(4, 18px);
  gap: 3px;
}
.fc-cpu__core {
  width: 18px; height: 18px; border-radius: 3px;
  background: rgba(0,0,0,0.07);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.fc-cpu__core.fc-lit {
  background: #96be39;
  box-shadow: 0 0 5px rgba(150,190,57,0.35);
}
.fc-cpu__footer {
  width: 100%; display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 0.5rem; border-top: 1px solid rgba(0,0,0,0.07);
}
.fc-cpu__kpi { display: flex; align-items: baseline; gap: 0.15rem; }
.fc-cpu__num  {
  font-size: 1.5rem; font-weight: 800; color: #111;
  font-variant-numeric: tabular-nums; line-height: 1;
  font-family: 'Courier New', monospace;
}
.fc-cpu__unit { font-size: 0.7rem; color: rgba(0,0,0,0.42); }
.fc-cpu__gen  { font-size: 0.62rem; font-weight: 700; color: #6a9a1f; }

/* ═══════════════════════════════════════════
   SOLUÇÕES
   ═══════════════════════════════════════════ */
#solucoes .section__desc { margin-top: 20px; }

.sol-showcase {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 4rem; gap: 0;
}

/* Produto — entrada estilo Apple */
.sol-product {
  max-width: 1080px; width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: scale(0.88) translateY(48px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition:
    opacity  1.0s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.3s cubic-bezier(0.22, 1, 0.36, 1),
    filter   0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.sol-product.sol-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
}
.sol-product__img {
  width: 100%; height: auto; display: block;
  margin-top: -4px;
}

/* Nodes — hub + cards abaixo do vídeo */
.sol-nodes {
  position: relative;
  width: 100%; max-width: 920px;
  height: 460px;
  margin: 3rem auto 0;
}
.sol-nodes__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; overflow: visible;
}
.sol-node-line {
  fill: none;
  stroke: rgba(0,0,0,0.1);
  stroke-width: 1;
  stroke-dasharray: 5 5;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.sol-node-dot {
  fill: rgba(150,190,57,0.6);
  opacity: 0;
  transition: opacity 0.4s ease 0.8s;
}
.sol-nodes.sol-done .sol-node-line { stroke-dashoffset: 0; }
.sol-nodes.sol-done .sol-node-dot  { opacity: 1; }
.sol-nodes.sol-done .sol-node-line:nth-child(1) { transition-delay: 0.0s; }
.sol-nodes.sol-done .sol-node-line:nth-child(2) { transition-delay: 0.12s; }
.sol-nodes.sol-done .sol-node-line:nth-child(3) { transition-delay: 0.06s; }
.sol-nodes.sol-done .sol-node-line:nth-child(4) { transition-delay: 0.18s; }

/* Hub central */
.sol-hub {
  position: absolute; left: 50%; top: 10px;
  transform: translateX(-50%);
  text-align: center;
  padding: 0.9rem 2rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sol-hub.sol-done { opacity: 1; }
.sol-hub__label {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #96be39; margin-bottom: 0.3rem;
}
.sol-hub__title { font-size: 0.9rem; font-weight: 700; color: #111; }

/* Cards */
.sol-card {
  position: absolute; width: 305px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px; padding: 1.25rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  opacity: 0;
  transition: opacity 0.5s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sol-card.sol-done { opacity: 1; }
.sol-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.13); transform: translateY(-3px); }
.sol-card--tl { left: 0;   top: 150px; }
.sol-card--bl { left: 0;   top: 330px; }
.sol-card--tr { right: 0;  top: 150px; }
.sol-card--br { right: 0;  top: 330px; }

.sol-card__num {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #96be39; margin-bottom: 0.45rem;
}
.sol-card__title { font-size: 0.82rem; font-weight: 700; color: #111; margin-bottom: 0.35rem; line-height: 1.35; }
.sol-card__text  { font-size: 0.73rem; color: rgba(0,0,0,0.55); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
/* FAQ — light theme (#F6F6F6 background) */
#faq { background: #F6F6F6; }
#faq .section__desc { margin-top: 20px; max-width: 320px; }

.faq__list { display: flex; flex-direction: column; gap: 8px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.faq-item:first-child { border-top: none; }
.faq-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.faq-item__trigger {
  width: 100%; padding: 1.4rem 1.5rem; background: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; text-align: left; cursor: pointer;
  transition: color 0.2s ease;
}
.faq-item__trigger:hover .faq-item__question { color: #96be39; }
.faq-item__question {
  font-size: 0.95rem; font-weight: 700; color: #111;
  transition: color 0.2s ease; line-height: 1.4;
}
.faq-item.active .faq-item__question { color: #96be39; }
.faq-item__icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s var(--ease); color: rgba(0,0,0,0.35);
}
.faq-item.active .faq-item__icon {
  border-color: #96be39; color: #96be39;
  background: rgba(150,190,57,0.08); transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.active .faq-item__answer { max-height: 300px; }
.faq-item__answer-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.875rem; color: rgba(0,0,0,0.55); line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  position: relative; padding: 7rem 0; overflow: hidden;
}
.cta-section__bg {
  position: absolute; inset: 0;
  background: #222;
}
.cta-section__content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.cta-section__left { display: flex; flex-direction: column; gap: 1.75rem; }
.cta-section__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
}
.cta-section__desc { font-size: 1rem; color: var(--gray-300); line-height: 1.75; }
.cta-section__trust { display: flex; flex-direction: column; gap: 0.625rem; }
.cta-section__trust-item {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.8rem; color: var(--gray-400); font-weight: 500;
}
.cta-section__trust-item svg { color: var(--green-500); flex-shrink: 0; }

/* Contact Form */
.contact-form {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.contact-form__title {
  font-size: 1.2rem; font-weight: 800; color: #111; margin-bottom: 0.375rem;
}
.contact-form__desc {
  font-size: 0.82rem; color: rgba(0,0,0,0.5); margin-bottom: 1.75rem; line-height: 1.6;
}
.contact-form__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.62rem; font-weight: 700; color: rgba(0,0,0,0.45);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form-input {
  font-family: var(--font); font-size: 0.875rem; color: #111;
  background: #f5f5f5; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm); padding: 13px 15px; outline: none;
  transition: all 0.25s var(--ease);
}
.form-input::placeholder { color: rgba(0,0,0,0.3); }
.form-input:focus { border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 3px rgba(150,190,57,0.1); }
textarea.form-input { resize: vertical; min-height: 96px; }

/* RD Station Form Override */
.contact-form .bricks-form { padding: 0 !important; }
.contact-form .bricks-form .bricks-form__fieldset { padding: 0 !important; }
.contact-form .bricks-form label.bricks-form__label {
  font-family: var(--font) !important; font-size: 0.62rem !important;
  font-weight: 700 !important; color: rgba(0,0,0,0.45) !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  margin-bottom: 0.375rem !important;
}
.contact-form .bricks-form input.bricks-form__input,
.contact-form .bricks-form select.bricks-form__input,
.contact-form .bricks-form textarea.bricks-form__input {
  font-family: var(--font) !important; font-size: 0.875rem !important; color: #111 !important;
  background: #f5f5f5 !important; border: 1.5px solid rgba(0,0,0,0.1) !important;
  border-radius: var(--radius-sm) !important; padding: 13px 15px !important;
  outline: none !important; transition: all 0.25s var(--ease) !important;
  box-shadow: none !important;
}
.contact-form .bricks-form input.bricks-form__input::placeholder,
.contact-form .bricks-form textarea.bricks-form__input::placeholder {
  color: rgba(0,0,0,0.3) !important;
}
.contact-form .bricks-form input.bricks-form__input:focus,
.contact-form .bricks-form select.bricks-form__input:focus,
.contact-form .bricks-form textarea.bricks-form__input:focus {
  border-color: var(--green-500) !important; background: #fff !important;
  box-shadow: 0 0 0 3px rgba(150,190,57,0.1) !important;
}
.contact-form .bricks-form textarea.bricks-form__input {
  resize: vertical !important; min-height: 96px !important;
}
.contact-form .bricks-form .bricks-form__submit {
  background: transparent !important; padding: 0 !important;
  border: none !important;
}
.contact-form .bricks-form .bricks-form__submit button {
  font-family: var(--font) !important; font-size: 0.82rem !important;
  font-weight: 700 !important; letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  background: var(--green-500) !important; color: var(--navy-900) !important;
  border: none !important; border-radius: 999px !important;
  padding: 18px 36px !important; cursor: pointer !important;
  width: 100% !important; transition: all 0.3s var(--ease) !important;
}
.contact-form .bricks-form .bricks-form__submit button:hover {
  background: var(--green-600) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(150,190,57,0.3) !important;
}

.form-select {
  font-family: var(--font); font-size: 0.875rem; color: #111;
  background: #f5f5f5; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm); padding: 13px 15px; outline: none;
  transition: all 0.25s var(--ease); appearance: none; cursor: pointer;
}
.form-select:focus { border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 3px rgba(150,190,57,0.1); }
.form-select option { background: #fff; color: #111; }

/* ═══════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#preloader.preloader--done { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(150,190,57,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,190,57,0.09) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 90%);
}
.preloader__circuit {
  position: absolute; inset: -5% -5%; width: 110%; height: 110%;
  opacity: 0.22; stroke-width: 1.25; stroke: #96be39; fill: none;
  filter: drop-shadow(0 0 4px rgba(150,190,57,0.6));
}
.preloader__circuit path {
  stroke-dasharray: 2000; stroke-dashoffset: 2000;
  animation: trace 9s ease-in-out infinite alternate;
}
.preloader__circuit path:nth-child(2) { animation-duration: 12s; animation-direction: alternate-reverse; }
.preloader__circuit path:nth-child(3) { animation-duration: 7s; }

.preloader__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
  animation: preloaderFadeIn 0.6s ease both;
}
.preloader__logo { height: 36px; width: auto; display: block; }
.preloader__bar-wrap {
  width: 180px; height: 2px;
  background: rgba(150,190,57,0.15); border-radius: 2px; overflow: hidden;
}
.preloader__bar {
  height: 100%; width: 0%;
  background: #96be39; border-radius: 2px;
  transition: width 0.25s ease;
}
.preloader__pct {
  font-family: var(--font); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(0,0,0,0.3);
}
@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(0,0,0,0.08); padding: 1.75rem 0;
  background: #ececec;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer__copy { font-size: 0.75rem; color: rgba(0,0,0,0.5); }
.footer__logo img { height: 28px; width: auto; display: block; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__text { align-items: center; }
  .hero__subtitle { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { margin: 0; }
  .problem__grid { grid-template-columns: 1fr; }
  .problem__visual { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section__content { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .navbar__links { display: none; }
  .navbar__inner { padding: 0 17px; }
  .navbar__logo img { height: 26px; }
  .navbar__cta { font-size: 0.52rem; }
  .hero__title { font-size: 2.4rem; }
  .hero__features { grid-template-columns: 1fr; gap: 1rem; margin-top: 0; }
  .hero__scroll { display: none; }
  .hero__content { padding: 2rem 2rem 8rem; }
  .dashboard { grid-template-columns: 1fr 1fr; height: auto; }
  .monitor-card--span2 { grid-column: 1 / -1; grid-row: span 1; }
  .h-feature::after { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .problem__pains-3d { perspective: none; }
  .problem__3d-base { width: 92%; }
  .pain-item:nth-child(2) { left: 20px; }
  .pain-item:nth-child(3) { left: 40px; }
  .pain-item:nth-child(4) { left: 10px; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sol-product { max-width: 100%; height: 180px; }
  .sol-nodes { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 2rem; }
  .sol-nodes__svg { display: none; }
  .sol-hub { position: static; transform: none; white-space: normal; grid-column: 1 / -1; margin-bottom: 0.5rem; }
  .sol-card { position: static; width: auto; opacity: 1 !important; transform: none !important; }
  .contact-form { padding: 2.5rem 1rem; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }
}

/* ═══════════════════════════════════════════
   PRINT / REDUCED MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
