        .btn-accent {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(139, 196, 63, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 30px rgba(139, 196, 63, 0.4);
        }

        /* Why Section - Modern Cards */
        .why-section {
            background-color: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }
        
        .section-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            font-weight: 300;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2.5rem;
        }

        .why-card {
            padding: 3rem 2rem;
            background: var(--white);
            border-radius: var(--radius-lg);
            transition: all 0.4s ease;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        
        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .why-card:hover::before {
            transform: scaleX(1);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: var(--blue-light);
            border-radius: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--blue);
            transition: all 0.4s ease;
            transform: rotate(-5deg);
        }

        .why-card:hover .why-icon {
            background: var(--blue);
            color: var(--white);
            transform: rotate(0deg) scale(1.1);
        }

        .why-icon svg {
            width: 40px;
            height: 40px;
            fill: currentColor;
        }

        .why-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-family: var(--font-body);
            font-weight: 700;
        }

        /* Stats Section - Parallax Effect */
        .stats-section {
            background: var(--gradient-primary);
            color: var(--white);
            text-align: center;
            position: relative;
            padding: 8rem 0;
            clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
            margin: 4rem 0;
        }
        
        .stats-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 4rem;
            position: relative;
            z-index: 2;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--lime);
            margin-bottom: 0.5rem;
            font-weight: 800;
            text-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .stat-item h3::after {
            content: '';
            display: none;
        }

        .stat-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            font-weight: 500;
        }
        
        .stats-section h2 {
            color: var(--white);
            margin-bottom: 4rem;
        }

        /* Plans Section - Elevated Cards */
        .plans-section {
            background-color: var(--bg-light);
            padding-bottom: 8rem;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            align-items: stretch;
        }

        .plan-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2.5rem 1.25rem 1.5rem 1.25rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.5s ease;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            z-index: 1;
        }

        .plan-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
            z-index: 2;
        }

        .plan-card.featured {
            border: 2px solid var(--blue);
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(to bottom, #fff, #f8fcff);
        }
        
        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-accent);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(139, 196, 63, 0.4);
        }
        
        .badge.popular {
            background: var(--gradient-primary);
            box-shadow: 0 4px 10px rgba(3, 114, 185, 0.4);
        }

        .plan-title {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--blue);
            text-align: center;
        }

        .plan-desc {
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .plan-features {
            margin-bottom: 1.5rem;
            list-style: none;
            flex-grow: 1;
        }
        
        .plan-features li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 1rem;
            color: var(--text-dark);
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed rgba(0,0,0,0.05);
        }
        
        .plan-features li:last-child {
            border-bottom: none;
        }
        
        .plan-features li svg {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            fill: var(--lime);
            background: rgba(139, 196, 63, 0.1);
            border-radius: 50%;
            padding: 4px;
        }

        /* Programs Section - Grid with Hover Effects */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
        }

        .program-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent; /* Sin borde de color inicial */
        }
        
        .program-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--bg-light);
            border-radius: 0 0 0 100%;
            z-index: 0;
            transition: all 0.4s ease;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            /* Nuevo efecto hover: borde completo suave en azul */
            border-color: rgba(3, 114, 185, 0.3); 
        }
        
        .program-card:hover::after {
            transform: scale(1.5);
            background: rgba(3, 114, 185, 0.05);
        }

        .program-card h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            font-family: var(--font-body);
            position: relative;
            z-index: 1;
        }
        
        .program-tag {
            display: inline-block;
            font-size: 0.8rem;
            color: var(--blue);
            margin-bottom: 1.5rem;
            background: rgba(3, 114, 185, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .program-desc {
            font-size: 1rem;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .programs-cta {
            text-align: center;
            margin-top: 5rem;
        }

        /* About Section - Asymmetric Layout */
        .about-section {
            background-color: var(--white);
            overflow: hidden;
            padding: 10rem 0;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }
        
        .about-image-placeholder {
            width: 100%;
            height: 600px;
            border-radius: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 20px 20px 0 rgba(3, 114, 185, 0.1);
            z-index: 2;
        }
        
        .about-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-decoration {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 200px;
            height: 200px;
            background: var(--lime);
            z-index: 1;
            border-radius: 50%;
            opacity: 0.2;
            filter: blur(40px);
        }
        
        .about-dots {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background-image: radial-gradient(var(--blue) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.3;
            z-index: 1;
        }

        .about-content h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: var(--blue);
        }

        .about-stats {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin: 1.5rem 0;
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 1rem;
            width: 100%;
        }

        .about-stat-item {
            text-align: center;
            flex: 1;
        }

        .about-stat-number {
            display: block;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--blue);
            font-family: var(--font-body);
            line-height: 1;
            margin-bottom: 0.25rem;
        }
        
        .about-stat-label {
            font-size: 0.7rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        
        .about-services {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 2rem;
        }
        
        .service-pill {
            background: var(--white);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--blue);
            border: 1px solid rgba(3, 114, 185, 0.15);
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .service-pill:hover {
            background: var(--blue);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Testimonial - Elegant */
        .testimonial-section {
            text-align: center;
            background: linear-gradient(to bottom, #fff, #f0f9ff);
            padding: 8rem 0;
            overflow: hidden;
        }

        .testimonial-slider-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            padding: 2rem 0;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 1rem;
            box-sizing: border-box;
        }

        .testimonial-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            margin: 0 auto;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .testimonial-card::before {
            content: '“';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 5rem;
            color: var(--blue);
            font-family: serif;
            line-height: 1;
            opacity: 1;
            background: white;
            padding: 0 15px;
            border-radius: 50%;
        }

        .testimonial-text {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-style: italic;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.5;
        }

        .testimonial-author {
            font-weight: 800;
            color: var(--blue);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .testimonial-role {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-top: 0.25rem;
        }

        /* Contact Section - High Impact Form */
        .contact-section {
            padding-bottom: 8rem;
            background: linear-gradient(to top, var(--bg-light), #fff);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 0;
            background: var(--white);
            border-radius: 2rem;
            box-shadow: var(--shadow-hover);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .contact-form-wrapper {
            padding: 4rem;
        }

        .contact-info-wrapper {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(30%, -30%);
        }
        
        .contact-info-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200px;
            height: 200px;
            background: rgba(139, 196, 63, 0.2);
            border-radius: 50%;
            transform: translate(-30%, 30%);
        }

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

        .form-label {
            display: block;
            margin-bottom: 0.75rem;
            font-weight: 700;
            color: var(--text-dark);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            width: 100%;
            padding: 1rem 1.25rem;
            border: 2px solid #e2e8f0;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 1.05rem;
            transition: all 0.3s;
            background: #f8fafc;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--blue);
            background: white;
            box-shadow: 0 0 0 4px rgba(3, 114, 185, 0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .contact-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .contact-text {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .contact-label {
            display: block;
            font-size: 0.8rem;
            opacity: 0.7;
            margin-bottom: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .exito {
            text-align: center;
            padding: 3rem;
            background: #dcfce7;
            border-radius: var(--radius-md);
            color: #166534;
        }

        /* Footer Moderno */
        footer {
            background: #0f172a;
            color: var(--white);
            padding: 6rem 0 3rem;
            font-size: 0.95rem;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h2 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: #94a3b8;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .social-link:hover {
            background: var(--blue);
            transform: translateY(-3px);
            border-color: var(--blue);
        }
        
        .social-link svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .footer-bottom {
            text-align: center;
            color: #64748b;
            font-size: 0.85rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-bottom a {
            color: var(--lime);
        }

        /* WhatsApp Float - Pulsing & Big */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
            z-index: 9999;
            animation: pulse-whatsapp 2.5s infinite;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
        }
        
        .whatsapp-float svg {
            width: 38px;
            height: 38px;
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container, .about-container, .contact-container, .plans-grid, .programs-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-trust {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .hero-badge {
                display: none;
            }
            
            .contact-info-wrapper {
                order: -1;
            }

            .hamburger {
                display: none;
            }
            
            .nav-actions {
                display: flex; 
                gap: 1rem;
            }

            .nav-actions .btn {
                padding: 0.5rem 1rem !important;
                font-size: 0.8rem !important;
            }

            .nav-phone {
                font-size: 0; /* Hide text, show icon only if desired, or keep text small */
            }

            .nav-phone svg {
                width: 24px;
                height: 24px;
            }
            
            .nav-actions-mobile {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .contact-form-wrapper, .contact-info-wrapper {
                padding: 2rem;
            }
            
            .stat-item h3 {
                font-size: 3rem;
            }
            
            .testimonial-card {
                padding: 2rem;
            }
            
            .testimonial-text {
                font-size: 1.25rem;
            }
        }

        /* Map & Directions Section */
        .map-section {
            display: flex;
            flex-wrap: wrap;
            background: #0f172a; /* Matches footer */
            color: white;
            position: relative;
            overflow: hidden;
            align-items: stretch;
        }

        .map-content {
            flex: 1;
            padding: 2.5rem 3rem;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .map-frame {
            flex: 1;
            min-width: 300px;
            min-height: 350px;
            position: relative;
        }

        .map-frame iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: 0;
            filter: grayscale(0%);
        }

        .directions-form {
            margin-top: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .directions-input-group {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .directions-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.6rem 1rem;
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 0.95rem;
        }
        
        .directions-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .directions-input:focus {
            outline: none;
            border-color: var(--lime);
            background: rgba(255, 255, 255, 0.15);
        }

        .btn-location {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            width: 46px;
            height: 46px;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .btn-location:hover {
            background: var(--lime);
            border-color: var(--lime);
            color: #0f172a;
        }
        
        .btn-location svg {
            width: 24px;
            height: 24px;
        }

        .btn-directions {
            width: 100%;
            background: var(--gradient-primary);
            color: white;
            padding: 0.8rem;
            border-radius: var(--radius-full);
            border: none;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .btn-directions:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(3, 114, 185, 0.3);
        }

        @media (max-width: 768px) {
            .map-section {
                flex-direction: column-reverse; /* Map below content on mobile */
            }
            .map-content {
                padding: 2.5rem 1.5rem;
            }
            .map-frame {
                min-height: 250px;
            }
            .map-frame iframe {
                min-height: 250px;
            }
        }

        /* Desktop specific adjustments */
        @media (min-width: 769px) {
            .map-content {
                /* Reset width to flex default (50% approx) */
                flex: 1; 
                padding: 3rem; /* Standard padding */
                align-items: center; /* Center content horizontally */
                text-align: center;
            }
            
            /* Constrain inner content width */
            .map-content h2, 
            .map-content p, 
            .directions-form {
                max-width: 550px; /* Constrain width of inner elements */
                width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .map-content h2 {
                font-size: 2rem !important; /* Restore decent size but not huge */
                margin-bottom: 0.5rem;
            }
            
            .directions-form {
                margin-top: 1.5rem;
                padding: 1.5rem;
            }
            
            .directions-input-group {
                justify-content: center;
            }
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .animate-spin {
            animation: spin 1s linear infinite;
            transform-origin: center;
        }

/* Footer Nav Links */
.footer-nav {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
}
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer-nav-col strong {
    display: block;
    color: var(--lime);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-col ul li {
    margin-bottom: 0.5rem;
}
.footer-nav-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-nav-col ul li a:hover {
    color: #fff;
}
@media (max-width: 768px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
