/* ══════════════════════════════════════════════════
   LEVSON AI — STYLESHEET PROFESIONAL
   Colores: #1A0E5C #5B3FD4 #00D4AA #F4F2FF #0C0E1A
══════════════════════════════════════════════════ */

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

:root {
  --navy:   #1A0E5C;
  --purple: #5B3FD4;
  --teal:   #00D4AA;
  --violet: #F4F2FF;
  --black:  #0C0E1A;
  --muted:  #94A3B8;
  --border: rgba(255,255,255,0.08);
  --card:   rgba(255,255,255,0.04);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 25px 60px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.4; }
h5 { font-size: 15px; font-weight: 600; }
h6 { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
p  { font-size: 15px; line-height: 1.75; color: var(--muted); }

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.teal { color: var(--teal); }
.red { color: #E24B4A; }
.purple { color: var(--purple); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s ease; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple); color: white;
}
.btn-primary:hover { background: #4a32c0; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91,63,212,0.4); }

.btn-ghost {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-nav {
  background: var(--purple); color: white;
  padding: 10px 22px; font-size: 14px;
}
.btn-nav:hover { background: #4a32c0; }

.btn-full { width: 100%; justify-content: center; }

.btn-primary-price {
  display: block; text-align: center; text-decoration: none;
  background: white; color: var(--navy);
  padding: 14px 24px; border-radius: 50px;
  font-weight: 700; font-size: 15px;
  transition: all 0.2s;
}
.btn-primary-price:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,0.2); }

.btn-outline-price {
  display: block; text-align: center; text-decoration: none;
  background: transparent; color: white;
  padding: 14px 24px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  font-weight: 600; font-size: 15px;
  transition: all 0.2s;
}
.btn-outline-price:hover { border-color: var(--teal); color: var(--teal); }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--teal); display: inline-block;
}
.section-label.light { color: var(--teal); }

.section-title { margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--teal); }
.section-sub { font-size: 17px; margin-bottom: 48px; max-width: 560px; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(12,14,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled { background: rgba(12,14,26,0.97); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

/* ── LOGO ── */
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px; background: var(--purple); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.logo-l { font-size: 28px; font-weight: 900; color: white; line-height: 1; }
.logo-dot {
  position: absolute; top: 6px; right: 6px;
  width: 8px; height: 8px; background: var(--teal); border-radius: 50%;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 18px; font-weight: 700; color: white; }
.logo-ai { font-size: 10px; font-weight: 400; color: var(--teal); letter-spacing: 4px; }

/* ── NAV LINKS ── */
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.05); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: white; border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none; flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile a {
  color: var(--muted); text-decoration: none;
  padding: 12px; font-size: 15px; border-radius: 8px;
  transition: all 0.2s;
}
.nav-mobile a:hover { color: white; background: rgba(255,255,255,0.05); }
.nav-mobile.open { display: flex; }

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

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--navy); opacity: 0.7;
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: var(--purple); opacity: 0.08;
  bottom: 100px; left: 100px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,63,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,63,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 60px; align-items: center;
  padding-top: 80px; padding-bottom: 80px;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(91,63,212,0.15);
  border: 1px solid rgba(91,63,212,0.3);
  color: #A78BFA; font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--teal);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title { color: white; margin-bottom: 24px; }

.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--muted); margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: white; }
.stat-label { display: block; font-size: 11px; color: #64748B; margin-top: 2px; }
.stat-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ── CHAT WINDOW ── */
.hero-chat { position: relative; }

.chat-window {
  background: #1a1f2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 380px;
}
.chat-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-avatar {
  width: 40px; height: 40px; background: var(--purple);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.chat-name { font-size: 14px; font-weight: 600; }
.chat-status { font-size: 12px; color: var(--teal); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.online-dot { width: 6px; height: 6px; background: #00D4AA; border-radius: 50%; }

.chat-messages { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

.msg {
  max-width: 80%; padding: 12px 16px;
  border-radius: 16px; font-size: 14px; line-height: 1.5;
}
.msg-in {
  background: rgba(255,255,255,0.08);
  color: white; align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-out {
  background: var(--purple); color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg.typing {
  background: rgba(255,255,255,0.08);
  align-self: flex-end;
  padding: 14px 20px;
  display: flex; gap: 4px; align-items: center;
}
.msg.typing span {
  width: 6px; height: 6px; background: var(--teal);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}
.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

/* ══════════════════════════════════════════════════
   PROBLEM
══════════════════════════════════════════════════ */
.section-problem {
  padding: 100px 0;
  background: var(--violet);
  color: var(--black);
}
.section-problem .section-label::before { background: var(--purple); }
.section-problem .section-label { color: var(--purple); }
.section-problem .section-title { color: var(--navy); }
.section-problem .section-sub { color: #64748B; }

.problem-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.problem-stat {
  text-align: center; padding: 36px 24px;
  background: white; border-radius: var(--radius);
  border: 1px solid rgba(26,14,92,0.08);
}
.problem-num {
  font-size: 60px; font-weight: 900; letter-spacing: -3px;
  margin-bottom: 12px; line-height: 1;
}
.problem-num.red   { color: #E24B4A; }
.problem-num.purple{ color: var(--purple); }
.problem-num.teal  { color: #009B7A; }

.problem-desc { font-size: 14px; color: #64748B; line-height: 1.6; }

.problem-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.problem-card {
  background: white; border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(26,14,92,0.08);
  transition: all 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26,14,92,0.1); }
.problem-icon { font-size: 32px; margin-bottom: 16px; }
.problem-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 16px; }
.problem-card p { font-size: 14px; color: #64748B; }

/* ══════════════════════════════════════════════════
   NOT BOT
══════════════════════════════════════════════════ */
.section-notbot {
  padding: 100px 0;
  background: var(--black);
}
.section-notbot .section-title.light { color: white; }
.section-notbot .section-sub.light { color: var(--muted); }

.notbot-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

/* Comparison */
.comparison { margin-top: 32px; }
.comp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.comp-col { border-radius: var(--radius); overflow: hidden; }

.comp-header {
  padding: 12px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-align: center;
}
.red-badge { background: rgba(226,75,74,0.15); color: #F87171; border: 1px solid rgba(226,75,74,0.2); border-radius: 8px 8px 0 0; }
.teal-badge { background: rgba(0,212,170,0.15); color: var(--teal); border: 1px solid rgba(0,212,170,0.2); border-radius: 8px 8px 0 0; }

.comp-item {
  padding: 12px 16px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 10px;
}
.comp-item.no {
  background: rgba(226,75,74,0.05); color: #94A3B8;
}
.comp-item.no::before { content: '✗'; color: #E24B4A; font-weight: 700; flex-shrink: 0; }
.comp-item.yes {
  background: rgba(0,212,170,0.05); color: white;
}
.comp-item.yes::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* Feature cards */
.feature-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 24px;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: rgba(0,212,170,0.3);
  background: rgba(0,212,170,0.04);
  transform: translateY(-2px);
}
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h4 { color: white; margin-bottom: 8px; font-size: 15px; }
.feature-card p { font-size: 13px; }

/* ══════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════ */
.section-how {
  padding: 100px 0;
  background: var(--violet);
  color: var(--black);
}
.section-how .section-label { color: var(--purple); }
.section-how .section-label::before { background: var(--purple); }
.section-how .section-title { color: var(--navy); }
.section-how .section-sub { color: #64748B; }

.steps {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 60px;
}
.step { flex: 1; }
.step-arrow {
  color: var(--purple); font-size: 28px; font-weight: 700;
  margin-top: 60px; flex-shrink: 0; opacity: 0.5;
}

.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
  margin: 0 auto 16px;
}
.step-num-mid { background: var(--purple); }
.step-num-teal { background: var(--teal); color: var(--black); }

.step-connector { width: 2px; height: 24px; background: linear-gradient(to bottom, var(--purple), transparent); margin: 0 auto 16px; }

.step-card {
  background: white; border-radius: var(--radius);
  padding: 24px; border: 1px solid rgba(26,14,92,0.08);
  text-align: center;
}
.step-card-dark {
  background: var(--navy); border-color: rgba(91,63,212,0.3); position: relative;
}
.step-card-dark h4 { color: white; }
.step-card-dark p { color: var(--muted); }
.step-badge-aws {
  position: absolute; top: -10px; right: 16px;
  background: #FF9900; color: #000; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}

.step-emoji { font-size: 32px; margin-bottom: 12px; }
.step-card h4 { color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: #64748B; margin-bottom: 16px; }

.step-example { margin-top: 12px; }
.example-msg {
  padding: 10px 14px; border-radius: 10px;
  font-size: 13px; text-align: left;
}
.example-msg.in { background: rgba(26,14,92,0.08); color: var(--navy); }
.example-msg.success { background: rgba(0,212,170,0.1); color: #009B7A; font-weight: 600; }
.dark-example { background: rgba(91,63,212,0.2); border-radius: 10px; padding: 10px 14px; }
.example-tag { font-size: 12px; color: #A78BFA; }

/* ── LATIDO TIMELINE ── */
.latido-section {
  background: var(--navy); border-radius: 24px;
  padding: 40px 48px;
  border: 1px solid rgba(91,63,212,0.3);
}
.latido-label {
  font-size: 14px; font-weight: 600; color: white;
  margin-bottom: 32px; display: flex; align-items: center; gap: 10px;
}
.heart-icon { font-size: 20px; animation: heartbeat 1.5s infinite; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.2); }
  30% { transform: scale(1); }
}

.latido-timeline {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap; gap: 0;
}
.lt-item {
  flex: 1; min-width: 180px;
  padding: 16px; text-align: center;
}
.lt-time { font-size: 11px; color: #64748B; margin-bottom: 10px; }
.lt-dot {
  width: 16px; height: 16px; border-radius: 50%;
  margin: 0 auto 10px;
}
.purple-dot { background: var(--purple); }
.teal-dot { background: var(--teal); }
.green-dot { background: #1D9E75; }
.lt-title { font-size: 14px; color: white; font-weight: 500; margin-bottom: 4px; }
.lt-sub { font-size: 12px; }
.teal-text { color: var(--teal); }
.muted-text { color: var(--muted); }

.lt-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   AWS
══════════════════════════════════════════════════ */
.section-aws {
  padding: 100px 0;
  background: var(--black);
}
.aws-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.aws-benefits { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.aws-benefit {
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit-icon {
  width: 44px; height: 44px; background: rgba(0,212,170,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.aws-benefit h5 { color: var(--teal); margin-bottom: 4px; }
.aws-benefit p { font-size: 13px; }

/* Architecture Diagram */
.arch-diagram {
  background: var(--navy); border-radius: 24px;
  padding: 32px; border: 1px solid rgba(91,63,212,0.3);
  display: flex; flex-direction: column; gap: 0;
}
.arch-layer {
  padding: 18px 20px; border-radius: 12px;
  text-align: center;
}
.client-layer { background: rgba(91,63,212,0.15); border: 1px solid rgba(91,63,212,0.3); }
.bridge-layer { background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.25); }
.aws-layer { background: rgba(255,153,0,0.1); border: 1px solid rgba(255,153,0,0.3); }
.license-layer { background: rgba(91,63,212,0.1); border: 1px solid rgba(91,63,212,0.2); }

.arch-aws-badge {
  display: inline-block; background: #FF9900; color: #000;
  font-size: 10px; font-weight: 700; padding: 2px 10px;
  border-radius: 20px; margin-bottom: 8px;
}
.arch-label { font-size: 14px; font-weight: 600; color: white; margin-bottom: 4px; }
.arch-desc { font-size: 12px; color: var(--muted); }

.arch-arrow {
  text-align: center; color: var(--muted); font-size: 20px;
  padding: 8px 0;
}

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
.section-pricing {
  padding: 100px 0;
  background: var(--violet);
  color: var(--black);
}
.section-pricing .section-label { color: var(--purple); }
.section-pricing .section-label::before { background: var(--purple); }
.section-pricing .section-title { color: var(--navy); }
.section-pricing .section-sub { color: #64748B; }

.pricing-cards {
  display: grid; grid-template-columns: 1fr 1.05fr 1fr;
  gap: 24px; align-items: start; margin-bottom: 32px;
}
.pricing-card {
  background: var(--navy); border-radius: 24px;
  padding: 36px 32px; border: 1px solid rgba(91,63,212,0.3);
  position: relative; transition: all 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-featured {
  background: var(--purple);
  border-color: var(--purple);
  margin-top: -12px; margin-bottom: -12px;
  padding-top: 48px; padding-bottom: 48px;
}
.pricing-popular {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--black);
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}

.pricing-plan { font-size: 22px; font-weight: 800; color: white; margin-bottom: 4px; }
.pricing-target { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.pricing-amount { font-size: 48px; font-weight: 900; color: white; letter-spacing: -2px; line-height: 1; }
.pricing-period { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; margin-bottom: 20px; }

.pricing-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 20px; }
.light-div { background: rgba(255,255,255,0.2); }

.pricing-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li { font-size: 14px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.light-features li { color: rgba(255,255,255,0.95); }

.pricing-note {
  text-align: center; color: #64748B; font-size: 15px;
}
.pricing-note a { color: var(--purple); text-decoration: none; font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   TRIAL
══════════════════════════════════════════════════ */
.section-trial {
  padding: 100px 0;
  background: var(--navy);
}
.section-trial .section-title.light { color: white; }
.section-trial .section-sub.light { color: var(--muted); }

.trial-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.trial-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.trial-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.trial-num {
  width: 40px; height: 40px; background: rgba(91,63,212,0.3);
  border: 1px solid rgba(91,63,212,0.5);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #A78BFA; flex-shrink: 0;
}
.trial-step h5 { color: white; margin-bottom: 4px; }
.trial-step p { font-size: 13px; }

.trial-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px; margin-bottom: 24px;
}
.quote-marks { font-size: 48px; color: rgba(0,212,170,0.3); line-height: 1; margin-bottom: 8px; font-family: Georgia, serif; }
.trial-quote p { font-size: 16px; color: white; font-style: italic; line-height: 1.7; }
.quote-author { font-size: 13px; color: #64748B; margin-top: 16px; }

.trial-guarantees { display: flex; flex-direction: column; gap: 10px; }
.guarantee { font-size: 14px; color: var(--teal); display: flex; align-items: center; gap: 8px; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.section-contact {
  padding: 100px 0;
  background: var(--black);
}

.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

.contact-channels { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius);
  text-decoration: none; color: white;
  transition: all 0.2s;
}
.whatsapp-channel { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); }
.whatsapp-channel:hover { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.4); transform: translateX(4px); }
.instagram-channel { background: rgba(225,48,108,0.1); border: 1px solid rgba(225,48,108,0.2); }
.instagram-channel:hover { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.4); transform: translateX(4px); }
.facebook-channel { background: rgba(24,119,242,0.1); border: 1px solid rgba(24,119,242,0.2); }
.facebook-channel:hover { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.4); transform: translateX(4px); }

.channel-icon { font-size: 24px; flex-shrink: 0; }
.channel-name { font-size: 15px; font-weight: 600; }
.channel-desc { font-size: 13px; color: var(--muted); }

/* Form */
.contact-form {
  background: var(--navy);
  border-radius: 24px; padding: 40px;
  border: 1px solid rgba(91,63,212,0.3);
}
.form-title {
  font-size: 20px; font-weight: 700; color: white;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 16px;
  color: white; font-size: 14px; font-family: inherit;
  transition: all 0.2s; outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  background: rgba(91,63,212,0.08);
}
.form-group input::placeholder { color: #475569; }
.form-group select option { background: var(--navy); color: white; }

.form-note {
  font-size: 12px; color: #64748B; margin-top: 14px; text-align: center;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; margin-bottom: 48px;
}
.footer-tagline {
  font-size: 14px; color: var(--muted);
  margin-top: 16px; max-width: 280px; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  transition: all 0.2s;
}
.footer-socials a:hover { color: white; border-color: var(--teal); background: rgba(0,212,170,0.1); }

.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h6 { color: var(--muted); margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: #475569; }

/* ── WHATSAPP FLOAT ── */
.wa-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;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none; transition: all 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-chat { display: none; }
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
  .notbot-inner { grid-template-columns: 1fr; }
  .aws-inner { grid-template-columns: 1fr; }
  .trial-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

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

  .problem-stats { grid-template-columns: 1fr; }
  .problem-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-featured { margin: 0; padding: 36px 32px; }

  .steps { flex-direction: column; }
  .step-arrow { display: none; }

  .latido-timeline { flex-direction: column; align-items: flex-start; gap: 16px; }
  .lt-line { width: 2px; height: 20px; background: linear-gradient(to bottom, var(--purple), var(--teal)); }
  .lt-item { text-align: left; display: flex; align-items: flex-start; gap: 12px; }
  .lt-dot { margin: 0; flex-shrink: 0; margin-top: 4px; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .comp-row { grid-template-columns: 1fr; }
  .feature-cards { grid-template-columns: 1fr; }

  .latido-section { padding: 28px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
}
