/* ============================================================
   Operação Escola — Website Marketing
   Design System: Dark Tactical / Neon
   ============================================================ */

/* --- Imports ------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables ---------------------------------------------- */
:root {
  --bg-dark: #0d0d0f;
  --bg-surface: #111116;
  /* seção alternada — ligeiramente mais claro */
  --bg-surface-2: #0f0f14;
  /* meio-termo */
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(123, 92, 252, 0.3);

  --primary: #7B5CFC;
  --primary-dark: #5e41d6;
  --primary-glow: rgba(123, 92, 252, 0.25);
  --cyan: #00E5FF;
  --cyan-glow: rgba(0, 229, 255, 0.2);
  --magenta: #e040fb;

  --text-primary: #FFFFFF;
  --text-secondary: #A0A0B8;
  --text-muted: #8080a0;

  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --font-title: 'Rajdhani', sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.25s ease;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(123, 92, 252, 0.3);
}

/* --- Reset -------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* --- Scrollbar --------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.badge-cyan {
  background: var(--cyan-glow);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-title span {
  color: var(--primary);
}

.section-title .cyan {
  color: var(--cyan);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 30px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-card);
  color: var(--text-secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.btn-cyan {
  background: var(--cyan);
  color: #0d0d0f;
  font-weight: 800;
  box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-cyan:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--cyan-glow);
}

.btn-lg {
  padding: 18px 38px;
  font-size: 18px;
}

/* --- Focus visible (keyboard navigation) ------------------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(123, 92, 252, 0.3);
}

.nav-link:focus-visible,
.nav-links a:focus-visible {
  outline-offset: 4px;
}

.faq-question:focus-visible {
  outline-offset: 2px;
}

/* --- Card ------------------------------------------------ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 13, 15, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-card);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
  transition: box-shadow var(--transition), transform var(--transition);
}

.nav-logo:hover .nav-logo-mark {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
  transform: scale(1.05);
}

.nav-logo-mark--sm {
  width: 32px;
  height: 32px;
  font-size: 11px;
  border-radius: 8px;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-img--sm {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-logo-text {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.nav-link-active {
  color: var(--text-primary);
  position: relative;
}

.nav-links a.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Glow backgrounds */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(123, 92, 252, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Scan lines overlay */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.01) 2px,
      rgba(255, 255, 255, 0.01) 4px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--cyan);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-title);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-glow);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .line-purple {
  color: var(--primary);
}

.hero-title .line-cyan {
  color: var(--cyan);
}

.hero-title .line-white {
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-card);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-mascot-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mascot-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 252, 0.2) 0%, transparent 70%);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.hero-mascot {
  width: 380px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(123, 92, 252, 0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* Floating tags */
.hero-tag {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: floatTag 6s ease-in-out infinite;
}

.hero-tag-icon {
  font-size: 20px;
}

.hero-tag-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-tag-value {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-tag-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-tag--tl {
  top: 5%;
  left: -30px;
  animation-delay: -2s;
}

.hero-tag--tr {
  top: 25%;
  right: -20px;
  animation-delay: -1s;
}

.hero-tag--br {
  bottom: 20%;
  right: -30px;
  animation-delay: -3s;
}

@keyframes floatTag {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   HERO — HUD TACTICAL MOCKUP
   ============================================================ */
.hud-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.hud-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 92, 252, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite;
}

.hud-terminal {
  background: rgba(13, 13, 15, 0.92);
  border: 1px solid rgba(123, 92, 252, 0.4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(123, 92, 252, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(123, 92, 252, 0.12);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

/* Top bar */
.hud-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(123, 92, 252, 0.08);
  border-bottom: 1px solid rgba(123, 92, 252, 0.2);
}

.hud-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.hud-dot.active {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

.hud-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hud-rank-badge {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(123, 92, 252, 0.12);
  border: 1px solid rgba(123, 92, 252, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Body padding */
.hud-xp-section,
.hud-missions,
.hud-chat,
.hud-statusbar,
.hud-section-title {
  padding-left: 16px;
  padding-right: 16px;
}

/* XP */
.hud-xp-section {
  padding-top: 14px;
  padding-bottom: 10px;
}

.hud-xp-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.hud-xp-label {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hud-xp-val {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}

.hud-xp-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.hud-xp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--cyan) 100%);
  border-radius: 3px;
  animation: fillBar 2.5s ease-out forwards;
}

/* Section title */
.hud-section-title {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-top: 12px;
}

/* Missions */
.hud-missions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
}

.hud-mission {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.hud-mission-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--warning);
  flex-shrink: 0;
}

.hud-mission.done .hud-mission-dot {
  background: #22c55e;
}

.hud-mission-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hud-mission-name {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hud-mission-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.hud-mission-due {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.hud-mission-due.warn {
  color: var(--warning);
}

/* Chat */
.hud-chat {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-bottom: 14px;
}

.hud-bubble {
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.55;
  max-width: 88%;
}

.hud-bubble.user {
  background: rgba(123, 92, 252, 0.12);
  border: 1px solid rgba(123, 92, 252, 0.25);
  color: var(--text-secondary);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.hud-bubble.assistant {
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

/* Status bar */
.hud-statusbar {
  display: flex;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 6px;
}

.hud-statusbar span {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .hud-wrap {
    max-width: 100%;
  }

  .hud-terminal {
    font-size: 0.9em;
  }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  background: rgba(123, 92, 252, 0.04);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.trust-item-icon {
  color: var(--primary);
  font-size: 18px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  display: none;
}


.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.step-icon-bg {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  border: 1px solid rgba(123, 92, 252, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.step-card:hover .step-icon-bg {
  background: rgba(123, 92, 252, 0.2);
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(123, 92, 252, 0.35);
  transform: scale(1.06);
}

.step-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   FOR AGENTS (Students)
   ============================================================ */
.agents-section {
  background: var(--bg-surface);
  position: relative;
}

.agents-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.agents-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.agents-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border-left: 2px solid transparent;
}

.feature-row:hover {
  border-left-color: var(--primary);
  background: rgba(123, 92, 252, 0.06);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-text-wrap {
  flex: 1;
  min-width: 0;
}

.feature-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Ranks display */
.ranks-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.ranks-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ranks-grid {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
}

.rank-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: transform var(--transition);
}

.rank-item:hover {
  transform: translateY(-6px) scale(1.05);
}

.rank-item img {
  filter: drop-shadow(0 0 15px rgba(123, 92, 252, 0.5));
}

.rank-item:nth-child(5) img {
  filter: drop-shadow(0 0 25px rgba(123, 92, 252, 0.8));
}

.rank-label {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.rank-item:nth-child(5) .rank-label {
  color: var(--primary);
}

/* XP bar preview */
.xp-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  width: 100%;
}

.xp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.xp-label {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.xp-value {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.xp-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.xp-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--cyan) 100%);
  border-radius: 4px;
  animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
  from {
    width: 0;
  }

  to {
    width: 68%;
  }
}

/* ============================================================
   FOR SUPERVISORS (Parents)
   ============================================================ */
.supervisors-section {
  background: var(--bg-surface-2);
  position: relative;
}

.supervisors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.25), transparent);
}

.supervisors-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.supervisors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Dashboard mockup */
.dashboard-mockup {
  background: rgba(13, 13, 15, 0.9);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-card);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red {
  background: #ef4444;
}

.mockup-dot.yellow {
  background: #f59e0b;
}

.mockup-dot.green {
  background: #22c55e;
}

.mockup-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-title);
  letter-spacing: 0.05em;
}

.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
}

.mockup-subject {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-dot-sm {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.mockup-subject-name {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-grade {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

.mockup-grade.good {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.mockup-grade.warn {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.mockup-grade.bad {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.mockup-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(123, 92, 252, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
}

.mockup-notif-icon {
  font-size: 18px;
}

.mockup-notif-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.mockup-notif-text strong {
  color: var(--text-primary);
}

/* ============================================================
   CURRICULUM TRUST
   ============================================================ */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.curriculum-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}

.curriculum-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.curriculum-year {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}

.curriculum-cycle {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.curriculum-subjects {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.curriculum-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(123, 92, 252, 0.06);
  box-shadow: 0 0 60px rgba(123, 92, 252, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.plan-price-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.plan-price-period {
  font-size: 15px;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.55;
}

.plan-divider {
  height: 1px;
  background: var(--border-card);
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-feature.included {
  color: var(--text-primary);
}

.plan-feature.excluded {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

.plan-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.plan-check.yes {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.plan-check.no {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.plan-cta {
  width: 100%;
  justify-content: center;
}

.plan-price-original {
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: line-through;
  align-self: center;
}

.plan-discount-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

/* Billing toggle */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: 100px;
  width: fit-content;
}

.billing-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.billing-toggle-label.active {
  color: var(--text-primary);
}

.billing-toggle-btn {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  transition: background 0.25s, box-shadow 0.25s, border-color 0.25s;
  flex-shrink: 0;
}

.billing-toggle-btn[aria-checked="true"] {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 18px rgba(123, 92, 252, 0.55);
}

.billing-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.billing-save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 2px 9px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question-text {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
  font-size: 14px;
}

.faq-item.open .faq-chevron {
  background: var(--primary-glow);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   WAITLIST / CTA FINAL
   ============================================================ */
.waitlist-section {
  background: linear-gradient(135deg, rgba(123, 92, 252, 0.08) 0%, rgba(0, 229, 255, 0.04) 100%);
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}

.waitlist-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.waitlist-title span {
  color: var(--primary);
}

.waitlist-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.waitlist-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: all var(--transition);
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.waitlist-input:focus {
  border-color: var(--primary);
  background: rgba(123, 92, 252, 0.06);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.waitlist-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Form states */
.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-success-icon {
  font-size: 48px;
}

.waitlist-success-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--success);
}

.waitlist-success-text {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .nav-logo-mark {
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-social-link--instagram:hover {
  border-color: #e1306c;
  color: #e1306c;
  background: rgba(225, 48, 108, 0.08);
}

.footer-social-link--facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}

.footer-social-link--tiktok:hover {
  border-color: #ff0050;
  color: #ff0050;
  background: rgba(255, 0, 80, 0.08);
}

.footer-social-link--youtube:hover {
  border-color: #ff0000;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ============================================================
   ANIMATIONS / SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   REDUCED MOTION (acessibilidade vestibular)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Scroll fade-ins: mostrar imediatamente */
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Scroll behavior: sem smooth scroll */
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  .hero-grid,
  .agents-grid,
  .supervisors-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-tag {
    display: none;
  }

  .steps-grid::before {
    display: none;
  }

  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .nav {
    background: rgba(13, 13, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-card);
  }

  .nav-links {
    display: none;
  }

  .nav-ctas {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 15, 0.98);
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border-card);
    backdrop-filter: blur(20px);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .billing-toggle-wrap {
    padding: 10px 20px;
    gap: 12px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-bar-inner {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .hero-badge {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .curriculum-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ranks-grid {
    gap: 8px;
  }

  .ranks-grid img {
    width: 50px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: normal;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-card);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-avatar--cyan {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  color: var(--cyan);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonials-footer {
  text-align: center;
}

.testimonial-trust-note {
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto 32px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    max-width: 100%;
  }
}