/* ======================================
   MENTARO — ESTILOS PRINCIPAIS
   Design system inspirado em produtos
   de alta conversão mobile-first
   ====================================== */

/* --- VARIÁVEIS --- */
:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-darker: #1E1B4B;
  --primary-light: #818CF8;
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-light: #34D399;
  --warn: #F59E0B;
  --danger: #EF4444;
  --text: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --surface: #F9FAFB;
  --surface-2: #F3F4F6;
  --border: #E5E7EB;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.13), 0 8px 20px rgba(0,0,0,.08);
  --shadow-xl: 0 40px 100px rgba(0,0,0,.18), 0 16px 40px rgba(0,0,0,.1);
  --shadow-primary: 0 8px 32px rgba(79,70,229,.35);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- SKIP LINK (acessibilidade + SEO) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.4; }
p { line-height: 1.7; color: var(--text-secondary); }

/* --- LAYOUT --- */
.section-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.hero-container, .nav-container, .trust-inner, .cta-inner, .footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(0.5deg); }
  66% { transform: translateY(-4px) rotate(-0.5deg); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes scanLine {
  0% { top: 8%; opacity: 1; }
  90% { top: 88%; opacity: 1; }
  100% { top: 8%; opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}
@keyframes genDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-5px); opacity: 1; }
}
@keyframes orbMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.97); }
}
@keyframes slideInCard {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="150"] { transition-delay: 0.15s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.05);
  padding: 10px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .nav-brand { color: var(--text); }
.brand-icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: rgba(79,70,229,.08); }
.btn-nav-cta-mobile { display: none !important; }
.btn-nav-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 9px 20px;
  border-radius: 99px;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 12px 24px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-primary);
  letter-spacing: -0.01em;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(79,70,229,.45);
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.btn-store:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}
.store-text { display: flex; flex-direction: column; }
.store-text span { font-size: 0.7rem; opacity: 0.75; }
.store-text strong { font-size: 1rem; font-weight: 700; }

/* === HERO === */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0F0C29 0%, #1E1B4B 30%, #312E81 65%, #4338CA 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbMove 12s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.2) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  animation-delay: 4s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,.15) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: 8s;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #A5B4FC, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars {
  display: flex;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.hero-proof p { color: rgba(255,255,255,.75); font-size: 0.875rem; }
.hero-proof strong { color: var(--white); }

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-outer {
  position: relative;
  animation: floatAlt 4s ease-in-out infinite;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,.5)) drop-shadow(0 0 60px rgba(79,70,229,.3));
}
.phone-mockup {
  width: 280px;
  background: #0D0B1E;
  border-radius: 44px;
  border: 6px solid #1e1c36;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 0 0 1px rgba(0,0,0,.5);
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: #0D0B1E;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.phone-speaker {
  width: 50px; height: 4px;
  background: #1e1c36;
  border-radius: 2px;
}
.phone-camera-dot {
  width: 8px; height: 8px;
  background: #1e1c36;
  border-radius: 50%;
}
.phone-screen {
  min-height: 580px;
  background: linear-gradient(180deg, #312E81 0%, #4F46E5 35%, #EEF2FF 100%);
  border-radius: 38px;
  overflow: hidden;
}
.phone-reflection {
  position: absolute;
  top: 6px; left: 6px; right: 6px;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, transparent 100%);
  border-radius: 38px 38px 0 0;
  pointer-events: none;
}

/* App UI inside phone */
.app-ui { padding: 38px 16px 16px; }
.app-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.app-greeting-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,.65);
  font-weight: 400;
}
.app-user-name {
  font-size: 0.9rem;
  color: white;
  font-weight: 700;
  margin-top: 2px;
}
.app-plan-chip {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.2);
  letter-spacing: 0.02em;
}
.app-stats-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.app-mini-stat {
  flex: 1;
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.1);
}
.app-mini-stat strong { display: block; font-size: 1.1rem; color: white; font-weight: 800; }
.app-mini-stat small { font-size: 0.55rem; color: rgba(255,255,255,.6); }
.app-next-action {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.next-icon { font-size: 1.2rem; }
.next-text strong { display: block; font-size: 0.7rem; color: var(--text); font-weight: 700; }
.next-text small { font-size: 0.58rem; color: var(--text-secondary); }
.next-arrow { margin-left: auto; color: var(--primary); font-size: 1.2rem; font-weight: 700; }
.app-ai-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(79,70,229,.4);
}
.ai-icon-glow { font-size: 1.3rem; }
.app-ai-card strong { display: block; font-size: 0.7rem; color: white; font-weight: 700; }
.app-ai-card small { font-size: 0.58rem; color: rgba(255,255,255,.7); }
.app-skills-preview {
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
}
.skills-header { font-size: 0.58rem; color: var(--text-secondary); font-weight: 600; margin-bottom: 8px; }
.skill-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.s-name { font-size: 0.58rem; color: var(--text); font-weight: 500; width: 55px; flex-shrink: 0; }
.s-track { flex: 1; height: 5px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }
.s-fill { height: 100%; border-radius: 3px; }
.s-fill.green { background: var(--accent); }
.s-fill.yellow { background: var(--warn); }
.s-fill.red { background: var(--danger); }
.s-pct { font-size: 0.58rem; color: var(--text-secondary); width: 26px; text-align: right; flex-shrink: 0; }

/* Float cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.08);
  min-width: 170px;
  z-index: 10;
}
.float-emoji { font-size: 1.4rem; flex-shrink: 0; }
.float-text strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text); }
.float-text span { font-size: 0.65rem; color: var(--text-secondary); }
.float-1 {
  top: 10%;
  left: -60px;
  animation: float 3.5s ease-in-out infinite;
}
.float-2 {
  bottom: 30%;
  right: -60px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}
.float-3 {
  bottom: 8%;
  left: -40px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}

/* === TRUST BAR === */
.trust-bar {
  background: #F0F0FF;
  border-top: 1px solid rgba(79,70,229,.1);
  border-bottom: 1px solid rgba(79,70,229,.1);
  padding: 18px 24px;
  overflow: hidden;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.7;
  flex-shrink: 0;
}
.trust-states {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-states span { font-size: 0.8rem; color: var(--primary); opacity: 0.6; font-weight: 500; }
.dot { opacity: 0.3 !important; }

/* === PROBLEM SECTION === */
.problem-section {
  padding: 100px 0;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { max-width: 680px; margin: 0 auto; }
.section-header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(79,70,229,.08);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-tag.accent { color: var(--accent); background: rgba(16,185,129,.08); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79,70,229,.2);
}
.problem-stat {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.problem-card h3 { margin-bottom: 10px; color: var(--text); }
.problem-card p { font-size: 0.925rem; }
.problem-conclusion {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--radius-lg);
}
.problem-conclusion strong { color: #92400E; }

/* === METRICS SECTION === */
.metrics-section {
  padding: 100px 0;
  background: var(--primary-darker);
  position: relative;
  overflow: hidden;
}
.metrics-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(99,102,241,.15) 100%);
  pointer-events: none;
}
.metrics-header {
  text-align: center;
  margin-bottom: 64px;
}
.metrics-header h2 { color: var(--white); }
.metrics-header p { color: rgba(255,255,255,.65); max-width: 520px; margin: 16px auto 0; font-size: 1.05rem; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.metric-card {
  text-align: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  transition: all var(--transition);
}
.metric-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.metric-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.metric-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-light);
}
.metric-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* === FEATURES SECTION === */
.features-section { }
.feature-block {
  padding: 100px 0;
  background: var(--white);
}
.feature-block.alt-bg { background: var(--surface); }
.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-layout.reverse { direction: rtl; }
.feature-layout.reverse > * { direction: ltr; }
.feature-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(79,70,229,.08);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.feature-content h2 { margin-bottom: 16px; }
.feature-content p { font-size: 1rem; margin-bottom: 28px; }
.benefit-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.feature-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.9rem;
}
.feature-highlight strong { color: var(--accent-dark); font-weight: 700; }
.highlight-icon { font-size: 1.1rem; }

/* Feature visual - AI mockup */
.mockup-ai {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #EF4444; }
.mockup-dot.y { background: #F59E0B; }
.mockup-dot.g { background: #10B981; }
.mockup-body { padding: 20px; }
.ai-input-group { margin-bottom: 16px; }
.ai-input-group label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.ai-input-value {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
  font-style: italic;
  position: relative;
}
.ai-chips-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.ai-chip {
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.ai-chip.active {
  background: rgba(79,70,229,.1);
  color: var(--primary);
  border-color: rgba(79,70,229,.3);
}
.ai-generating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(79,70,229,.04);
  border-radius: var(--radius-sm);
}
.gen-pulse { display: flex; gap: 4px; align-items: center; }
.gen-pulse span {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: genDot 1.2s ease-in-out infinite;
}
.gen-pulse span:nth-child(2) { animation-delay: 0.2s; }
.gen-pulse span:nth-child(3) { animation-delay: 0.4s; }
.ai-question-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ai-q-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.ai-q-card:hover { border-color: rgba(79,70,229,.3); box-shadow: var(--shadow-sm); }
.ai-q-card.faded { opacity: 0.55; }
.q-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(79,70,229,.1);
  color: var(--primary);
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}
.q-body { flex: 1; min-width: 0; }
.q-text { font-size: 0.8rem; color: var(--text); font-weight: 500; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.q-skill-tag {
  font-size: 0.6rem;
  background: rgba(16,185,129,.1);
  color: var(--accent-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.q-ok { color: var(--accent); font-size: 1rem; }
.ai-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.ai-bottom-btn {
  background: var(--primary);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 99px;
  cursor: pointer;
}

/* Feature visual - scan mockup */
.mockup-scan {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scan-phone-frame {
  background: #1a1a2e;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.scan-topbar {
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 600;
}
.scan-viewfinder {
  position: relative;
  height: 200px;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vf-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #4ADE80;
  border-style: solid;
  border-width: 0;
}
.vf-corner.tl { top: 20px; left: 20px; border-top-width: 3px; border-left-width: 3px; border-radius: 3px 0 0 0; }
.vf-corner.tr { top: 20px; right: 20px; border-top-width: 3px; border-right-width: 3px; border-radius: 0 3px 0 0; }
.vf-corner.bl { bottom: 20px; left: 20px; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 3px; }
.vf-corner.br { bottom: 20px; right: 20px; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 3px 0; }
.scan-moving-line {
  position: absolute;
  left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ADE80, transparent);
  box-shadow: 0 0 8px #4ADE80;
  animation: scanLine 2.5s ease-in-out infinite;
}
.paper-in-viewfinder {
  background: rgba(255,255,255,.9);
  width: 140px;
  border-radius: 6px;
  padding: 8px;
}
.piv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.piv-lines { display: flex; flex-direction: column; gap: 4px; }
.piv-line {
  height: 3px;
  background: #D1D5DB;
  border-radius: 2px;
  width: 60px;
}
.piv-line.short { width: 40px; }
.piv-qr {
  width: 24px; height: 24px;
  background: #1a1a2e;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-dots {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, white 25%, transparent 25%, transparent 50%, white 50%, white 75%, transparent 75%);
  background-size: 4px 4px;
}
.piv-answers { display: flex; flex-direction: column; gap: 4px; }
.ans-row { display: flex; align-items: center; gap: 4px; }
.an { font-size: 0.5rem; color: #6B7280; width: 10px; font-weight: 600; }
.ab {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid #D1D5DB;
  font-size: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-weight: 600;
}
.ab.filled { background: #1a1a2e; border-color: #1a1a2e; color: white; }
.scan-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(74,222,128,.1);
  font-size: 0.72rem;
  color: rgba(255,255,255,.8);
}
.scan-status-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
.scan-results-panel {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.srp-title { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.srp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.srp-item:last-of-type { border-bottom: none; }
.srp-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.a1 { background: var(--primary); }
.a2 { background: var(--accent); }
.a3 { background: var(--warn); }
.srp-info strong { display: block; font-size: 0.78rem; color: var(--text); font-weight: 600; }
.srp-info small { font-size: 0.68rem; color: var(--text-secondary); }
.srp-badge { margin-left: auto; font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 99px; }
.srp-badge.green { background: #ECFDF5; color: var(--accent-dark); }
.srp-badge.yellow { background: #FFFBEB; color: #92400E; }
.srp-badge.red { background: #FEF2F2; color: #B91C1C; }
.srp-footer {
  margin-top: 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: #ECFDF5;
  padding: 8px;
  border-radius: var(--radius-sm);
}

/* Feature visual - diagnostics mockup */
.mockup-diag {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 20px;
  overflow: hidden;
}
.diag-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.diag-section {
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  border: 1px solid;
}
.diag-section.critical { background: #FEF2F2; border-color: #FECACA; }
.diag-section.developing { background: #FFFBEB; border-color: #FDE68A; }
.diag-section.consolidated { background: #ECFDF5; border-color: #A7F3D0; }
.diag-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}
.diag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.diag-dot.red { background: var(--danger); }
.diag-dot.yellow { background: var(--warn); }
.diag-dot.green { background: var(--accent); }
.diag-count {
  margin-left: auto;
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: 99px;
  font-weight: 700;
}
.red-c { background: #FEE2E2; color: #B91C1C; }
.yellow-c { background: #FEF3C7; color: #92400E; }
.green-c { background: #D1FAE5; color: #065F46; }
.diag-skill-list, .diag-entry { font-size: 0; }
.diag-entry {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  margin-bottom: 4px;
}
.entry-skill { flex: 1; color: var(--text); font-weight: 500; }
.entry-pct { color: var(--text-secondary); font-weight: 600; }
.entry-alert { font-size: 0.85rem; }
.diag-ai-tip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,70,229,.06);
  border: 1px solid rgba(79,70,229,.15);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--primary-dark);
  font-weight: 500;
}
.ai-tip-icon { font-size: 1rem; }

/* Feature visual - reports mockup */
.mockup-report {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}
.report-header-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--primary-darker);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.report-logo-icon { flex-shrink: 0; }
.report-meta { flex: 1; }
.report-meta strong { display: block; font-size: 0.82rem; color: white; font-weight: 700; }
.report-meta span { font-size: 0.68rem; color: rgba(255,255,255,.55); }
.report-export-btn {
  font-size: 0.68rem;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  padding: 4px 10px;
  border-radius: 99px;
  cursor: pointer;
  font-weight: 600;
}
.report-chart-area {
  padding: 20px 18px 8px;
  display: flex;
  gap: 12px;
}
.chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 120px;
}
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.chart-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  display: flex;
  align-items: flex-end;
}
.bar-fill { width: 100%; height: 100%; }
.r-fill { background: linear-gradient(180deg, #F87171, #EF4444); }
.y-fill { background: linear-gradient(180deg, #FCD34D, #F59E0B); }
.g-fill { background: linear-gradient(180deg, #34D399, #10B981); }
.p-fill { background: linear-gradient(180deg, #A78BFA, #7C3AED); }
.chart-label { font-size: 0.65rem; color: var(--text-muted); font-weight: 600; }
.chart-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  padding-bottom: 20px;
}
.chart-yaxis span { font-size: 0.55rem; color: var(--text-muted); }
.report-highlights {
  padding: 0 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rh-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.rh-item.green { background: #ECFDF5; color: var(--accent-dark); }
.rh-item.yellow { background: #FFFBEB; color: #92400E; }
.rh-item.blue { background: #EFF6FF; color: #1D4ED8; }
.report-ai-summary {
  margin: 0 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(79,70,229,.05);
  border: 1px solid rgba(79,70,229,.12);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-size: 0.72rem;
  color: var(--primary-dark);
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.how-section {
  padding: 100px 0;
  background: var(--surface);
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
  flex-shrink: 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79,70,229,.25);
}
.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.step-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; }

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 0;
  background: var(--primary-darker);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(16,185,129,.12) 0%, transparent 60%);
  pointer-events: none;
}
.section-header.light h2 { color: var(--white); }
.section-tag.light-tag {
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.1);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.testimonial-card.featured {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}
.t-stars {
  font-size: 1rem;
  color: #FCD34D;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.t-info strong { display: block; font-size: 0.9rem; color: white; font-weight: 700; }
.t-info span { font-size: 0.78rem; color: rgba(255,255,255,.5); }

/* === PRICING === */
.pricing-section { padding: 100px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card.featured-plan {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-color: transparent;
  box-shadow: var(--shadow-primary), var(--shadow-lg);
  transform: translateY(-8px) scale(1.02);
}
.price-card.featured-plan:hover { transform: translateY(-12px) scale(1.02); }
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F59E0B, #FCD34D);
  color: #1F2937;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,158,11,.35);
}
.plan-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.featured-plan .plan-label { color: rgba(255,255,255,.65); }
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.currency { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.price { font-size: 3.5rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.price-cents { font-size: 1.5rem; font-weight: 800; color: var(--text); align-self: flex-start; margin-top: 8px; }
.period { font-size: 0.85rem; color: var(--text-secondary); margin-left: 4px; }
.featured-plan .currency,
.featured-plan .price,
.featured-plan .price-cents,
.featured-plan .period { color: white; }
.plan-desc {
  font-size: 0.875rem;
  margin-bottom: 24px;
  line-height: 1.5;
}
.featured-plan .plan-desc { color: rgba(255,255,255,.7); }
.plan-feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.plan-feat-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.plan-feat-list li.on { color: var(--text); }
.plan-feat-list li.off { color: var(--text-muted); }
.plan-feat-list li.on.light { color: rgba(255,255,255,.88); }
.plan-feat-list li svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-plan-outline {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 99px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-plan-outline:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn-plan-primary {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 99px;
  background: white;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-plan-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.plan-guarantee {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,.5);
  margin-top: 12px;
}

/* === NAV SCHOOLS BADGE === */
.nav-schools-badge {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: #10B981 !important;
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  border-radius: 20px !important;
  padding: 5px 12px !important;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), border-color var(--transition) !important;
}
.nav-schools-badge:hover {
  background: rgba(16, 185, 129, 0.22) !important;
  color: #34D399 !important;
  border-color: rgba(16, 185, 129, 0.5) !important;
}
.navbar.scrolled .nav-schools-badge {
  color: #059669 !important;
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
}
.navbar.scrolled .nav-schools-badge:hover {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #047857 !important;
}

/* === SCHOOLS BRIDGE SECTION === */
.schools-bridge-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E1B4B 100%);
  position: relative;
  overflow: hidden;
}
.schools-bridge-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.schools-bridge-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 20px;
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
}
.schools-bridge-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
  pointer-events: none;
}
.schools-bridge-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #10B981;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.schools-bridge-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.schools-bridge-title em {
  font-style: normal;
  color: #10B981;
}
.schools-bridge-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.schools-bridge-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.schools-bridge-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.schools-bridge-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.btn-schools-bridge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10B981;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}
.btn-schools-bridge:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,0.5);
}

/* Bridge dashboard mockup */
.bridge-dashboard {
  background: #0F172A;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.78rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(16,185,129,0.15);
}
.bridge-db-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #1E293B;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bridge-db-dots {
  display: flex;
  gap: 5px;
}
.bridge-db-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.bridge-db-dots span:nth-child(1) { background: #EF4444; }
.bridge-db-dots span:nth-child(2) { background: #F59E0B; }
.bridge-db-dots span:nth-child(3) { background: #10B981; }
.bridge-db-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  flex: 1;
  text-align: center;
}
.bridge-db-live {
  font-size: 0.68rem;
  color: #10B981;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.bridge-db-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bridge-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}
.bridge-metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.bridge-metric--accent { border-color: rgba(16,185,129,0.25); background: rgba(16,185,129,0.06); }
.bridge-metric-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.bridge-metric--accent .bridge-metric-num { color: #10B981; }
.bridge-metric-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bridge-classes {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bridge-class-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bridge-class-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  width: 32px;
  flex-shrink: 0;
}
.bridge-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.bridge-bar {
  height: 100%;
  border-radius: 3px;
  background: #10B981;
  transition: width 1s ease;
}
.bridge-bar--warn { background: #F59E0B; }
.bridge-class-pct {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.bridge-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* === FAQ === */
.faq-section { padding: 100px 0; background: var(--surface); }
.faq-inner { max-width: 720px !important; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }
.faq-item summary {
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item[open] summary { color: var(--primary); }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #0F0C29 0%, #1E1B4B 30%, #312E81 70%, #4338CA 100%);
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
}
.cta-inner { position: relative; z-index: 2; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.cta-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: white;
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-content p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}
.cta-stores {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.light-store {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.3) !important;
}
.light-store:hover {
  background: rgba(255,255,255,.25) !important;
  border-color: rgba(255,255,255,.5) !important;
}
.cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.3) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.2) 0%, transparent 70%);
  bottom: -150px; left: -80px;
}
.c3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* === FOOTER === */
.footer { background: #0F172A; padding: 60px 0 0; }
.footer-inner { }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-link .brand-name { color: white; }
.footer-tagline {
  color: rgba(255,255,255,.4);
  font-size: 0.875rem;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  color: rgba(255,255,255,.45);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: rgba(255,255,255,.15);
  color: white;
}
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
}

/* === STICKY CTA (mobile) === */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,.08);
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-btn { width: 100%; padding: 14px 20px; font-size: 1rem; }

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero h1 { max-width: 600px; margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stores { justify-content: center; }
  .hero-proof { justify-content: center; }
  .float-1, .float-2, .float-3 { display: none; }

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-layout { grid-template-columns: 1fr; gap: 48px; }
  .feature-layout.reverse { direction: ltr; }
  .steps-row { grid-template-columns: 1fr; gap: 24px; }
  .step-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured-plan { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-group { grid-template-columns: repeat(3, 1fr); }
  .schools-bridge-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .schools-bridge-right { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 12, 41, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 998;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.3rem;
    color: white !important;
    padding: 12px 24px;
  }
  .btn-nav-cta-mobile { display: inline-flex !important; }
  .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; z-index: 999; }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-cta { display: block; }
  .phone-mockup { width: 240px; }
  .phone-screen { min-height: 480px; }
}

@media (max-width: 480px) {
  .hero-stores { flex-direction: column; align-items: center; }
  .btn-store { width: 100%; max-width: 280px; }
  .cta-stores { flex-direction: column; align-items: center; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .feature-block { padding: 60px 0; }
  .problem-section, .metrics-section, .how-section,
  .testimonials-section, .pricing-section, .faq-section,
  .schools-bridge-section { padding: 72px 0; }
  .footer-links-group { grid-template-columns: 1fr 1fr; }
  .schools-bridge-card { padding: 32px 24px; gap: 32px; }
}
