/* ==========================================================================
   ENCOBOX DESIGN SYSTEM & COMPONENT STYLES (styles.css)
   Aesthetics: Clean, technological, minimalist, and premium.
   Inspired by Stripe, Linear, Notion, Vercel, and Framer.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & VARIABLES SYSTEM
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --color-bg-gate: #02002A;
  --color-bg-dark: #03003E;
  --color-bg-dark-card: #0A074E;
  --color-bg-light: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  
  --color-brand-green: #78D61A;
  --color-brand-green-hover: #63B115;
  --color-brand-green-glow: rgba(120, 214, 26, 0.15);
  
  --color-text-dark: #0F172A;
  --color-text-muted: #64748B;
  --color-text-light: #F8FAFC;
  --color-text-dim: #94A3B8;
  
  --color-border-light: #E2E8F0;
  --color-border-dark: #1E293B;
  
  --color-error: #FF3366;
  --color-error-bg: rgba(255, 51, 102, 0.05);

  /* Typography */
  --font-family-title: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;

  /* Layout and Sizing */
  --sidebar-width: 224px;
  --mobile-header-height: 64px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --border-radius-sm: var(--radius-sm);
  --border-radius-md: var(--radius-md);
  --border-radius-lg: var(--radius-lg);
  --radius-xl: 24px;
  --color-text-main: var(--color-text-dark);
  --color-panel-soft-green: #F0FDF4;
  --color-panel-pale-green: #F7FEE7;
  --color-panel-deep: var(--color-bg-dark);
  --color-border-green-soft: rgba(120, 214, 26, 0.24);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(0, 230, 118, 0.2);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GENERAL STYLES & RESET
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   3. SHARED COMPONENTS & INTERACTIVE PRESETS
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  /* Interactive hover disabled for static cards */
}

.card-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 12px;
}

/* Premium Buttons */
.btn-primary {
  background-color: var(--color-brand-green);
  color: var(--color-bg-dark);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 230, 118, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-brand-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border-light);
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-text-dark);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-text {
  color: var(--color-text-dim);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
}

.btn-text:hover {
  color: var(--color-brand-green);
}

/* Typography styles */
.text-green {
  color: var(--color-brand-green) !important;
}

.strike-through {
  text-decoration: line-through;
  opacity: 0.6;
}

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

/* --------------------------------------------------------------------------
   4. PANTALLA DE BIENVENIDA (GATE SCREEN)
   -------------------------------------------------------------------------- */
.gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-bg-gate);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.gate-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.gate-card {
  max-width: 900px;
  width: 90%;
  text-align: center;
  color: var(--color-text-light);
  padding: 40px;
}

.gate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-brand-green);
  margin-bottom: 24px;
}

.gate-logo svg {
  animation: float 4s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-family-title);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-text-light);
}

.gate-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-text-light);
  letter-spacing: -1px;
}

.gate-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-dim);
  max-width: 600px;
  margin: 0 auto 48px;
}

.gate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gate-option-card {
  background-color: var(--color-bg-dark-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.gate-option-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, var(--color-brand-green-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gate-option-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.gate-option-card:hover::after {
  opacity: 1;
}

.gate-option-card.highlight {
  border-color: rgba(0, 230, 118, 0.3);
}

.gate-option-card.highlight:hover {
  border-color: var(--color-brand-green);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.6);
}

.option-icon {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-dim);
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.gate-option-card.highlight .option-icon {
  background-color: var(--color-brand-green-glow);
  color: var(--color-brand-green);
}

.option-title {
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.option-desc {
  font-size: 0.95rem;
  color: var(--color-text-dim);
  margin-bottom: 32px;
  flex-grow: 1;
  line-height: 1.5;
}

.option-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.gate-option-card.highlight .option-arrow {
  color: var(--color-brand-green);
}

.option-arrow svg {
  transition: transform var(--transition-fast);
}

.gate-option-card:hover .option-arrow svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. LAYOUT DE LA APLICACIÓN (APP LAYOUT)
   -------------------------------------------------------------------------- */
.app-layout-hidden {
  display: none !important;
}

#app-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

.mobile-header,
.mobile-menu-overlay {
  display: none;
}

/* --------------------------------------------------------------------------
   6. SIDEBAR NAVIGATION
   -------------------------------------------------------------------------- */
.sidebar-nav {
  grid-column: 1;
  position: sticky;
  top: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-right: 1px solid var(--color-border-dark);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar-brand {
  display: block;
  margin-bottom: 22px;
  cursor: pointer;
}

/* Real logo image in sidebar (dark background - logo fits natively) */
.sidebar-logo-img {
  width: 124px;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: contain;
}

/* Real logo in mobile header (dark background) */
.header-logo-img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
}

.nav-links-wrapper {
  flex-grow: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 9px 12px;
  border-radius: var(--border-radius-sm);
  color: var(--color-text-dim);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-text-light);
  background-color: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--color-text-light);
  background-color: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--color-brand-green);
  padding-left: 9px; /* Compensation */
}

.nav-link.highlight {
  background-color: var(--color-brand-green-glow);
  color: var(--color-brand-green);
  margin-top: 10px;
  text-align: center;
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.nav-link.highlight:hover {
  background-color: var(--color-brand-green);
  color: var(--color-bg-dark);
  box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

.sidebar-footer {
  padding-top: 16px;
  border-top: 1px solid var(--color-border-dark);
}

/* --------------------------------------------------------------------------
   7. MAIN CONTENT AREA & SECTIONS
   -------------------------------------------------------------------------- */
.main-content {
  grid-column: 2;
  margin-left: 0;
  min-width: 0; /* Prevents flex items from overflowing */
  overflow-x: clip;
}

.content-section {
  min-height: 100vh;
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--color-border-light);
}

.content-section:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.section-header {
  max-width: 700px;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--color-brand-green-hover);
  background-color: var(--color-brand-green-glow);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   8. SECCIÓN 1: HERO
   -------------------------------------------------------------------------- */
.hero-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 30px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-brand-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-graphic-wrapper {
  perspective: 1000px;
}

.hero-glass-card {
  background: rgba(10, 15, 29, 0.95);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  color: var(--color-text-light);
  box-shadow: var(--shadow-lg);
  transform: rotateX(10deg);
  transition: transform var(--transition-slow);
}

.hero-glass-card:hover {
  transform: rotateX(0deg) translateY(-5px);
}

.card-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.card-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.graphic-flex {
  display: flex;
  justify-content: space-around;
  text-align: left;
  align-items: center;
}

.graphic-col {
  display: flex;
  flex-direction: column;
}

.col-label {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.col-val {
  font-family: var(--font-family-title);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.col-sub {
  font-size: 0.8rem;
  margin-top: 4px;
  color: var(--color-text-dim);
}

.graphic-divider {
  width: 1px;
  height: 50px;
  background-color: var(--color-border-dark);
}

.mini-sparkline {
  margin-top: 8px;
  width: 100px;
  height: 30px;
}

/* --------------------------------------------------------------------------
   9. SECCIÓN 2: SERVICIOS Y COMPARADOR
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* ---- Commercial Service Card ---- */
.service-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  padding: 0;
  background: var(--color-bg-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--color-border-light);
  gap: 12px;
}

.service-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-dark);
  transition: background 0.2s;
}

.service-card:hover .service-icon-wrap {
  background: var(--color-bg-dark);
  color: var(--color-brand-green);
  border-color: var(--color-bg-dark);
}

.service-tagline-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand-green-hover);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(120, 214, 26, 0.1);
  border: 1px solid rgba(120, 214, 26, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* Variant colors per service */
.service-tagline-badge--partner {
  color: var(--color-bg-dark);
  background: rgba(10, 15, 29, 0.07);
  border-color: rgba(10, 15, 29, 0.15);
}

.service-card-body {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--color-text-dark);
}

.service-description {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Meta rows: Para quién / Cuándo / Ventaja */
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
  margin: 0;
}

.service-meta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.service-meta-row dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-meta-row dt svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.service-meta-row dd {
  font-size: 0.87rem;
  color: var(--color-text-dark);
  line-height: 1.45;
  margin: 0;
}

.service-meta-row--benefit dt {
  color: var(--color-brand-green-hover);
}

.service-meta-row--benefit dd {
  font-weight: 600;
}

/* Benefits list inside card */
.service-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
  margin: 0;
}

.service-benefits-list li {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-benefits-list li svg {
  flex-shrink: 0;
  color: var(--color-brand-green-hover);
}

/* Card actions */
.service-card-actions {
  display: flex;
  gap: 10px;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--color-border-light);
  align-items: center;
}

.btn-start-service {
  font-size: 0.82rem !important;
  padding: 8px 16px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA row at the bottom of Servicios section */
.services-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  background: var(--color-bg-alt);
  margin-top: 8px;
}

.services-cta-text {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0 !important;
}

@media (max-width: 860px) {
  .services-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Modales / Paneles de Detalles (Framer Style Slide Drawer) */
.details-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 500px;
  max-width: 100%;
  height: 100vh;
  background-color: var(--color-bg-light);
  box-shadow: -10px 0 50px rgba(0,0,0,0.15);
  z-index: 1500;
  padding: 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.details-drawer.active {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 15, 29, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.drawer-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--color-text-muted);
}

.drawer-close:hover {
  color: var(--color-text-dark);
}

.drawer-content {
  margin-top: 20px;
}

.drawer-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.drawer-subtitle {
  color: var(--color-brand-green-hover);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.drawer-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.drawer-section-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 8px;
}

.drawer-list {
  list-style: none;
  margin-bottom: 30px;
}

.drawer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.drawer-list li svg {
  color: var(--color-brand-green-hover);
  flex-shrink: 0;
  margin-top: 4px;
}

.drawer-ideal {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin-bottom: 40px;
}

.drawer-ideal h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

/* Decision Service Cards */
.decision-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.decision-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.7), rgba(255, 255, 255, 0) 42%),
    var(--color-bg-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.decision-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 214, 26, 0.45);
  box-shadow: var(--shadow-md);
}

.decision-service-card--featured {
  border-color: rgba(120, 214, 26, 0.55);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(120, 214, 26, 0.12);
}

.decision-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.decision-card-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.decision-card-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-weight: 700;
}

.decision-service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.decision-card-summary {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 26px;
}

.decision-card-section {
  margin-top: auto;
}

.decision-card-section > span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.decision-card-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin-bottom: 24px;
}

.decision-card-section li {
  padding: 10px 12px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  background-color: rgba(248, 250, 252, 0.76);
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.decision-card-benefit {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-weight: 700;
  line-height: 1.35;
}

/* Comparison Table */
.comparison-container {
  margin-bottom: 80px;
}

.decision-comparison-container {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}

.comparison-title {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-lg);
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.95rem;
}

.comparison-table th {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--color-text-dark);
  background-color: var(--color-bg-alt);
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table tr:hover {
  background-color: var(--color-bg-alt);
}

.decision-check,
.decision-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
}

.decision-check {
  background-color: var(--color-brand-green-glow);
  color: var(--color-brand-green-hover);
}

.decision-no {
  background-color: var(--color-bg-alt);
  color: var(--color-text-dim);
}

.decision-help-box {
  padding: 36px 40px;
  border: 1px solid rgba(120, 214, 26, 0.28);
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, rgba(120, 214, 26, 0.07) 0%, rgba(255,255,255,0) 60%);
  margin-top: 8px;
}

.decision-help-content {
  max-width: 600px;
}

.decision-help-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.decision-help-box p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}

.decision-help-box .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- Rates Comparison Block (inside #tarifas) ---- */
.rates-comparison-block {
  border-top: 1px solid var(--color-border-light);
  padding-top: 44px;
  margin-top: 8px;
}

.rates-comparison-header {
  max-width: 680px;
  margin-bottom: 28px;
}

.rates-comparison-header h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.rates-comparison-header p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Use cases grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.use-case-card {
  display: flex;
  flex-direction: column;
}

.use-case-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.use-case-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.use-case-rec {
  border-top: 1px solid var(--color-border-light);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.rec-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-brand-green-hover);
}

/* --------------------------------------------------------------------------
   10. SECCIÓN 3: TARIFAS
   -------------------------------------------------------------------------- */
.rates-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.rates-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.rate-overview-card {
  padding: 22px;
}

.rate-model-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background-color: var(--color-brand-green-glow);
  color: var(--color-brand-green-hover);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.rate-overview-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.rate-overview-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.rates-models-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 56px;
}

.rate-model-card {
  padding: 34px;
  border-radius: 18px;
}

.rate-model-heading {
  max-width: 920px;
  margin-bottom: 26px;
}

.rate-model-heading h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.rate-model-heading p {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  max-width: 780px;
}

.rate-model-compact-meta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--color-bg-alt);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
}

.rate-compact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
}

.rate-compact-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.rate-compact-row dt svg {
  color: var(--color-brand-green-hover);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.rate-compact-row dd {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.rate-compact-row--benefit dt svg {
  color: var(--color-brand-green);
}

.rate-compact-row--benefit dd {
  color: var(--color-brand-green-hover);
  font-weight: 700;
}

@media (max-width: 640px) {
  .rate-compact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.rate-decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.rate-decision-main {
  min-width: 0;
}

.rate-highlight-panel {
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 20px 22px;
  background-color: var(--color-bg-light);
}

.rate-metric-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 0;
}

.rate-metric-row + .rate-metric-row {
  border-top: 1px solid var(--color-border-light);
}

.rate-metric-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: rgba(120, 214, 26, 0.1);
  color: var(--color-text-dark);
  display: grid;
  place-items: center;
}

.rate-metric {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rate-metric span {
  color: var(--color-text-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.rate-metric strong {
  color: var(--color-text-dark);
  font-family: var(--font-family-title);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1;
}

.rate-metric small {
  color: var(--color-brand-green-hover);
  font-size: 0.9rem;
  font-weight: 700;
}

.rate-metric-divider {
  width: 1px;
  height: 72px;
  background-color: var(--color-border-light);
}

.rate-secondary-section {
  margin-top: 22px;
}

.rate-secondary-section h4 {
  font-size: 1.18rem;
  margin-bottom: 14px;
}

.rate-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rate-secondary-card {
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  padding: 16px;
  background-color: var(--color-bg-light);
}

.rate-secondary-card h5 {
  font-size: 0.98rem;
  margin-bottom: 5px;
}

.rate-secondary-card > div > strong {
  display: block;
  color: var(--color-brand-green-hover);
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.rate-secondary-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rate-secondary-card li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.84rem;
}

.rate-secondary-card li span:last-child {
  color: var(--color-text-dark);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.rate-info-panel {
  border: 1px solid rgba(120, 214, 26, 0.22);
  border-radius: 12px;
  padding: 28px 26px;
  background:
    radial-gradient(circle at top left, rgba(120, 214, 26, 0.13), transparent 45%),
    linear-gradient(180deg, rgba(120, 214, 26, 0.08), rgba(255, 255, 255, 0.84));
}

.rate-info-panel h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.rate-info-panel p {
  color: var(--color-text-dark);
  line-height: 1.65;
  margin-bottom: 22px;
}

.rate-box-extras {
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 18px 0;
  margin-bottom: 22px;
}

.rate-box-extras > strong {
  display: block;
  color: var(--color-text-dark);
  font-size: 0.94rem;
  margin-bottom: 12px;
}

.rate-box-extras ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.rate-box-extras li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.rate-box-extras li span:last-child {
  color: var(--color-brand-green-hover);
  font-weight: 900;
  white-space: nowrap;
}

.rate-box-extras p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---- Unified Value Props Block ---- */
.rate-model-value-props {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-light);
}

.rate-how-it-works h4,
.rate-advantages h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.how-it-works-steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.how-it-works-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.how-it-works-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--color-border-light);
}

.how-it-works-step p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.how-it-works-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-border-dark);
  padding-top: 12px;
  opacity: 0.5;
}

.rate-advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.rate-advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  line-height: 1.4;
}

.rate-advantages-list li svg {
  flex-shrink: 0;
  color: var(--color-brand-green-hover);
}

@media (max-width: 860px) {
  .rate-model-value-props {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.puntual-rate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.puntual-rate-block {
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg-alt);
  padding: 16px;
}

.puntual-rate-block h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.puntual-rate-block > strong {
  display: block;
  color: var(--color-text-dark);
  font-family: var(--font-family-title);
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 14px;
}

.puntual-rate-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.puntual-rate-block li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.86rem;
}

.puntual-rate-block li span:last-child {
  color: var(--color-text-dark);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.puntual-rates-table {
  width: 100%;
  border-collapse: collapse;
}

.puntual-rates-table th,
.puntual-rates-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
}

.puntual-rates-table .rate-group-row th {
  padding-top: 18px;
  background-color: var(--color-bg-alt);
  color: var(--color-text-dark);
  font-size: 0.92rem;
}

.puntual-rates-table td {
  color: var(--color-text-muted);
}

.puntual-rates-table td:last-child {
  text-align: right;
}

.puntual-rates-table strong,
.partner-hours-table strong {
  color: var(--color-text-dark);
  font-family: var(--font-family-title);
  font-size: 1.05rem;
  white-space: nowrap;
}

.rate-summary-box {
  border: 1px solid rgba(120, 214, 26, 0.28);
  background: linear-gradient(180deg, rgba(120, 214, 26, 0.1), rgba(255, 255, 255, 0));
  border-radius: var(--border-radius-md);
  padding: 18px;
  color: var(--color-text-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.rate-summary-box--large {
  min-height: 132px;
  display: flex;
  align-items: center;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.rate-compact-copy {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.rate-agreement-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rate-agreement-chips--spaced {
  margin-top: 18px;
}

.rate-agreement-chips span {
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  background-color: var(--color-bg-alt);
  padding: 8px 12px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.partner-conditions-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin-bottom: 18px;
}

.partner-conditions-list li {
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg-alt);
  padding: 12px;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.partner-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}

.partner-hours-table th,
.partner-hours-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
}

.partner-hours-table th {
  background-color: var(--color-bg-alt);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.rate-model-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--color-brand-green);
  background-color: rgba(120, 214, 26, 0.08);
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

/* =============================================
   OTHER VEHICLES BLOCK (Standalone section)
   ============================================= */
.other-vehicles-section {
  margin-top: 8px;
  padding: 40px 0 36px;
  border-top: 1px solid var(--color-border-light);
}

.other-vehicles-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.other-vehicles-header h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.other-vehicles-header p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.other-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.other-vehicle-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  padding: 22px 20px;
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.other-vehicle-card-head h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.other-vehicle-summary {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-brand-green-hover);
}

.other-vehicle-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
  margin: 0;
}

.other-vehicle-items li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.other-vehicle-items li span:last-child {
  color: var(--color-text-dark);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.other-vehicle-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
  padding-bottom: 4px;
}

.other-vehicles-note {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
}

.other-vehicles-note svg {
  flex-shrink: 0;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .other-vehicles-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Drawer improvements ---- */
.drawer-header {
  margin-bottom: 20px;
}

.drawer-header .service-tagline-badge {
  margin-bottom: 10px;
  display: inline-block;
}

.drawer-desc-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.drawer-desc-block p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.drawer-section {
  margin-bottom: 24px;
}

.drawer-for-who {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.55;
  background: var(--color-bg-alt);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  margin: 0;
}

.drawer-actions {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
}

.drawer-rates-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.drawer-rates-link a {
  color: var(--color-brand-green-hover);
  font-weight: 600;
  text-decoration: none;
}

.drawer-rates-link a:hover {
  text-decoration: underline;
}

.box-guide-section {
  border-top: 1px solid var(--color-border-light);
  padding-top: 44px;
}

.box-guide-header {
  max-width: 780px;
  margin-bottom: 24px;
}

.box-guide-header h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.box-guide-header p {
  color: var(--color-text-muted);
}

.boxes-guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.box-guide-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  padding: 22px;
  background-color: var(--color-bg-light);
  box-shadow: var(--shadow-sm);
}

.box-guide-card h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.box-guide-card dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.box-guide-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 8px;
}

.box-guide-card dt {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.box-guide-card dd {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
}

.box-guide-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-bottom: 24px;
}

.rates-table th, .rates-table td {
  padding: 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.rates-table th {
  font-weight: 700;
  color: var(--color-text-dark);
}

.rates-table td strong {
  font-family: var(--font-family-title);
  font-size: 1.2rem;
  color: var(--color-text-dark);
}

.rates-extra-info {
  border-top: 1px solid var(--color-border-light);
  padding-top: 20px;
}

.rates-extra-info p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.rates-extra-info p strong {
  color: var(--color-text-dark);
}

.volume-discount-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-brand-green-glow);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  color: var(--color-text-dark);
  font-size: 0.9rem;
  margin-top: 20px;
}

.volume-discount-alert svg {
  color: var(--color-brand-green-hover);
  flex-shrink: 0;
}

.rates-examples-container h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.examples-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.example-card {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  padding: 20px;
}

.example-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.example-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.example-breakdown {
  font-family: var(--font-family-title);
  background-color: var(--color-bg-light);
  border: 1px dashed var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

/* --------------------------------------------------------------------------
   11. SECCIÓN 4: CÓMO FUNCIONA
   -------------------------------------------------------------------------- */
.steps-flow-container {
  position: relative;
  margin-top: 40px;
}

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

.flow-step-card {
  text-align: center;
  position: relative;
}

.flow-step-card::after {
  content: '→';
  position: absolute;
  top: 30px;
  right: -25px;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.flow-step-card:last-child::after {
  display: none;
}

.step-icon-wrapper {
  background-color: var(--color-bg-dark);
  color: var(--color-brand-green);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(10, 15, 29, 0.2);
}

.flow-step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.flow-step-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   11b. PROCESO - CANALES DE SOLICITUD (paso 01 con 2 imágenes)
   -------------------------------------------------------------------------- */
.process-step-channels-wrap {
  overflow: hidden;
}

.process-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  height: 100%;
}

.process-channel-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.process-channel-item:first-child {
  border-right: 2px solid rgba(255,255,255,0.15);
}

.process-channel-photo {
  width: 100%;
  height: calc(100% - 32px);
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.process-step-card:hover .process-channel-photo {
  transform: scale(1.04);
}

.process-channel-label {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(3, 0, 62, 0.6);
  backdrop-filter: blur(6px);
  padding: 6px 8px;
  height: 32px;
  line-height: 20px;
}

/* --------------------------------------------------------------------------
   11c. APP - SCREENSHOTS REALES GALLERY
   -------------------------------------------------------------------------- */
.app-real-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr 0.55fr;
  gap: 24px;
  margin-bottom: 48px;
}

.app-screenshot-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-screenshot-device {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border-light, #e5e7eb);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  background: #f8f9fa;
}

.app-screenshot-device--mobile {
  border-radius: 20px;
  max-width: 200px;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  background: #fff;
  border: 1px solid var(--color-border-light, #e5e7eb);
}

.app-real-screenshot-img {
  width: 100%;
  display: block;
  border-top: 1px solid var(--color-border-light, #e5e7eb);
}

.app-real-screenshot-img--mobile {
  border-top: none;
  border-radius: 20px;
}

.app-screenshot-caption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark, #0d0d1a);
  margin-bottom: 4px;
}

.app-screenshot-caption p {
  font-size: 0.85rem;
  color: var(--color-text-dim, #6b7280);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .app-real-screenshots {
    grid-template-columns: 1fr 1fr;
  }
  .app-screenshot-item:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .app-real-screenshots {
    grid-template-columns: 1fr;
  }
  .app-screenshot-item:last-child {
    grid-column: auto;
    max-width: 260px;
  }
  .process-channels-grid {
    grid-template-columns: 1fr;
  }
  .process-channel-item:first-child {
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.15);
  }
}

/* --------------------------------------------------------------------------
   12. SECCIÓN 5: LA APLICACIÓN
   -------------------------------------------------------------------------- */

.app-simulation-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.app-screen-tabs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-tab-btn {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border-light);
  background-color: var(--color-bg-light);
  transition: all var(--transition-fast);
  width: 100%;
}

.app-tab-btn:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-border-light);
  box-shadow: none;
}

.app-tab-btn.active {
  background-color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: var(--color-text-light);
  box-shadow: var(--shadow-sm);
}

/* Text area */
.tab-btn-title {
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.tab-btn-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.app-tab-btn.active .tab-btn-desc {
  color: var(--color-text-dim);
}

.app-tab-btn.active .tab-btn-title {
  color: inherit;
}


.app-screen-display-card {
  padding: 0;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}

/* Mock Device Chrome styling */
.mock-device-bar {
  background-color: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-device-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-dot-red { background-color: #FF5F56; }
.mock-dot-yellow { background-color: #FFBD2E; }
.mock-dot-green { background-color: #27C93F; }

.mock-address-bar {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-left: 20px;
  flex-grow: 1;
  max-width: 400px;
  text-align: center;
}

.mock-app-body {
  flex-grow: 1;
  background-color: var(--color-bg-light);
  padding: 24px;
  overflow-y: auto;
  font-size: 0.9rem;
}

/* Real screenshot inside simulator */
.mock-real-screenshot-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #f7f9fa;
  animation: fadeIn 0.4s ease;
  border-radius: 0 0 var(--border-radius-sm, 8px) var(--border-radius-sm, 8px);
}

.mock-real-screenshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Simulation dashboard layout details */
.mock-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mock-dash-title {
  font-family: var(--font-family-title);
  font-size: 1.3rem;
  font-weight: 700;
}

.mock-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mock-stat-box {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
}

.mock-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.mock-stat-val {
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-dark);
}

.mock-table {
  width: 100%;
  border-collapse: collapse;
}

.mock-table th, .mock-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
}

.mock-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.badge-status {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-status.active {
  background-color: var(--color-brand-green-glow);
  color: var(--color-brand-green-hover);
}

.badge-status.complete {
  background-color: #E2E8F0;
  color: #475569;
}

/* Map tracking simulation styling */
.mock-map-container {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;
  height: 100%;
}

.mock-map-graphic {
  background-color: #E6F4EA;
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
}

/* Fake map paths and coordinates */
.mock-map-line {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 3px;
  background-color: var(--color-text-dark);
  transform: rotate(-15deg);
}

.mock-map-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mock-map-dot.origin {
  top: 60%;
  left: 18%;
  background-color: var(--color-text-dark);
}

.mock-map-dot.dest {
  top: 38%;
  left: 78%;
  background-color: #EF4444;
}

.mock-map-dot.driver {
  top: 48%;
  left: 55%;
  background-color: var(--color-brand-green-hover);
  box-shadow: 0 0 10px var(--color-brand-green);
  animation: pulse 2s infinite;
}

.mock-map-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-eta-box {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 16px;
  border-radius: var(--border-radius-sm);
}

.mock-eta-val {
  font-family: var(--font-family-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-brand-green);
}

/* --------------------------------------------------------------------------
   13. SECCIÓN 6: CALCULADORAS
   -------------------------------------------------------------------------- */
.calculator-tabs-header {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.calc-tab-btn {
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
}

.calc-tab-btn:hover {
  color: var(--color-text-dark);
  border-color: var(--color-text-muted);
}

.calc-tab-btn.active {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
}

.calc-view {
  display: none;
}

.calc-view.active {
  display: block;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.calc-form-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-route-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(120, 214, 26, 0.12), transparent 34%),
    var(--color-bg-alt);
}

.calc-map-preview {
  position: relative;
  min-height: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background:
    linear-gradient(135deg, rgba(3, 0, 62, 0.08) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(225deg, rgba(120, 214, 26, 0.12) 25%, transparent 25%) 0 0 / 34px 34px,
    #F8FAFC;
}

.calc-map-placeholder {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 24px rgba(3, 0, 62, 0.08);
}

.calc-map-placeholder strong {
  color: var(--color-bg-dark);
  font-size: 0.95rem;
}

.calc-map-placeholder span {
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.calc-map-pin {
  position: absolute;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background-color: var(--color-bg-dark);
  color: var(--color-brand-green);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(3, 0, 62, 0.18);
}

.calc-map-pin::before {
  content: attr(class);
}

.calc-map-pin {
  font-size: 0;
}

.calc-map-pin--origin::after,
.calc-map-pin--dest::after {
  transform: rotate(45deg);
  font-size: 0.82rem;
}

.calc-map-pin--origin::after {
  content: 'A';
}

.calc-map-pin--dest::after {
  content: 'B';
}

.calc-map-pin--origin {
  top: 34px;
  left: 34px;
}

.calc-map-pin--dest {
  right: 38px;
  top: 86px;
}

.calc-map-route-line {
  position: absolute;
  top: 66px;
  left: 62px;
  width: 58%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-bg-dark), var(--color-brand-green));
  transform: rotate(14deg);
  opacity: 0.82;
}

.calc-route-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.calc-route-actions .btn-secondary {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
  box-shadow: 0 8px 24px rgba(3, 0, 62, 0.18);
}

.calc-maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-green-soft);
  background-color: var(--color-panel-pale-green);
  color: var(--color-brand-green-hover);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.calc-route-status {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.calc-route-status--success {
  border-color: var(--color-border-green-soft);
  background-color: var(--color-panel-pale-green);
  color: var(--color-bg-dark);
  font-weight: 700;
}

.calc-route-status--error {
  border-color: rgba(255, 51, 102, 0.22);
  background-color: var(--color-error-bg);
  color: var(--color-error);
}

.calc-route-status--simulation {
  border-color: rgba(245, 158, 11, 0.28);
  background-color: rgba(245, 158, 11, 0.09);
  color: #92400E;
  font-weight: 800;
}

.form-group-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-group input, .form-group select, .form-group textarea {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-text-dark);
  background-color: var(--color-bg-light);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-brand-green-hover);
}

.calc-result-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 32px;
}

.sim-pill {
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  padding: 4px 10px;
  border-radius: 12px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.calc-result-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.result-price-wrapper {
  margin-bottom: 24px;
}

.result-price {
  font-family: var(--font-family-title);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}

.price-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.result-breakdown {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 16px 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
}

.breakdown-row.total {
  font-weight: 700;
  color: var(--color-text-dark);
}

.calc-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  line-height: 1.4;
  margin-bottom: 24px;
}

/* Savings view components */
.highlight-gradient {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #152238 100%);
  color: var(--color-text-light);
  border: none;
}

.highlight-gradient h3 {
  color: var(--color-text-light);
}

.savings-summary {
  margin-bottom: 24px;
}

.saving-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.saving-label {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.saving-value {
  font-weight: 600;
  font-size: 1.1rem;
}

.saving-divider {
  height: 1px;
  background-color: var(--color-border-dark);
  margin: 16px 0;
}

.main-saving .saving-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.saving-total {
  font-family: var(--font-family-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-brand-green);
}

.savings-visual-chart {
  margin-bottom: 24px;
}

.chart-bar-container {
  margin-bottom: 10px;
}

.chart-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: 4px;
}

.chart-bar {
  height: 8px;
  border-radius: 4px;
  transition: width var(--transition-slow) ease-out;
}

.chart-bar.bg-grey { background-color: var(--color-border-dark); }
.chart-bar.bg-green { background-color: var(--color-brand-green); }

.savings-hours-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  margin-bottom: 30px;
}

.savings-hours-label svg {
  color: var(--color-brand-green);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   14. SECCIÓN 7: PREGUNTAS FRECUENTES (HELP CENTER)
   -------------------------------------------------------------------------- */
.help-center-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.help-search-box {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.help-search-box:focus-within {
  border-color: var(--color-text-dark);
  box-shadow: var(--shadow-md);
}

.search-icon {
  color: var(--color-text-muted);
}

.help-search-box input {
  border: none;
  flex-grow: 1;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  background-color: transparent;
}

.clear-search-btn {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.clear-search-btn.hidden {
  display: none;
}

.help-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cat-btn {
  background-color: var(--color-bg-alt);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
}

.cat-btn:hover {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.cat-btn.active {
  background-color: var(--color-brand-green-glow);
  color: var(--color-brand-green-hover);
  border-color: rgba(0, 230, 118, 0.2);
  font-weight: 600;
}

.help-results-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.help-item-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-md);
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.help-item-header {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family-title);
  font-weight: 700;
  font-size: 1.15rem;
  background-color: var(--color-bg-light);
}

.help-item-header:hover {
  background-color: var(--color-bg-alt);
}

.help-item-arrow {
  color: var(--color-text-muted);
  transition: transform var(--transition-normal);
}

.help-item-card.expanded .help-item-arrow {
  transform: rotate(180deg);
}

.help-item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
}

.help-item-card.expanded .help-item-content {
  grid-template-rows: 1fr;
}

.help-item-inner {
  overflow: hidden;
  padding: 0 24px 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.help-empty-state {
  text-align: center;
  padding: 60px 0;
  color: var(--color-text-muted);
}

.help-empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.help-empty-state h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.help-empty-state.hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   15. SECCIÓN 8: SISTEMA DE SALDO
   -------------------------------------------------------------------------- */
.wallet-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.wallet-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.wallet-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 4px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: var(--color-border-light);
}

.wallet-timeline-step {
  position: relative;
}

.wallet-step-dot {
  position: absolute;
  top: 6px;
  left: -27px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-brand-green);
}

.wallet-timeline-step h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.wallet-timeline-step p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.wallet-details-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stripe-trust-box {
  background-color: var(--color-bg-alt);
}

.stripe-badge-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.stripe-badge-header svg {
  color: #635BFF; /* Stripe indigo */
}

.stripe-trust-box p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.recharge-preview-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.recharge-preview-card .subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.tier-btn {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 12px 6px;
  font-family: var(--font-family-title);
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

.tier-btn:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-text-muted);
}

.tier-btn.active {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
}

.recharge-estimate-box {
  background-color: var(--color-brand-green-glow);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   16. SECCIÓN 9: ALTA DE CLIENTE (ONBOARDING WIZARD)
   -------------------------------------------------------------------------- */
.onboarding-wizard-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.onboarding-progress-bar-container {
  margin-bottom: 40px;
}

.progress-bar-steps-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

#onboarding-step-label-name {
  color: var(--color-text-dark);
  font-weight: 700;
}

.progress-bar-track {
  height: 6px;
  background-color: var(--color-bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--color-brand-green-hover);
  width: 14.28%;
  border-radius: 3px;
  transition: width var(--transition-normal);
}

/* Steps Switcher */
.onboarding-step {
  display: none;
}

.onboarding-step.active {
  display: block;
}

.onboarding-step h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.days-checkboxes {
  display: flex;
  gap: 10px;
}

.day-check {
  flex-grow: 1;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.day-check input {
  accent-color: var(--color-brand-green-hover);
}

/* Validations and Errors */
.error-msg {
  display: none;
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 4px;
}

.form-group.has-error input, .form-group.has-error select {
  border-color: var(--color-error);
  background-color: var(--color-error-bg);
}

.form-group.has-error .error-msg {
  display: block;
}

/* Onboarding Navigation buttons footer */
.onboarding-navigation-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
}

.onboarding-navigation-buttons .btn-secondary.hidden {
  display: none;
}

/* Stripe elements simulator specific inputs styling */
.stripe-element-container {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  margin-bottom: 12px;
}

.stripe-element-container label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 8px;
}

/* Stripe inner iframe mock input styles */
.stripe-card-mock-input {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.stripe-card-icon {
  width: 32px;
  height: 20px;
  background-color: var(--color-bg-alt);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-light);
}

.stripe-inputs-row {
  display: flex;
  flex-grow: 1;
  gap: 10px;
}

.stripe-inputs-row input {
  border: none !important;
  background-color: transparent !important;
  padding: 0 !important;
  font-size: 0.95rem;
}

.stripe-input-card-number { width: 60%; }
.stripe-input-expiry { width: 22%; text-align: center; }
.stripe-input-cvc { width: 18%; text-align: center; }

.stripe-error-message {
  font-size: 0.8rem;
  color: var(--color-error);
  margin-top: 8px;
  min-height: 18px;
}

.stripe-info-lock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.stripe-info-lock svg {
  color: #64748B;
}

/* Terms step scroll box */
.terms-preview-box {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  height: 150px;
  overflow-y: auto;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.terms-preview-box h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.terms-preview-box p {
  margin-bottom: 10px;
}

/* Onboarding Step 7: Completed Welcome screen styling */
.success-header-wrapper {
  text-align: center;
  margin-bottom: 32px;
}

.success-circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-brand-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-header-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.success-header-wrapper p {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.welcome-downloads-section {
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
  margin-bottom: 32px;
}

.welcome-downloads-section h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.downloads-buttons-flex {
  display: flex;
  gap: 16px;
}

.app-store-btn {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.app-store-btn:hover {
  background-color: #1a2638;
}

.welcome-actions-section {
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
}

.welcome-actions-section h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.welcome-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.action-card-btn {
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.action-card-btn:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-text-muted);
}

.action-card-btn span {
  font-weight: 600;
  font-size: 0.95rem;
}

.action-card-btn svg {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   17. GLOBAL FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-dim);
  padding: 40px 8%;
  font-size: 0.85rem;
  border-top: 1px solid var(--color-border-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

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

/* --------------------------------------------------------------------------
   18. ANIMACIONES Y EFECTOS EN CSS
   -------------------------------------------------------------------------- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Spinner Loader */
.stripe-spinner {
  border: 2.5px solid rgba(0,0,0,0.1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-left-color: var(--color-brand-green-hover);
  animation: spin 1s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE MEDIA QUERIES (PERFECT FOR MOBILE)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  :root {
    --sidebar-width: 216px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-services-grid {
    grid-template-columns: 1fr;
  }

  .decision-service-card {
    min-height: auto;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .app-simulation-layout {
    grid-template-columns: 1fr;
  }
  
  .app-screen-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .app-tab-btn {
    flex-shrink: 0;
    padding: 10px 16px;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }

  .puntual-rate-grid,
  .rates-overview-grid,
  .rate-secondary-grid,
  .partner-conditions-list,
  .boxes-guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rate-decision-layout {
    grid-template-columns: 1fr;
  }
  
  .wallet-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  /* Break the Desktop grid and enable Mobile Layout */
  #app-layout {
    grid-template-columns: 1fr;
    padding-top: var(--mobile-header-height);
  }
  
  /* Mobile Header */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--mobile-header-height);
    background: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-dark);
    padding: 0 20px;
    z-index: 1100;
    color: var(--color-text-light);
  }
  
  .header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  
  .header-brand .brand-icon {
    color: var(--color-brand-green);
  }
  
  .header-brand .brand-name {
    font-family: var(--font-family-title);
    font-weight: 800;
    font-size: 1.3rem;
  }
  
  #btn-mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
  }
  
  .menu-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 1px;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
  }
  
  /* Active Mobile Menu button states */
  #btn-mobile-menu[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  #btn-mobile-menu[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
  }
  
  #btn-mobile-menu[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Transform lateral menu to full-screen overlay menu */
  .sidebar-nav {
    transform: translateY(-100%);
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-right: none;
    border-bottom: 1px solid var(--color-border-dark);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-normal);
    position: fixed;
    top: var(--mobile-header-height);
    overflow-y: auto;
  }
  
  .sidebar-nav.active {
    transform: translateY(0);
  }
  
  .sidebar-brand {
    display: none; /* Already in mobile header */
  }
  
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 950;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
  }
  
  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  
  .main-content {
    margin-left: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }
  
  .content-section {
    padding: 60px 24px;
    min-height: auto;
    width: 100%;
    max-width: 100vw;
  }
  
  /* Welcome Gate Screen Mobile adjustment */
  .gate-options {
    grid-template-columns: 1fr;
  }
  
  .gate-title {
    font-size: 2.2rem;
  }
  
  /* Hero section */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-glass-card {
    padding: 20px;
  }
  
  .graphic-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .graphic-divider {
    width: 80%;
    height: 1px;
  }
  
  /* Services & comparisons */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-container {
    display: none; /* Hide wide table on mobile for space */
  }
  
  /* Rates layout */
  .rates-layout {
    grid-template-columns: 1fr;
  }
  
  /* Steps Flow */
  .steps-flow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .flow-step-card::after {
    content: '↓';
    top: auto;
    bottom: -25px;
    right: 50%;
    transform: translateX(50%);
  }
  
  /* Onboarding wizard */
  .onboarding-wizard-card {
    padding: 24px;
  }
  
  .form-group-flex {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .welcome-actions-grid {
    grid-template-columns: 1fr;
  }
  
  .downloads-buttons-flex {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ==========================================================================
   WIZARD AND GUIDED ONBOARDING STYLES (PREMIUM EDITION)
   ========================================================================== */

/* Spacing and Scale Upgrades */
.content-section {
  padding: 120px 8% 80px 8%;
}

.content-section > * {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  max-width: 850px;
  margin-bottom: 72px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #03003E;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

#bienvenida {
  padding-top: 28px;
  padding-left: 5%;
  padding-right: 5%;
}

/* Premium Sticky Progress Bar Card */
.sticky-progress-bar-card {
  position: sticky;
  top: 16px;
  z-index: 850;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 16px 24px;
  margin: 12px auto 22px auto;
  max-width: 1100px;
  width: calc(100% - 48px);
  box-shadow: 0 10px 30px -10px rgba(3, 0, 62, 0.05), 0 1px 3px rgba(3, 0, 62, 0.02);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .sticky-progress-bar-card {
    top: 76px; /* Under mobile header */
    padding: 12px 16px;
    margin: 10px auto 24px auto;
    width: calc(100% - 24px);
  }
}

.progress-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-bar-step-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-step-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #03003E;
  letter-spacing: -0.2px;
}

.progress-dot-divider {
  color: #cbd5e1;
  font-size: 0.8rem;
}

.progress-time-text {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.progress-percent-badge {
  font-size: 0.8rem;
  font-weight: 800;
  color: #78D61A;
  background: rgba(120, 214, 26, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(120, 214, 26, 0.15);
  letter-spacing: -0.2px;
}

.progress-bar-line {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #03003E, #78D61A);
  border-radius: 3px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Cards Upgrade */
.card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px -10px rgba(3, 0, 62, 0.03), 0 1px 3px rgba(3, 0, 62, 0.01);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  /* Interactive hover disabled for static cards */
}

/* Premium Buttons Upgrade */
.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: #78D61A;
  color: #02002A;
  box-shadow: 0 6px 20px rgba(120, 214, 26, 0.25);
  border: none;
}

.btn-primary:hover {
  background-color: #89e428;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(120, 214, 26, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #03003E;
  border: 1.5px solid rgba(3, 0, 62, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(3, 0, 62, 0.02);
  border-color: rgba(3, 0, 62, 0.3);
  transform: translateY(-2px);
}

/* Wizard Navigation buttons */
.wizard-navigation-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Welcome Wizard Card */
.welcome-wizard-card {
  max-width: 760px;
  margin: 40px auto;
  padding: 60px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(3, 0, 62, 0.05), 0 1px 3px rgba(3, 0, 62, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.welcome-wizard-logo {
  display: block;
  margin-bottom: 32px;
}

/* Logo real en la bienvenida: se muestra en horizontal con fondo natural */
.welcome-logo-img {
  height: 72px;
  width: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.welcome-wizard-title {
  font-size: clamp(4rem, 5vw, 5.2rem);
  font-weight: 800;
  color: #03003E;
  letter-spacing: -2px;
  line-height: 0.98;
  margin-bottom: 24px;
}

.welcome-wizard-intro {
  font-size: 1.45rem;
  color: #03003E;
  font-weight: 600;
  line-height: 1.48;
  margin-bottom: 24px;
  opacity: 0.82;
  max-width: 720px;
}

.welcome-wizard-body {
  font-size: 1.16rem;
  color: #475569;
  line-height: 1.72;
  margin-bottom: 34px;
  max-width: 650px;
}

.welcome-wizard-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #475569;
  background: rgba(120, 214, 26, 0.08);
  padding: 12px 20px;
  border-radius: 30px;
  width: fit-content;
  font-weight: 700;
}

.welcome-wizard-meta svg {
  color: #78D61A;
}

/* Why Encobox grid */
.why-encobox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.why-card {
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px -10px rgba(3, 0, 62, 0.03);
}

.why-icon {
  background: rgba(120, 214, 26, 0.08);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #03003E;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

/* Metrics Cards Grid */
.metrics-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: transparent;
  padding: 0;
  margin-top: 48px;
  box-shadow: none;
  border: none;
}

.metric-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(3, 0, 62, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(3, 0, 62, 0.06);
}

.metric-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #03003E;
  letter-spacing: -1px;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
}

.highlight-metric {
  background: linear-gradient(135deg, #03003E, #02002A);
  border-color: transparent;
}

.highlight-metric .metric-num {
  color: #78D61A;
}

.highlight-metric .metric-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Sidebar support details */
.sidebar-support-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  border-radius: 10px;
  margin-top: 14px;
}

.sidebar-support-box .support-title {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.sidebar-support-box .support-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  margin: 0;
  line-height: 1.4;
}

/* Sidebar Links Spacing & Colors */
.sidebar-nav .nav-list li {
  margin-bottom: 4px;
}

.nav-link {
  font-size: 0.9rem;
  padding: 9px 12px;
  border-radius: 8px;
  position: relative;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-link.active {
  color: #78D61A !important;
  background: rgba(120, 214, 26, 0.08) !important;
  font-weight: 700;
  border-left: 3px solid #78D61A;
  padding-left: 9px; /* Offset border width */
}

.nav-link.completed {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Floating WhatsApp Support Bubble */
.whatsapp-support-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  pointer-events: none;
}

.whatsapp-support-widget * {
  pointer-events: auto;
}

.support-tooltip {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 240px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
  transform: scale(0.9) translateX(10px);
  opacity: 0;
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-support-widget:hover .support-tooltip {
  transform: scale(1) translateX(0);
  opacity: 1;
}

.support-title {
  font-weight: 700;
  color: #03003E;
  display: block;
  margin-bottom: 2px;
}

.support-text {
  margin: 0;
  font-size: 0.8rem;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

@media (max-width: 768px) {
  .welcome-wizard-card {
    padding: 32px 24px;
    margin: 20px auto;
  }
  
  .welcome-wizard-title {
    font-size: 1.8rem;
  }
  
  .why-encobox-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .metrics-banner {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 16px;
  }

  .puntual-rate-grid,
  .rates-overview-grid,
  .rate-secondary-grid,
  .partner-conditions-list,
  .boxes-guide-list {
    grid-template-columns: 1fr;
  }

  .rate-model-card {
    padding: 24px;
  }

  .rate-metric-row {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .rate-metric-divider {
    display: none;
  }

  .rate-metric-row .rate-metric:last-child {
    grid-column: 2;
    padding-top: 12px;
    border-top: 1px solid var(--color-border-light);
  }

  .rate-metric-icon {
    width: 52px;
    height: 52px;
  }
}


/* ==========================================================================
   PHOTO INTEGRATION STYLES
   ========================================================================== */

/* --- BIENVENIDA: Hero split layout --- */
.welcome-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 56px;
  min-height: calc(100vh - 140px);
}

.welcome-hero-content {
  display: flex;
  flex-direction: column;
}

.welcome-hero-photo {
  position: relative;
  max-width: 430px;
  margin-left: auto;
}

.welcome-hero-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(3, 0, 62, 0.18), 0 0 0 1px rgba(0,0,0,0.04);
  aspect-ratio: 3 / 4;
}

.welcome-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.welcome-hero-photo-frame:hover .welcome-hero-img {
  transform: scale(1.02);
}

/* Gradient overlay at the bottom of hero photo */
.welcome-hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 0, 62, 0.55) 0%, transparent 50%);
  pointer-events: none;
}

/* Live status badge */
.welcome-hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #03003E;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #78D61A;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(120, 214, 26, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(120, 214, 26, 0); }
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .welcome-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
    min-height: auto;
  }
  .welcome-hero-photo-frame {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
}

/* --- ¿POR QUÉ ENCOBOX?: Split 2-column layout --- */
/* ¿Por qué Encobox? — Problem-first redesign */

.why-problem-header {
  max-width: 820px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.why-headline {
  font-size: 2.8rem;
  font-weight: 800;
  color: #03003E;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin: 16px 0 28px;
}

.why-lead {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* 2-column split: benefits left, photo right */
.why-split-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 64px auto;
}

/* Benefit blocks */
.why-benefit-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
}

.why-benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(120, 214, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-benefit-body {
  flex: 1;
}

.why-benefit-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #03003E;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.why-benefit-body p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 12px;
}

.why-benefit-punch {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #03003E;
  background: rgba(120, 214, 26, 0.08);
  border-left: 3px solid #78D61A;
  padding: 6px 14px;
  border-radius: 0 8px 8px 0;
  line-height: 1.4;
}

.why-benefit-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 0;
}

/* Photo column — reduced */
.why-split-photo {
  /* intentionally narrower via grid column width */
}

.why-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -16px rgba(3, 0, 62, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
  aspect-ratio: 2 / 3;
  position: sticky;
  top: 100px;
}

.why-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 0, 62, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

.why-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.why-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #03003E;
}

/* Trust indicators — large numbers as confidence signals */
.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(3, 0, 62, 0.06);
}

.trust-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  gap: 8px;
}

.trust-stat--highlight {
  background: linear-gradient(135deg, #03003E 0%, #0a0060 100%);
}

.trust-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #03003E;
  letter-spacing: -2px;
  line-height: 1;
}

.trust-num small {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.trust-stat--highlight .trust-num {
  color: #78D61A;
}

.trust-desc {
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-stat--highlight .trust-desc {
  color: rgba(255,255,255,0.55);
}

.trust-divider {
  width: 1px;
  height: 72px;
  background: rgba(0,0,0,0.06);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-photo-frame {
    aspect-ratio: 16 / 7;
    position: relative;
    top: 0;
  }
  .why-headline {
    font-size: 2.2rem;
  }
}

@media (max-width: 720px) {
  .why-problem-header {
    text-align: left;
  }
  .trust-indicators {
    flex-wrap: wrap;
    border-radius: 16px;
  }
  .trust-stat {
    flex: 1 1 calc(50% - 1px);
    padding: 24px 16px;
  }
  .trust-divider {
    display: none;
  }
  .why-headline {
    font-size: 1.9rem;
  }
}


/* --- CÓMO TRABAJAMOS: 4-step photo grid --- */
.process-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px auto;
}

.process-step-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(3, 0, 62, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(3, 0, 62, 0.08);
}

.process-step-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.process-step-visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(120, 214, 26, 0.22), transparent 34%),
    linear-gradient(145deg, var(--color-bg-dark), #0A074E);
}

.process-assignment-visual {
  width: 100%;
  max-width: 245px;
  border-radius: 18px;
  padding: 18px;
  background-color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.assignment-visual-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-bg-dark);
  font-size: 0.82rem;
  font-weight: 850;
  margin-bottom: 16px;
}

.assignment-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-brand-green);
  box-shadow: 0 0 0 5px rgba(120, 214, 26, 0.16);
}

.assignment-route-card {
  border-radius: 14px;
  padding: 14px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  margin-bottom: 12px;
}

.assignment-label {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.assignment-route-card strong,
.assignment-status-row strong {
  color: var(--color-bg-dark);
  font-size: 0.9rem;
}

.assignment-route-line {
  width: 2px;
  height: 24px;
  margin: 8px 0 8px 7px;
  background: linear-gradient(var(--color-brand-green), rgba(120, 214, 26, 0.16));
}

.assignment-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.assignment-status-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.assignment-status-row--active strong {
  color: var(--color-brand-green-hover);
}

.process-step-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.process-step-card:hover .process-step-photo {
  transform: scale(1.04);
}

/* Step number badge */
.process-step-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: rgba(3, 0, 62, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 4px 10px;
  z-index: 2;
}

/* Bottom gradient on process photos */
.process-step-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(3, 0, 62, 0.35), transparent);
  pointer-events: none;
}

.process-step-body {
  padding: 24px;
  flex: 1;
}

.process-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #03003E;
  margin-bottom: 8px;
}

.process-step-body p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .process-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .process-photo-grid {
    grid-template-columns: 1fr;
  }
  .process-step-photo-wrap {
    aspect-ratio: 16 / 9;
  }
}

/* --- CUENTA CREADA: success layout with closing photo --- */
.success-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.success-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(3, 0, 62, 0.15), 0 0 0 1px rgba(0,0,0,0.04);
  aspect-ratio: 2 / 3;
}

.success-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.success-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 0, 62, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.success-photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

@media (max-width: 900px) {
  .success-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .success-photo-frame {
    aspect-ratio: 16 / 8;
    max-height: 280px;
  }
}

/* ---- Interactive Rates Layout ---- */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.unified-interactive-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.unified-tabs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unified-tab {
  padding: 16px;
  border-radius: var(--radius-lg);
  background-color: #ffffff;
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.unified-tab:hover {
  border-color: var(--color-brand-green-hover);
  box-shadow: 0 4px 12px rgba(13, 203, 153, 0.08);
  transform: translateX(4px);
}

.unified-tab.active {
  background-color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(3, 0, 62, 0.25);
  transform: translateX(6px);
}

.unified-tab-badge {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-green);
  margin-bottom: 8px;
}

.unified-tab.active .unified-tab-badge {
  color: var(--color-brand-green-hover);
}

.unified-tab-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.unified-tab.active .unified-tab-title {
  color: #ffffff;
}

.unified-tab-desc {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.unified-tab.active .unified-tab-desc {
  color: rgba(255, 255, 255, 0.8);
}

.unified-panel-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ---- Modular Interactive Rates Layout ---- */
#rates-dynamic-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rate-top-block {
  position: relative;
  padding: 40px;
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.rate-badge-overlay {
  position: absolute;
  top: -14px;
  left: 40px;
  background-color: #ecfccb; /* very light green */
  color: var(--color-brand-green-hover);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(120,214,26,0.1);
}

.rate-top-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.rate-top-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-green);
  flex-shrink: 0;
}

.rate-top-icon svg {
  width: 32px;
  height: 32px;
}

.rate-top-titles h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: var(--color-bg-dark);
}

.rate-top-titles p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin: 0;
}

.rate-top-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: 24px;
}

.rate-meta-item {
  padding: 0 24px;
  border-right: 1px solid var(--color-border-light);
}

.rate-meta-item:first-child {
  padding-left: 0;
}

.rate-meta-item:last-child {
  padding-right: 0;
  border-right: none;
}

.rate-meta-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.rate-meta-head svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand-green);
}

.rate-meta-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Middle Block */
.rate-middle-block {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.rate-pricing-card {
  padding: 32px;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.rate-info-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid #dcfce7;
  background-color: #f0fdf4;
}

.rate-pricing-header {
  margin-bottom: 24px;
}

.rate-pricing-header h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--color-bg-dark);
}

.rate-pricing-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.rate-pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.rate-pricing-row {
  display: grid;
  grid-template-columns: 48px 1.5fr auto 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--color-border-light);
}

.rate-pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rate-pricing-icon {
  width: 48px;
  height: 48px;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rate-pricing-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-bg-dark);
}

.rate-pricing-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rate-pricing-col span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.rate-pricing-col strong {
  font-size: 1.1rem;
  color: var(--color-bg-dark);
}

.rate-pricing-col small {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.rate-pricing-col small.text-green {
  color: var(--color-brand-green-hover);
  font-weight: 600;
}

.rate-pricing-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border-light);
}

.rate-pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background-color: #f7fee7; /* very light green */
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.rate-pricing-note .note-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-brand-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.rate-pricing-note p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-main);
  line-height: 1.4;
}

/* Rate Info Card */
.rate-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-bg-dark);
}

.rate-info-card p {
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 24px;
}

.rate-box-extras {
  border-top: 1px solid rgba(120,214,26,0.2);
  padding-top: 24px;
}

.rate-box-extras strong {
  display: block;
  margin-bottom: 16px;
  color: var(--color-bg-dark);
}

.rate-box-extras ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.rate-box-extras li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.rate-box-extras li span:last-child {
  color: var(--color-brand-green-hover);
  font-weight: 800;
}

/* Bottom Block */
.rate-bottom-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  padding: 32px;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.rate-how-it-works {
  padding-right: 32px;
  border-right: 1px solid var(--color-border-light);
}

.rate-how-it-works h4, .rate-advantages h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--color-bg-dark);
}

.how-it-works-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.how-it-works-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  flex: 1;
}

.how-it-works-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f8fafc;
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-dark);
}

.how-it-works-step p {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--color-text-muted);
  margin: 0;
}

.how-it-works-arrow {
  color: var(--color-text-muted);
}

.rate-advantages {
  padding-left: 32px;
}

.rate-advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rate-advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.rate-advantages-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-brand-green);
  flex-shrink: 0;
}

/* Footer Block */
.rate-footer-block {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background-color: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  color: #fff;
}

.rate-footer-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-green);
  flex-shrink: 0;
}

.rate-footer-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.rate-footer-left h4 {
  color: var(--color-brand-green);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.rate-footer-left p {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
}

.rate-footer-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255,255,255,0.2);
}

.rate-footer-right p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin: 0;
}

/* Mobile responsive for Interactive Rates Layout */
@media (max-width: 900px) {
  .unified-interactive-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .unified-selectors-wrapper {
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  
  .unified-selectors-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .unified-tabs {
    flex-direction: row;
    width: max-content;
  }
  
  .unified-tab {
    width: 260px;
    white-space: normal;
  }

  .rate-top-meta-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rate-meta-item {
    padding: 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 16px !important;
  }
  .rate-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }
  .rate-middle-block {
    grid-template-columns: 1fr;
  }
  .rate-pricing-row {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .rate-pricing-divider {
    display: none;
  }
  .rate-bottom-block {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 32px;
  }
  .rate-how-it-works {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 32px;
  }
  .how-it-works-steps {
    flex-wrap: wrap;
  }
  .how-it-works-arrow {
    display: none;
  }
  .rate-advantages {
    padding-left: 0;
  }
  .rate-footer-block {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .rate-footer-content {
    flex-direction: column;
    gap: 16px;
  }
  .rate-footer-divider {
    width: 100%;
    height: 1px;
  }
}

/* ==========================================================================
   VISUAL COHERENCE PASS: SHARED COMMERCIAL PLATFORM SYSTEM
   Reference: Servicios y tarifas interactive layout.
   ========================================================================== */

.app-simulation-layout,
.wallet-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.app-screen-selector-wrapper,
.wallet-flow-card {
  min-width: 0;
}

.app-screen-tabs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-tab-btn {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), background-color var(--transition-fast);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.app-tab-btn:hover {
  border-color: var(--color-brand-green-hover);
  box-shadow: 0 4px 12px rgba(120, 214, 26, 0.1);
  transform: translateX(4px);
}

.app-tab-btn.active {
  background-color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: var(--color-text-light);
  box-shadow: 0 8px 24px rgba(3, 0, 62, 0.22);
  transform: translateX(6px);
}

.tab-btn-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: inherit;
}

.tab-btn-desc {
  color: var(--color-text-muted);
  line-height: 1.4;
}

.app-tab-btn.active .tab-btn-desc {
  color: rgba(255, 255, 255, 0.78);
}

.app-screen-display-card,
.calc-form-card,
.calc-result-card,
.help-search-box,
.help-item-card,
.wallet-flow-card,
.stripe-trust-box,
.recharge-preview-card,
.process-step-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  background-color: var(--color-bg-light);
  box-shadow: 0 8px 28px rgba(3, 0, 62, 0.055);
}

.app-screen-display-card {
  height: auto;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}

.mock-device-bar {
  background-color: var(--color-bg-dark);
  border-bottom: 0;
}

.mock-address-bar {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.mock-app-body {
  background:
    radial-gradient(circle at top right, rgba(120, 214, 26, 0.08), transparent 34%),
    var(--color-bg-light);
  padding: 28px;
}

.mock-stat-box,
.mock-map-graphic {
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-alt);
}

.badge-status.active,
.sim-pill,
.cat-btn.active {
  background-color: var(--color-panel-pale-green);
  color: var(--color-brand-green-hover);
  border-color: var(--color-border-green-soft);
}

/* Calculator as selector + dynamic panel */
#calculadora {
  display: grid;
  grid-template-columns: 280px minmax(0, 788px);
  gap: 32px;
  align-items: start;
  justify-content: center;
}

#calculadora .section-header {
  grid-column: 1 / -1;
  margin-left: 0;
  margin-right: auto;
}

.calculator-tabs-header {
  grid-column: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  margin: 32px 0 0;
  max-width: none;
}

.calc-tab-btn {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-lg);
  padding: 16px;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  box-shadow: 0 4px 12px rgba(3, 0, 62, 0.04);
}

.calc-tab-btn.active {
  background-color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: var(--color-text-light);
  box-shadow: 0 8px 24px rgba(3, 0, 62, 0.22);
}

.calculators-container {
  grid-column: 2;
  min-width: 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0.92));
  box-shadow: 0 14px 40px rgba(3, 0, 62, 0.06);
  padding: 28px;
}

.calc-grid {
  gap: 24px;
}

.calc-form-card,
.calc-result-card {
  padding: 32px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: var(--radius-md);
}

.result-price {
  color: var(--color-bg-dark);
}

.highlight-gradient {
  background:
    radial-gradient(circle at top right, rgba(120, 214, 26, 0.18), transparent 36%),
    linear-gradient(135deg, var(--color-bg-dark), #0A074E);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Help center as control rail + answer panel */
.help-center-wrapper {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.help-search-box,
.help-categories {
  grid-column: 1;
}

.help-search-box {
  margin-bottom: 16px;
  padding: 18px;
}

.help-search-box input {
  font-size: 0.98rem;
}

.help-categories {
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 0;
}

.cat-btn {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-lg);
  padding: 13px 16px;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-weight: 700;
}

.cat-btn.active {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
  box-shadow: 0 8px 24px rgba(3, 0, 62, 0.18);
}

.help-results-grid,
.help-empty-state {
  grid-column: 2;
}

.help-results-grid {
  gap: 14px;
}

.help-item-card {
  overflow: hidden;
}

.help-item-header {
  padding: 20px 22px;
  color: var(--color-bg-dark);
}

.help-item-card.expanded {
  border-color: var(--color-border-green-soft);
  box-shadow: 0 14px 36px rgba(3, 0, 62, 0.07);
}

.help-item-card.expanded .help-item-header {
  background-color: var(--color-panel-pale-green);
}

/* Wallet as operational selector + commercial panel */
.wallet-flow-card {
  padding: 24px;
}

.wallet-flow-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: var(--color-bg-dark);
}

.wallet-timeline {
  gap: 32px;
  padding-left: 0;
  position: relative;
}

.wallet-timeline::before {
  display: block;
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  width: 2px;
  height: calc(100% - 28px);
  background-color: var(--color-border-light);
  z-index: 1;
}

.wallet-timeline-step {
  padding: 0;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.wallet-step-dot {
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-color: #F0FDF4; /* Fondo verde muy suave */
  color: var(--color-brand-green);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.wallet-step-content {
  margin-left: 20px;
  padding-top: 4px;
}

.wallet-step-content h4 {
  color: var(--color-bg-dark);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.wallet-step-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stripe-trust-box {
  background:
    radial-gradient(circle at top right, rgba(120, 214, 26, 0.16), transparent 38%),
    var(--color-bg-dark);
  color: var(--color-text-light);
  border-color: var(--color-bg-dark);
}

.stripe-badge-header,
.stripe-trust-box p {
  color: var(--color-text-light);
}

.stripe-badge-header svg {
  color: var(--color-brand-green);
}

.tiers-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tier-btn {
  border-radius: var(--radius-md);
}

.tier-btn.active {
  background-color: var(--color-bg-dark);
  border-color: var(--color-bg-dark);
  color: var(--color-text-light);
  box-shadow: 0 8px 20px rgba(3, 0, 62, 0.18);
}

.recharge-estimate-box {
  background-color: var(--color-panel-pale-green);
  border-color: var(--color-border-green-soft);
  border-radius: var(--radius-lg);
}

/* Como trabajamos: modular cards aligned with the approved system */
.process-photo-grid {
  max-width: 1100px;
  gap: 18px;
  margin-top: 32px;
}

.process-step-card {
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 28px rgba(3, 0, 62, 0.055);
}

.process-step-card:hover {
  box-shadow: 0 16px 34px rgba(3, 0, 62, 0.09);
}

.process-step-num {
  color: var(--color-bg-dark);
  background-color: var(--color-panel-pale-green);
  border: 1px solid var(--color-border-green-soft);
  border-radius: var(--radius-md);
}

.process-step-body h3 {
  color: var(--color-bg-dark);
}

@media (max-width: 1024px) {
  #calculadora {
    display: flex;
  }

  .app-simulation-layout,
  .wallet-layout,
  .help-center-wrapper {
    grid-template-columns: 1fr;
  }

  .app-screen-selector-wrapper,
  .unified-selectors-wrapper,
  .help-categories {
    margin: 0 -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .app-screen-selector-wrapper::-webkit-scrollbar,
  .unified-selectors-wrapper::-webkit-scrollbar,
  .help-categories::-webkit-scrollbar {
    display: none;
  }

  .app-screen-tabs,
  .help-categories {
    flex-direction: row;
  }

  .app-screen-tabs {
    width: max-content;
  }

  .help-categories {
    width: 100%;
    max-width: 100%;
  }

  .app-tab-btn,
  .cat-btn {
    width: 260px;
    flex-shrink: 0;
    white-space: normal;
  }

  .help-search-box,
  .help-categories,
  .help-results-grid,
  .help-empty-state {
    grid-column: 1;
  }

  .calculators-container {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .app-screen-display-card {
    min-height: 460px;
  }

  .calc-route-panel {
    grid-template-columns: 1fr;
  }

  .calc-map-preview {
    min-height: 190px;
  }

  .mock-app-body,
  .calc-form-card,
  .calc-result-card {
    padding: 22px;
  }

  .calculator-tabs-header {
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .calc-tab-btn {
    flex-shrink: 0;
  }

  .tiers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---- Refinement: Servicios adicionales + Guia de cajas ---- */
.other-vehicles-section,
.box-guide-section {
  margin-top: 36px;
  padding-top: 48px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.other-vehicles-header,
.box-guide-header {
  max-width: 780px;
  margin-bottom: 26px;
}

.other-vehicles-header h3,
.box-guide-header h3 {
  color: var(--color-bg-dark);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: 0;
  line-height: 1.18;
}

.other-vehicles-header p,
.box-guide-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.other-vehicles-grid,
.boxes-guide-list {
  gap: 18px;
}

.other-vehicle-card,
.box-guide-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.72));
  box-shadow: 0 10px 30px rgba(3, 0, 62, 0.055);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.other-vehicle-card::before,
.box-guide-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand-green), rgba(120, 214, 26, 0));
}

.other-vehicle-card:hover,
.box-guide-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-green-soft);
  box-shadow: 0 16px 38px rgba(3, 0, 62, 0.085);
}

.other-vehicle-card {
  padding: 26px 24px 22px;
  gap: 18px;
}

.other-vehicle-card-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 94px;
}

.other-vehicle-card-head h4 {
  color: var(--color-bg-dark);
  font-size: 1.18rem;
  line-height: 1.18;
  margin: 0;
}

.other-vehicle-summary {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 6px 10px;
  background-color: var(--color-panel-pale-green);
  border: 1px solid var(--color-border-green-soft);
  color: var(--color-brand-green-hover);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
}

.other-vehicle-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.other-vehicle-items {
  gap: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: 0;
}

.other-vehicle-items li {
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.other-vehicle-items li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.other-vehicle-items li span:last-child {
  color: var(--color-bg-dark);
  font-family: var(--font-family-title);
  font-size: 1rem;
  font-weight: 850;
}

.other-vehicles-note {
  margin-top: 18px;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  border-color: var(--color-border-green-soft);
  background-color: var(--color-panel-pale-green);
  color: var(--color-text-dark);
  line-height: 1.5;
}

.other-vehicles-note svg {
  color: var(--color-brand-green-hover);
  opacity: 1;
  margin-top: 2px;
}

.box-guide-section {
  margin-top: 48px;
}

.box-guide-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.box-guide-card {
  padding: 26px 24px;
}

.box-guide-card h4 {
  color: var(--color-bg-dark);
  font-size: 1.18rem;
  margin-bottom: 18px;
  padding-right: 54px;
}

.box-guide-card::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--color-bg-dark);
  color: var(--color-brand-green);
  font-family: var(--font-family-title);
  font-size: 0.78rem;
  font-weight: 900;
}

.box-guide-card:nth-child(1)::after {
  content: 'S';
}

.box-guide-card:nth-child(2)::after {
  content: 'M';
}

.box-guide-card:nth-child(3)::after {
  content: 'L';
}

.box-guide-card dl {
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-light);
  overflow: hidden;
}

.box-guide-card dl div {
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  padding: 11px 14px;
}

.box-guide-card dl div:last-child {
  border-bottom: 0;
}

.box-guide-card dt {
  color: var(--color-text-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.box-guide-card dd {
  color: var(--color-bg-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.box-guide-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.58;
  margin: 0;
}

@media (max-width: 1024px) {
  .other-vehicles-grid,
  .boxes-guide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .other-vehicles-section,
  .box-guide-section {
    margin-top: 32px;
    padding-top: 36px;
  }

  .other-vehicles-grid,
  .boxes-guide-list {
    grid-template-columns: 1fr;
  }

  .other-vehicle-card-head {
    min-height: auto;
  }
}


/* Added CTA class */
.cta-premium-card {
  background-color: var(--color-panel-pale-green);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.15);
}


/* Text hierarchy for secondary descriptions */
.why-benefit-body p, .process-step-body p, .why-lead, .section-header p {
  color: var(--color-text-muted);
}


/* Seccion Alta */
.alta-header { text-align: center; }
.alta-section-tag { margin: 0 auto 12px; display: inline-block; }

.antes-de-empezar-card {
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: left;
  background-color: var(--color-bg-alt);
  padding: 16px 20px;
  border-radius: var(--radius-md);
}
.antes-de-empezar-card h4 {
  margin-bottom: 8px;
  color: var(--color-text-dark);
  font-size: 1.1rem;
}
.antes-de-empezar-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* CTA Premium Card Internals */
.cta-premium-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.cta-premium-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-bg-dark);
  font-weight: 800;
}
.cta-premium-card .cta-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-premium-card .cta-features {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 500;
}
.cta-premium-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  text-decoration: none;
  margin-bottom: 24px;
  width: 100%;
  max-width: 320px;
}


/* ==========================================================================
   INFO CALLOUTS (Unified Disclaimers)
   ========================================================================== */
.info-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-panel-pale-green);
  border-radius: var(--radius-md);
  margin-top: 16px;
}

.info-callout--compact {
  padding: 16px 20px;
}

.info-callout-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-brand-green);
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  font-family: var(--font-family-title);
}

.info-callout-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}
