/* ========================================
   DESIGN SYSTEM — AGÊNCIA DIGITAL EVOLUT
   ======================================== */

:root {
  /* ── COLORS ── */
  --color-background:       #000000;
  --color-background-alt:   #0F0F0F;
  --color-surface:          rgba(15, 17, 21, 0.95);
  --color-surface-hover:    rgba(19, 22, 28, 0.9);
  --color-surface-elevated: #111318;

  --color-accent:           #3B82F6;   /* blue-500 */
  --color-accent-light:     #22D3EE;   /* cyan-400 */
  --color-accent-lighter:   #67E8F9;   /* cyan-300 */
  --color-accent-pale:      #A5F3FC;
  --color-accent-wash:      #ECFEFF;
  --color-accent-deep:      #1E40AF;   /* blue-800 */

  --color-text:             #F1F5F9;   /* slate-100 */
  --color-text-strong:      #FFFFFF;
  --color-text-muted:       #94A3B8;   /* slate-400 */
  --color-text-subtle:      #64748B;   /* slate-500 */
  --color-text-faint:       #475569;   /* slate-600 */

  --color-border:           rgba(59, 130, 246, 0.2);
  --color-border-strong:    rgba(59, 130, 246, 0.3);
  --color-border-subtle:    rgba(255, 255, 255, 0.08);
  --color-border-muted:     #1E293B;

  --color-success:          #22C55E;
  --color-warning:          #FBBF24;
  --color-error:            #EF4444;
  --color-info:             #3B82F6;

  /* ── TYPOGRAPHY ── */
  --font-primary:     'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:        'Geist Mono', ui-monospace, 'Cascadia Code', monospace;

  --text-xs:    0.625rem;  /* 10px */
  --text-sm:    0.75rem;   /* 12px */
  --text-base:  0.875rem;  /* 14px */
  --text-md:    1rem;      /* 16px */
  --text-lg:    1.125rem;  /* 18px */
  --text-xl:    1.25rem;   /* 20px */
  --text-2xl:   1.5rem;    /* 24px */
  --text-3xl:   2.25rem;   /* 36px */
  --text-4xl:   3rem;      /* 48px */
  --text-5xl:   3.75rem;   /* 60px */

  --weight-regular:   400;
  --weight-medium:    500;
  --weight-semibold:  600;
  --weight-bold:      700;

  --leading-tight:    1.1;
  --leading-normal:   1.5;
  --leading-relaxed:  1.6;

  /* ── SPACING ── */
  --space-1:    4px;
  --space-2:    8px;
  --space-3:    12px;
  --space-4:    16px;
  --space-5:    20px;
  --space-6:    24px;
  --space-8:    32px;
  --space-10:   40px;
  --space-12:   48px;
  --space-16:   64px;
  --space-20:   80px;
  --space-24:   96px;

  /* ── RADIUS ── */
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --radius-2xl:   24px;
  --radius-full:  9999px;

  /* ── SHADOWS ── */
  --shadow-sm:      0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md:      0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg:      0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-glow:    0 0 15px rgba(59, 130, 246, 0.4);
  --shadow-glow-sm: 0 0 10px rgba(34, 211, 238, 0.3);

  /* ── GRADIENTS ── */
  --gradient-accent:    linear-gradient(to right bottom, #3B82F6, #22D3EE);
  --gradient-text:      linear-gradient(to right, #3B82F6, #22D3EE, #67E8F9);
  --gradient-surface:   linear-gradient(to right bottom, rgba(15, 17, 21, 0.95), rgba(19, 22, 28, 0.9), rgba(0, 0, 0, 0.95));

  /* ── TRANSITIONS ── */
  --transition-fast:    150ms ease;
  --transition-base:    250ms ease;
  --transition-slow:    400ms ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-weight: var(--weight-semibold);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  font-family: var(--font-primary);
  border-radius: var(--radius-full);
}

.btn-primary {
  background: var(--gradient-accent);
  color: #000;
  box-shadow: var(--shadow-glow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.btn-secondary:hover {
  border-color: var(--color-accent-light);
  color: var(--color-text-strong);
  box-shadow: var(--shadow-glow-sm);
}

.btn-sm { padding: var(--space-2) var(--space-5); font-size: var(--text-sm); }
.btn-lg { padding: var(--space-4) var(--space-10); font-size: var(--text-md); }

@media (max-width: 768px) {
  .btn-lg { width: 100%; text-align: center; }
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-3) 0;
  background: rgba(15, 17, 21, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: transform var(--transition-base);
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-8);
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--color-accent-light);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

@media (max-width: 768px) {
  .nav { display: none; }
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-24);
  padding-bottom: var(--space-12);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.advisory-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent);
  animation: pulse 2s infinite;
}

.badge-text {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text-strong);
  margin-bottom: var(--space-6);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-10);
  line-height: var(--leading-relaxed);
}

@media (max-width: 1024px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pulse-glow {
  animation: pulse-glow 3s infinite;
}

.social-proof-hero {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stars {
  font-size: 14px;
  letter-spacing: 2px;
}

.social-proof-text {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  font-style: italic;
}

/* ── HERO VISUAL (ENHANCED) ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.visual-container {
  position: relative;
  width: 100%;
  max-width: 540px;
}

.glass-card {
    background: rgba(15, 17, 21, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda de cristal */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(15, 17, 21, 0.55);
}

.main-dashboard {
  padding: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.main-dashboard .card-header {
  padding: var(--space-4) var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.green {
  background: var(--color-success);
  box-shadow: 0 0 10px var(--color-success);
}

.header-tabs {
  display: flex;
  gap: var(--space-4);
}

.tab {
  font-size: 10px;
  font-weight: var(--weight-bold);
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.tab.active {
  color: var(--color-accent-light);
}

.main-dashboard .card-body {
  padding: var(--space-8);
}

.dashboard-main-stat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.stat-value {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.stat-sub {
  display: block;
  font-size: 10px;
  color: var(--color-text-faint);
  margin-top: var(--space-2);
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
}

.dashboard-chart-grid {
  height: 100px;
  margin-bottom: var(--space-8);
  position: relative;
}

.chart-svg-main {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.4));
}

.dashboard-strategies {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.strategy-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.s-icon { font-size: 14px; }
.s-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
}

/* ── STRAT BADGES ── */
.strat-badge {
  position: absolute;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  z-index: 3;
  min-width: 140px;
}

.strat-title {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-faint);
  margin-bottom: 2px;
}

.strat-status {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-accent-light);
}

.strat-value {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-text-strong);
}

.b1 {
  top: -5%;
  right: -8%;
  animation: float 7s ease-in-out infinite;
}

.b2 {
  top: 40%;
  right: -12%;
  animation: float 5s ease-in-out infinite 1s;
}

.b3 {
  bottom: 5%;
  left: -8%;
  animation: float 6s ease-in-out infinite reverse;
}

/* ── TECH STACK ── */
.tech-stack {
  position: absolute;
  bottom: -40px;
  right: 0;
  display: flex;
  gap: var(--space-2);
  opacity: 0.6;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  z-index: 1;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* ── DATA-AOS SIMULATION (Simple entrance animations) ── */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

[data-aos="fade-down"] {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeDown 0.8s ease forwards;
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  to { opacity: 1; transform: scale(1); }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* ── SUCCESS SECTION ── */
.success-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
}

.success-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.check-badge {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--color-accent-light);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.success-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.success-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

@media (max-width: 900px) {
    .success-grid {
        grid-template-columns: 1fr;
    }
}

.success-card {
    background: rgba(15, 17, 21, 0.35); /* Ainda mais transparente para a segunda dobra */
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    height: 100%;
}

.success-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 17, 21, 0.5);
    border-color: var(--color-accent-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 211, 238, 0.1);
}

.card-icon-container {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--color-accent-light);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transition: all var(--transition-base);
}

.success-card:hover .card-icon-container {
    background: rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    transform: scale(1.1);
}

.card-icon-container svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
}

.success-card h3 {
    font-size: var(--text-xl);
    color: var(--color-text-strong);
    margin-bottom: var(--space-4);
}

.success-card p {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
}

/* ── PROBLEM / AGITATION SECTION ── */
.problem-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.problem-header {
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-border);
    color: var(--color-accent-light);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.problem-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.problem-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

@media (max-width: 900px) {
    .warning-grid {
        grid-template-columns: 1fr;
    }
}

.warning-card {
    background: rgba(15, 17, 21, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.warning-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 17, 21, 0.5);
    border-color: var(--color-accent-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 211, 238, 0.1);
}

.warning-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: var(--color-accent-light);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
    transition: all var(--transition-base);
}

.warning-card:hover .warning-icon {
    background: rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    transform: scale(1.1);
}

.warning-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, 0.5));
}

.warning-card h3 {
    font-size: var(--text-xl);
    color: var(--color-text-strong);
    margin-bottom: var(--space-4);
}

.warning-card p {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
}

.problem-conclusion {
    margin-top: var(--space-12);
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
    color: var(--color-text-strong);
    background: rgba(255, 255, 255, 0.03);
    padding: var(--space-6) var(--space-10);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
    backdrop-filter: blur(16px);
}

/* ── VALUE STACK & PRICING SECTION ── */
.value-stack-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
}

.vs-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.vs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.vs-title-highlight {
    background: linear-gradient(to right, var(--color-accent-light), var(--color-accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.vs-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.vs-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: rgba(15, 17, 21, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-base);
}

.vs-item:hover {
    background: rgba(15, 17, 21, 0.6);
    border-color: rgba(34, 211, 238, 0.2);
    transform: translateX(10px);
}

.vs-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    margin-top: 2px;
}

.vs-content {
    flex: 1;
}

.vs-content h4 {
    font-size: var(--text-lg);
    color: var(--color-text-strong);
    margin-bottom: var(--space-2);
}

.vs-content p {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.vs-value {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-accent-light);
    font-weight: var(--weight-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.vs-total {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-20);
    padding: var(--space-10);
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-2xl);
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
    backdrop-filter: blur(16px);
}

.vs-total h3 {
    font-size: var(--text-xl);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vs-total .total-amount {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    line-height: 1;
}

/* ── PRICING CARDS ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    align-items: stretch;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

.pricing-card {
    background: rgba(15, 17, 21, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-8);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.pro {
    background: rgba(19, 22, 28, 0.8);
    border: 1px solid rgba(34, 211, 238, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(34, 211, 238, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

@media (max-width: 1024px) {
    .pricing-card.pro {
        transform: scale(1);
    }
}

.pricing-card.pro:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 50px rgba(34, 211, 238, 0.3);
}

.pro-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-accent-light);
    color: #000;
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    white-space: nowrap;
}

.pricing-name {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    margin-bottom: var(--space-2);
}

.pricing-desc {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-8);
    min-height: 48px;
    line-height: var(--leading-relaxed);
}

.pricing-price {
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    margin-bottom: var(--space-8);
    display: flex;
    flex-direction: column;
}

.pricing-price span {
    font-size: var(--text-sm);
    color: var(--color-text-subtle);
    font-weight: var(--weight-regular);
    margin-top: var(--space-2);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-10);
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--color-text);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.feature-check {
    color: var(--color-accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn {
    width: 100%;
    padding: var(--space-4);
    text-align: center;
    border-radius: var(--radius-lg);
    font-weight: var(--weight-bold);
    transition: all var(--transition-base);
    text-decoration: none;
    font-size: var(--text-md);
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-strong);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-strong);
    border: none;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    color: #000;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
}

/* ── SOCIAL PROOF CAROUSEL SECTION ── */
.testimonials-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.testimonials-marquee {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--space-4) 0;
    /* Fade mask on edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: var(--space-6);
    padding-right: var(--space-6); /* Ensures gap is accounted for seamless loop */
    flex-shrink: 0;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(15, 17, 21, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-6) var(--space-8);
    width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .testimonial-card { width: 300px; padding: var(--space-6); }
    .marquee-group { gap: var(--space-4); padding-right: var(--space-4); }
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.new-quote-icon {
    color: var(--color-text-strong);
    margin-bottom: var(--space-4);
    width: 20px;
}

.testimonial-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    flex-grow: 1;
}

.testimonial-text strong {
    color: var(--color-text-strong);
    font-weight: var(--weight-semibold);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.author-avatar.grayscale {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1f2125;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--color-text-strong);
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.author-info p {
    color: var(--color-text-subtle);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── TRANSFORMATION SECTION ── */
.transformation-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
}

.transformation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), var(--color-accent-light), transparent);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-12);
    width: 100%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 24px;
    top: 32px;
    width: 16px;
    height: 16px;
    background: var(--color-background-alt);
    border: 3px solid var(--color-accent-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.8);
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
        top: 50%;
    }
}

.timeline-content {
    background: rgba(15, 17, 21, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-left: 60px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-base);
    position: relative;
}

@media (min-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 0;
        margin-right: calc(50% + 40px);
        text-align: right;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: calc(50% + 40px);
        margin-right: 0;
        text-align: left;
    }
}

.timeline-content:hover {
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 211, 238, 0.1);
    transform: translateY(-5px);
}

.timeline-tag {
    font-size: var(--text-sm);
    color: var(--color-accent-light);
    font-weight: var(--weight-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    display: block;
}

.timeline-content h3 {
    color: var(--color-text-strong);
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.timeline-content p {
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
}

/* ── FAQ SECTION ── */
.faq-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.faq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: rgba(15, 17, 21, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(34, 211, 238, 0.2);
}

.faq-item summary {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-text-strong);
    padding: var(--space-6) var(--space-8);
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    transition: transform 0.3s ease;
}

.faq-item[open] summary .faq-icon {
    transform: rotate(45deg);
}

.faq-item[open] {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.05);
}

.faq-item[open] summary {
    color: var(--color-accent-light);
}

.faq-content {
    padding: 0 var(--space-8) var(--space-6) var(--space-8);
    color: var(--color-text-muted);
    font-size: var(--text-md);
    line-height: var(--leading-relaxed);
    animation: faq-slide-down 0.3s ease-out forwards;
}

@keyframes faq-slide-down {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ── CTA SECTION ── */
.cta-section {
    padding: var(--space-24) 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-box {
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.45) 0%, rgba(34, 211, 238, 0.05) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-16) var(--space-8);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(34, 211, 238, 0.05);
    backdrop-filter: blur(20px);
}

.cta-glow-bg {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100px;
    background: var(--color-accent-light);
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: var(--weight-bold);
    color: var(--color-text-strong);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 660px;
    margin: 0 auto var(--space-10);
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 2;
}

.cta-section .btn-glow {
    position: relative;
    z-index: 2;
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-accent-light);
    color: #000;
    border-radius: var(--radius-full);
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition: all var(--transition-base);
    animation: btn-pulse 2s infinite;
}

.cta-section .btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.8);
    background: #fff;
}

@keyframes btn-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(34, 211, 238, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

/* ── FOOTER ── */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-12) 0 var(--space-8);
    background: #000;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    text-align: center;
}

.footer-brand h4 {
    font-size: var(--text-xl);
    color: var(--color-text-strong);
    font-weight: var(--weight-bold);
    margin-bottom: var(--space-2);
    letter-spacing: 0.05em;
}

.footer-brand p {
    color: var(--color-accent-light);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-social {
    display: flex;
    gap: var(--space-6);
}

.footer-social a {
    color: var(--color-text-muted);
    transition: color var(--transition-base), transform var(--transition-base);
    display: flex;
}

.footer-social a:hover {
    color: var(--color-accent-light);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    color: var(--color-text-subtle);
    font-size: var(--text-sm);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}

.footer-links {
    display: flex;
    gap: var(--space-6);
}

.footer-links a {
    color: var(--color-text-subtle);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-text-muted);
}

/* ── AURA ELECTRIC BACKGROUND ── */
.aura-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #02010a;
  overflow: hidden;
  pointer-events: none;
}

.glow-base {
  position: absolute;
  bottom: -15%;
  left: 50%;
  width: 120%;
  height: 60vh;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  filter: blur(100px);
  transform: translateX(-50%);
  z-index: 1;
}

.glow-core {
  position: absolute;
  bottom: -10%;
  left: 50%;
  width: 60%;
  height: 40vh;
  background: radial-gradient(circle at center, rgba(34, 211, 238, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  transform: translateX(-50%);
  z-index: 2;
}

.dot-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}

.beams-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.beam-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.beam-wrapper {
  position: relative;
}

.beam {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  animation: beam-rise-v2 4s cubic-bezier(0.2, 0, 0.3, 1) infinite;
  background: linear-gradient(to top, transparent, var(--color-accent), transparent);
}

@keyframes beam-rise-v2 {
  0% { transform: translateY(110vh) rotate(-2deg); opacity: 0; }
  30% { opacity: 0.9; }
  70% { opacity: 0.9; }
  100% { transform: translateY(-110vh) rotate(2deg); opacity: 0; }
}

.particles-container {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.particle-v2 {
  position: absolute;
  background: #60a5fa;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 15px #3b82f6;
  animation: particle-drift 6s ease-out infinite;
}

@keyframes particle-drift {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

/* ============================================================
   RESPONSIVE — MOBILE BREAKPOINTS
   ============================================================ */

/* ── TABLET (max-width: 1024px) ── */
@media (max-width: 1024px) {
    .hero {
        padding-top: var(--space-16);
        padding-bottom: var(--space-8);
    }

    .hero-visual {
        margin-top: var(--space-10);
    }

    .strat-badge {
        display: none;
    }

    .tech-stack {
        display: none;
    }

    .success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.pro {
        transform: none;
    }

    .vs-grid {
        gap: var(--space-4);
    }

    .timeline::before {
        left: 24px;
    }

    .timeline-dot {
        left: 24px;
        top: 32px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
}

/* ── MOBILE (max-width: 768px) ── */
@media (max-width: 768px) {
    /* General spacing */
    :root {
        --space-24: 64px;
        --space-16: 48px;
    }

    .container {
        padding: 0 var(--space-4);
    }

    /* Header */
    .header {
        padding: var(--space-3) 0;
    }

    .logo-img {
        height: 40px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-8);
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

    .hero-description {
        font-size: var(--text-md);
    }

    .btn-lg {
        font-size: var(--text-md);
        padding: var(--space-4) var(--space-6);
    }

    .visual-container {
        max-width: 100%;
    }

    .main-dashboard .card-body {
        padding: var(--space-4);
    }

    .stat-value {
        font-size: var(--text-3xl);
    }

    .dashboard-chart-grid {
        height: 70px;
        margin-bottom: var(--space-4);
    }

    /* Success Section */
    .success-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .success-card {
        padding: var(--space-6);
    }

    .card-icon-container {
        width: 48px;
        height: 48px;
    }

    /* Problem Section */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .problem-card {
        padding: var(--space-6);
    }

    .problem-conclusion {
        font-size: var(--text-lg);
        padding: var(--space-6);
    }

    /* Value Stack */
    .vs-item {
        padding: var(--space-4);
    }

    .vs-total {
        padding: var(--space-6);
    }

    .total-amount {
        font-size: 2rem !important;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: var(--space-4);
    }

    .pricing-card {
        padding: var(--space-6);
    }

    .pricing-card.pro {
        transform: none;
    }

    .pricing-price {
        font-size: var(--text-3xl);
    }

    /* Testimonials */
    .testimonial-card {
        width: 280px;
        padding: var(--space-4) var(--space-6);
    }

    .testimonials-marquee {
        max-width: 100%;
    }

    .marquee-group {
        gap: var(--space-4);
        padding-right: var(--space-4);
    }

    /* Timeline */
    .timeline::before {
        left: 24px;
    }

    .timeline-dot {
        left: 24px;
        top: 32px;
    }

    .timeline-item .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 56px;
        margin-right: 0;
        text-align: left;
        padding: var(--space-6);
    }

    .timeline-content h3 {
        font-size: var(--text-lg);
    }

    /* FAQ */
    .faq-item summary {
        font-size: var(--text-md);
        padding: var(--space-4) var(--space-6);
    }

    .faq-content {
        padding: 0 var(--space-6) var(--space-4) var(--space-6);
        font-size: var(--text-sm);
    }

    /* CTA */
    .cta-box {
        padding: var(--space-10) var(--space-4);
    }

    .cta-section h2 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }

    .cta-section .btn-glow {
        font-size: var(--text-md);
        padding: var(--space-4) var(--space-6);
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .copyright.text-left {
        text-align: center;
    }
}

/* ── SMALL MOBILE (max-width: 480px) ── */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: var(--text-base);
    }

    .advisory-badge {
        font-size: 9px;
    }

    .badge-text {
        font-size: 8px;
    }

    .success-title,
    .testimonials-title,
    .faq-title {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: var(--text-2xl);
    }

    .main-dashboard .card-header {
        padding: var(--space-3) var(--space-4);
    }

    .header-tabs {
        display: none;
    }

    .testimonial-card {
        width: 260px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .btn-lg {
        font-size: var(--text-base);
        padding: var(--space-3) var(--space-5);
    }

    .pricing-card {
        padding: var(--space-4);
    }

    .timeline-item .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 48px;
        padding: var(--space-4);
    }
}
