/* ============================================================
   MARKETING DIGITAL GRANADA — TEMA FUTURISTA CLARO
   Blanco impecable · Gradientes cyan/purple · Nav Float Glass
   100% PHP/HTML/CSS/JS — Compatible SiteGround
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Sora', sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ===== CSS VARIABLES ===== */
:root {
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --pink: #ec4899;
  --green: #10b981;
  --green-dark: #059669;
  --orange: #f97316;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-section: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.85);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;

  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-hover: rgba(6, 182, 212, 0.3);

  --font-display: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 1rem;
  --radius-sm: 0.75rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 30px rgba(6,182,212,0.1);
  --shadow-green: 0 4px 14px rgba(16,185,129,0.3);
  --shadow-nav: 0 4px 20px rgba(0,0,0,0.06);

  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Gradient for headings */
  --gradient-text: linear-gradient(135deg, #06b6d4, #8b5cf6, #ec4899);
  --gradient-green: linear-gradient(135deg, #10b981, #059669);
}

/* ===== UTILITIES ===== */
.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.text-cyan { color: var(--cyan); }
.text-purple { color: var(--purple); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-secondary); }
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fw-600 { font-weight: 600; }

/* ===== CONTAINER ===== */
.container { width: 100%; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; max-width: 1200px; } }

/* ===== NAV FLOAT — GLASS PILL ===== */
.nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
  transition: all var(--transition);
  max-width: 95vw;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  white-space: nowrap;
  margin-right: 0.5rem;
}
.nav-logo span { color: var(--cyan); }

/* Desktop nav dropdowns */
.dnav { display: none; gap: 0; }
@media (min-width: 1024px) { .dnav { display: flex; } }

.dnav-item {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.dnav-item:hover {
  color: var(--text-primary);
  background: var(--bg-section);
}

/* DROPDOWN — key fix: no gap between trigger and dropdown */
.dnav-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.4rem; /* bridge the gap */
  z-index: 200;
}
.dnav-drop::before {
  content: '';
  display: block;
  height: 0.4rem; /* invisible bridge */
}
.dnav-drop-inner {
  padding: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.dnav-mega .dnav-drop-inner { min-width: 320px; columns: 2; column-gap: 0.25rem; }

.dnav-item:hover > .dnav-drop { display: block; }

.dnav-drop a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  border-radius: 0.5rem;
  transition: all var(--transition);
  break-inside: avoid;
}
.dnav-drop a:hover {
  color: var(--cyan);
  background: rgba(6,182,212,0.06);
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.nav-phone {
  display: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--cyan); }
@media (min-width: 1024px) { .nav-phone { display: block; } }

.nav-wa {
  display: none;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.nav-wa:hover { background: var(--green-dark); box-shadow: var(--shadow-green); }
@media (min-width: 768px) { .nav-wa { display: block; } }

/* Mobile hamburger */
.mob-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
@media (min-width: 1024px) { .mob-btn { display: none; } }
.mob-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mob-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mob-btn.open span:nth-child(2) { opacity: 0; }
.mob-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mob-ov {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: none;
  overflow-y: auto;
  padding: 5rem 1.5rem 2rem;
}
.mob-ov.open { display: block; }
.mob-links { display: flex; flex-direction: column; gap: 0.2rem; }
.mob-link {
  display: block;
  padding: 0.65rem 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.mob-link:hover { color: var(--cyan); }
.mob-cat {
  display: block;
  padding: 1.25rem 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(6,182,212,0.04) 50%, rgba(139,92,246,0.03) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.03;
}
/* Decorative orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero h1 {
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.hero h1 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-sub {
  max-width: 520px;
  margin: 1.5rem auto 0;
  text-align: center;
}
.hero-sub p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
}
.stars { color: #fbbf24; letter-spacing: 2px; }
.rating { font-weight: 700; color: var(--text-primary); }
.sep { width: 1px; height: 14px; background: var(--border); margin: 0 0.25rem; }
.hero-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  box-shadow: var(--shadow-green);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 4px 14px rgba(6,182,212,0.12);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.btn-outline-sm:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== BANNER ===== */
.banner {
  position: relative;
  padding: 1.25rem 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; position: relative;
}
.banner-left { display: flex; align-items: center; gap: 0.75rem; }
.banner-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1}50%{opacity:0.4} }
.banner-bg { display: none; }
.banner-title { display: block; font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
.banner-sub { display: block; font-size: 0.8rem; color: var(--text-muted); }
.banner-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.banner-line { display: none; }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 5rem 0;
}
.section--alt { background: var(--bg-soft); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-full);
  background: rgba(6,182,212,0.05);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-title span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ===== CARDS ===== */
.card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: rgba(6,182,212,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.card--center { text-align: center; }
.card-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(139,92,246,0.08));
  margin-bottom: 0.75rem;
}
.card-icon svg { color: var(--cyan); }
.card-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}
.card-title { display: block; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.card-desc { display: block; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== BEFORE / AFTER ===== */
.before-after { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .before-after { grid-template-columns: 1fr 1fr; } }
.ba-card {
  padding: 2rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.ba-top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.ba-top-line--red { background: linear-gradient(90deg, #ef4444, #f97316); }
.ba-top-line--green { background: linear-gradient(90deg, #10b981, #06b6d4); }
.ba-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.ba-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.ba-icon--red { background: #fef2f2; color: #ef4444; }
.ba-icon--green { background: rgba(16,185,129,0.08); color: var(--green); }
.ba-title { display: block; font-weight: 700; color: var(--text-primary); }
.ba-sub { display: block; font-size: 0.8rem; }
.ba-sub--red { color: #ef4444; }
.ba-sub--green { color: var(--green); }
.ba-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ba-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-secondary); }
.ba-item .fw-600 { color: var(--text-primary); }
.ba-cta { margin-top: 1.5rem; }

/* ===== TERMINAL ===== */
.terminal-wrap {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.terminal-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #1e293b;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot:nth-child(1) { background: #ef4444; }
.terminal-dot:nth-child(2) { background: #fbbf24; }
.terminal-dot:nth-child(3) { background: #10b981; }
.terminal-title { margin-left: 0.5rem; font-family: var(--font-mono); font-size: 0.75rem; color: #64748b; }
.terminal-body {
  padding: 1.25rem; font-family: var(--font-mono);
  font-size: 0.82rem; line-height: 1.8; color: #94a3b8; min-height: 200px;
}
.terminal-line { display: block; }
.terminal-line .cmd { color: #22d3ee; }
.terminal-line .ok { color: #10b981; }
.terminal-line .warn { color: #fbbf24; }

/* ===== METHOD ===== */
.method-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }
.method-card {
  padding: 2rem; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.method-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.method-num {
  font-family: var(--font-mono); font-size: 3rem; font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.15;
}
.method-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin: 0.5rem 0; }
.method-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== REVIEWS ===== */
.reviews-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.reviews-nav { display: flex; gap: 0.5rem; }
.reviews-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%; color: var(--text-secondary);
  font-size: 1.2rem; background: var(--bg); transition: all var(--transition); cursor: pointer;
}
.reviews-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.reviews-carousel { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; }
.reviews-carousel::-webkit-scrollbar { height: 3px; }
.reviews-carousel::-webkit-scrollbar-track { background: var(--bg-section); border-radius: 2px; }
.reviews-carousel::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }
.review-card {
  min-width: 300px; max-width: 340px; flex-shrink: 0; scroll-snap-align: start;
  padding: 1.5rem; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.review-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.review-role { font-size: 0.75rem; color: var(--text-muted); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 1.5rem; }
.stat-num {
  font-size: 2.5rem; font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-family: var(--font-mono);
}
.stat-label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-top: 0.25rem; }

/* ===== MINI CTA ===== */
.mini-cta-section { text-align: center; padding: 4rem 0; }
.mini-cta-title { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.mini-cta-sub { color: var(--text-secondary); margin-bottom: 1.5rem; }
.mini-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== COMPARE TABLE ===== */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden;
}
.compare-table th, .compare-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.compare-table th { background: var(--bg-soft); color: var(--text-primary); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table td { color: var(--text-secondary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check { color: var(--green); }
.compare-table .cross { color: #ef4444; }
.compare-highlight { background: rgba(6,182,212,0.03); }

/* ===== TECH TAGS ===== */
.tech-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.tech-tag {
  padding: 0.5rem 1.25rem; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-full);
  font-size: 0.82rem; color: var(--text-secondary); transition: all var(--transition);
}
.tech-tag:hover { border-color: var(--border-hover); color: var(--cyan); }

/* ===== GUARANTEE ===== */
.guarantee-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .guarantee-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary); text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit; transition: color var(--transition);
}
.faq-q:hover { color: var(--cyan); }
.faq-q svg { flex-shrink: 0; margin-left: 1rem; color: var(--text-muted); transition: transform 0.3s ease; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== SERVICE LINKS ===== */
.service-link {
  display: block; padding: 0.6rem 1rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.85rem;
  color: var(--text-secondary); transition: all var(--transition); text-align: center;
}
.service-link:hover { border-color: var(--border-hover); color: var(--cyan); box-shadow: var(--shadow-sm); }

/* ===== FOOTER ===== */
.footer { padding: 3rem 0; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { font-weight: 800; font-size: 1.25rem; color: var(--text-primary); }
.footer-logo span { color: var(--cyan); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-contact { display: flex; gap: 1.5rem; }
.footer-contact a { font-size: 0.82rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-contact a:hover { color: var(--cyan); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 90; box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: all var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse-wa { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.4)}50%{box-shadow:0 0 0 12px rgba(37,211,102,0)} }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 8rem 0 4rem; min-height: 100vh; }
.legal-header { margin-bottom: 2rem; }
.legal-title { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); }
.legal-title span {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin: 2rem 0 0.75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.legal-back { margin-top: 3rem; }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .banner-inner { justify-content: center; text-align: center; flex-direction: column; align-items: center; gap: 1rem; }
  .banner-left { justify-content: center; flex-direction: column; align-items: center; }
  .banner-ctas { justify-content: center; width: 100%; flex-direction: column; align-items: center; gap: 0.6rem; }
  .banner-ctas .btn-primary,
  .banner-ctas .btn-outline,
  .banner-ctas .btn-lg { width: 100%; max-width: 300px; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-contact { flex-direction: column; align-items: center; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .hero-sub p { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
  .cta-final-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-final-btns .btn-primary,
  .cta-final-btns .btn-outline,
  .cta-final-btns .btn-lg { width: 100%; max-width: 300px; justify-content: center; }
  /* Compare table scroll */
  .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Mini CTA */
  .mini-cta-btns { flex-direction: column; align-items: center; }
  .mini-cta-btns .btn-primary,
  .mini-cta-btns .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
  /* Hero orbs — shrink on tablet */
  .hero::before { width: 300px; height: 300px; }
  .hero::after { width: 250px; height: 250px; }
}

/* ============================================================
   MISSING CLASSES FROM MANUS HTML
   ============================================================ */

/* ===== REVIEW CARDS (Manus structure) ===== */
.rc-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.rc-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(139,92,246,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; color: var(--cyan);
  flex-shrink: 0;
}
.rc-info { flex: 1; }
.rc-info strong { font-size: 0.875rem; font-weight: 600; display: block; line-height: 1.2; color: var(--text-primary); }
.rc-info span { font-family: var(--font-mono); font-size: 0.625rem; color: var(--text-muted); }
.rc-stars { color: #fbbf24; font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Google icons in reviews */
.google-icon { width: 24px; height: 24px; flex-shrink: 0; }
.google-icon-sm { width: 20px; height: 20px; flex-shrink: 0; margin-left: auto; }
.reviews-google-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.reviews-label { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.reviews-score-row { display: flex; align-items: center; gap: 0.5rem; }
.reviews-big-score { font-size: 2rem; font-weight: 800; color: var(--text-primary); }
.stars-row { color: #fbbf24; letter-spacing: 2px; }
.reviews-count { font-size: 0.85rem; color: var(--text-muted); }
.reviews-header { margin-bottom: 1.5rem; }

/* ===== STATS (Manus structure) ===== */
.stats-row {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
@media (min-width: 640px) { .stats-row { flex-direction: row; justify-content: center; gap: 3.5rem; } }
.stat { text-align: center; padding: 0 1rem; }
.stat-value {
  font-family: var(--font-mono); font-size: 2.5rem; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 640px) { .stat-value { font-size: 3rem; } }
@media (min-width: 768px) { .stat-value { font-size: 3.75rem; } }
.stat-suffix {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.stat-label {
  display: block; margin-top: 0.5rem;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.stat-sep { width: 1px; height: 3rem; background: var(--border); }
@media (max-width: 639px) { .stat-sep { width: 3rem; height: 1px; } }

/* ===== PILLS (tech, zones, clients) ===== */
.pills-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1rem; }
.pills-wrap--zones { }
.pill-tech {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.pill-tech:hover { border-color: var(--border-hover); color: var(--cyan); }
.pill-zone {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.pill-zone:hover { border-color: var(--border); color: var(--text-secondary); }
.pill-client {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.pill-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pill-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}
.pill-item svg { flex-shrink: 0; }

/* Override grid-4 inside "Todo esto" section to use centered flex wrap */
.section[aria-label="Qué incluye"] .grid-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ===== FAQ (Manus structure) ===== */
.faq-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary); text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--cyan); }
.faq-question { flex: 1; }
.faq-chevron {
  flex-shrink: 0; margin-left: 1rem; color: var(--text-muted);
  transition: transform 0.3s ease; font-size: 0.8rem;
}
.faq-item.open .faq-chevron,
.faq-item--open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-answer,
.faq-item--open .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }

/* ===== TIMELINE (Manus structure) ===== */
.timeline { display: flex; flex-direction: column; gap: 1.25rem; position: relative; }
.timeline-line {
  display: none;
}
@media (min-width: 768px) {
  .timeline-line {
    display: block; position: absolute; left: 1.75rem; top: 0; bottom: 0;
    width: 2px; background: var(--border);
  }
}
.timeline-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition);
}
.timeline-item:hover { border-color: rgba(6,182,212,0.2); box-shadow: var(--shadow-card-hover); }
.timeline-badge {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(139,92,246,0.08));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-weight: 700; color: var(--cyan); font-size: 0.85rem;
}
.timeline-text { flex: 1; }
.timeline-text strong { display: block; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.timeline-text span { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== METHOD CARDS (Manus structure) ===== */
.method-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  font-weight: 800; font-size: 0.85rem; margin-bottom: 1rem;
}
.method-badge--dark { background: var(--text-primary); color: #fff; }
.method-badge--green { background: var(--green); color: #fff; }
.method-icon-wrap { margin-bottom: 0.75rem; }
.method-icon-wrap svg { color: var(--cyan); }
.method-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.method-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); }
.method-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.method-kpi {
  margin-top: 1rem; padding: 0.75rem; border-radius: var(--radius-sm);
  background: var(--bg-soft); text-align: center;
}
.method-kpi span { display: block; }
.method-kpi span:first-child { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 800; color: var(--cyan); }
.method-kpi span:last-child { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.method-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--text-muted);
  align-self: center;
}
.method-card--last { border-color: rgba(6,182,212,0.2); }
.method-footer {
  margin-top: 2rem; padding: 2rem;
  background: var(--bg-soft); border-radius: var(--radius);
  text-align: center;
}
.method-footer-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.method-footer-sub { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }

/* ===== TERMINAL (Manus extra classes) ===== */
.terminal-dot--red { background: #ef4444 !important; }
.terminal-dot--yellow { background: #fbbf24 !important; }
.terminal-dot--green { background: #10b981 !important; }
.tl-icon { display: inline; }
.tl-label { color: #94a3b8; }
.tl-value { color: #e2e8f0; }
.tl-check { color: #10b981; }
.tl-spinner { display: inline-block; animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
.terminal-progress { margin-top: 1rem; }
.tp-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.tp-label { font-size: 0.75rem; color: #94a3b8; min-width: 100px; }
.tp-pct { font-size: 0.75rem; color: #22d3ee; min-width: 40px; text-align: right; }
.tp-bar { flex: 1; height: 4px; background: #1e293b; border-radius: 2px; overflow: hidden; }
.tp-fill { height: 100%; background: linear-gradient(90deg, #06b6d4, #8b5cf6); border-radius: 2px; }
.terminal-status { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; }
.terminal-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: pulse-dot 2s ease-in-out infinite; }

/* ===== CARD EMOJI ICONS ===== */
.card-icon-emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(139,92,246,0.06));
  margin-bottom: 0.75rem; font-size: 1.5rem;
}

/* ===== COMPARE TABLE EXTRAS ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.td-highlight { background: rgba(6,182,212,0.04); font-weight: 600; color: var(--text-primary); }
.th-highlight { background: rgba(6,182,212,0.08) !important; color: var(--cyan) !important; }

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-soft) 0%, rgba(6,182,212,0.04) 100%);
}
.cta-final-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-final-title { font-size: 2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; }
.cta-final-sub { font-size: 1rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.cta-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== MINI CTA EXTRAS ===== */
.mini-cta { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.mini-cta-left { display: flex; align-items: center; gap: 0.75rem; }
.pulse-dot { position: relative; width: 12px; height: 12px; }
.pulse-dot-inner { width: 8px; height: 8px; background: var(--green); border-radius: 50%; position: absolute; top: 2px; left: 2px; }
.pulse-dot-ping {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(16,185,129,0.3);
  position: absolute; top: 0; left: 0;
  animation: ping 1.5s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.5); opacity: 0; } }

/* ===== HOME SERVICES — PREMIUM CARD GRID ===== */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-text);
  opacity: 0;
  transition: opacity var(--transition);
}
.svc-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(139,92,246,0.07));
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}
.svc-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.svc-desc {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 1rem; line-height: 1.5;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}
.svc-tag {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-secondary);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}
.svc-tag:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(6,182,212,0.06);
  transform: translateY(-1px);
}

/* ===== MOBILE — FULL RESPONSIVE OVERHAUL ===== */

/* Tablet / small desktop */
@media (max-width: 768px) {
  .svc-card { padding: 1.25rem; }
  .svc-icon { width: 42px; height: 42px; }
  .svc-title { font-size: 0.95rem; }
}

/* Mobile — all elements contained, centered, no overflow */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  
  /* Hero */
  .hero { padding: 5rem 0 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3rem); word-break: break-word; }
  .hero-sub { max-width: 100%; padding: 0 0.5rem; }
  .hero-sub p { font-size: 0.9rem; }
  .hero::before, .hero::after { display: none; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.78rem;
    gap: 0.35rem;
  }
  
  /* Banner CTAs — centered and stacked */
  .banner { padding: 1.5rem 0; }
  .banner-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .banner-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .banner-ctas {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.6rem;
  }
  .banner-ctas .btn-primary,
  .banner-ctas .btn-outline,
  .banner-ctas .btn-lg {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Service cards */
  .svc-card { padding: 1.15rem; }
  .svc-icon { width: 40px; height: 40px; margin-bottom: 0.7rem; }
  .svc-title { font-size: 0.92rem; }
  .svc-desc { font-size: 0.78rem; margin-bottom: 0.75rem; }
  .svc-tags { gap: 0.3rem; }
  .svc-tag { padding: 0.22rem 0.55rem; font-size: 0.68rem; }
  
  /* Sections */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  
  /* Cards grid */
  .grid-3, .grid-4, .grid-6 { gap: 0.75rem; }
  
  /* CTA final */
  .cta-final-title { font-size: 1.5rem; }
  .cta-final-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .cta-final-btns .btn-primary,
  .cta-final-btns .btn-outline,
  .cta-final-btns .btn-lg {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Method cards */
  .method-grid { gap: 0.75rem; }
  .method-card { padding: 1.25rem; }
  
  /* Terminal — force smaller labels (override v6 fixes) */
  .terminal-wrap { font-size: 0.75rem; }
  .terminal-line { gap: 0.5rem; }
  .tl-icon { width: 1.2rem; font-size: 0.85rem; }
  .tl-label { min-width: 4.5rem !important; font-size: 0.7rem !important; }
  .tl-value { font-size: 0.65rem !important; }
  .tl-check { font-size: 0.8rem; }
  
  /* Reviews */
  .review-card { min-width: 240px !important; max-width: 270px !important; }
  
  /* Zones & pills */
  .pills-wrap { gap: 0.35rem; }
  .pill-client, .pill-zone, .pill-tech { font-size: 0.7rem; padding: 0.3rem 0.6rem; }
  
  /* FAQ */
  .faq-question { font-size: 0.88rem; }
  .faq-answer p { font-size: 0.82rem; }
  .faq-btn { padding: 1rem; }
  
  /* Footer */
  .footer { padding: 2rem 0; }
  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-brand { flex-direction: column; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .footer-contact { flex-direction: column; align-items: center; }
  
  /* Claim section */
  .claim { padding: 3rem 0; }
  .claim::before { width: 300px; height: 300px; }
  .claim-heading { font-size: 1.5rem; }
  .claim-sub { font-size: 0.88rem; padding: 0 0.5rem; }
  .claim-dash { width: 25px; }
  .claim-badge { font-size: 0.65rem; padding: 0.3rem 0.75rem; }
  
  /* Pill items (Todo esto section) */
  .pill-item { padding: 0.5rem 0.85rem; font-size: 0.75rem; }
  
  /* Compare table */
  .compare-table th, .compare-table td { padding: 0.6rem 0.5rem; font-size: 0.75rem; white-space: nowrap; }
  
  /* Before/After cards */
  .ba-card { padding: 1.25rem; }
  .ba-item { font-size: 0.82rem; }
  
  /* WhatsApp float — slightly smaller */
  .wa-float { width: 48px; height: 48px; bottom: 1rem; right: 1rem; }
}

/* ===== CLAIM — HERO H2 SLOGAN SECTION ===== */
.claim {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  overflow: hidden;
}
.claim::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.claim-inner {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.claim-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.claim-dash {
  width: 40px; height: 2px;
  background: var(--gradient-text);
  border-radius: 2px;
}
.claim-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(139,92,246,0.06));
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.claim-heading {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.claim-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 400;
}

/* ===== MISC ===== */
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }

/* ============================================================
   FIXES v6 — Nav, terminal, badges, spacing
   ============================================================ */

/* Nav — tighten for fit */
.nav-phone { white-space: nowrap; }
.nav-wa { white-space: nowrap; padding: 0.4rem 0.9rem; font-size: 0.78rem; }
@media (min-width: 1024px) {
  .nav { padding: 0.45rem 1rem; }
  .nav-inner { gap: 0.25rem; }
  .dnav-item { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
  .nav-phone { font-size: 0.8rem; }
  .nav-logo { font-size: 1.15rem; margin-right: 0.25rem; }
}

/* Terminal lines — vertical layout like seogranadaok */
.terminal-line {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.terminal-line:last-child { border-bottom: none; }
.tl-icon {
  width: 1.5rem; flex-shrink: 0; text-align: center; font-size: 1rem;
  padding-top: 0.1rem;
}
.tl-label {
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600;
  color: #22d3ee; min-width: 7rem; flex-shrink: 0;
}
.tl-value {
  font-family: var(--font-mono); font-size: 0.78rem; color: #94a3b8; flex: 1;
}
.tl-check { color: #10b981; flex-shrink: 0; font-size: 0.9rem; }

/* Terminal progress bar */
.terminal-progress { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); }
.tp-row { display: flex; align-items: center; gap: 0.75rem; }
.tp-label { font-family: var(--font-mono); font-size: 0.8rem; color: #94a3b8; }
.tp-pct { font-family: var(--font-mono); font-size: 0.85rem; color: #22d3ee; font-weight: 700; }
.tp-bar { flex: 1; height: 6px; background: #1e293b; border-radius: 3px; overflow: hidden; }
.tp-fill { height: 100%; background: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899); border-radius: 3px; transition: width 1.5s ease; }

/* Terminal status */
.terminal-status { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.04); }
.terminal-status-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 8px rgba(16,185,129,0.5); animation: pulse-dot 2s ease-in-out infinite; }

/* Method badge — pill */
.method-badge {
  display: inline-block; padding: 0.3rem 0.85rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; width: auto; height: auto; margin-bottom: 0.75rem;
}
.method-badge--green { background: var(--green); color: #fff; }
.method-badge--dark { background: var(--text-primary); color: #fff; }
.method-kpi { font-family: var(--font-mono); }

/* Review card sizing */
.review-card { min-width: 280px; max-width: 320px; }

/* Section alt — slightly warmer */
.section--alt { background: #f8fafb; }

/* Cards — more shadow on hover */
.card:hover { box-shadow: 0 12px 35px rgba(0,0,0,0.08); }

/* Canonicals in footer */
.footer-line { display: none; }
