:root {
  /* Premium high-contrast palette */
  --cream: #F2F5F7;          /* Soft cool light blue-gray background */
  --paper: #FFFFFF;          /* Pure white card backgrounds */
  --mist: #E1E8ED;           /* Subtle border gray */
  --navy: #0B132B;           /* Azul profundo espacial */
  --navy-hover: #1C2541;     /* Navy hover premium */
  --gold: linear-gradient(135deg, #FFD000 0%, #FFAA00 100%); /* Oro metalizado */
  --gold-text: #C49000;      /* Oro legible sobre fondos claros (WCAG AA) */
  --gold-hover: #FFAA00;     /* Gold solid fallback for borders and hover details */
  --blue: #3A86C8;           /* Legal-tech accent blue */
  --green: #10B981;          /* WhatsApp / success emerald */
  --green-hover: #059669;    /* Deep emerald hover */
  --coral: #e74c3c;          /* Warning/Important accent */
  --ink: #0B132B;            /* Dark Navy text for perfect branding contrast */
  --muted: #4b4f58;          /* Original Muted Text color */
  --line: rgba(11, 19, 43, 0.08); /* Modern subtle divider */
  --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px rgba(11, 19, 43, 0.04);
  --shadow-md: 0 16px 36px rgba(11, 19, 43, 0.08);
  --shadow-lg: 0 24px 64px rgba(11, 19, 43, 0.12);
  --shadow-gold: 0 14px 34px rgba(255, 170, 0, 0.28);
  --shadow-gold-glow: 0 18px 42px rgba(255, 170, 0, 0.38);
  --shadow-navy: 0 14px 30px rgba(11, 19, 43, 0.18);
  --shadow-green: 0 14px 30px rgba(16, 185, 129, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1200px;
}

[data-theme="dark"] {
  --cream: #090E1A;
  --paper: #121A2E;
  --ink: #F8FAFC;
  --line: rgba(255, 255, 255, 0.10);
  --mist: rgba(255, 255, 255, 0.16);
  --navy: #FFFFFF;
  --navy-hover: #E2E8F0;
  --muted: #CBD5E1;
  --blue: #60A5FA;
  --green: #20C997;
  --green-hover: #10B981;
  --gold-text: #FBBF24;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 18px 38px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.5);
  --shadow-navy: 0 18px 38px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold-hover);
  color: #0B132B;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}
body {
  margin: 0;
  font-family: 'Open Sans', "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease-premium); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HEADER STYLING */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(11, 19, 43, 0.03);
  transition: all 0.3s var(--ease-premium);
}

[data-theme="dark"] .site-header {
  background: rgba(9, 14, 26, 0.86);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.26);
}

.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  font-weight: 900; 
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
}
.brand-mark { 
  color: var(--gold-hover); 
  font-size: 1.6rem; 
  font-style: italic; 
  text-shadow: 1px 1px 0px rgba(11, 19, 43, 0.06);
}
.brand-text { 
  color: var(--navy); 
  font-size: 1.35rem; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}

.main-nav { 
  display: flex; 
  justify-content: center; 
  gap: 28px; 
  color: var(--navy); 
  font-weight: 700; 
  font-size: 0.95rem; 
  font-family: 'Montserrat', sans-serif;
}
.main-nav a { 
  padding: 8px 4px; 
  border-bottom: 2px solid transparent; 
  color: var(--muted);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-hover);
  transition: width 0.3s var(--ease-premium);
}
.main-nav a:hover {
  color: var(--navy);
}
.main-nav a:hover::after, .main-nav a.active::after { 
  width: 100%;
}
.main-nav a.active {
  color: var(--navy);
}
.main-nav a:focus-visible {
  outline: 3px solid var(--gold-hover);
  outline-offset: 2px;
  border-radius: 4px;
}

.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.theme-toggle {
  position: relative;
  width: 56px;
  height: 32px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--mist);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.3s var(--ease-premium);
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 6px 16px rgba(255, 170, 0, 0.28);
  transition: transform 0.3s var(--ease-premium);
}
.theme-toggle[aria-pressed="true"]::before {
  transform: translateX(24px);
}
.theme-toggle__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
  line-height: 1;
}
.theme-toggle__icon--moon { color: var(--muted); }
[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.06);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium), background 0.3s var(--ease-premium), border-color 0.3s var(--ease-premium), color 0.3s var(--ease-premium);
}
.btn:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--shadow-md), 0 0 24px rgba(58, 134, 200, 0.14);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 3px solid var(--gold-hover);
  outline-offset: 2px;
}
.btn-primary { 
  background: var(--gold); 
  color: var(--navy); 
  border: 1px solid var(--gold-hover);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
[data-theme="dark"] .btn-primary {
  color: #0B132B;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FFE15C 0%, #FFB21A 100%);
  border-color: #FFD000;
  box-shadow: var(--shadow-gold-glow), 0 0 28px rgba(255, 208, 0, 0.28);
}
.btn-secondary { 
  background: var(--navy); 
  color: white; 
  box-shadow: var(--shadow-navy);
}
[data-theme="dark"] .btn-secondary {
  background: #1E293B;
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-secondary:hover {
  background: var(--navy-hover);
  box-shadow: 0 16px 36px rgba(11, 19, 43, 0.28), 0 0 20px rgba(58, 134, 200, 0.16);
}
[data-theme="dark"] .btn-secondary:hover {
  background: #334155;
  color: #FFFFFF;
  border-color: var(--gold-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.btn-ghost { 
  border-color: var(--mist); 
  color: var(--navy); 
  background: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(10px);
}
[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #F8FAFC;
}
.btn-ghost:hover {
  background: var(--paper);
  border-color: var(--navy);
}
[data-theme="dark"] .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  border-color: var(--gold-hover);
}
.btn-whatsapp { 
  background: linear-gradient(135deg, var(--green), #0EAD76); 
  color: white; 
  box-shadow: var(--shadow-green);
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-whatsapp:hover::before {
  left: 100%;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, var(--green-hover), #0A8F63);
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.35), 0 0 24px rgba(16, 185, 129, 0.22);
}
.btn-large { 
  min-height: 54px; 
  padding-inline: 32px; 
  font-size: 1rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); transition: all 0.3s var(--ease-premium); }

/* SECTIONS */
.section { 
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)); 
  scroll-margin-top: 96px;
  transition: background-color 0.4s ease, color 0.4s ease;
}
.compact-section { 
  background: var(--paper); 
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* PAGE HERO */
.page-hero {
  text-align: center;
  padding: 100px max(24px, calc((100vw - var(--max)) / 2)) 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 170, 0, 0.1), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(58, 134, 200, 0.08), transparent 40%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float-slow 12s ease-in-out infinite;
}
@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 20px) rotate(180deg); }
}
.page-hero > div { max-width: 900px; margin: 0 auto; }
.page-hero h1 {
  margin-top: 10px;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  background: var(--paper);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.content-band {
  background: linear-gradient(135deg, var(--paper), var(--cream));
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(135deg, #0F1729 0%, #1a2540 50%, #0F1729 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: cta-glow 8s ease-in-out infinite;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(58, 134, 200, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: cta-glow 10s ease-in-out infinite reverse;
}
@keyframes cta-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
[data-theme="dark"] .cta-strip {
  background: linear-gradient(135deg, #0B132B 0%, #162032 100%);
}
.cta-strip h2 { color: white; max-width: 700px; margin-top: 8px; }
.cta-strip .eyebrow { color: var(--gold-text); }

/* HERO SECTION */
.hero {
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 60px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
}
[data-theme="dark"] .page-hero,
[data-theme="dark"] .hero {
  background: #0B132B;
}
[data-theme="dark"] .content-band,
[data-theme="dark"] .split-grid {
  background: linear-gradient(135deg, var(--paper), var(--cream));
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-hover), transparent);
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(1.8rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.45rem, 4.5vw, 2.8rem); line-height: 1.2; }
h3 { font-size: 1.4rem; line-height: 1.3; }
h4 { font-size: 1.15rem; line-height: 1.3; }

.hero-copy { 
  max-width: 660px; 
  color: var(--muted); 
  font-size: clamp(1.05rem, 1.5vw, 1.2rem); 
  margin: 24px 0 0; 
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.proof-row span { 
  padding: 8px 16px; 
  background: var(--paper); 
  border: 1.5px solid var(--line); 
  border-radius: 999px; 
  color: var(--navy); 
  font-weight: 700; 
  font-size: 0.88rem; 
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s var(--ease-premium);
}
.proof-row span::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
  font-weight: 900;
  font-size: 0.74rem;
}
.proof-row span:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 170, 0, 0.45);
  box-shadow: var(--shadow-md);
}
[data-theme="dark"] .proof-row span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #F8FAFC;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .proof-row span::before {
  background: rgba(16, 185, 129, 0.22);
  color: #34D399;
}
[data-theme="dark"] .proof-row span:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 208, 0, 0.5);
  color: #FFFFFF;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--paper);
  background: var(--paper);
}
.hero-visual img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; position: relative; z-index: 1; }
.score-panel {
  position: absolute;
  left: 18px;
  bottom: 16px;
  width: calc(100% - 36px);
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr);
  gap: 20px;
  align-items: center;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 245, 247, 0.92)),
    var(--paper);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(11, 19, 43, 0.08);
  overflow: hidden;
}
.score-panel::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.12), transparent 70%);
  pointer-events: none;
  animation: score-glow 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes score-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
[data-theme="dark"] .score-panel {
  background: rgba(18, 26, 46, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.3);
}
.score-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  z-index: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.score-panel > * {
  position: relative;
  z-index: 1;
}
.score-panel-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.score-panel span {
  color: var(--gold-text);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.score-panel strong {
  display: block;
  color: var(--green-hover);
  font-size: 3.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 0.95;
  margin-top: 4px;
}
[data-theme="dark"] .score-panel strong {
  color: #34D399;
  text-shadow: 0 0 24px rgba(52, 211, 153, 0.35);
}
.score-panel small {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.76rem;
  margin-top: 5px;
}
[data-theme="dark"] .score-panel small {
  color: #CBD5E1;
}
.score-gauge {
  width: 100%;
  min-width: 0;
  filter: saturate(1.05);
}
.gauge-track,
.gauge-arc {
  fill: none;
  stroke-linecap: round;
}
.gauge-track {
  stroke: rgba(11, 19, 43, 0.1);
  stroke-width: 18;
}
[data-theme="dark"] .gauge-track {
  stroke: rgba(255, 255, 255, 0.16);
}
.gauge-arc {
  stroke: url(#scoreArc);
  stroke-width: 18;
  stroke-dasharray: 276;
  stroke-dashoffset: 276;
}
.score-needle {
  transform-origin: 120px 116px;
  transform: rotate(-106deg);
}
.score-needle line {
  stroke: var(--navy);
  stroke-width: 7;
  stroke-linecap: round;
}
[data-theme="dark"] .score-needle line {
  stroke: #FFFFFF;
}
.score-needle circle {
  fill: var(--paper);
  stroke: var(--navy);
  stroke-width: 5;
}
[data-theme="dark"] .score-needle circle {
  fill: #1E293B;
  stroke: #FFFFFF;
}
.gauge-labels text {
  fill: rgba(11, 19, 43, 0.78);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-anchor: middle;
}
[data-theme="dark"] .gauge-labels text {
  fill: #F1F5F9;
}

@media (prefers-reduced-motion: reduce) {
  .gauge-arc { stroke-dashoffset: 0; }
  .score-needle { transform: rotate(78deg); }
}

/* TRUST BAND */
.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, var(--cream) 0%, rgba(242, 245, 247, 0.5) 100%);
  position: relative;
}
.trust-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hover), transparent);
}
.trust-band article {
  text-align: center;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium), background 0.28s var(--ease-premium);
}
.trust-band article:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: rgba(255, 208, 0, 0.5);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(255, 208, 0, 0.12);
}
.trust-band strong { display: block; font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); font-family: 'Montserrat', sans-serif; }
.trust-band span { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

[data-theme="dark"] .trust-band {
  background: #080E1A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .trust-band article {
  background: #111A2E;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .trust-band article:hover {
  background: #172442;
  border-color: #FFD000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 208, 0, 0.16);
}
[data-theme="dark"] .trust-band strong {
  color: #FFFFFF;
}
[data-theme="dark"] .trust-band span {
  color: #94A3B8;
}

/* VIABILITY SIMULATOR */
.viability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 19, 43, 0.04), rgba(255, 255, 255, 0.68)),
    var(--cream);
}
[data-theme="dark"] .viability-section {
  background:
    linear-gradient(135deg, rgba(101, 168, 232, 0.08), rgba(255, 170, 0, 0.04)),
    var(--cream);
}
.viability-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.viability-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.viability-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold-hover), var(--green));
}
.viability-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
}
.viability-progress div {
  flex: 1;
  height: 8px;
  background: var(--mist);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.viability-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-hover), var(--green));
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.viability-progress i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.viability-progress span {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.viability-progress div {
  height: 8px;
  border-radius: 999px;
  background: rgba(11, 19, 43, 0.08);
  overflow: hidden;
}
.viability-progress i {
  display: block;
  width: 33.33%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 0.35s var(--ease-premium);
}
.live-viability-meter {
  --meter-color: var(--coral);
  margin: -10px 0 22px;
}
.live-viability-meter svg {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}
.meter-track,
.meter-arc {
  fill: none;
  stroke-linecap: round;
  stroke-width: 14;
}
.meter-track {
  stroke: rgba(11, 19, 43, 0.1);
}
[data-theme="dark"] .meter-track {
  stroke: rgba(255, 255, 255, 0.14);
}
.meter-arc {
  stroke: var(--meter-color);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.55s var(--ease-premium), stroke 0.35s var(--ease-premium);
}
.meter-needle line {
  stroke: var(--navy);
  stroke-width: 3.5;
  stroke-linecap: round;
  transition: x2 0.55s var(--ease-premium), y2 0.55s var(--ease-premium), stroke 0.35s var(--ease-premium);
}
.meter-hub,
.meter-pointer {
  fill: var(--meter-color);
  stroke: var(--paper);
  stroke-width: 3;
  transition: cx 0.55s var(--ease-premium), cy 0.55s var(--ease-premium), fill 0.35s var(--ease-premium);
}
.meter-hub {
  fill: var(--navy);
}
.meter-score,
.meter-label {
  text-anchor: middle;
  font-family: 'Montserrat', sans-serif;
}
.meter-score {
  fill: var(--navy);
  font-size: 1.28rem;
  font-weight: 900;
}
.meter-label {
  fill: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.viability-stage,
.viability-result {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.28s var(--ease-premium), transform 0.28s var(--ease-premium);
}
.viability-stage.is-changing,
.viability-result.is-changing {
  opacity: 0;
  transform: translateX(-28px);
}
.viability-question {
  margin: 0;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 1.75vw, 1.58rem);
  font-weight: 800;
  line-height: 1.28;
}
.viability-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.viability-option {
  padding: 16px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.viability-option::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 170, 0, 0.15), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}
.viability-option:hover::before {
  width: 300px;
  height: 300px;
}
.viability-option:hover {
  border-color: var(--gold-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 170, 0, 0.15);
}
.viability-option:hover,
.viability-option:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-hover);
  background: #fffaf0;
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .viability-option:hover,
[data-theme="dark"] .viability-option:focus-visible {
  background: rgba(255, 170, 0, 0.12);
}
.viability-result[hidden] {
  display: none;
}
.result-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.viability-result strong {
  display: block;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.viability-result p {
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.viability-result .btn {
  width: 100%;
  text-align: center;
}
.simulator-reset {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  cursor: pointer;
}
.simulator-reset:hover {
  color: var(--gold-hover);
}

/* GRID CARDS GENERAL */
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading--centered { margin-inline: auto; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.15rem; margin: 16px 0 0; }
.heading-link {
  color: inherit;
  text-decoration-thickness: 3px;
  text-decoration-color: transparent;
  text-underline-offset: 8px;
}
.heading-link:hover,
.heading-link:focus-visible {
  color: var(--navy);
  text-decoration-line: underline;
  text-decoration-color: var(--gold-hover);
}
.pain-section, .plans-section, .faq-section { background: var(--cream); }
.cards-grid, .pricing-grid, .case-grid { display: grid; gap: 30px; }
.cards-grid { grid-template-columns: repeat(3, 1fr); }

.info-card, .price-card, .case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.info-card::before, .price-card::before, .case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.08), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.info-card:hover::before, .price-card:hover::before, .case-card:hover::before {
  left: 100%;
}
.info-card { display: block; }
.info-card:hover, .price-card:hover, .case-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  border-color: rgba(255, 170, 0, 0.48); 
  box-shadow: var(--shadow-lg), 0 0 32px rgba(255, 170, 0, 0.18); 
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.06), rgba(255, 170, 0, 0.08));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}
.info-card:hover .icon, .price-card:hover .icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 170, 0, 0.2);
}
.info-card h3 { margin-bottom: 12px; }
.info-card p, .case-card p, .faq-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* TIMELINE (METODO) */
.method-section { background: var(--paper); }
.timeline-shell {
  --timeline-progress: 0%;
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.timeline {
  position: relative;
  display: grid;
  gap: 34px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
}
.timeline-line,
.timeline-line::after {
  position: absolute;
  left: 50%;
  top: 34px;
  bottom: 34px;
  width: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
}
.timeline-line {
  background: var(--mist);
  overflow: hidden;
}
.timeline-line::after {
  content: "";
  top: 0;
  bottom: auto;
  height: var(--timeline-progress);
  background: var(--gold);
  transition: height 0.7s var(--ease-premium);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
  min-height: 136px;
}
.timeline-item:nth-child(odd) .timeline-card { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-card {
  grid-column: 1;
  text-align: left;
}
.timeline-number {
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--paper);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s var(--ease-premium), background 0.35s var(--ease-premium);
}
[data-theme="dark"] .timeline-number { background: #0B132B; }
.timeline-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  padding: 28px 32px 30px;
  opacity: 0.72;
  transform: translateY(18px) scale(0.98);
  transform-origin: center;
  transition: opacity 0.45s var(--ease-premium), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}
.timeline-trigger {
  margin-bottom: 16px;
  color: var(--navy);
}
.timeline-kicker {
  display: block;
  margin: 0 0 5px;
  color: var(--gold-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.timeline-trigger h2,
.timeline-trigger h3 {
  display: block;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}
.timeline-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.56s var(--ease-premium);
}
.timeline-panel-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transform-origin: top center;
  transition: opacity 0.46s var(--ease-premium), transform 0.62s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.timeline-panel p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.65; }
.timeline-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(11, 19, 43, 0.06);
  list-style: none;
}
.timeline-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.94rem;
}
.timeline-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-hover);
  box-shadow: 0 0 0 5px rgba(255, 170, 0, 0.12);
}
.timeline-item.is-active .timeline-number {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
  box-shadow: var(--shadow-md), 0 0 26px rgba(255, 170, 0, 0.34);
}
.timeline-item.is-active .timeline-card {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 170, 0, 0.38);
  box-shadow: var(--shadow-md);
}
.timeline-item.is-active .timeline-panel { grid-template-rows: 1fr; }
.timeline-item.is-active .timeline-panel-inner {
  opacity: 1;
  transform: translateY(0) scale(1.05);
}

.centrales-comparison-section {
  scroll-margin-top: 96px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 170, 0, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}

.centrales-comparison-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.central-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 34px auto 24px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .central-tabs {
  background: rgba(255, 255, 255, 0.05);
}

.central-tab {
  position: relative;
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.96rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: left;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.central-tab:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--gold-hover);
  box-shadow: 0 8px 20px rgba(255, 170, 0, 0.15);
}

.central-tab::after {
  content: "";
  position: absolute;
  inset: auto 16px 10px 66px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 0.26s var(--ease-premium), transform 0.26s var(--ease-premium);
}

.central-tab:hover,
.central-tab:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 170, 0, 0.4);
  box-shadow: var(--shadow-md), 0 0 24px rgba(255, 170, 0, 0.12);
  outline: none;
}

.central-tab.is-active {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--gold-hover);
  box-shadow: var(--shadow-navy), inset 0 0 0 1px rgba(255, 208, 0, 0.18);
}

[data-theme="dark"] .central-tab.is-active {
  background: #0B132B;
  color: white;
}

.central-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.central-tab__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 170, 0, 0.12);
  color: var(--gold-hover);
  transition: transform 0.26s var(--ease-premium), background 0.26s var(--ease-premium), color 0.26s var(--ease-premium);
}

.central-tab:hover .central-tab__icon {
  transform: scale(1.06) rotate(-2deg);
}

.central-tab.is-active .central-tab__icon {
  background: var(--gold);
  color: #0B132B;
}

.central-tab svg,
.central-panel svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.central-panel {
  max-width: 980px;
  min-height: 438px;
  margin: 0 auto;
  border: 1px solid rgba(255, 170, 0, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 170, 0, 0.1), transparent 42%),
    var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  outline: none;
}

.central-panel:focus-visible {
  outline: 3px solid var(--gold-hover);
  outline-offset: 4px;
}

.central-panel.is-changing .central-panel__inner {
  opacity: 0;
  transform: translateY(18px);
}

.central-panel__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  min-height: 438px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.32s var(--ease-premium), transform 0.32s var(--ease-premium);
}

.central-panel__summary {
  position: relative;
  padding: 36px;
  background: linear-gradient(160deg, #0B132B 0%, #14203D 100%);
  color: white;
  overflow: hidden;
}

.central-panel__summary::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 208, 0, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.central-panel__summary > * {
  position: relative;
  z-index: 1;
}

.central-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.14);
  color: #FFD000;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.central-panel h3 {
  margin: 20px 0 12px;
  color: inherit;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.central-panel__summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.65;
}

.central-metric {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.central-metric span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.central-metric strong {
  color: #FFD000;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.35;
}

.central-panel__details {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.central-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.central-detail {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

[data-theme="dark"] .central-detail {
  background: rgba(255, 255, 255, 0.04);
}

.central-detail__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.central-detail__title svg {
  color: var(--gold-hover);
  flex: 0 0 auto;
}

.central-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.central-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius);
  background: rgba(16, 185, 129, 0.07);
  list-style: none;
}

.central-checklist li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.central-check {
  width: 26px;
  height: 26px;
  color: var(--green-hover);
}

.central-check circle,
.central-check path {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: centralCheckDraw 0.62s var(--ease-premium) forwards;
}

.central-check path {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation-delay: 0.2s;
}

@keyframes centralCheckDraw {
  to { stroke-dashoffset: 0; }
}


/* PACKAGES & PLANS (THE DECISIVE PRICING SECTION) */
.home-plans-section {
  padding-top: 60px;
  padding-bottom: 80px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
  margin-bottom: 40px;
}
.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s var(--ease-premium), box-shadow 0.32s var(--ease-premium), border-color 0.32s var(--ease-premium);
}
.price-card:not(.featured):hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), 0 16px 36px rgba(11, 19, 43, 0.08);
  border-color: rgba(255, 170, 0, 0.5);
}

/* Header line & badges */
.card-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.plan-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.plan-badge--blue {
  background: rgba(58, 134, 200, 0.12);
  color: #1D4ED8;
  border: 1px solid rgba(58, 134, 200, 0.25);
}
.plan-badge--indigo {
  background: rgba(124, 58, 237, 0.12);
  color: #6D28D9;
  border: 1px solid rgba(124, 58, 237, 0.25);
}
.plan-badge--gold {
  background: rgba(255, 170, 0, 0.16);
  color: #B45309;
  border: 1px solid rgba(255, 170, 0, 0.35);
}

.plan-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.2;
}
.plan-summary-line {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0 0 16px;
  min-height: 42px;
}

/* Price Block */
.price-block {
  margin: 6px 0 20px;
  padding: 18px 20px;
  background: rgba(11, 19, 43, 0.03);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.price-strikethrough {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: #94A3B8;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.discount-badge {
  background: rgba(231, 76, 60, 0.14);
  color: #DC2626;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1;
}
.price-currency {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-text);
}
.price-val {
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
}
.price-suffix {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--muted);
  margin-left: 4px;
}
.price-subpill {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(11, 19, 43, 0.06);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}
.price-subpill--gold {
  background: rgba(255, 170, 0, 0.16);
  color: #92400E;
  font-weight: 800;
}

.plan-description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.card-divider {
  height: 1px;
  background: var(--line);
  margin: 0 0 20px;
}

/* Feature List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex-grow: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}
.feat-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.14);
  color: #059669;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 2px;
}
.feat-check--gold {
  background: rgba(255, 170, 0, 0.18);
  color: #D97706;
}

/* Buttons inside card */
.btn-plan {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 0.96rem;
  border-radius: 999px;
}
.btn-plan--featured {
  background: var(--gold);
  color: #0B132B;
  box-shadow: 0 8px 24px rgba(255, 170, 0, 0.32);
}
.btn-plan--featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 170, 0, 0.46);
}

/* Featured Card Styling */
.price-card.featured {
  border: 2.5px solid var(--gold-hover);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF5 100%);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), 0 0 34px rgba(255, 170, 0, 0.2);
  z-index: 5;
}
.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 46px rgba(255, 170, 0, 0.32);
}
.featured-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.plan-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0B132B, #1B294B);
  color: #FFD000;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.2);
}
.star-icon {
  color: #FFD000;
  font-size: 0.85rem;
}
.plan-guarantee-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #059669;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
}

/* Price Cards in Dark Mode */
[data-theme="dark"] .price-card {
  background: #111A2E;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .price-card:not(.featured):hover {
  transform: translateY(-8px);
  border-color: rgba(255, 208, 0, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(255, 208, 0, 0.15);
}

[data-theme="dark"] .price-card.featured {
  background: linear-gradient(180deg, #15223E 0%, #0E1628 100%);
  border: 2.5px solid #FFD000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 36px rgba(255, 208, 0, 0.25);
}
[data-theme="dark"] .price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 48px rgba(255, 208, 0, 0.38);
}

[data-theme="dark"] .plan-title {
  color: #FFFFFF;
}
[data-theme="dark"] .plan-summary-line {
  color: #94A3B8;
}
[data-theme="dark"] .plan-description {
  color: #CBD5E1;
}

[data-theme="dark"] .price-block {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .price-main {
  color: #FFFFFF;
}
[data-theme="dark"] .price-currency {
  color: #FFD000;
}
[data-theme="dark"] .price-suffix {
  color: #94A3B8;
}
[data-theme="dark"] .price-strikethrough {
  color: #64748B;
}
[data-theme="dark"] .discount-badge {
  background: rgba(239, 68, 68, 0.22);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}
[data-theme="dark"] .price-subpill {
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
}
[data-theme="dark"] .price-subpill--gold {
  background: rgba(251, 191, 36, 0.16);
  color: #FDE047;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

[data-theme="dark"] .plan-badge--blue {
  background: rgba(59, 130, 246, 0.18);
  color: #93C5FD;
  border-color: rgba(59, 130, 246, 0.35);
}
[data-theme="dark"] .plan-badge--indigo {
  background: rgba(139, 92, 246, 0.18);
  color: #C4B5FD;
  border-color: rgba(139, 92, 246, 0.35);
}
[data-theme="dark"] .plan-badge--gold {
  background: rgba(251, 191, 36, 0.18);
  color: #FDE047;
  border-color: rgba(251, 191, 36, 0.4);
}

[data-theme="dark"] .plan-features li {
  color: #CBD5E1;
}
[data-theme="dark"] .plan-features li strong {
  color: #FFFFFF;
}
[data-theme="dark"] .feat-check {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
}
[data-theme="dark"] .feat-check--gold {
  background: rgba(255, 208, 0, 0.2);
  color: #FFD000;
}

[data-theme="dark"] .plan-ribbon {
  background: linear-gradient(135deg, #FFD000 0%, #FFAA00 100%);
  color: #0B132B;
  box-shadow: 0 4px 14px rgba(255, 170, 0, 0.3);
}
[data-theme="dark"] .star-icon {
  color: #0B132B;
}
[data-theme="dark"] .plan-guarantee-tag {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.4);
  color: #34D399;
}

/* Pricing Trust Bar */
.pricing-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .pricing-trust-bar {
  background: #111A2E;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.pricing-trust-bar .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-trust-bar .trust-icon {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}
.pricing-trust-bar strong {
  display: block;
  font-size: 0.86rem;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
}
[data-theme="dark"] .pricing-trust-bar strong {
  color: #F8FAFC;
}
.pricing-trust-bar span {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.35;
  margin-top: 2px;
}
.home-plans-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.compare-intro {
  max-width: 720px;
  margin: 78px auto 0;
  text-align: center;
}
.compare-intro p:not(.eyebrow) { color: var(--muted); margin-top: 10px; }
.evidence-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 72px;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.evidence-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-hover), var(--blue), var(--green));
  border-radius: 999px;
}
.evidence-strip h2 { font-size: clamp(1.65rem, 2.4vw, 2.35rem); }
.evidence-strip p:not(.eyebrow) { color: var(--muted); margin: 10px 0 0; }

[data-theme="dark"] .evidence-strip {
  background: linear-gradient(145deg, #111A2E 0%, #172442 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .evidence-strip h2 {
  color: #FFFFFF;
}
[data-theme="dark"] .evidence-strip p:not(.eyebrow) {
  color: #CBD5E1;
}

/* COMPARISON TABLE */
.compare-wrap { 
  margin-top: 60px; 
  overflow-x: auto; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-lg); 
  background: var(--paper); 
  box-shadow: var(--shadow-md);
}
table { width: 100%; min-width: 750px; border-collapse: collapse; font-family: 'Open Sans', sans-serif; }
th, td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--line); }
th { 
  color: white; 
  background: var(--navy); 
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
[data-theme="dark"] th {
  background: #0B132B;
}
th:first-child { border-top-left-radius: var(--radius-lg); }
th:last-child { border-top-right-radius: var(--radius-lg); }
td { font-size: 0.92rem; color: var(--muted); }
tr:last-child td { border-bottom: none; }
td:not(:first-child), th:not(:first-child) { text-align: center; font-weight: 700; }
td:first-child { font-weight: 600; color: var(--navy); }
td.check-yes { color: var(--green); font-size: 1.2rem; }
td.check-no { color: var(--muted); opacity: 0.4; }

/* CASOS DE EXITO / TESTIMONIALS (AUDITED & AUTHENTIC) */
.cases-section { background: var(--cream); }
.case-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}
.case-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 5rem;
  color: rgba(11, 19, 43, 0.05);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.case-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-hover), var(--green));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s var(--ease-premium);
}
.case-card:hover::before {
  opacity: 1;
}
.case-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.case-route {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(58, 134, 200, 0.1);
  color: var(--blue);
}
.case-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(11, 19, 43, 0.06);
  color: var(--navy);
}
.entity-claro { background: rgba(220, 38, 38, 0.1); color: #DC2626; }
.entity-sergo { background: rgba(37, 99, 235, 0.1); color: #2563EB; }
.entity-fincomercio { background: rgba(5, 150, 105, 0.1); color: #059669; }
.case-badge.entity-claro { background: rgba(231, 76, 60, 0.08); border-color: rgba(231, 76, 60, 0.2); color: var(--coral); }
.case-badge.entity-fincomercio { background: rgba(16, 185, 129, 0.09); border-color: rgba(16, 185, 129, 0.22); color: var(--green-hover); }
.case-badge.entity-sergo { background: rgba(58, 134, 200, 0.09); border-color: rgba(58, 134, 200, 0.22); color: var(--blue); }

.case-route {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.case-route::before {
  content: '❖';
  color: var(--gold-hover);
}

.case-card strong { 
  display: block; 
  color: var(--navy); 
  font-size: 1.25rem; 
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
  line-height: 1.3;
}
.case-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.case-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.case-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(14, 173, 118, 0.16));
  color: var(--green);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.case-status::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 0.64rem;
  font-weight: 900;
}
.case-status {
  color: var(--green-hover);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}
.case-status::before {
  content: '●';
}

/* OFFICES */
.offices-section {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
[data-theme="dark"] .offices-section {
  background: #080E1A;
}
.offices-panel {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.offices-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-hover), var(--blue), var(--green));
  border-radius: 999px;
  z-index: 2;
}
.offices-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  background: linear-gradient(145deg, #0B132B 0%, #162444 100%);
  color: #FFFFFF;
  overflow: hidden;
}
.offices-intro .eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFD000;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.35);
  padding: 6px 16px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.offices-intro .eyebrow::before {
  display: none;
}
.offices-intro h2 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #FFFFFF;
}
.offices-intro p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #E2E8F0;
  font-size: 0.98rem;
  line-height: 1.65;
}
.office-note {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.office-note strong {
  display: block;
  color: #FFD000;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}
.office-note span {
  display: block;
  margin-top: 8px;
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.55;
}

[data-theme="dark"] .offices-panel {
  background: #111A2E;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
[data-theme="dark"] .offices-intro {
  background: linear-gradient(145deg, #0D1527 0%, #152038 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .offices-intro h2 {
  color: #FFFFFF;
}
[data-theme="dark"] .offices-intro p {
  color: #CBD5E1;
}
[data-theme="dark"] .office-note {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 32px;
  background: #f8fafb;
}
[data-theme="dark"] .office-grid {
  background: #0A0F1D;
}
.office-grid article {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium);
}
.office-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 170, 0, 0.46);
  box-shadow: var(--shadow-md), 0 0 24px rgba(255, 170, 0, 0.1);
}
[data-theme="dark"] .office-grid article {
  background: #131E33;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .office-grid article:hover {
  background: #182642;
  border-color: rgba(255, 170, 0, 0.5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 170, 0, 0.12);
}
.office-city {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.12), rgba(255, 208, 0, 0.16));
  color: var(--gold-text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: fit-content;
}
[data-theme="dark"] .office-city {
  background: rgba(255, 170, 0, 0.18);
  color: #FBBF24;
  border: 1px solid rgba(255, 170, 0, 0.3);
}
.office-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
}
[data-theme="dark"] .office-grid h3 {
  color: #F8FAFC;
}
.office-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
[data-theme="dark"] .office-grid p {
  color: #94A3B8;
}
.office-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}
.office-phones a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--green-hover);
  font-weight: 800;
  transition: all 0.2s ease;
}
.office-phones a:hover {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.4);
}
[data-theme="dark"] .office-phones a {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border-color: rgba(16, 185, 129, 0.3);
}
[data-theme="dark"] .office-phones a:hover {
  background: rgba(16, 185, 129, 0.28);
  color: #6EE7B7;
}
.office-phones a::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}
.office-phones a:hover {
  border-color: var(--green);
  color: var(--green-hover);
  background: rgba(16, 185, 129, 0.13);
}

.document-section { background: var(--cream); }
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.document-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.document-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), 0 0 28px rgba(255, 170, 0, 0.14);
  border-color: rgba(255, 170, 0, 0.4);
}
.document-card img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.document-card:hover img {
  transform: scale(1.05);
}
.document-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 170, 0, 0.32);
  box-shadow: var(--shadow-lg), 0 0 24px rgba(255, 170, 0, 0.12);
}
.document-card a {
  display: block;
  min-height: 0;
  background: #eef2f1;
  cursor: zoom-in;
  outline-offset: -4px;
}
.document-card a:focus-visible {
  outline: 3px solid var(--gold-hover);
}
.document-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.96) contrast(1.02);
}
.document-card div { padding: 22px; }
.document-card h2 { margin: 12px 0 8px; font-size: 1.12rem; }
.document-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: block;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s var(--ease-premium);
}

.image-lightbox.is-open {
  opacity: 1;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.image-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  outline: none;
}

.image-lightbox__toolbar {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.image-lightbox__button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  box-shadow: var(--shadow-navy);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s var(--ease-premium), background 0.2s var(--ease-premium), opacity 0.2s var(--ease-premium);
}

.image-lightbox__button:hover {
  transform: translateY(-2px);
  background: white;
}

.image-lightbox__button:focus-visible {
  outline: 3px solid var(--gold-hover);
  outline-offset: 3px;
}

.image-lightbox__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.image-lightbox__close {
  background: var(--gold);
}

.image-lightbox__stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 58px 18px 18px;
  overflow: hidden;
  cursor: pointer;
  touch-action: none;
}

.image-lightbox__stage.is-zoomed {
  cursor: grab;
}

.image-lightbox__stage.is-zoomed:active {
  cursor: grabbing;
}

.image-lightbox__image {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center;
  transition: transform 0.08s linear;
}

/* LEGAL SECTION */
.legal-section { background: var(--paper); }
.legal-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.legal-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-hover), var(--blue), var(--green));
}
[data-theme="dark"] .legal-panel {
  background: #111A2E;
  border-color: rgba(255, 255, 255, 0.1);
}
.legal-panel h2 { color: white; margin-top: 8px; }
.legal-panel p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.6; }
.legal-list { display: grid; gap: 16px; margin: 0; }
.legal-list div { 
  padding: 20px; 
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: var(--radius); 
  transition: all 0.3s var(--ease-premium);
}
.legal-list div:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-text);
}
.legal-list dt { color: var(--gold-text); font-weight: 800; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.legal-list dd { margin: 6px 0 0; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* FAQ SYSTEM ACCORDION */
.faq-list { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: 0 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 170, 0, 0.3);
  transform: translateY(-2px);
}
.faq-item summary { 
  cursor: pointer; 
  padding: 22px 0; 
  color: var(--navy); 
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; 
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary:focus-visible {
  outline: 3px solid var(--gold-hover);
  outline-offset: 2px;
  border-radius: 4px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-hover);
  font-weight: 400;
  transition: transform 0.3s var(--ease-premium);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p { margin: 0; padding: 0 0 22px; font-size: 0.95rem; line-height: 1.6; color: var(--muted); border-top: 1px solid rgba(11, 19, 43, 0.05); padding-top: 16px; }

/* FLOATING WHATSAPP & FOOTER */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #0EAD76);
  color: white;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.38), 0 0 0 0 rgba(16, 185, 129, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pulse-ring 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.38), 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(16, 185, 129, 0.38), 0 0 0 12px rgba(16, 185, 129, 0); }
}
.floating-whatsapp:hover {
  transform: scale(1.15) rotate(8deg);
  background: linear-gradient(135deg, var(--green-hover), #0A8F63);
  box-shadow: 0 14px 40px rgba(16, 185, 129, 0.48), 0 0 24px rgba(16, 185, 129, 0.24);
  animation: none;
}
.floating-whatsapp:focus-visible {
  outline: 3px solid var(--gold-hover);
  outline-offset: 2px;
}
.is-reading-comparison .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
}
.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.trust-badge-strip {
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  background: #0B132B;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .trust-badge-strip {
  background: #080D18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-badge-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 26, 46, 0.96), rgba(17, 26, 46, 0.88));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.35);
  max-width: var(--max);
  margin: 0 auto;
}
[data-theme="dark"] .trust-badge-panel {
  background: linear-gradient(135deg, rgba(18, 26, 46, 0.96), rgba(17, 26, 46, 0.88));
  border-color: rgba(255, 255, 255, 0.1);
}
.trust-badge {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 100px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #111A2E;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s var(--ease-premium), box-shadow 0.28s var(--ease-premium), border-color 0.28s var(--ease-premium);
}
[data-theme="dark"] .trust-badge {
  background: #111A2E;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.trust-badge:hover,
[data-theme="dark"] .trust-badge:hover {
  transform: translateY(-4px);
  border-color: #FFD000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(255, 208, 0, 0.14);
  background: #16223B;
}
.trust-badge__icon,
[data-theme="dark"] .trust-badge__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50%;
  background: rgba(255, 208, 0, 0.12);
  border: 1px solid rgba(255, 208, 0, 0.3);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
  flex-shrink: 0;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}
.trust-badge:hover .trust-badge__icon {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(255, 208, 0, 0.25);
}
.trust-badge__icon svg,
[data-theme="dark"] .trust-badge__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
  stroke: #FFD000;
  color: #FFD000;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-badge strong,
[data-theme="dark"] .trust-badge strong {
  display: block;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.96rem;
  line-height: 1.25;
}
.trust-badge div span,
.trust-badge span:not(.trust-badge__icon),
[data-theme="dark"] .trust-badge div span,
[data-theme="dark"] .trust-badge span:not(.trust-badge__icon) {
  display: block;
  margin-top: 6px;
  color: #94A3B8;
  font-size: 0.84rem;
  line-height: 1.48;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, #0F1729 0%, #111a2e 100%);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-hover), transparent);
}
.site-footer p { margin: 6px 0 0; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.9rem; }
.site-footer nav a {
  position: relative;
  transition: color 0.3s var(--ease-premium);
}
.site-footer nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-hover);
  transition: width 0.3s var(--ease-premium);
}
.site-footer nav a:hover { color: var(--gold-text); }
.site-footer nav a:hover::after { width: 100%; }

/* TRANSITION REVEALS */
.reveal { 
  opacity: 0; 
  transform: translateY(24px); 
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); 
}
.reveal.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav, .header-actions { display: none; }
  .menu-button { display: block; grid-column: 3; }
  
  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .site-header.menu-open .header-actions {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: stretch;
    border-top: 1px solid var(--line);
  }
  .site-header.menu-open .theme-toggle {
    justify-self: center;
  }
  .site-header.menu-open .main-nav a { 
    padding: 14px 0; 
    border-top: 1px solid var(--line); 
    border-bottom: none;
    text-align: center;
  }
  .site-header.menu-open .main-nav a::after { display: none; }
  
  .hero.section {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 32px;
    gap: 12px;
    text-align: center;
  }
  .hero-content {
    display: contents;
  }
  .hero-content.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-content .eyebrow {
    order: 1;
    margin: 0 auto 6px;
    width: fit-content;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    padding-left: 0;
    white-space: nowrap;
  }
  .hero-content .eyebrow::before {
    display: none;
  }
  .hero-visual {
    order: 2;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    min-height: auto;
    height: auto;
    position: relative;
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
  }
  .hero-visual img {
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: 1792 / 2400;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 4px solid var(--paper);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
  }
  .score-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
    z-index: 5;
    padding: 12px 18px;
    grid-template-columns: 0.72fr 1fr;
    gap: 8px;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 36px rgba(11, 19, 43, 0.16);
  }
  [data-theme="dark"] .score-panel {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  }
  .hero-content h1 {
    order: 3;
    margin-top: 14px;
    margin-inline: auto;
    font-size: clamp(2rem, 5.5vw, 2.8rem);
  }
  .hero-copy {
    order: 4;
    margin-inline: auto;
  }
  .hero-actions {
    order: 5;
    justify-content: center;
  }
  .proof-row {
    order: 6;
    justify-content: center;
  }
  
  .trust-band { grid-template-columns: repeat(2, 1fr); margin-top: 0; padding-top: 40px; }
  .trust-badge-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .viability-section, .offices-panel, .central-panel__inner { grid-template-columns: 1fr; }
  .viability-section { gap: 32px; }
  .cards-grid, .pricing-grid, .case-grid, .legal-panel, .split-grid, .mini-grid, .plan-summary, .document-grid, .central-detail-grid { grid-template-columns: 1fr; }
  .central-tabs { grid-template-columns: 1fr; }
  .central-panel,
  .central-panel__inner { min-height: 0; }
  .document-card { grid-template-rows: 420px auto; }
  .image-lightbox__dialog {
    width: 100%;
    height: 100%;
  }
  .evidence-strip {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px;
    gap: 20px;
    margin-top: 48px;
  }
  .evidence-strip .btn {
    width: 100%;
  }
  
  .price-card.featured {
    transform: none;
    padding: 32px 24px;
  }
  .price-card.featured:hover { transform: translateY(-6px); }
  .pricing-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .cta-strip { display: grid; text-align: center; padding: 40px; margin-inline: 20px; }
  .cta-strip .btn { justify-self: center; }
}

@media (max-width: 640px) {
  .section { padding: 60px 20px; }
  .page-hero { padding: 50px 20px 40px; }
  .site-header { padding-inline: 20px; min-height: 70px; }
  .brand-text { font-size: 1.15rem; }
  .timeline { gap: 22px; }
  .timeline-line {
    left: 22px;
    top: 22px;
    bottom: 22px;
  }
  .timeline-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
  }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
    text-align: left;
  }
.timeline-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid var(--mist);
  background: var(--paper);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  transition: all 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.timeline-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s var(--ease-premium);
}
.timeline-item.is-active .timeline-number::after {
  border-color: var(--gold-hover);
  animation: pulse-border 2s ease-out infinite;
}
@keyframes pulse-border {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}
  .timeline-card { padding: 22px 20px 24px; }
  .timeline-trigger h2,
  .timeline-trigger h3 { font-size: 1rem; }
  .central-tabs {
    padding: 8px;
    gap: 10px;
  }
  .central-tab {
    min-height: 64px;
    padding: 12px;
  }
  .central-panel__summary,
  .central-panel__details {
    padding: 24px;
  }
  .central-panel__summary::before {
    inset: 12px;
  }
  .hero.section { padding-top: 10px; padding-bottom: 28px; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .pricing-grid {
    gap: 22px;
  }
  .price-card {
    padding: 28px 20px;
  }
  .price-card.featured {
    transform: none;
    padding: 28px 20px;
  }
  .price-card.featured:hover {
    transform: translateY(-4px);
  }
  .price-val {
    font-size: 2.1rem;
  }
  .featured-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .pricing-trust-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 16px;
  }
  .compare-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .compare-wrap table,
  .compare-wrap thead,
  .compare-wrap tbody,
  .compare-wrap tr,
  .compare-wrap th,
  .compare-wrap td {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .compare-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .compare-wrap tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
  }
  .compare-wrap td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    text-align: right;
  }
  .compare-wrap td:first-child {
    display: block;
    background: var(--navy);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-align: left;
  }
  [data-theme="dark"] .compare-wrap td:first-child {
    background: #0B132B;
  }
  .compare-wrap td:not(:first-child)::before {
    color: var(--muted);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-align: left;
  }
  .compare-wrap td:nth-child(2)::before { content: "Esencial"; }
  .compare-wrap td:nth-child(3)::before { content: "Mejora"; }
  .compare-wrap td:nth-child(4)::before { content: "Premium"; }
  .score-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -24px;
    padding: 12px 16px;
    grid-template-columns: 0.72fr 1fr;
    gap: 8px;
  }
  .score-panel strong { font-size: 2.45rem; }
  .score-panel span { font-size: 0.66rem; }
  .score-panel small { font-size: 0.7rem; }
  .document-card { grid-template-rows: 330px auto; }
  .image-lightbox {
    padding: 10px;
  }
  .image-lightbox__dialog {
    width: 100%;
    height: 100%;
  }
  .image-lightbox__toolbar {
    gap: 8px;
  }
  .image-lightbox__button {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }
  .image-lightbox__stage {
    border-radius: 12px;
  }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band article { padding: 24px; }
  .trust-badge-strip { padding: 30px 20px; }
  .trust-badge-panel { grid-template-columns: 1fr; padding: 12px; }
  .trust-badge { min-height: auto; padding: 18px; }
  .viability-card { padding: 22px; min-height: 0; }
  .viability-progress { margin-bottom: 22px; }
  .live-viability-meter { margin: -8px 0 18px; }
  .live-viability-meter svg { width: min(100%, 220px); }
  .viability-question { font-size: 1.12rem; line-height: 1.32; }
  .viability-options { grid-template-columns: 1fr; }
  .viability-option { min-height: 52px; }
  .floating-whatsapp {
    right: 12px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
  .floating-whatsapp svg {
    width: 23px;
    height: 23px;
  }
  .floating-whatsapp.is-paused {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.92);
  }
  .offices-intro { padding: 30px 24px; }
  .office-grid { padding: 18px; gap: 14px; }
  .office-grid { grid-template-columns: 1fr; }
  .office-grid article {
    min-height: auto;
    padding: 24px;
  }
  .legal-panel { padding: 24px; }
  .site-footer { flex-direction: column; text-align: center; padding: 40px 20px; }
  .site-footer nav { justify-content: center; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .image-lightbox,
  .image-lightbox__button,
  .image-lightbox__image,
  .central-tab,
  .central-tab::after,
  .central-panel__inner,
  .central-check circle,
  .central-check path,
  .timeline-number,
  .timeline-line::after,
  .timeline-card,
  .timeline-panel-inner,
  .meter-arc,
  .meter-needle line,
  .meter-needle circle,
  .viability-stage,
  .viability-result {
    animation: none;
    transition: none;
  }
}

/* ==========================================================================
   PREMIUM VISUAL & ZOOM 100% RESPONSIVE REFINEMENTS
   ========================================================================== */

/* 1. Ajustes del Simulador de Viabilidad */
@media (max-width: 1100px) and (min-width: 641px) {
  .viability-options {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

/* 2. Ajustes de grilla interna para el Mapa de Centrales */
@media (max-width: 1100px) {
  .central-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* 3. Viewports de Altura Reducida (Laptop) - Evitar Desbordes de Primer Pantallazo */
@media (max-height: 800px) and (min-width: 981px) {
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
  padding: 24px max(24px, calc((100vw - var(--max)) / 2)) 20px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 170, 0, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(58, 134, 200, 0.06), transparent 40%);
  pointer-events: none;
}
  .hero-visual, 
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold-hover), var(--coral));
  border-radius: 50%;
  opacity: 0.12;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}
  .score-panel {
    bottom: 16px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 12px;
  }
  .score-panel strong {
    font-size: 2.40rem;
  }
  h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .hero-copy {
    margin-top: 16px;
    font-size: 1.05rem;
  }
  .hero-actions {
    margin-top: 24px;
  }
}

/* 4. Viewports de Ancho Medio (Portátiles Estándar 981px - 1200px) */
@media (min-width: 981px) and (max-width: 1200px) {
  /* Cabecera y Navegación */
  .site-header {
    gap: 16px;
    padding-inline: 20px;
  }
  .main-nav {
    gap: 16px;
    font-size: 0.88rem;
  }
  .header-actions {
    gap: 8px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  /* Banda de Confianza */
  .trust-band {
    gap: 12px;
  }
  .trust-band article {
    padding: 20px 16px;
  }
.trust-band strong {
  display: block;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}
.trust-band strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-hover), transparent);
  border-radius: 999px;
}
  .trust-band span {
    font-size: 0.85rem;
  }

  /* Grilla Comercial de Planes */
  .pricing-grid {
    gap: 20px;
  }
  .price-card {
    padding: 28px 22px;
  }
  .price-card.featured {
    padding: 28px 22px;
  }
  .price-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
  }

  /* Línea de Tiempo de Metodología */
  .timeline-item {
    gap: 16px;
  }
  .timeline-card {
    padding: 20px 24px;
  }

  /* Panel de Transparencia de Legalidad */
  .legal-panel {
    gap: 28px;
    padding: 32px;
  }
}

/* ==========================================================================
   HORIZONTAL STEP GRID REDESIGN FOR METODO CERO 360 (DESKTOP)
   ========================================================================== */
@media (min-width: 981px) {
  .timeline-line {
    display: none;
  }
  
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
  }
  
  .timeline-item {
    display: block;
    grid-template-columns: none;
    min-height: auto;
    gap: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: auto;
    text-align: left;
  }
  
  .timeline-number {
    grid-column: auto;
    grid-row: auto;
    margin: 0 0 16px 0;
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
    border-width: 3px;
    justify-self: start;
    position: relative;
  }
  
  .timeline-card {
    opacity: 1;
    transform: none;
    padding: 24px;
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
  }
  .timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-hover), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-premium);
  }
  .timeline-card:hover::before {
    transform: scaleX(1);
  }
  
  .timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-hover);
    box-shadow: var(--shadow-lg), 0 0 28px rgba(255, 170, 0, 0.18);
  }
  
  .timeline-panel {
    grid-template-rows: 1fr;
    display: block;
  }
  
  .timeline-panel-inner {
    opacity: 1;
    transform: none;
  }
  
  .timeline-panel p {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  
  .timeline-panel ul {
    margin-top: 14px;
    padding-top: 14px;
    gap: 8px;
    border-top: 1px solid rgba(11, 19, 43, 0.06);
  }
  
  .timeline-panel li {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    padding-left: 20px !important;
  }
  
  .timeline-panel li::before {
    top: 0.58em !important;
    width: 6px !important;
    height: 6px !important;
  }
}
