/* =========================================================
   STAFF-IA LANDING PAGE — LIGHT MODE CSS
   Light Palette:
   --bg:       #f5f7ff
   --surface:  #ffffff
   --card:     #ffffff
   --text:     #0d1428
   --muted:    #5a6a8a
   Accents:    cyan, blue, purple (same brand colors)
   ========================================================= */

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

:root {
  --cyan:        #0099cc;
  --cyan-bright: #00c8e6;
  --blue:        #1565ff;
  --blue-mid:    #2979ff;
  --purple:      #6d28d9;
  --dark:        #0d1428;
  --bg:          #f0f4ff;
  --bg2:         #e8edfc;
  --surface:     #ffffff;
  --card:        #ffffff;
  --card-border: rgba(21,101,255,0.25);
  --text:        #0d1428;
  --text-muted:  #5a6a8a;
  --green:       #059669;
  --gradient:    linear-gradient(135deg, #0099cc 0%, #2979ff 50%, #6d28d9 100%);
  --gradient-r:  linear-gradient(135deg, #6d28d9 0%, #2979ff 50%, #00c8e6 100%);
  --glow-blue:   0 8px 32px rgba(21,101,255,0.25);
  --shadow-sm:   0 2px 12px rgba(13,20,40,0.15);
  --shadow-md:   0 8px 32px rgba(13,20,40,0.20);
  --shadow-lg:   0 20px 60px rgba(13,20,40,0.25);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edfc 40%, #f5f0ff 100%);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  line-height: 1.6;
}

#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1; /* Opacity is controlled by JS per element */
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.15; color: var(--text); }

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

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  border: 1px solid rgba(41,121,255,0.45);
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(41,121,255,0.07);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(41,121,255,0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(41,121,255,0.4);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(5px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--surface);
  border: 1.5px solid rgba(41,121,255,0.25);
  color: var(--blue-mid);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-ghost svg { width: 22px; height: 22px; }
.btn-ghost:hover {
  background: rgba(21, 101, 255, 0.1);
}

.btn-oferta {
  background: linear-gradient(270deg, #1565ff, #ff8c00, #1565ff);
  background-size: 200% 200%;
  animation: gradient-vaiven 3s ease infinite;
  color: white !important;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
  transition: transform 0.3s ease;
}
.btn-oferta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.5);
}
@keyframes gradient-vaiven {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn-full { width: 100%; justify-content: center; }
.btn-xl { padding: 20px 40px; font-size: 1.1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(41,121,255,0.1);
  box-shadow: 0 4px 24px rgba(13,20,40,0.08);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-img {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(41,121,255,0.3));
}

.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.logo-accent { color: var(--blue-mid); }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--blue-mid); background: rgba(41,121,255,0.07); }

.nav-cta-link {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 700;
}

.nav-cta-link:hover {
  box-shadow: 0 8px 24px rgba(41,121,255,0.35);
  transform: translateY(-1px);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--blue-mid); border-radius: 2px; transition: var(--transition); display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: transparent;
}

/* Light hero BG shape */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(41,121,255,0.12) 0%, rgba(109,40,217,0.06) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,153,204,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg { display: none; } /* Hide dark bg image */

.grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10%;
  z-index: 1;
  pointer-events: none;
}

.grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(41,121,255,0.07) 30%, rgba(41,121,255,0.07) 70%, transparent);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(41,121,255,0.07);
  border: 1px solid rgba(41,121,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-mid);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(5,150,105,0); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-subtitle strong { color: var(--blue-mid); font-weight: 700; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus { font-size: 1.4rem; font-weight: 900; color: var(--blue-mid); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(13,20,40,0.1); }

.hero-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-note { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-robot-wrapper { position: relative; display: flex; justify-content: center; }

.robot-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,121,255,0.15) 0%, rgba(109,40,217,0.08) 50%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

.hero-robot {
  width: 100%;
  max-width: 480px;
  animation: float-robot 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(41,121,255,0.2));
  position: relative; z-index: 2;
}

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

/* Floating Cards */
.float-card {
  position: absolute;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(41,121,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  animation: float-card 6s ease-in-out infinite;
  z-index: 3;
}

.card-1 { top: 10%; left: -15%; animation-delay: 0s; }
.card-2 { top: 55%; right: -10%; animation-delay: -2s; }
.card-3 { bottom: 8%; left: -5%; animation-delay: -4s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(6px) rotate(-0.5deg); }
}

.card-icon { font-size: 1.4rem; }
.card-info { flex: 1; }
.card-title { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.card-sub { display: block; font-size: 0.72rem; color: var(--text-muted); }
.card-sub.green { color: var(--green); font-weight: 700; }

.card-badge { font-size: 0.62rem; font-weight: 800; padding: 3px 8px; border-radius: 100px; letter-spacing: 0.08em; }
.card-badge.live {
  background: rgba(5,150,105,0.12);
  color: var(--green);
  border: 1px solid rgba(5,150,105,0.25);
  animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-dot {
  width: 24px; height: 36px;
  border: 2px solid rgba(41,121,255,0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--blue-mid);
  border-radius: 2px;
  animation: scroll-dot-move 2s infinite;
}

@keyframes scroll-dot-move { 0% { top: 4px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(41,121,255,0.1);
  border-bottom: 1px solid rgba(41,121,255,0.1);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}

.trust-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.trust-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); }

.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--bg);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: 100px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}

.trust-item:hover {
  background: rgba(41,121,255,0.07);
  border-color: rgba(41,121,255,0.25);
  color: var(--blue-mid);
}

.trust-icon { font-size: 1rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--surface);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 2px 2px 0 0;
}

.step-card:hover::before { transform: scaleX(1); }
.step-card:hover {
  border-color: rgba(41,121,255,0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(41,121,255,0.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
}

.step-icon-wrap {
  width: 60px; height: 60px;
  background: var(--gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(41,121,255,0.25);
}

.step-icon { font-size: 1.6rem; }
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== FEATURES ===== */
.features {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #edf1fc, #f5f0ff);
}

.features-bg { display: none; } /* hide dark bg */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-large {
  grid-column: span 2;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: rgba(41,121,255,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(41,121,255,0.08), transparent 70%);
  pointer-events: none;
}

.feature-icon-big { font-size: 2.5rem; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Chat demo */
.feature-chat-demo {
  background: var(--bg);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message { display: flex; align-items: flex-start; gap: 10px; }
.chat-message.user { flex-direction: row-reverse; }

.chat-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.chat-bubble {
  background: rgba(41,121,255,0.07);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: 14px;
  padding: 8px 14px;
  font-size: 0.78rem;
  color: var(--text);
  max-width: 80%;
  line-height: 1.5;
}

.chat-message.user .chat-bubble {
  background: rgba(13,20,40,0.06);
  border-color: rgba(13,20,40,0.08);
}

.chat-typing { display: flex; align-items: center; gap: 4px; padding-left: 38px; }
.typing-dot {
  width: 6px; height: 6px;
  background: var(--blue-mid);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Mini UIs */
.feature-mini-ui { margin-top: auto; }

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.8rem;
  color: var(--text);
}

.mini-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mini-status.green { background: var(--green); box-shadow: 0 0 6px rgba(5,150,105,0.4); }
.mini-status.yellow { background: #d97706; }
.mini-status.blue { background: var(--blue-mid); }
.mini-val { margin-left: auto; font-size: 0.72rem; color: var(--text-muted); }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.tag {
  padding: 4px 12px;
  background: rgba(41,121,255,0.08);
  border: 1px solid rgba(41,121,255,0.18);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--blue-mid);
  font-weight: 600;
}

.uptime-bar { margin-top: auto; }
.uptime-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.uptime-label .green { color: var(--green); font-weight: 700; }
.uptime-track { background: rgba(41,121,255,0.08); border-radius: 100px; height: 8px; overflow: hidden; }
.uptime-fill {
  height: 100%;
  width: 99.99%;
  background: var(--gradient);
  border-radius: inherit;
  position: relative;
  overflow: hidden;
}
.uptime-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer { to { left: 200%; } }

.auto-flow { display: flex; align-items: center; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.auto-step {
  padding: 6px 12px;
  background: rgba(41,121,255,0.07);
  border: 1px solid rgba(41,121,255,0.15);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--blue-mid);
  font-weight: 600;
}
.auto-arrow { color: var(--text-muted); font-size: 0.9rem; }

.security-badges { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.sec-badge {
  padding: 8px 12px;
  background: rgba(109,40,217,0.06);
  border: 1px solid rgba(109,40,217,0.15);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--purple);
}

/* ===== PRODUCT PREVIEW ===== */
.product-preview {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.preview-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.preview-text .section-tag { margin-bottom: 16px; }
.preview-text .section-title { margin-bottom: 16px; text-align: left; }
.preview-text .section-subtitle { margin: 0 0 28px; text-align: left; }

.preview-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.preview-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.check-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.preview-image { position: relative; }
.preview-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(41,121,255,0.12), transparent 70%);
  pointer-events: none;
}

.dashboard-img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(41,121,255,0.15);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(41,121,255,0.08);
  transition: var(--transition);
}

.dashboard-img:hover {
  transform: scale(1.02) perspective(1000px) rotateY(-2deg);
  box-shadow: 0 40px 80px rgba(41,121,255,0.15);
}

.preview-badge {
  position: absolute;
  bottom: -12px; right: 24px;
  background: var(--surface);
  border: 1px solid rgba(5,150,105,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #f5f0ff, #edf1fc);
}

.testimonials-bg { display: none; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: rgba(41,121,255,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured-testimonial {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(41,121,255,0.04) 0%, rgba(109,40,217,0.04) 100%);
  border-color: rgba(41,121,255,0.15);
}

.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.author-info strong { display: block; font-size: 0.9rem; color: var(--text); }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }

.testimonial-result {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(41,121,255,0.1);
}

.result-num {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.pricing-glow-left, .pricing-glow-right { display: none; }

.pricing-card {
  background: var(--surface);
  border: 1px solid rgba(41,121,255,0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.main-plan {
  background: linear-gradient(135deg, rgba(41,121,255,0.04), rgba(109,40,217,0.04));
  border-color: rgba(41,121,255,0.25);
  box-shadow: 0 0 0 4px rgba(41,121,255,0.06), var(--shadow-lg);
}

.pricing-badge-top {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-header { margin-bottom: 24px; margin-top: 16px; }
.plan-header h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 6px; }
.plan-header p { color: var(--text-muted); font-size: 0.9rem; }

.price-display { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }

.currency { font-size: 1.8rem; font-weight: 700; color: var(--blue-mid); align-self: flex-start; margin-top: 8px; }

.price-amount {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period { display: flex; flex-direction: column; align-self: flex-end; }
.price-usd { font-size: 0.85rem; color: var(--blue-mid); font-weight: 700; }
.price-period span { color: var(--text-muted); font-size: 0.85rem; }

.price-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }

.plan-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.plan-feature { display: flex; align-items: flex-start; gap: 14px; }

.feat-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature div strong { display: block; font-size: 0.9rem; color: var(--text); font-weight: 600; }
.plan-feature div small { font-size: 0.78rem; color: var(--text-muted); }

.pricing-guarantee { text-align: center; margin-top: 16px; font-size: 0.8rem; color: var(--text-muted); }

/* Comparison */
.compare-cards { display: flex; flex-direction: column; gap: 20px; align-self: center; }
.compare-vs { text-align: center; font-size: 1.5rem; font-weight: 900; color: var(--text-muted); }

.compare-card {
  background: var(--surface);
  border: 1px solid rgba(13,20,40,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.compare-winner {
  border-color: rgba(41,121,255,0.2);
  background: linear-gradient(135deg, rgba(41,121,255,0.04), rgba(109,40,217,0.04));
}

.compare-card h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text); }
.compare-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.compare-card li { font-size: 0.85rem; color: var(--text-muted); }
.compare-card li.good { color: var(--text); }
.compare-card li.bad { text-decoration: line-through; opacity: 0.5; }

.compare-total { font-size: 1.4rem; font-weight: 800; text-align: center; padding: 12px; border-radius: var(--radius-md); }
.bad-total { background: rgba(220,38,38,0.07); color: #dc2626; }
.good-total { background: var(--gradient); color: #fff; }

/* ===== FAQ ===== */
.faq {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, #edf1fc, var(--bg));
}

.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(41,121,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover { border-color: rgba(41,121,255,0.2); box-shadow: var(--shadow-md); }
.faq-item.open { border-color: rgba(41,121,255,0.25); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { color: var(--blue-mid); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(41,121,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--blue-mid);
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gradient); color: #fff; border-color: transparent; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #edf1fc 0%, #f5f0ff 100%);
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }

.cta-glow-1 {
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,121,255,0.1), transparent 70%);
}

.cta-glow-2 {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.08), transparent 70%);
}

.cta-content { max-width: 720px; margin: 0 auto; text-align: center; }

.cta-badge {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: #d97706;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.cta-title { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.cta-subtitle { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-align: left; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--surface);
  border: 1.5px solid rgba(41,121,255,0.35);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: var(--shadow-sm);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(90,106,138,0.6); }

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(41,121,255,0.4);
  box-shadow: 0 0 0 4px rgba(41,121,255,0.08);
}

.form-group select option { background: #fff; color: var(--text); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 8px; }

/* CAPTCHA STYLES */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-question {
  background: var(--blue-light);
  color: var(--blue-mid);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  border: 1.5px solid rgba(41,121,255,0.15);
  white-space: nowrap;
}
.captcha-box input {
  max-width: 150px;
  flex: none;
}

/* INTL-TEL-INPUT OVERRIDES */
.iti { width: 100%; display: block; }
.iti__flag-container { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.iti__selected-flag { background: transparent !important; }

.form-success { text-align: center; padding: 48px 24px; }
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 { font-size: 1.8rem; color: var(--text); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); font-size: 1rem; margin-bottom: 12px; }
.success-whatsapp a { color: var(--green); text-decoration: none; font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(41,121,255,0.15);
  position: relative;
  z-index: 2;
}

.footer-container { max-width: 1240px; margin: 0 auto; padding: 60px 24px 32px; }

.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 48px; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; }
.footer-logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { color: #fff; background: rgba(41,121,255,0.3); border-color: rgba(41,121,255,0.4); transform: translateY(-3px); }

.footer-links-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: #fff; transform: translateX(4px); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-partner { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-partner strong { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--text);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.whatsapp-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.5s infinite;
  top: 0; left: 0;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

.green { color: var(--green); }

/* ===== RESPONSIVE — TABLET 1024px ===== */
@media (max-width: 1024px) {
  .hero-container { gap: 40px; padding: 60px 24px 80px; }
  .hero-title { font-size: clamp(2.4rem, 4.5vw, 4rem); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-large { grid-column: span 2; grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .featured-testimonial { grid-column: span 2; }
  .pricing-wrapper { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .preview-content { grid-template-columns: 1fr; gap: 48px; }
  .preview-text .section-subtitle { max-width: 100%; }
  .compare-cards { flex-direction: row; align-items: center; }
  .compare-card { flex: 1; }
  .footer-top { gap: 40px; }
  .section-container { padding: 80px 24px; }
}

/* ===== RESPONSIVE — MOBILE 768px ===== */
@media (max-width: 768px) {
  /* NAV */
  .navbar.scrolled { padding: 0; }
  .nav-container { padding: 16px 20px; }
  .logo-text { font-size: 1.25rem; }
  .logo-img { width: 34px; height: 34px; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    padding: 30px 24px 40px;
    border-bottom: 1px solid rgba(41,121,255,0.12);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    box-shadow: 0 20px 40px rgba(13, 20, 40, 0.15);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: -1;
    gap: 12px;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex !important; z-index: 10000; position: relative; margin-left: auto; }
  .nav-link { 
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px; 
    font-size: 1.15rem; 
    font-weight: 500;
    border-radius: 16px; 
    color: var(--text); 
  }
  .nav-link:hover, .nav-link:active {
    background: rgba(41,121,255,0.05);
    color: var(--blue-mid);
  }
  .nav-cta-link { 
    width: 100%;
    text-align: center; 
    margin-top: 16px; 
    padding: 18px !important;
    font-size: 1.15rem;
    box-shadow: var(--glow-blue);
  }

  /* HERO */
  .hero { padding-top: 80px; min-height: auto; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 20px 60px;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { order: -1; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-subtitle { text-align: center; font-size: 1rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.75rem; }
  .hero-stats { justify-content: center; gap: 20px; }
  .stat-number { font-size: 1.8rem; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 15px 24px; }
  .hero-note { font-size: 0.72rem; text-align: center; }
  .float-card { display: none; }
  .hero-robot { max-width: 280px; }
  .robot-glow { width: 260px; height: 260px; }
  .scroll-indicator { display: none; }

  /* TRUST BAR */
  .trust-bar { padding: 20px 16px; }
  .trust-logos { gap: 6px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }

  /* HOW IT WORKS */
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { padding: 28px 24px; }
  .step-card:hover { transform: none; }
  .step-number { font-size: 3rem; }

  /* FEATURES */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-large { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-card { padding: 24px 20px; }
  .feature-card:hover { transform: none; }
  .feature-icon-big { font-size: 2rem; }

  /* PRODUCT PREVIEW */
  .preview-content { grid-template-columns: 1fr; gap: 32px; }
  .preview-text { align-items: center; text-align: center; }
  .preview-text .section-title { text-align: center; }
  .preview-text .section-subtitle { text-align: center; }
  .preview-list { text-align: left; align-self: stretch; }
  .preview-text a { align-self: center; width: 100%; justify-content: center; }
  .preview-badge { display: none; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .featured-testimonial { grid-column: span 1; }
  .testimonial-card:hover { transform: none; }

  /* PRICING */
  .pricing-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .pricing-card { padding: 28px 20px; }
  .price-amount { font-size: 4rem; }
  .compare-cards { flex-direction: column; }
  .compare-vs { font-size: 1.1rem; }

  /* FAQ */
  .faq-question { font-size: 0.92rem; padding: 16px 18px; }
  .faq-answer p { padding: 0 18px 16px; }

  /* CTA FORM */
  .cta-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .cta-subtitle { font-size: 0.95rem; }
  .form-row { grid-template-columns: 1fr; }
  .btn-xl { padding: 16px 24px; font-size: 1rem; }
  .cta-content { padding: 0 4px; }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-links-group { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-container { padding: 48px 20px 28px; }

  /* WHATSAPP */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }

  /* SECTION SPACING */
  .section-container { padding: 64px 20px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .section-subtitle { font-size: 0.95rem; }
}

/* ===== RESPONSIVE — SMALL MOBILE 480px ===== */
@media (max-width: 480px) {
  .hero-title { font-size: 1.9rem; }
  .hero-container { padding: 32px 16px 56px; }
  .hero-robot { max-width: 240px; }
  .hero-stats { gap: 14px; }
  .stat-number { font-size: 1.6rem; }
  .stat-divider { height: 30px; }

  .section-container { padding: 56px 16px; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.65rem; }
  .section-tag { font-size: 0.66rem; padding: 5px 12px; }

  .step-card { padding: 24px 18px; }
  .step-icon-wrap { width: 50px; height: 50px; }
  .step-icon { font-size: 1.3rem; }

  .feature-card { padding: 20px 16px; }
  .feature-icon-big { font-size: 1.8rem; }

  .testimonial-card { padding: 20px; }
  .featured-testimonial { padding: 24px 20px; }

  .pricing-card { padding: 24px 16px; }
  .pricing-badge-top { font-size: 0.65rem; padding: 5px 14px; }
  .price-amount { font-size: 3.5rem; }
  .plan-feature div strong { font-size: 0.85rem; }
  .plan-feature div small { font-size: 0.74rem; }

  .cta-title { font-size: 1.7rem; }
  .form-group input, .form-group select, .form-group textarea { padding: 12px 14px; font-size: 0.9rem; }

  .footer-links-group { grid-template-columns: 1fr; gap: 20px; }
  .footer-col { gap: 10px; }

  .trust-item { font-size: 0.74rem; padding: 5px 10px; }
  .trust-logos { gap: 5px; }

  .compare-card { padding: 18px; }
  .compare-total { font-size: 1.2rem; }

  .btn-primary, .btn-ghost { font-size: 0.92rem; padding: 13px 20px; }
  .btn-xl { padding: 14px 20px; font-size: 0.95rem; }
}

/* ===== RESPONSIVE — TINY 360px ===== */
@media (max-width: 360px) {
  .hero-title { font-size: 1.7rem; }
  .hero-badge { font-size: 0.68rem; padding: 6px 12px; }
  .stat-number { font-size: 1.4rem; }
  .hero-cta-group { gap: 10px; }
  .section-title { font-size: 1.5rem; }
  .nav-container { padding: 14px 16px; }
  .logo-text { font-size: 1.1rem; }
  .footer-container { padding: 40px 14px 24px; }
}

/* ===== TOUCH DEVICES — Disable hover transforms ===== */
@media (hover: none) {
  .step-card:hover,
  .feature-card:hover,
  .testimonial-card:hover,
  .pricing-card:hover,
  .trust-item:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .dashboard-img:hover {
    transform: none;
  }
}

/* ===== PRICING MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(13, 20, 40, 0.4);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #f4f6fb;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow-y: auto;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s;
  z-index: 2;
}
.modal-close:hover {
  background: var(--dark);
  color: white;
}

.modal-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.modal-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
  background-image: radial-gradient(rgba(13, 20, 40, 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
}

.modal-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--dark);
  background: white;
}

.modal-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.modal-card-price {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.modal-price-val {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.modal-price-term {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.modal-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.modal-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}
.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text);
}
.modal-check {
  width: 18px; height: 18px;
  color: #10b981; /* Green */
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.2s;
}

.modal-btn-black {
  background: #0f172a;
  color: white;
}
.modal-btn-black:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.modal-btn-disabled {
  background: #ffffff;
  color: #94a3b8;
  border: 1px solid #e2e8f0;
  pointer-events: none;
}

@media (max-width: 992px) {
  .modal-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .modal-content { 
    padding: 20px 15px; 
    width: 95%;
    max-height: 85vh;
    margin: 0 auto;
  }
  .modal-card {
    padding: 24px 16px;
  }
  .modal-plans-grid {
    grid-template-columns: 1fr;
  }
}
