/* ============================================================
   NG Billing v2 — style-v2.css
   Diretrizes: Relatório de Estrutura e Conteúdo
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ng-orange:      #EB7601;
  --ng-orange-l:    #FF8C1A;
  --ng-orange-d:    #C46000;
  --ng-dark:        #1D252E;
  --ng-navy:        #000080;
  --ng-blue:        #1D252E;
  --ng-black:       #000000;
  --ng-white:       #FFFFFF;
  --ng-off-white:   #F2F0EB;
  --ng-text-dark:   #1D252E;
  --ng-text-mid:    #445566;
  --ng-muted:       #7A8FA0;
  --ng-border-d:    rgba(255,255,255,0.08);
  --ng-border-l:    rgba(29,37,46,0.12);
  --font:           'Poppins', system-ui, sans-serif;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --tr:             0.25s var(--ease);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--ng-white); color: var(--ng-text-dark); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ng-dark); }
::-webkit-scrollbar-thumb { background: var(--ng-orange); border-radius: 3px; }

/* ============================================================
   NAVBAR — Glassmorphism permanente
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center; padding: 0 1.5rem;
  background: rgba(29,37,46,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--tr), box-shadow var(--tr);
}
.navbar.scrolled { background: rgba(29,37,46,0.97); box-shadow: 0 4px 32px rgba(0,0,0,0.4); }

.nav-container {
  max-width: 1280px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
}
.nav-logo img { height: 30px; width: auto; }

.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 0.25rem; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.875rem; font-weight: 500;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-nav-outline {
  color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.25); text-decoration: none;
  transition: border-color var(--tr), background var(--tr);
}
.btn-nav-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); color: #fff; }

.btn-nav-cta {
  background: var(--ng-orange); color: #fff;
  font-size: 0.875rem; font-weight: 700;
  padding: 0.5rem 1.25rem; border-radius: 8px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(240,120,0,0);
  transition: background var(--tr), box-shadow var(--tr), transform var(--tr);
}
.btn-nav-cta:hover { background: var(--ng-orange-l); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(240,120,0,0.4); }

.menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: transparent; }
.menu-btn span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(29,37,46,0.99); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ng-border-d); z-index: 999;
  padding: 1.5rem; transform: translateY(-110%); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; }
.mobile-drawer a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 0.85rem 0; border-bottom: 1px solid var(--ng-border-d); transition: color var(--tr); }
.mobile-drawer a:hover { color: var(--ng-orange); }
.mobile-drawer .btn-drawer-cta { display: block; margin-top: 1.25rem; background: var(--ng-orange); color: #fff; text-align: center; padding: 0.85rem; border-radius: 8px; font-weight: 700; border-bottom: none; }
.mobile-drawer .btn-drawer-cta:hover { background: var(--ng-orange-l); color: #fff; }

/* ============================================================
   UTILITÁRIOS GERAIS
   ============================================================ */
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ng-orange); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
  line-height: 1.15; color: var(--ng-text-dark); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-title.light { color: #fff; }
.section-subtitle { font-size: 1.05rem; color: var(--ng-text-mid); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.section-subtitle.light { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; margin-bottom: 3.5rem; padding: 0 1.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ng-orange); color: #fff; font-weight: 700; font-size: 1rem;
  padding: 0.9rem 1.85rem; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(240,120,0,0.35);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.btn-primary:hover { background: var(--ng-orange-l); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,120,0,0.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--ng-text-dark); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.85rem; border-radius: 10px; text-decoration: none;
  border: 1.5px solid var(--ng-border-l); transition: border-color var(--tr), background var(--tr);
}
.btn-secondary:hover { border-color: var(--ng-navy); background: rgba(29,37,46,0.04); }
.btn-secondary.light { color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-secondary.light:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   HERO — Stripe-inspired: dark centered, animated gradient mesh
   ============================================================ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-start; padding-top: 72px;
  background: var(--ng-dark);
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(235,118,1,0.14) 0%, transparent 70%);
  top: -220px; right: -180px;
  animation: orbFloat1 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,118,1,0.06) 0%, transparent 70%);
  bottom: -80px; left: -160px;
  animation: orbFloat2 13s ease-in-out infinite;
}
.hero-orb-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(242,240,235,0.04) 0%, transparent 70%);
  top: 55%; left: 42%; transform: translate(-50%,-50%);
  animation: orbFloat3 15s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,55px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.12)} }

/* Subtle grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 25%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 5.5rem 1.5rem 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(235,118,1,0.1); border: 1px solid rgba(235,118,1,0.28);
  color: var(--ng-orange);
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--ng-orange); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Title */
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 800;
  line-height: 1.08; color: #fff;
  margin-bottom: 1.5rem; letter-spacing: -0.03em; max-width: 900px;
}
.hero-title .accent { color: var(--ng-orange); }

/* Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.72; margin-bottom: 2.5rem; max-width: 600px;
}

/* Actions */
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
  margin-bottom: 2rem;
}

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.8); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 1.85rem; border-radius: 10px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: border-color var(--tr), background var(--tr), color var(--tr);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); color: #fff; }

/* Trust */
.hero-trust { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 3.5rem; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  background: var(--ng-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 800; color: #fff;
  margin-left: -8px;
}
.hero-trust-avatars .hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.4; }
.hero-trust-text strong { color: rgba(255,255,255,0.82); }

/* ---- Browser / dashboard mockup ---- */
.hero-browser {
  width: 100%; max-width: 1060px;
  border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1); border-bottom: none;
  box-shadow:
    0 -20px 60px rgba(0,0,0,0.25),
    0 40px 100px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
  background: #111820;
}

.hero-browser-bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.browser-dot.red { background: #FF5F57; }
.browser-dot.yellow { background: #FFBD2E; }
.browser-dot.green { background: #28C840; }
.browser-url-bar {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 0.26rem 0.75rem;
  font-size: 0.62rem; color: rgba(255,255,255,0.28); font-family: monospace;
  margin: 0 auto; max-width: 280px;
}

.hero-browser-content {
  display: grid; grid-template-columns: 54px 1fr; min-height: 380px;
}

/* Sidebar */
.dash-sidebar {
  background: rgba(0,0,0,0.22); border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 0; gap: 0.5rem;
}
.dash-sidebar-logo {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--ng-orange); color: #fff;
  font-size: 0.58rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem;
}
.dash-sidebar-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.dash-nav-item {
  width: 32px; height: 32px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.28); cursor: default;
  transition: background 0.2s, color 0.2s;
}
.dash-nav-item.active { background: rgba(235,118,1,0.15); color: var(--ng-orange); }
.dash-nav-item:not(.active):hover { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); }

/* Main area */
.dash-main { display: flex; flex-direction: column; overflow: hidden; }

.dash-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.dash-topbar-title { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.65); }
.dash-topbar-actions { display: flex; align-items: center; gap: 0.65rem; }
.dash-topbar-period {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.6rem; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  padding: 0.2rem 0.5rem; border-radius: 5px;
}
.dash-topbar-avatar {
  width: 24px; height: 24px; border-radius: 6px;
  background: linear-gradient(135deg, var(--ng-orange), var(--ng-orange-d));
  color: #fff; font-size: 0.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Stats grid */
.dash-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0.6rem;
  padding: 0.75rem 1.25rem;
}
.dash-stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 0.6rem 0.7rem;
}
.dash-stat-label { font-size: 0.52rem; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.dash-stat-value { font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 0.18rem; }
.dash-stat-trend { font-size: 0.48rem; font-weight: 600; }
.dash-stat-trend.up { color: #34D399; }
.dash-stat-trend.good { color: #34D399; }

/* Bottom: chart + transactions */
.dash-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  padding: 0 1.25rem 1rem; flex: 1;
}

/* Chart */
.dash-chart-wrap {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 0.75rem;
  display: flex; flex-direction: column;
}
.dash-chart-header { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.65rem; }
.dash-chart-title { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.58); }
.dash-chart-subtitle { font-size: 0.52rem; color: rgba(255,255,255,0.22); }
.dash-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 80px; flex: 1;
}
.dash-bar { flex: 1; background: rgba(235,118,1,0.2); border-radius: 3px 3px 0 0; }
.dash-bar.active { background: var(--ng-orange); }
.dash-bars-labels {
  display: flex; justify-content: space-between; margin-top: 0.35rem;
  font-size: 0.43rem; color: rgba(255,255,255,0.2);
}

/* Transactions */
.dash-transactions {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px; padding: 0.75rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.dash-tx-header { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.58); margin-bottom: 0.2rem; }
.dash-tx-row {
  display: flex; align-items: center; gap: 0.55rem;
  padding-top: 0.35rem; border-top: 1px solid rgba(255,255,255,0.04);
}
.dash-tx-avatar {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.52rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.dash-tx-info { flex: 1; min-width: 0; }
.dash-tx-name { font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.68); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-tx-sub { font-size: 0.48rem; color: rgba(255,255,255,0.28); }
.dash-tx-badge { font-size: 0.48rem; font-weight: 700; padding: 0.15rem 0.45rem; border-radius: 100px; white-space: nowrap; }
.dash-tx-badge.ok { background: rgba(52,211,153,0.14); color: #34D399; }
.dash-tx-badge.warn { background: rgba(251,191,36,0.14); color: #FBBF24; }

/* ============================================================
   PROOF BAR — Logos em cinza, hover = cor
   ============================================================ */
.proof-bar { background: var(--ng-off-white); border-top: 1px solid var(--ng-border-l); border-bottom: 1px solid var(--ng-border-l); padding: 2rem 1.5rem; }
.proof-bar-inner { max-width: 1280px; margin: 0 auto; }
.proof-bar-label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ng-muted); margin-bottom: 1.5rem; }
.proof-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem 2.5rem; }
.proof-logo {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: #C2C7CC; transition: color var(--tr); cursor: default; padding: 0.3rem 0;
}
.proof-logo:hover { color: var(--ng-navy); }

/* ============================================================
   SOLUTIONS GRID — 4 cards interativos
   ============================================================ */
.solutions {
  padding: 6rem 1.5rem; background: var(--ng-white); position: relative; overflow: hidden;
}
/* Curvas marca d'água */
.solutions::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 700'%3E%3Cpath d='M0,350 C240,150 480,550 720,350 S1200,150 1440,350' fill='none' stroke='%231D252E' stroke-width='1.5' opacity='0.05'/%3E%3Cpath d='M0,450 C300,250 600,650 900,400 S1200,100 1440,300' fill='none' stroke='%231D252E' stroke-width='1' opacity='0.035'/%3E%3C/svg%3E");
  background-size: cover; background-position: center;
}
.solutions-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.solutions-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 2rem;
}
.solution-card {
  background: #fff; border: 1.5px solid var(--ng-border-l); border-radius: 16px;
  padding: 2rem; cursor: pointer; position: relative; overflow: hidden;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.solution-card:hover { border-color: rgba(235,118,1,0.35); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-3px); }
.solution-card.active { border-color: var(--ng-orange); box-shadow: 0 8px 40px rgba(240,120,0,0.12); transform: translateY(-3px); }

.solution-icon {
  width: 50px; height: 50px; border-radius: 12px; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(240,120,0,0.12), rgba(240,120,0,0.05));
  border: 1px solid rgba(240,120,0,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--ng-orange);
}
.solution-name { font-size: 1.05rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.4rem; }
.solution-teaser { font-size: 0.855rem; color: var(--ng-text-mid); line-height: 1.6; }

.solution-arrow {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ng-orange); display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: opacity var(--tr), transform var(--tr);
}
.solution-card:hover .solution-arrow,
.solution-card.active .solution-arrow { opacity: 1; transform: scale(1.05); }

/* Painel de detalhes */
.solution-detail {
  background: var(--ng-black);
  border-radius: 20px; padding: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; min-height: 260px;
  transition: opacity 0.3s var(--ease);
}
.solution-detail-title { font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.solution-detail-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; }
.solution-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.solution-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.solution-features li::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--ng-orange); margin-top:0.42rem; flex-shrink:0; }
.solution-detail-visual { display: flex; align-items: center; justify-content: center; }
.solution-detail-icon { width: 110px; height: 110px; border-radius: 24px; background: rgba(240,120,0,0.1); border: 1px solid rgba(240,120,0,0.2); display: flex; align-items: center; justify-content: center; color: var(--ng-orange); }

/* ============================================================
   ROI — "Não é apenas software, é eficiência financeira"
   ============================================================ */
.roi {
  padding: 6rem 1.5rem;
  background: var(--ng-black);
  position: relative; overflow: hidden;
}
.roi::before {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M0,300 C360,100 720,500 1080,300 S1350,100 1440,250' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
}
.roi-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.roi-header { text-align: center; margin-bottom: 3.5rem; }
.roi-header h2 { color: #fff; margin-bottom: 0.75rem; }
.roi-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }

.roi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 3rem; }
.roi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem 1.5rem; text-align: center;
  transition: border-color var(--tr), background var(--tr);
}
.roi-card:hover { border-color: rgba(240,120,0,0.4); background: rgba(240,120,0,0.05); }
.roi-number { font-size: 2.4rem; font-weight: 800; color: var(--ng-orange); line-height: 1; margin-bottom: 0.5rem; }
.roi-label { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

.roi-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.roi-benefit {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem;
  background: rgba(255,255,255,0.03); border-radius: 12px; border: 1px solid rgba(255,255,255,0.06);
}
.roi-benefit-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(240,120,0,0.15); display: flex; align-items: center; justify-content: center; color: var(--ng-orange); flex-shrink: 0; }
.roi-benefit-title { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.roi-benefit-text { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ============================================================
   PLATFORM — "Dores" hierarchy
   ============================================================ */
.platform { padding: 6rem 1.5rem; background: var(--ng-off-white); }
.platform-inner { max-width: 1280px; margin: 0 auto; }
.platform-dores { display: flex; flex-direction: column; gap: 5rem; }
.platform-dor { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.platform-dor.reverse { direction: rtl; }
.platform-dor.reverse > * { direction: ltr; }

.dor-question { font-size: 1.45rem; font-weight: 800; color: var(--ng-text-dark); margin-bottom: 0.85rem; line-height: 1.3; }
.dor-question em { color: var(--ng-orange); font-style: normal; }
.dor-answer { font-size: 0.9rem; color: var(--ng-text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.dor-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dor-tag { display: inline-flex; align-items: center; gap: 0.35rem; background: rgba(29,37,46,0.06); border: 1px solid rgba(29,37,46,0.12); color: var(--ng-navy); font-size: 0.76rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 100px; }
.dor-tag svg { color: var(--ng-orange); }

.dor-visual { background: #fff; border-radius: 20px; padding: 2rem; box-shadow: 0 8px 40px rgba(29,37,46,0.08); min-height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.dor-visual-flow { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.dor-flow-step { background: var(--ng-off-white); border: 1.5px solid var(--ng-border-l); border-radius: 10px; padding: 0.6rem 1rem; font-size: 0.78rem; font-weight: 600; color: var(--ng-text-dark); text-align: center; }
.dor-flow-step.highlight { background: linear-gradient(135deg, rgba(240,120,0,0.12), rgba(240,120,0,0.05)); border-color: rgba(240,120,0,0.3); color: var(--ng-orange); }
.dor-flow-arrow { color: var(--ng-muted); font-size: 0.9rem; }

/* ============================================================
   NFCOM — Simulador + Tabela comparativa
   ============================================================ */
.nfcom { padding: 6rem 1.5rem; background: var(--ng-white); position: relative; overflow: hidden; }
.nfcom::before {
  content:''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M1440,200 C1100,50 800,500 500,250 S200,450 0,200' fill='none' stroke='%231D252E' stroke-width='1.5' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
}
.nfcom-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.nfcom-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.nfcom-copy .section-title { text-align: left; }
.nfcom-copy .section-subtitle { text-align: left; max-width: none; margin: 0; margin-bottom: 1.5rem; }

.nfcom-simulator {
  background: var(--ng-off-white); border: 1.5px solid var(--ng-border-l);
  border-radius: 16px; padding: 2rem;
}
.simulator-header { font-size: 0.85rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 1.25rem; }
.simulator-question { font-size: 1rem; font-weight: 600; color: var(--ng-text-dark); margin-bottom: 0.5rem; }
.simulator-range-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.simulator-range {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--ng-orange) 30%, #D1D5DB 30%);
}
.simulator-range::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--ng-orange); box-shadow: 0 2px 8px rgba(240,120,0,0.4); cursor: pointer; }
.simulator-value { font-size: 1.4rem; font-weight: 800; color: var(--ng-orange); min-width: 80px; text-align: right; }
.simulator-labels { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--ng-muted); margin-bottom: 1.25rem; }
.simulator-result { background: #fff; border-radius: 12px; padding: 1rem 1.25rem; border: 1px solid var(--ng-border-l); font-size: 0.875rem; color: var(--ng-text-mid); line-height: 1.6; }
.simulator-result strong { color: var(--ng-text-dark); }

/* Comparison table */
.comparison-wrap { overflow-x: auto; border-radius: 16px; box-shadow: 0 4px 32px rgba(29,37,46,0.08); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { padding: 1.1rem 1.5rem; font-size: 0.875rem; font-weight: 700; text-align: left; }
.comparison-table th:first-child { background: #F2F0EB; color: var(--ng-text-mid); width: 28%; }
.comparison-table th.manual-col { background: #EBEBEB; color: var(--ng-text-mid); }
.comparison-table th.ng-col { background: var(--ng-black); color: #fff; }
.comparison-table th.ng-col .ng-badge { display: inline-block; background: var(--ng-orange); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; margin-left: 0.5rem; vertical-align: middle; }
.comparison-table td { padding: 0.9rem 1.5rem; font-size: 0.855rem; border-top: 1px solid #EBEBEB; vertical-align: top; line-height: 1.5; }
.comparison-table tr:nth-child(even) td { background: #FAFAFA; }
.comparison-table td:first-child { font-weight: 600; color: var(--ng-text-dark); }
.comparison-table td.manual { color: #9CA3AF; }
.comparison-table td.ng-cell { color: var(--ng-navy); font-weight: 600; }
.check { color: var(--ng-orange); margin-right: 0.25rem; }
.cross { color: #CBD5E0; margin-right: 0.25rem; }

/* ============================================================
   CASES — Cards com títulos de resultado
   ============================================================ */
.cases { padding: 6rem 1.5rem; background: var(--ng-black); position: relative; overflow: hidden; }
.cases::before {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M0,300 C360,100 720,500 1080,300 S1350,100 1440,200' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.04'/%3E%3C/svg%3E");
  background-size: cover;
}
.cases-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }

.clients-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 4rem; }
.client-chip {
  padding: 0.45rem 1.1rem; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 600;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.client-chip:hover { background: rgba(240,120,0,0.12); border-color: rgba(240,120,0,0.3); color: #fff; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.testimonial-card:hover { border-color: rgba(240,120,0,0.3); background: rgba(240,120,0,0.04); transform: translateY(-4px); }

.testimonial-result {
  display: inline-block; background: rgba(240,120,0,0.15); color: var(--ng-orange);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 100px; margin-bottom: 0.85rem;
}
.testimonial-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; line-height: 1.4; }
.testimonial-quote { font-size: 0.855rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,var(--ng-orange),#C96400); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; color: #fff; flex-shrink: 0; }
.testimonial-name { font-size: 0.855rem; font-weight: 700; color: #fff; }
.testimonial-role { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   SOBRE — Ecossistema Grupo Objective
   ============================================================ */
.sobre { padding: 6rem 1.5rem; background: var(--ng-off-white); }
.sobre-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.sobre-body { font-size: 0.9rem; color: var(--ng-text-mid); line-height: 1.8; margin-bottom: 1rem; }
.sobre-body strong { color: var(--ng-text-dark); }

.ecosystem { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.85rem; margin-top: 2rem; }
.ecosystem-card {
  background: #fff; border-radius: 12px; padding: 1.1rem; text-align: center;
  border: 1.5px solid var(--ng-border-l);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.ecosystem-card:hover { border-color: var(--ng-orange); box-shadow: 0 4px 20px rgba(240,120,0,0.08); }
.ecosystem-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
.ecosystem-name { font-size: 0.75rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.2rem; }
.ecosystem-desc { font-size: 0.68rem; color: var(--ng-muted); line-height: 1.4; }

.sobre-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.sobre-badge { display: flex; align-items: center; gap: 0.4rem; background: #fff; border: 1.5px solid var(--ng-border-l); border-radius: 8px; padding: 0.45rem 0.8rem; font-size: 0.72rem; font-weight: 700; color: var(--ng-text-mid); }

.sobre-visual { background: #fff; border-radius: 20px; padding: 2.5rem; box-shadow: 0 8px 40px rgba(29,37,46,0.07); }
.sobre-timeline { display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 1rem; }
.timeline-dot-wrap { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ng-orange); border: 2px solid #fff; flex-shrink: 0; margin-top: 0.2rem; box-shadow: 0 0 0 3px rgba(240,120,0,0.2); }
.timeline-line { flex: 1; width: 2px; background: linear-gradient(to bottom, rgba(240,120,0,0.4), rgba(240,120,0,0.05)); margin: 4px 0; min-height: 2rem; }
.timeline-year { font-size: 0.82rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.2rem; }
.timeline-text { font-size: 0.78rem; color: var(--ng-text-mid); line-height: 1.5; margin-bottom: 1.5rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 6rem 1.5rem; background: var(--ng-white); }
.blog-inner { max-width: 1280px; margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { border-radius: 16px; overflow: hidden; border: 1.5px solid var(--ng-border-l); text-decoration: none; color: inherit; background: #fff; transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr); display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(235,118,1,0.3); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-4px); }
.blog-card-img { height: 175px; overflow: hidden; background: var(--ng-dark); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ng-orange); margin-bottom: 0.5rem; }
.blog-card-title { font-size: 0.95rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.8rem; color: var(--ng-text-mid); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--ng-orange); }

/* ============================================================
   FINAL CTA — Fundo com curvas
   ============================================================ */
.final-cta {
  padding: 6rem 1.5rem; text-align: center;
  background: var(--ng-black);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content:''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,120,0,0.1) 0%, transparent 70%);
  top: -250px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.final-cta::after {
  content:''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400'%3E%3Cpath d='M0,200 C360,0 720,400 1080,200 S1350,0 1440,100' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.05'/%3E%3Cpath d='M0,280 C240,80 600,450 900,250 S1200,50 1440,180' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.03'/%3E%3C/svg%3E");
  background-size: cover;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; }
.final-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato { padding: 6rem 1.5rem; background: var(--ng-off-white); }
.contato-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--ng-text-dark); }
.form-control { padding: 0.75rem 1rem; background: #fff; border: 1.5px solid var(--ng-border-l); border-radius: 10px; font-size: 0.9rem; font-family: var(--font); color: var(--ng-text-dark); outline: none; transition: border-color var(--tr); }
.form-control:focus { border-color: var(--ng-orange); }
textarea.form-control { resize: vertical; min-height: 110px; }
.btn-submit { width: 100%; padding: 0.9rem; background: var(--ng-orange); color: #fff; font-family: var(--font); font-size: 1rem; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: background var(--tr), transform var(--tr); }
.btn-submit:hover { background: var(--ng-orange-l); transform: translateY(-1px); }

.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1.5rem; }
.office-card { background: #fff; border: 1.5px solid var(--ng-border-l); border-radius: 12px; padding: 1.1rem; transition: border-color var(--tr); }
.office-card:hover { border-color: var(--ng-orange); }
.office-flag { font-size: 1.2rem; margin-bottom: 0.3rem; }
.office-city { font-size: 0.855rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.2rem; }
.office-addr { font-size: 0.72rem; color: var(--ng-muted); line-height: 1.5; }

/* Mini-mapa de sedes */
.offices-map { background: #fff; border: 1.5px solid var(--ng-border-l); border-radius: 16px; padding: 1.5rem; margin-top: 1rem; }
.offices-map-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ng-muted); margin-bottom: 1rem; }

.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(29,37,46,0.06); border: 1px solid rgba(29,37,46,0.12); display: inline-flex; align-items: center; justify-content: center; color: var(--ng-text-mid); text-decoration: none; transition: background var(--tr), color var(--tr), border-color var(--tr); }
.social-btn:hover { background: var(--ng-orange); color: #fff; border-color: transparent; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ng-dark); padding: 4rem 1.5rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--ng-border-d); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin: 1rem 0 1.25rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials .social-btn { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }
.footer-socials .social-btn:hover { background: var(--ng-orange); color: #fff; border-color: transparent; }
.footer-certs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-cert { display: flex; align-items: center; gap: 0.35rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 7px; padding: 0.35rem 0.7rem; font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.4); }

.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.3); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.855rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--ng-orange); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); text-decoration: none; transition: color var(--tr); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .roi-grid { grid-template-columns: repeat(2,1fr); }
  .roi-benefits { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .nfcom-hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .menu-btn { display: flex; }

  .hero-content { padding: 3.5rem 1.25rem 0; }
  .hero-browser { display: none; }
  .hero-trust { flex-wrap: wrap; justify-content: center; }

  .solutions-grid { grid-template-columns: 1fr; }
  .solution-detail { grid-template-columns: 1fr; padding: 2rem; }
  .solution-detail-visual { display: none; }

  .roi-grid { grid-template-columns: 1fr 1fr; }
  .roi-benefits { grid-template-columns: 1fr; }

  .platform-dor, .platform-dor.reverse { grid-template-columns: 1fr; direction: ltr; }
  .dor-visual { display: none; }

  .sobre-inner { grid-template-columns: 1fr; }
  .ecosystem { grid-template-columns: 1fr 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .roi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ecosystem { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-item-has-dropdown { position: relative; list-style: none; }
.nav-item-has-dropdown > a { display: inline-flex; align-items: center; gap: 0.28rem; }
.nav-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-item-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
/* ponte invisível: mantém :hover ativo enquanto o mouse vai em direção ao dropdown */
.nav-item-has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: -10px; right: -10px; height: 20px;
}

.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(18,26,38,0.98); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 0.35rem; min-width: 210px; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-item-has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.nav-dropdown::before {
  content:''; position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; background: rgba(18,26,38,0.98);
  border-left: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-item {
  display: block; color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.855rem; font-weight: 500; padding: 0.6rem 0.85rem;
  border-radius: 8px; transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-dropdown-item.active { color: var(--ng-orange); }
.nav-dropdown-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 0.3rem 0.5rem; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  min-height: 54vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 72px;
  background: var(--ng-dark);
}
.page-hero .hero-orb-1 { width: 560px; height: 560px; top: -180px; right: -80px; }
.page-hero .hero-orb-2 { width: 380px; height: 380px; bottom: -80px; left: -80px; }
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 4.5rem 1.5rem;
}
.page-hero-content.centered { text-align: center; }
.page-hero-content.centered .page-hero-title,
.page-hero-content.centered .page-hero-subtitle { margin-left: auto; margin-right: auto; }
.page-hero-content.centered .page-hero-actions { justify-content: center; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(235,118,1,0.1); border: 1px solid rgba(235,118,1,0.25);
  color: var(--ng-orange); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.page-hero-title {
  font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 800;
  line-height: 1.1; color: #fff; letter-spacing: -0.025em;
  margin-bottom: 1.25rem; max-width: 780px;
}
.page-hero-title .accent { color: var(--ng-orange); }
.page-hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem); color: rgba(255,255,255,0.5);
  line-height: 1.72; max-width: 580px; margin-bottom: 2.5rem;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 3rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.page-hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--ng-orange); line-height: 1; margin-bottom: 0.3rem; }
.page-hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* ============================================================
   FEATURES GRID — reutilizável para páginas de produto
   ============================================================ */
.features-section { padding: 6rem 1.5rem; background: var(--ng-white); }
.features-inner { max-width: 1280px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card {
  background: var(--ng-off-white); border: 1.5px solid var(--ng-border-l);
  border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.feature-card:hover { border-color: rgba(235,118,1,0.4); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(235,118,1,0.12), rgba(235,118,1,0.04));
  border: 1px solid rgba(235,118,1,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--ng-orange);
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.5rem; }
.feature-desc { font-size: 0.855rem; color: var(--ng-text-mid); line-height: 1.65; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { padding: 6rem 1.5rem; background: var(--ng-off-white); }
.process-inner { max-width: 1280px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; position: relative; }
.process-steps::before {
  content:''; position: absolute; top: 20px; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--ng-orange), transparent); opacity: 0.3;
  pointer-events: none;
}
.process-step { position: relative; }
.process-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ng-orange); color: #fff;
  font-size: 0.9rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.process-step-title { font-size: 0.95rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.4rem; }
.process-step-desc { font-size: 0.82rem; color: var(--ng-text-mid); line-height: 1.6; }

/* ============================================================
   CASES PAGE
   ============================================================ */
.cases-page-section { padding: 6rem 1.5rem; background: var(--ng-off-white); }
.cases-page-inner { max-width: 1280px; margin: 0 auto; }
.cases-grid-page { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.case-card {
  background: #fff; border: 1.5px solid var(--ng-border-l);
  border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  display: flex; flex-direction: column;
}
.case-card:hover { border-color: rgba(235,118,1,0.3); box-shadow: 0 8px 40px rgba(29,37,46,0.1); transform: translateY(-4px); }
.case-thumb { width: calc(100% + 4rem); margin: -2rem -2rem 1.5rem; height: 160px; overflow: hidden; border-radius: 14px 14px 0 0; background: var(--ng-dark); }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease); }
.case-card:hover .case-thumb img { transform: scale(1.04); }
.case-logo { font-size: 0.9rem; font-weight: 800; color: var(--ng-navy); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.04em; }
.case-industry { font-size: 0.66rem; font-weight: 600; color: var(--ng-orange); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.case-result { display: inline-block; background: rgba(235,118,1,0.08); color: var(--ng-orange); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em; padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.75rem; }
.case-title { font-size: 0.92rem; font-weight: 700; color: var(--ng-text-dark); line-height: 1.4; flex: 1; margin-bottom: 1.25rem; }
.case-read { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; font-weight: 700; color: var(--ng-orange); text-decoration: none; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page { padding: 5rem 1.5rem; background: var(--ng-white); }
.blog-page-inner { max-width: 1280px; margin: 0 auto; }
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--ng-border-l); }
.blog-featured-img { height: 340px; border-radius: 20px; overflow: hidden; background: var(--ng-dark); }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.blog-featured-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ng-orange); }
.blog-featured-date { font-size: 0.72rem; color: var(--ng-muted); }
.blog-featured-title { font-size: 1.65rem; font-weight: 800; color: var(--ng-text-dark); line-height: 1.25; margin-bottom: 1rem; }
.blog-featured-excerpt { font-size: 0.9rem; color: var(--ng-text-mid); line-height: 1.72; margin-bottom: 1.5rem; }
.blog-cats { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.blog-cat-btn {
  padding: 0.38rem 1rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  background: var(--ng-off-white); border: 1.5px solid var(--ng-border-l); color: var(--ng-text-mid);
  cursor: pointer; transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.blog-cat-btn:hover { background: var(--ng-dark); border-color: var(--ng-dark); color: #fff; }
.blog-cat-btn.active { background: var(--ng-orange); border-color: var(--ng-orange); color: #fff; }
.blog-full-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ============================================================
   SOBRE — VALUES
   ============================================================ */
.values-section { padding: 6rem 1.5rem; background: var(--ng-white); }
.values-inner { max-width: 1280px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.value-card {
  background: var(--ng-off-white); border: 1.5px solid var(--ng-border-l); border-radius: 16px; padding: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.value-card:hover { border-color: var(--ng-orange); box-shadow: 0 4px 24px rgba(235,118,1,0.08); }
.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.value-name { font-size: 1rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.4rem; }
.value-desc { font-size: 0.82rem; color: var(--ng-text-mid); line-height: 1.6; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3.5rem; }
.benefits-group { background: #fff; border-radius: 20px; padding: 2.5rem; border: 1.5px solid var(--ng-border-l); }
.benefits-group-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; flex-shrink: 0; font-size: 1.6rem; }
.benefits-group h3 { font-size: 1.05rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 0.75rem; }
.benefits-group ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.benefits-group li { font-size: 0.84rem; color: var(--ng-text-mid); line-height: 1.5; display: flex; gap: 0.5rem; }
.benefits-group li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--ng-orange); margin-top: 0.5rem; flex-shrink: 0; }
.team-quote-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.benefits-group-title { font-size: 1.1rem; font-weight: 700; color: var(--ng-text-dark); margin-bottom: 1rem; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.benefits-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: var(--ng-text-mid); line-height: 1.5; }
.benefits-list li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--ng-orange); margin-top: 0.45rem; flex-shrink: 0; }
.team-quotes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.team-quote-card { background: #fff; border: 1.5px solid var(--ng-border-l); border-radius: 16px; padding: 2rem; }
.team-quote-text { font-size: 0.88rem; color: var(--ng-text-mid); line-height: 1.72; font-style: italic; margin-bottom: 1.5rem; }
.team-quote-author { display: flex; align-items: center; gap: 0.75rem; }
.team-quote-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.9rem; font-weight: 800; flex-shrink: 0; }
.team-quote-name { font-size: 0.855rem; font-weight: 700; color: var(--ng-text-dark); }
.team-quote-role { font-size: 0.72rem; color: var(--ng-muted); }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.produtos-section { padding: 6rem 1.5rem; background: var(--ng-white); }
.produtos-inner { max-width: 1280px; margin: 0 auto; }
.produto-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding: 3.5rem; background: var(--ng-off-white); border: 1.5px solid var(--ng-border-l);
  border-radius: 24px; margin-bottom: 2rem;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.produto-card:hover { border-color: rgba(235,118,1,0.3); box-shadow: 0 12px 50px rgba(29,37,46,0.1); }
.produto-card.dark { background: var(--ng-black); border-color: rgba(255,255,255,0.08); }
.produto-card.dark:hover { border-color: rgba(235,118,1,0.35); }
.produto-badge {
  display: inline-block; background: rgba(235,118,1,0.1); color: var(--ng-orange);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: 100px; margin-bottom: 1rem;
}
.produto-soon { background: rgba(251,191,36,0.12); color: #FBBF24; border: 1px solid rgba(251,191,36,0.25); }
.produto-name { font-size: 1.75rem; font-weight: 800; color: var(--ng-text-dark); margin-bottom: 0.75rem; line-height: 1.2; }
.produto-card.dark .produto-name { color: #fff; }
.produto-desc { font-size: 0.9rem; color: var(--ng-text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.produto-card.dark .produto-desc { color: rgba(255,255,255,0.58); }
.produto-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.produto-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.855rem; color: var(--ng-text-mid); line-height: 1.5; }
.produto-card.dark .produto-features li { color: rgba(255,255,255,0.7); }
.produto-features li::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--ng-orange); margin-top: 0.45rem; flex-shrink: 0; }
.produto-visual {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem;
  min-height: 250px; box-shadow: 0 8px 40px rgba(29,37,46,0.08);
  border: 1px solid var(--ng-border-l);
}
.produto-card.dark .produto-visual { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); box-shadow: none; }
.produto-visual-icon { font-size: 3.5rem; }
.produto-visual-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ng-muted); }
.produto-card.dark .produto-visual-label { color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .cases-grid-page { grid-template-columns: repeat(2,1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .team-quotes-grid { grid-template-columns: 1fr 1fr; }
  .produto-card { gap: 2.5rem; padding: 2.5rem; }
  .blog-full-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .page-hero-content { padding: 3rem 1.25rem; }
  .page-hero-stats { gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .cases-grid-page { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-quotes-grid { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .produto-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .produto-visual { min-height: 180px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ARTICLE / BLOG POST PAGE
   ============================================================ */
.article-hero {
  background: var(--ng-dark);
  padding: 7rem 1.5rem 3.5rem;
  position: relative; overflow: hidden;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(235,118,1,0.12), transparent 70%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 820px; margin: 0 auto; position: relative; z-index: 1;
}
.article-breadcrumb {
  font-size: 0.8rem; color: var(--ng-muted); margin-bottom: 1.25rem;
}
.article-breadcrumb a { color: var(--ng-orange); text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-cat-pill {
  display: inline-block; background: rgba(235,118,1,0.15); color: var(--ng-orange);
  border: 1px solid rgba(235,118,1,0.3); border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem; margin-bottom: 1.25rem; text-transform: uppercase;
}
.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 1.25rem;
}
.article-meta {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--ng-muted); margin-bottom: 2rem;
}
.article-meta span { display: flex; align-items: center; gap: 0.35rem; }
.article-hero-img {
  width: 100%; max-height: 420px; object-fit: cover;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.08);
}

.article-section {
  padding: 4rem 1.5rem 5rem; background: var(--ng-white);
}
.article-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start;
}
.prose { color: var(--ng-text-dark); }
.prose h2 {
  font-size: 1.45rem; font-weight: 700; color: var(--ng-dark);
  margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(235,118,1,0.2);
}
.prose h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--ng-dark);
  margin: 2rem 0 0.75rem;
}
.prose h4 {
  font-size: 1rem; font-weight: 700; color: var(--ng-orange);
  margin: 1.5rem 0 0.5rem; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.82rem;
}
.prose p {
  font-size: 1rem; line-height: 1.8; color: var(--ng-text-mid);
  margin-bottom: 1.25rem;
}
.prose ul, .prose ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.prose li {
  font-size: 1rem; line-height: 1.75; color: var(--ng-text-mid);
  margin-bottom: 0.5rem;
}
.prose strong { color: var(--ng-dark); font-weight: 700; }
.prose blockquote {
  border-left: 4px solid var(--ng-orange); padding: 1rem 1.5rem;
  background: rgba(235,118,1,0.05); border-radius: 0 8px 8px 0;
  margin: 2rem 0; font-style: italic; color: var(--ng-text-mid);
}
.prose .highlight-box {
  background: rgba(235,118,1,0.07);
  border: 1px solid rgba(235,118,1,0.2); border-radius: 12px;
  padding: 1.5rem 2rem; margin: 2rem 0;
}
.prose .highlight-box p { margin-bottom: 0; }
.prose .highlight-box strong { color: var(--ng-orange); }

.article-sidebar {
  position: sticky; top: 100px;
}
.sidebar-cta-box {
  background: var(--ng-dark); border-radius: 16px;
  padding: 2rem; border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.sidebar-cta-box h3 {
  color: #fff; font-size: 1.1rem; font-weight: 700;
  margin-bottom: 0.75rem; line-height: 1.35;
}
.sidebar-cta-box p {
  color: var(--ng-muted); font-size: 0.88rem; line-height: 1.6;
  margin-bottom: 1.25rem;
}
.sidebar-cta-box .btn-primary { width: 100%; justify-content: center; font-size: 0.9rem; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.sidebar-tag {
  font-size: 0.72rem; font-weight: 600; color: var(--ng-muted);
  background: rgba(29,37,46,0.06); border: 1px solid var(--ng-border-l);
  padding: 0.3rem 0.75rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ============================================================
   CASE STUDY PAGE
   ============================================================ */
.case-hero {
  background: var(--ng-dark); padding: 7rem 1.5rem 3.5rem; position: relative; overflow: hidden;
}
.case-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 30%, rgba(235,118,1,0.06), transparent 70%);
  pointer-events: none;
}
.case-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.case-hero-breadcrumb { font-size: 0.8rem; color: var(--ng-muted); margin-bottom: 1.25rem; }
.case-hero-breadcrumb a { color: var(--ng-orange); text-decoration: none; }
.case-hero-breadcrumb a:hover { text-decoration: underline; }
.case-hero-industry {
  display: inline-block; background: rgba(235,118,1,0.08); color: var(--ng-orange);
  border: 1px solid rgba(235,118,1,0.3); border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.case-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 2rem;
}
.case-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.case-metric-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 1.25rem 1.5rem;
}
.case-metric-value {
  font-size: 1.75rem; font-weight: 800; color: var(--ng-orange);
  line-height: 1; margin-bottom: 0.35rem;
}
.case-metric-label { font-size: 0.78rem; color: var(--ng-muted); line-height: 1.4; }
.case-hero-img {
  width: 100%; max-height: 380px; object-fit: cover;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.08);
}

.case-section { padding: 4rem 1.5rem 5rem; background: var(--ng-white); }
.case-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start;
}
.case-quote-block {
  background: linear-gradient(135deg, var(--ng-dark) 0%, #243040 100%);
  border-radius: 16px; padding: 2rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0;
}
.case-quote-text {
  font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.9);
  line-height: 1.75; margin-bottom: 1.25rem;
}
.case-quote-text::before { content: '\201C'; color: var(--ng-orange); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; }
.case-quote-author { font-size: 0.85rem; color: var(--ng-muted); font-weight: 600; }
.case-quote-author strong { color: #fff; }

.case-result-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin: 2.5rem 0; padding: 2rem;
  background: rgba(235,118,1,0.05);
  border: 1px solid rgba(235,118,1,0.15); border-radius: 16px;
}
.result-item { text-align: center; }
.result-value { font-size: 1.5rem; font-weight: 800; color: var(--ng-orange); }
.result-label { font-size: 0.78rem; color: var(--ng-muted); margin-top: 0.25rem; }

@media (max-width: 768px) {
  .case-metrics { grid-template-columns: repeat(2, 1fr); }
  .case-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
}
