/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Paleta Corporativa */
    --primary-orange: #FF8C00; /* Acción, Botones, Logos */
    --primary-blue: #003399;   /* Confianza, Footer, Sección Pagos */
    --accent-light: #FFF5E6;   /* Fondos suaves */
    
    /* Textos */
    --text-dark: #2D3748;
    --text-light: #718096;
    --white: #ffffff;
    
    /* UI Elements */
    --border-radius: 16px;     /* Bordes redondeados estilo App */
    --font-main: 'Poppins', sans-serif;
    
    /* Sombras (Elevation) */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* Utilidades */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }

/* =========================================
   2. BOTONES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Botón Principal (Naranja) */
.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

/* Botón Blanco (Para fondos oscuros) */
.btn-white {
    background-color: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Botón Outline (Oscuro) */
.btn-outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-orange);
}
.logo .accent { color: var(--primary-blue); }

/* Menú Móvil */
.mobile-nav {
    position: fixed;
    top: 70px; /* Altura aprox del navbar */
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%); /* Oculto arriba */
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    z-index: 999;
    border-bottom: 1px solid #eee;
}

.mobile-nav.active { transform: translateY(0); }
.mobile-nav a { font-weight: 500; color: var(--text-dark); padding: 10px; font-size: 1.1rem; }
.mobile-btn-full { width: 100%; }

/* Icono Hamburguesa */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: var(--text-dark); margin: 5px 0; transition: 0.3s; }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--accent-light) 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

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

.badge-app {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight { color: var(--primary-blue); position: relative; }
/* Subrayado creativo */
.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 51, 153, 0.1);
    z-index: -1;
}

.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; max-width: 500px;}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-wrapper-hero img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg); /* Ligera rotación para dinamismo */
    transition: 0.5s;
}

.image-wrapper-hero img:hover { transform: rotate(0deg) scale(1.02); }

/* =========================================
   4.5 TRUST BAR
   ========================================= */
.trust-bar {
    background: linear-gradient(90deg, var(--primary-blue) 0%, #0047b3 100%);
    padding: 30px 0;
    color: var(--white);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.trust-item.active {
    opacity: 1;
    transform: translateY(0);
}

.trust-item i {
    font-size: 1.8rem;
    color: var(--primary-orange);
}

.trust-item:hover {
    transform: translateY(-5px);
}

/* =========================================
   4.6 COMPARATIVA SECTION
   ========================================= */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-card);
    position: relative;
    opacity: 0;
    transition: all 0.8s ease;
}

.comparison-card.slide-left {
    transform: translateX(-100px);
}

.comparison-card.slide-right {
    transform: translateX(100px);
}

.comparison-card.active {
    opacity: 1;
    transform: translateX(0);
}

.comparison-card.traditional {
    border: 2px solid #E2E8F0;
}

.comparison-card.mobile {
    border: 3px solid var(--primary-orange);
    transform: scale(1.05) translateX(100px);
}

.comparison-card.mobile.active {
    transform: scale(1.05) translateX(0);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.comparison-header i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.comparison-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.badge-premium {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: auto;
}

.comparison-list {
    list-style: none;
    margin: 25px 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F7FAFC;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-card.traditional .comparison-list i {
    color: #E53E3E;
    font-size: 1.1rem;
}

.comparison-card.mobile .comparison-list i {
    color: #38A169;
    font-size: 1.1rem;
}

.comparison-image {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   4.7 SERVICIOS DESTACADOS - CARDS
   ========================================= */
.service-includes {
    text-align: left;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #E2E8F0;
}

.service-includes li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.service-includes i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

/* =========================================
   4.8 VAN SECTION - UNIFICADA
   ========================================= */
.van-section {
    background: white;
}

.carousel-section {
    background: #F7FAFC;
}

/* Especificaciones técnicas */
.van-specs {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 3px solid #E2E8F0;
}

.specs-intro {
    text-align: center;
    margin-bottom: 50px;
}

.specs-intro h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.specs-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.specs-column {
    background: linear-gradient(135deg, #F7FAFC 0%, var(--accent-light) 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.specs-column h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-column i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 51, 153, 0.1);
    display: flex;
    flex-direction: column;
}

.specs-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.specs-list strong {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.specs-list span {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Beneficios clave */
.van-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0047b3 100%);
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    color: white;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.benefit-item h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* =========================================
   4.9 VAN SHOWCASE (DEPRECATED - mantener para compatibilidad)
   ========================================= */
.van-showcase {
    display: none;
}

/* =========================================
   4.9 TESTIMONIOS
   ========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-card > p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #E2E8F0;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* =========================================
   5.0 BIENESTAR ANIMAL
   ========================================= */
.wellness-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.wellness-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.wellness-text .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.freedom-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.freedom-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.freedom-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.freedom-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.freedom-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.wellness-image {
    position: relative;
}

.wellness-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.wellness-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wellness-badge i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.wellness-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.wellness-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.wellness-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   5.2 CAROUSEL SECTION
   ========================================= */
.carousel-section {
    background: #F7FAFC;
}

.carousel-wrapper {
    position: relative;
    margin-top: 50px;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: white;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
    z-index: 5;
}

.carousel-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.carousel-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

/* Info Grid debajo del carrusel */
.carousel-info {
    margin-top: 50px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-orange);
}

.info-card i {
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.info-card h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   5.3 SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

/* =========================================
   BADGE FLOTANTE CINCO LIBERTADES
   ========================================= */

.floating-badge {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    color: white;
    padding: 1.25rem 1rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.35);
    z-index: 999;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.floating-badge i {
    font-size: 1.75rem;
    animation: pawBounce 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.badge-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.2;
}

.floating-badge:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes pawBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Badge Flotante */
@media (max-width: 768px) {
    .floating-badge {
        right: 1rem;
        padding: 1rem 0.75rem;
        min-width: 80px;
        border-radius: 15px;
    }
    
    .floating-badge i {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .badge-subtext {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .floating-badge {
        right: 0.75rem;
        padding: 0.85rem 0.6rem;
        min-width: 70px;
        top: auto;
        bottom: 100px;
        transform: none;
    }
    
    .floating-badge:hover {
        transform: scale(1.05);
    }
}

/* =========================================
   CALCULADORA DE PRECIOS
   ========================================= */
.calculator-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.required {
    color: var(--primary-orange);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
}

.radio-content i {
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.radio-card input[type="radio"]:checked + .radio-content {
    border-color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.05);
}

.radio-card input[type="radio"]:checked + .radio-content i {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.checkbox-group {
    display: grid;
    gap: 0.75rem;
}

.checkbox-item {
    display: block;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked ~ .checkbox-content {
    border-color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.05);
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
}

.service-price {
    font-weight: 600;
    color: var(--primary-orange);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

/* Resultado de la calculadora */
.calculator-result {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.result-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 1.5rem;
}

.result-header h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.result-total {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-breakdown {
    margin-bottom: 1.5rem;
}

.result-breakdown h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.result-breakdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
}

.result-breakdown li:last-child {
    border-bottom: none;
}

.price-value {
    font-weight: 600;
    color: var(--primary-orange);
}

.result-info {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.result-info i {
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.result-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.btn-block {
    width: 100%;
}

/* =========================================
   5. SECCIÓN PROCESO (ZIG-ZAG)
   ========================================= */
.section { padding: 80px 0; }

.section-title { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.section-subtitle { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto 50px; }

.process-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; /* Separación entre pasos */
}

/* Invertir orden */
.process-row.reverse { flex-direction: row-reverse; }

.process-text { flex: 1; }
.process-img { flex: 1; display: flex; justify-content: center; }

.process-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 8px solid var(--white);
    transition: transform 0.3s ease;
}
.process-img img:hover { transform: scale(1.02); }

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 140, 0, 0.15); /* Naranja transparente de fondo */
    line-height: 1;
    margin-bottom: 15px;
}

.process-text h3 { font-size: 1.8rem; color: var(--primary-blue); margin-bottom: 15px; }
.process-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1.05rem; }

.check-list li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.check-list i { color: var(--primary-orange); margin-right: 12px; font-size: 1.1rem; }

.link-action {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================================
   6. SECCIÓN PAGOS (AZUL)
   ========================================= */
.section-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo opcional */
.section-blue::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative; z-index: 2;
}

.payment-info { flex: 1.2; }
.payment-visual { flex: 0.8; text-align: center; }
.payment-visual img { 
    max-width: 100%; 
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); 
}

.payment-info h2 { font-size: 2.5rem; margin-bottom: 15px; }
.payment-info .lead { font-size: 1.15rem; opacity: 0.9; margin-bottom: 40px; font-weight: 300; }

.p-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.p-item i {
    font-size: 1.4rem;
    color: var(--primary-orange);
    background: rgba(255,255,255,0.1);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.p-item h4 { margin-bottom: 5px; font-size: 1.1rem; font-weight: 600; }
.p-item p { opacity: 0.75; font-size: 0.95rem; }

.payment-logos {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-logos i { font-size: 2.2rem; opacity: 0.7; transition: 0.3s; }
.payment-logos i:hover { opacity: 1; color: var(--white); }

.secure-text {
    font-size: 0.9rem;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.25);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* =========================================
   7. SECCIÓN SERVICIOS
   ========================================= */
.section-grey { background-color: #F7FAFC; }

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
}

.service-card:hover { transform: translateY(-10px); }

/* Card Popular */
.service-card.popular {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    z-index: 2;
}
.service-card.popular:hover { transform: scale(1.05) translateY(-10px); }

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.card-icon { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 20px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.price { font-size: 1.5rem; font-weight: 700; color: var(--primary-orange); margin-bottom: 25px; }

/* Botones de Cards */
.btn-primary-card {
    background: var(--primary-orange);
    color: white;
    padding: 12px;
    border-radius: 12px;
    display: block;
    font-weight: 600;
}
.btn-outline-card {
    border: 2px solid #E2E8F0;
    color: var(--text-light);
    padding: 12px;
    border-radius: 12px;
    display: block;
    font-weight: 600;
    transition: 0.3s;
}
.btn-outline-card:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: var(--accent-light);
}

/* =========================================
   8. FAQ (ACORDEÓN)
   ========================================= */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.faq-item[open] {
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 140, 0, 0.3);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

/* Icono Custom + / - */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 700;
    transition: 0.3s;
}

.faq-item[open] summary::after { content: '-'; color: var(--primary-blue); }

.faq-content {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* =========================================
   9. CTA BANNER & FOOTER
   ========================================= */
.cta-banner {
    background: var(--primary-orange); /* Fondo Naranja */
    color: white;
    padding: 80px 0;
    text-align: center;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 15px; }
.cta-banner p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.95; }

.footer {
    background: #1A202C; /* Casi negro */
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer-brand h3 { color: var(--white); margin-bottom: 10px; font-size: 1.5rem; }
.footer-brand p { opacity: 0.7; }

.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: #A0AEC0; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-orange); padding-left: 5px; }

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin-left: 20px;
    background: rgba(255,255,255,0.1);
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}
.footer-social a:hover { background: var(--primary-orange); transform: translateY(-3px); }

.copyright { text-align: center; color: #718096; font-size: 0.9rem; }

/* =========================================
   10. ANIMACIONES
   ========================================= */
.reveal, .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active, .fade-in-up.active { opacity: 1; transform: translateY(0); }
.delay-200 { transition-delay: 0.2s; }

/* Animación de Pulso para botón principal */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}
.pulse-animation { animation: pulse 2s infinite; }

/* Responsive Calculadora Desktop */
@media (min-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr 400px;
    }
}

/* =========================================
   11. MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .process-row, .process-row.reverse { gap: 30px; }
    .hero h1 { font-size: 2.5rem; }
    .comparison-grid { grid-template-columns: 1fr; gap: 30px; }
    .comparison-card.mobile { transform: scale(1); }
    .comparison-card.mobile.active { transform: scale(1); }
    .wellness-content { grid-template-columns: 1fr; gap: 40px; }
    .van-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Navbar */
    .menu-toggle { display: block; }
    .desktop-btn { display: none; }
    
    /* Hero */
    .hero { padding-top: 100px; text-align: center; }
    .hero-content { grid-template-columns: 1fr; }
    .cta-group { flex-direction: column; }
    
    /* Trust Bar */
    .trust-items { gap: 20px; }
    .trust-item { font-size: 0.9rem; }
    .trust-item i { font-size: 1.5rem; }
    
    /* Comparativa */
    .comparison-card.traditional .comparison-list,
    .comparison-card.mobile .comparison-list { font-size: 0.95rem; }
    
    /* Calculadora */
    .calculator-form,
    .calculator-result {
        padding: 1.5rem;
    }

    .result-total {
        font-size: 2.25rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }
    
    /* Proceso Zig-Zag: Stack vertical */
    .process-row, .process-row.reverse {
        flex-direction: column;
        text-align: center;
    }
    .process-img { order: -1; /* Imagen arriba */ }
    .process-text { padding: 0 10px; }
    .step-number { font-size: 3rem; margin-bottom: 5px; }

    /* Pagos */
    .payment-content { flex-direction: column; text-align: center; gap: 40px; }
    .secure-text { margin-left: 0; width: 100%; justify-content: center; }
    .payment-logos { justify-content: center; }
    .p-item { align-items: flex-start; text-align: left; }
    
    /* Servicios */
    .service-card.popular { transform: scale(1); margin: 20px 0; }
    
    /* Van */
    .van-features { grid-template-columns: 1fr; }
    .hotspot-info { min-width: 180px; font-size: 0.85rem; }
    
    /* Especificaciones técnicas */
    .specs-grid { grid-template-columns: 1fr; gap: 20px; }
    .specs-column { padding: 20px; }
    .specs-column h4 { font-size: 1.1rem; }
    .van-benefits { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; gap: 20px; }
    .benefit-item i { font-size: 2rem; }
    .benefit-item h5 { font-size: 0.95rem; }
    .benefit-item p { font-size: 0.8rem; }
    
    /* Carrusel */
    .carousel-container { aspect-ratio: 4/3; }
    .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
    .carousel-btn-prev { left: 10px; }
    .carousel-btn-next { right: 10px; }
    .carousel-caption { padding: 30px 20px 20px; }
    .carousel-caption h4 { font-size: 1.2rem; }
    .carousel-caption p { font-size: 0.85rem; }
    .info-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .info-card { padding: 20px 15px; }
    .info-card i { font-size: 1.8rem; }
    .info-card h5 { font-size: 0.95rem; }
    .info-card p { font-size: 0.8rem; }
    
    /* Testimonios */
    .testimonials-grid { grid-template-columns: 1fr; }
    
    /* Bienestar */
    .wellness-content { text-align: center; }
    .freedom-item { flex-direction: column; align-items: center; text-align: center; }
    .wellness-badge { position: static; margin-top: 20px; }
    
    /* Footer */
    .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 30px; }
    .footer-social a { margin: 0 10px; }
    
    /* Scroll to top */
    .scroll-to-top { width: 45px; height: 45px; bottom: 20px; right: 20px; }
}

/* =========================================
   PÁGINA CINCO LIBERTADES
   ========================================= */

/* Hero Simple */
.hero-simple {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0052cc 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Origin Section */
.origin-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.origin-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    min-width: 100px;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 1rem;
    background: rgba(255, 140, 0, 0.05);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
}

.timeline-content i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.timeline-content p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Freedoms Detailed Cards */
.freedoms-detailed {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.freedom-card {
    display: grid;
    grid-template-columns: 80px 80px 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.freedom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.freedom-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.1);
    border-radius: 15px;
}

.freedom-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    border-radius: 15px;
}

.freedom-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.freedom-content > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.freedom-application {
    padding: 1.5rem;
    background: rgba(0, 51, 153, 0.05);
    border-left: 4px solid var(--primary-blue);
    border-radius: 10px;
}

.freedom-application h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.freedom-application p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Importance Grid */
.importance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.importance-text {
    color: white;
}

.importance-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.importance-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.stat-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Help Grid */
.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.help-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    border-radius: 20px;
    font-size: 2.5rem;
    color: white;
}

.help-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.help-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Commitment Box */
.commitment-box {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-orange);
}

.commitment-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    border-radius: 20px;
    font-size: 3.5rem;
    color: white;
}

.commitment-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.commitment-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.commitment-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Responsive Cinco Libertades */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .freedom-card {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .freedom-number,
    .freedom-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .freedom-icon {
        font-size: 1.75rem;
    }

    .origin-content {
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-year {
        min-width: auto;
    }

    .commitment-box {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .commitment-icon {
        margin: 0 auto;
    }

    .importance-grid {
        gap: 2rem;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .origin-content {
        grid-template-columns: 2fr 1fr;
    }

    .importance-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* =========================================
   PÁGINAS LEGALES (TÉRMINOS, PRIVACIDAD, NOM-148)
   ========================================= */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

/* Alert Boxes */
.alert-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border-left: 4px solid var(--primary-orange);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.alert-box i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.alert-box p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Highlight Boxes */
.highlight-box {
    background: rgba(0, 51, 153, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.highlight-box p,
.highlight-box ul {
    margin-bottom: 0.75rem;
}

.highlight-box p:last-child,
.highlight-box ul:last-child {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.warning-box p,
.warning-box ul {
    margin-bottom: 0.75rem;
    color: #856404;
}

/* Tip Box */
.tip-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #d1ecf1;
    border-left: 4px solid #0c5460;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.tip-box i {
    font-size: 1.5rem;
    color: #0c5460;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-box p {
    margin: 0;
    color: #0c5460;
    line-height: 1.6;
}

/* Price Box */
.price-box {
    background: white;
    border: 2px solid var(--primary-orange);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 10px;
}

.price-box h4 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.price-box ul {
    list-style: none;
    padding: 0;
}

.price-box li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-box li:last-child {
    border-bottom: none;
}

/* Table of Contents */
.toc-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.toc-box h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.75rem;
}

.toc-list li a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-list li a:hover {
    border-left-color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.05);
    transform: translateX(5px);
}

/* Legal Sections */
.legal-section {
    margin: 3rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.legal-section h2 i {
    color: var(--primary-orange);
}

.legal-section h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Service Lists */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--primary-orange);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-list ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

/* Contact Box */
.contact-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-box h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-box ul {
    list-style: none;
    padding: 0;
}

.contact-box li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* Transfer Table */
.transfer-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.transfer-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.transfer-table thead {
    background: var(--primary-blue);
    color: white;
}

.transfer-table th,
.transfer-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.transfer-table th {
    font-weight: 600;
}

.transfer-table tbody tr:hover {
    background: rgba(255, 140, 0, 0.05);
}

/* Procedure Box */
.procedure-box {
    background: white;
    border: 2px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.procedure-box ol {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

.procedure-box ol > li {
    counter-increment: step-counter;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.procedure-box ol > li:last-child {
    border-bottom: none;
}

.procedure-box ol > li::before {
    content: counter(step-counter);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.procedure-box ul {
    margin-top: 0.5rem;
    padding-left: 3rem;
}

/* Opt-out Box */
.opt-out-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.opt-out-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #856404;
    margin-bottom: 1rem;
}

.opt-out-box p {
    color: #856404;
    margin-bottom: 0.75rem;
}

/* Age Guidelines */
.age-guidelines ul {
    list-style: none;
    padding: 0;
}

.age-guidelines li {
    padding: 1rem;
    background: rgba(0, 51, 153, 0.05);
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 0.75rem;
    border-radius: 5px;
}

/* Consent Box */
.consent-box {
    background: linear-gradient(135deg, var(--primary-orange), #ff6b00);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.consent-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    margin-bottom: 1rem;
}

.consent-box p {
    color: white;
    margin-bottom: 0.75rem;
}

/* CTA Section in Legal Pages */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin: 3rem 0 0;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Definition Grid (NOM-148) */
.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.definition-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-orange);
}

.definition-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.definition-card h4 i {
    color: var(--primary-orange);
}

.definition-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Freedoms Box (NOM-148) */
.freedoms-box {
    background: white;
    border: 3px solid var(--primary-orange);
    padding: 2rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.freedoms-box p {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.freedoms-box ol {
    padding-left: 1.5rem;
}

.freedoms-box ol li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.freedoms-box ol li:last-child {
    border-bottom: none;
}

.note-text {
    background: rgba(255, 140, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Contract Requirements */
.contract-requirements ul {
    list-style: none;
    padding: 0;
}

.contract-requirements li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    margin-bottom: 0.75rem;
    border-radius: 8px;
}

.contract-requirements li i {
    color: var(--primary-blue);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.compliance-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.compliance-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.compliance-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.compliance-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 1rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .toc-list {
        grid-template-columns: 1fr;
    }

    .definition-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .transfer-table {
        font-size: 0.9rem;
    }

    .procedure-box {
        padding: 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}
