/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #39e75f;       /* Maxxcon Vibrant Neon Green */
    --color-primary-hover: #2cd050; /* Darker green for hover */
    --color-primary-glow: rgba(57, 231, 95, 0.4);
    --color-dark-grey: #2c3539;     /* Maxxcon Anthracite/Dark Grey */
    --color-dark-grey-rgb: 44, 53, 57;
    --color-dark-slate: #1f2937;    /* Slate 800 */
    --color-bg-light: #f8fafc;      /* Light grey body background */
    --color-white: #ffffff;
    
    /* Text Colors */
    --color-text-dark: #1e293b;     /* Slate 900 */
    --color-text-muted: #64748b;    /* Slate 500 */
    --color-text-light: #f8fafc;
    
    /* Font */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 25px var(--color-primary-glow);
    
    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   DECORATIVE BACKGROUND ELEMENTS
   ========================================================================== */
.bg-decorative-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background-image: url('../Recursos/bg-top.svg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.95;
}

.bg-decorative-bottom {
    width: 100%;
    height: 250px;
    background-image: url('../Recursos/bg-bottom.svg');
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-top: 40px;
    margin-bottom: -50px;
    z-index: 1;
}

@media (max-width: 768px) {
    .bg-decorative-top {
        height: 150px;
        background-size: 150% auto;
    }
    .bg-decorative-bottom {
        height: 120px;
        background-size: 150% auto;
        margin-top: 10px;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
    box-shadow: 0 4px 14px rgba(57, 231, 95, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #1e2528;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 53, 57, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-dark-grey);
    color: var(--color-dark-grey);
}

.btn-outline:hover {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
    padding: 16px 0;
    position: relative;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-dark-grey);
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-link:hover {
    color: #111;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.speedtest-nav-link {
    color: var(--color-primary-hover);
    font-weight: 700;
}

.speedtest-nav-link:hover {
    color: var(--color-primary);
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-dark-grey);
    border-radius: var(--border-radius-full);
    transition: var(--transition-normal);
}

/* Mobile responsive menu header */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 40px;
        transition: var(--transition-normal);
        z-index: 99;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
    }

    .nav-btn {
        width: 100%;
        margin-top: 16px;
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 60px 0 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background-color: rgba(57, 231, 95, 0.12);
    border: 1px solid rgba(57, 231, 95, 0.25);
    color: var(--color-dark-grey);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge.badge-dark {
    background-color: rgba(44, 53, 57, 0.1);
    border-color: rgba(44, 53, 57, 0.2);
    color: var(--color-dark-grey);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--color-dark-grey);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--color-primary-hover);
    position: relative;
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, var(--color-primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 32px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark-grey);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Network Mockup Graphic */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background-color: var(--color-primary-glow);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.35; }
    100% { transform: scale(1.15); opacity: 0.55; }
}

.hero-device-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
}

.network-mockup-svg {
    background-color: var(--color-dark-grey);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 5/4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2c3539 0%, #1e2528 100%);
    padding: 20px;
}

/* Hero Section Mobile Responsive */
@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ==========================================================================
   BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-primary-hover);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark-grey);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(57, 231, 95, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: rgba(57, 231, 95, 0.12);
    color: var(--color-primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   PLANS SECTION
   ========================================================================== */
.plans-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.plan-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 32px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    padding: 8px 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle-label.active {
    color: var(--color-dark-grey);
}

/* Custom Switch Toggle button */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    margin: 0 8px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-dark-grey);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--color-white);
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-primary-hover);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary-hover);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: var(--color-dark-grey);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    margin-top: 50px;
    align-items: stretch;
}

.plans-grid.hidden {
    display: none !important;
}

.plan-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Popular Plan Card styling */
.plan-card.popular {
    border: 2px solid var(--color-primary);
    box-shadow: 0 15px 35px rgba(57, 231, 95, 0.15);
    background-color: var(--color-white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--border-radius-full);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(57, 231, 95, 0.3);
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    margin-bottom: 16px;
}

.plan-speed {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.speed-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark-grey);
    line-height: 1;
    letter-spacing: -1px;
}

.plan-card.popular .speed-num {
    background: linear-gradient(135deg, var(--color-dark-grey) 0%, var(--color-primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speed-unit {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    min-height: 48px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    align-self: flex-start;
    margin-top: 4px;
}

.plan-price .price-val {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-dark-grey);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li::before {
    content: '✓';
    color: var(--color-primary-hover);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-footer {
    margin-top: auto;
}

/* ==========================================================================
   COBERTURA (COVERAGE) SECTION
   ========================================================================== */
.coverage-section {
    padding: 100px 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.city-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-normal);
}

.city-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 231, 95, 0.25);
    box-shadow: var(--shadow-md);
}

.province-coverage-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 48px 32px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
    max-width: 680px;
    margin: 0 auto 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-normal);
}

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

.province-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.province-coverage-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark-grey);
    margin-bottom: 12px;
}

.province-coverage-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 540px;
}

.coverage-note {
    margin-top: 40px;
    text-align: center;
    background-color: rgba(57, 231, 95, 0.06);
    border: 1px solid rgba(57, 231, 95, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 16px 24px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-note p {
    font-size: 0.95rem;
    color: var(--color-dark-grey);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.contact-container-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-normal);
    text-decoration: none;
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(44, 53, 57, 0.05);
    color: var(--color-dark-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card:hover {
    border-color: #25D366;
    background-color: rgba(37, 211, 102, 0.02);
}

.whatsapp-card:hover .wa-icon-box {
    background-color: #25D366 !important;
    color: var(--color-white) !important;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    margin-bottom: 8px;
}

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

.contact-card-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-grey);
}

.whatsapp-card .contact-card-val {
    color: #10b981;
}

@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.channel-val {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark-grey);
}

/* Contact Form container */
.contact-form-wrapper {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    margin-bottom: 6px;
}

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

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark-grey);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background-color: var(--color-white);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary-hover);
    box-shadow: 0 0 0 3px rgba(57, 231, 95, 0.15);
}

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

/* Selected Plan Box inside form */
.selected-plan-group {
    background-color: rgba(57, 231, 95, 0.08);
    border: 1px dashed var(--color-primary);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    width: 100%;
}

.selected-plan-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.selected-plan-box span {
    font-weight: 700;
    color: var(--color-dark-grey);
    font-size: 0.95rem;
}

.remove-selected-plan {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
}

.remove-selected-plan:hover {
    color: #ef4444;
}

.form-group.hidden {
    display: none;
}

/* Form success alert */
.form-success-message {
    margin-top: 20px;
    padding: 16px 20px;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--border-radius-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    animation: fadeIn 0.4s ease;
}

.form-success-message.hidden {
    display: none;
}

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

.success-alert-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #10b981;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-success-message h4 {
    color: #065f46;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-success-message p {
    color: #047857;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   FAQS SECTION
   ========================================================================== */
.faqs-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.faqs-wrapper {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(44, 53, 57, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-arrow {
    transition: transform var(--transition-normal);
}

.faq-trigger:hover .faq-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
}

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

/* Accordion Active States */
.faq-item:has(.faq-trigger[aria-expanded="true"]) {
    border-color: rgba(57, 231, 95, 0.25);
    box-shadow: var(--shadow-md);
}

.faq-trigger[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
}

.faq-content[aria-hidden="false"] {
    max-height: 1000px;
    transition: max-height var(--transition-normal) cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-dark-grey);
    color: var(--color-white);
    padding: 80px 0 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1.1fr 1.1fr;
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-slogan {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Regulatory/Compliance Section */
.regulatory-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #21282c;
    padding: 24px 0;
}

.regulatory-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.regulatory-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.regulatory-links {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.regulatory-links a {
    color: rgba(255, 255, 255, 0.5);
}

.regulatory-links a:hover {
    color: var(--color-primary);
}

/* Footer Bottom Area */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .regulatory-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   TRANSPARENCIA ARCOTEL SECTION
   ========================================================================== */
.transparencia-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.transparency-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.transparency-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(57, 231, 95, 0.3);
}

.transparency-img-wrapper {
    width: 100%;
    height: 180px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.transparency-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.transparency-card:hover .transparency-img {
    transform: scale(1.05);
}

.transparency-info {
    padding: 24px;
    flex-grow: 1;
}

.transparency-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark-grey);
    margin-bottom: 8px;
}

.transparency-info p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Logo image optimizations */
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
}

/* ==========================================================================
   FOOTER REGULATORY & COMPLIANCE DOWNLOAD CENTER
   ========================================================================== */
.regulatory-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #1a2024;
    padding: 60px 0 40px;
}

.regulatory-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.regulatory-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.regulatory-badge {
    display: inline-block;
    background-color: rgba(57, 231, 95, 0.15);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--border-radius-full);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.regulatory-header h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.regulatory-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* PDF Download Cards Grid */
.regulatory-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.doc-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.doc-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.doc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(57, 231, 95, 0.12);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doc-title {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
}

.doc-action {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Toggleable Indicators Panel */
.footer-indicators-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-toggle-indicators {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-normal);
}

.btn-toggle-indicators:hover,
.btn-toggle-indicators.active {
    background-color: var(--color-primary);
    color: var(--color-dark-grey);
    border-color: var(--color-primary);
}

.btn-toggle-indicators svg {
    transition: transform 0.3s ease;
}

.btn-toggle-indicators.active svg {
    transform: rotate(180deg);
}

.footer-indicators-panel {
    margin-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}


