:root {
    /* --- COLOR PALETTE --- */
    --clr-bg: #000000;
    --clr-primary: #00f2ff;
    --clr-primary-rgb: 0, 242, 255;
    --clr-primary-glow: rgba(0, 242, 255, 0.3);
    --clr-accent: #004d55;
    --clr-white: #ffffff;
    --clr-text-main: #ffffff;
    --clr-text-muted: #94a3b8;
    --clr-glass-bg: rgba(255, 255, 255, 0.06);
    --clr-border: rgba(255, 255, 255, 0.1);

    /* --- SPACING --- */
    --section-padding: 120px;
    --container-max: 1400px;
    --container-max-large: 1800px;
    --card-padding: 50px 40px;

    /* --- TRANSITIONS --- */
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* --- BORDERS & EFFECTS --- */
    --radius-full: 50px;
    --radius-lg: 30px;
    --radius-sm: 15px;
    --glass-blur: 15px;
}

/* --- BASE / RESET --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

strong {
    color: var(--clr-white);
    font-weight: 600;
}

img {
    max-width: 100%;
    display: block;
}

/* --- LAYOUT OBJECTS --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.container--large {
    max-width: var(--container-max-large);
}

.section {
    padding: var(--section-padding) 0;
    text-align: center;
}

/* --- COMPONENT: TYPOGRAPHY --- */
.h1, .h2, .h3 {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 25px;
}

.highlight {
    color: var(--clr-primary);
}

.header-divider {
    width: 60px;
    height: 4px;
    background-color: var(--clr-primary);
    margin: 0 auto 35px;
    border-radius: 2px;
}

.section-desc {
    max-width: 850px;
    margin: 0 auto 70px;
    color: var(--clr-text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* --- SECTION: HERO --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 77, 85, 0.45) 0%, var(--clr-bg) 75%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 0%,
            transparent 25%,
            transparent 75%,
            rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* BACKGROUND LINES ANIMATION */
.background-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
    width: 20rem;
    opacity: 0;
    animation: moveLines 5s linear infinite;
}

.line:nth-child(1) { top: 20%; left: -25%; animation-delay: 0s; width: 25rem; }
.line:nth-child(2) { top: 35%; left: -25%; animation-delay: 1.8s; width: 15rem; }
.line:nth-child(3) { top: 50%; left: -25%; animation-delay: 3.5s; width: 35rem; }
.line:nth-child(4) { top: 65%; left: -25%; animation-delay: 0.8s; width: 22rem; }
.line:nth-child(5) { top: 80%; left: -25%; animation-delay: 2.5s; width: 28rem; }
.line:nth-child(6) { top: 25%; left: -25%; animation-delay: 4.2s; width: 12rem; }
.line:nth-child(7) { top: 55%; left: -25%; animation-delay: 0.5s; width: 38rem; }
.line:nth-child(8) { top: 75%; left: -25%; animation-delay: 2s; width: 18rem; }

@keyframes moveLines {
    0% { left: -20%; opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { left: 100%; opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-line-1 { white-space: nowrap; }

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--clr-text-muted);
    margin-bottom: 4rem;
    max-width: 800px;
    line-height: 1.6;
}

.highlight-white {
    color: var(--clr-white);
    font-weight: 600;
}

/* --- COMPONENT: NAVBAR --- */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 8%;
    z-index: 1000;
}

.navbar__logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
}

.navbar__logo:hover {
    opacity: 0.8;
}

.navbar__logo img {
    height: 65px;
}

.navbar__list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.navbar__link {
    text-decoration: none;
    color: var(--clr-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.navbar__link:hover {
    color: var(--clr-primary);
}

.navbar__link.active {
    color: var(--clr-primary);
    border-bottom: 2px solid var(--clr-primary);
}


/* --- COMPONENT: BUTTONS --- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.1rem 2.8rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-smooth);
    z-index: 1;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn i {
    transition: transform var(--transition-fast);
}

.btn--primary {
    background: linear-gradient(135deg, var(--clr-primary) 0%, #00d2df 100%);
    color: #00191c !important;
    box-shadow: 0 10px 30px var(--clr-primary-glow);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
}

.btn--enroll {
    display: block;
    width: 100%;
    background: var(--clr-primary);
    color: #00191c !important;
    text-align: center;
    padding: 18px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    margin-top: auto;
    font-weight: 700;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #a5faff;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover {
    color: #00191c !important;
}

.btn:hover i {
    transform: scale(1.1) rotate(-10deg);
}

.btn:hover::before {
    opacity: 1;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 32px;
    z-index: 1000;
    transition: all var(--transition-fast);
    animation: pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ADN OMEGA SECTION */
.adn-section {
    background-color: var(--clr-bg);
    padding: 120px 0 80px; /* 120px arriba para separar del Hero, 80px abajo */
    text-align: center;
    position: relative;
}

.adn-section .container,
.pricing-section .container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
    position: relative;
}

.section-badge {
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.adn-section h2,
.pricing-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.adn-section h2 .highlight {
    color: var(--clr-primary);
}

.header-divider {
    width: 60px;
    height: 4px;
    background-color: var(--clr-primary);
    margin: 0 auto 35px;
    border-radius: 2px;
}

.section-desc {
    max-width: 850px;
    margin: 0 auto 70px;
    color: var(--clr-text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
}

.section-desc strong {
    color: var(--clr-white);
    font-weight: 600;
}

/* VIDEO CAROUSEL VIEW */
.carousel-outer-wrapper {
    position: relative;
    max-width: 1610px;
    /* 1310px de videos + 150px de padding por cada lado para las flechas */
    margin: 0 auto;
    padding: 0 150px;
    /* Margen generoso para que las flechas se sientan libres */
    overflow: visible;
}

/* ESTILO DE LAS FLECHAS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-primary);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.carousel-outer-wrapper:hover .carousel-btn {
    opacity: 1;
    pointer-events: auto;
}

.carousel-btn:hover {
    background: rgba(0, 242, 255, 0.2);
    border-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px var(--clr-primary-glow);
}

.prev-btn {
    left: 25px;
}

.next-btn {
    right: 25px;
}

/* Asegurar que las flechas tengan espacio en pantallas grandes */
@media (max-width: 1700px) {
    .prev-btn {
        left: 40px;
    }

    .next-btn {
        right: 40px;
    }
}

@media (max-width: 1550px) {
    .prev-btn {
        left: 10px;
        background: rgba(0, 0, 0, 0.4);
    }

    .next-btn {
        right: 10px;
        background: rgba(0, 0, 0, 0.4);
    }
}

.video-carousel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    max-width: 1310px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
}

.video-carousel.active-drag {
    cursor: grabbing;
    scroll-behavior: auto;
    /* Para que el drag sea instantáneo al mover */
}

.video-carousel::-webkit-scrollbar {
    display: none;
    /* Ocultar scrollbar en Chrome/Safari */
}

.video-card {
    flex-shrink: 0;
    width: 420px;
    aspect-ratio: 16 / 9;
    background-color: #050505;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* GRADIENT DEMO PLACEHOLDERS */
.card-demo-1 {
    background: linear-gradient(135deg, #00191c 0%, #004d55 100%);
}

.card-demo-2 {
    background: linear-gradient(135deg, #000c1e 0%, #002b55 100%);
}

.card-demo-3 {
    background: linear-gradient(135deg, #0f001e 0%, #300055 100%);
}

.card-demo-4 {
    background: linear-gradient(135deg, #001e0c 0%, #00552b 100%);
}

.card-demo-5 {
    background: linear-gradient(135deg, #1e0000 0%, #550000 100%);
}

.video-card.active {
    border: 1px solid rgba(0, 242, 255, 0.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Un poco más claro para ver la miniatura */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-overlay i {
    font-size: 3.5rem;
    color: var(--clr-primary);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.video-card:hover .video-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* VIDEO MODAL - MODO TEATRO */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 40px;
    /* Aire alrededor */
}

.video-modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 1100px;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 100px rgba(0, 242, 255, 0.15);
}

.iframe-container {
    width: 100%;
    height: 100%;
}

#videoIframe {
    width: 100%;
    height: 100%;
}

.modal-close-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3100;
}

.modal-close-btn:hover {
    background: var(--clr-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px var(--clr-primary-glow);
    color: var(--clr-bg);
}

/* Picos laterales del carrusel */
.left-peak,
.right-peak {
    opacity: 0.3;
    min-width: 15rem;
}

/* DOTS NAVIGATION */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    width: 14px;
    background-color: var(--clr-primary);
    border-radius: 10px;
}

/* FOOTER STYLES */
.main-footer {
    padding: 100px 0 50px;
    background-color: var(--clr-bg);
    /* Ajuste final sutil: Un toque más oscuro */
    background: linear-gradient(to bottom, 
        var(--clr-bg) 0%, 
        rgba(0, 242, 255, 0.02) 50%,
        rgba(0, 150, 160, 0.14) 100%
    );
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    height: 75px;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.2));
}

.footer-tagline {
    color: var(--clr-text-muted);
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 45px;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 10px; /* Reducido para compensar el acolchado de los iconos */
    margin-bottom: 60px;
}

.footer-social a {
    color: var(--clr-white);
    font-size: 1.6rem;
    opacity: 0.5;
    padding: 15px; /* Aumenta el área de hover invisible */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 1;
}

/* Colores reales de cada marca al hacer hover */
.footer-social a:hover .fa-facebook-f {
    color: #1877f2;
}

.footer-social a:hover .fa-instagram {
    color: #e4405f;
}

.footer-social a:hover .fa-tiktok {
    color: #ff0050;
}

.footer-bottom {
    width: 100%;
}

.footer-bottom p {
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 80px 0 40px;
    }
    
    .footer-tagline {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .footer-bottom p {
        letter-spacing: 0.15em;
        font-size: 0.7rem;
    }
}

/* RESPONSIVE GENERAL */
@media (max-width: 1100px) {
    .video-card {
        min-width: 320px;
        height: 200px;
    }

    .video-card.active {
        min-width: 350px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .adn-section h2 {
        font-size: 2.5rem;
    }

    .section-desc {
        font-size: 1rem;
    }

    .left-peak,
    .right-peak {
        display: none;
    }
}

/* --- COMPONENT: CARDS --- */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    width: 380px;
    transition: all var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--clr-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--clr-primary-glow);
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 35px;
    letter-spacing: -0.02em;
    position: relative;
}

.plan-badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--clr-primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    border: 1px solid var(--clr-primary-glow);
}

.plan-features {
    list-style: none;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    color: var(--clr-text-main);
    font-size: 1.05rem;
    margin-bottom: 18px;
    font-weight: 500;
    text-align: left;
    width: 100%;
    max-width: 300px;
}

.plan-features li i {
    color: var(--clr-primary);
    font-size: 1.2rem;
    width: 20px;
}


/* FAQ SECTION */
.faq-section {
    padding: 80px 0 !important;
    background-color: var(--clr-bg) !important;
    text-align: center !important;
}

.faq-section .container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.faq-section h2 {
    font-size: 3.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    color: var(--clr-white) !important;
    text-align: center !important;
    width: 100% !important;
}

.faq-section .header-divider {
    margin: 0 auto 35px !important;
    display: block !important;
}

.faq-accordion {
    max-width: 850px !important;
    width: 100% !important;
    margin: 25px auto 0 !important; /* Total real: 60px (35px de la línea + 25px del margen) */
    text-align: left !important;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 30px !important;
    margin-bottom: 20px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--clr-primary) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 255, 0.1) !important;
}

.faq-question {
    padding: 30px 40px !important; /* Igual que el padding de las pricing-cards */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700 !important;
    font-size: 1.15rem !important; /* Un poco más grande para el header */
    color: var(--clr-white);
}

.faq-question i {
    color: var(--clr-primary);
    transition: transform 0.4s ease;
    font-size: 0.9rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 35px 30px;
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ACTIVE STATE FAQ */
.faq-item.active {
    border-color: var(--clr-primary-glow);
    background: rgba(0, 242, 255, 0.02);
}

.faq-item.active .faq-question {
    color: var(--clr-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Responsive adjustments for pricing */
@media (max-width: 1200px) {
    .pricing-card {
        width: 340px;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }

    .plan-price .amount {
        font-size: 4.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-line-1 {
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

/* --- PAGE: NOSOTROS --- */
.page-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.page-hero .h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.values-section {
    background: linear-gradient(to bottom, transparent, rgba(0, 242, 255, 0.05), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--clr-border);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-primary);
    background: rgba(0, 242, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--clr-primary-glow);
}

.value-card i {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 25px;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--clr-white);
}

.value-card p {
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.page-main-bg {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(0, 77, 85, 0.45) 0%, var(--clr-bg) 75%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        background-attachment: scroll;
    }
    
    .value-card {
        padding: 40px 20px;
    }
}
