/* =====================================================
   Sales Page Premium UI v4 - Ultra Premium 2026
   Aesthetics: Parallax, Glassmorphism, Gradient Cards
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
    --n-bg: #050505;
    --n-card: #141414;
    --n-accent: #E50914;
    --n-text: #E5E5E5;
    --n-gold: #ffc107;
    --color-salud: #00b4d8;
    --color-belleza: #ff85a2;
    --color-admin: #0077b6;
    --color-idiomas: #ffd166;
    --color-tecnico: #06d6a0;
}

.niche-salud {
    --niche-accent: var(--color-salud);
}

.niche-belleza {
    --niche-accent: var(--color-belleza);
}

.niche-admin {
    --niche-accent: var(--color-admin);
}

.niche-idiomas {
    --niche-accent: var(--color-idiomas);
}

.niche-tecnico {
    --niche-accent: var(--color-tecnico);
}

body {
    background-color: var(--n-bg);
    color: var(--n-text);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

nav,
.main-nav,
.top-bar {
    display: none !important;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}

.highlight {
    color: var(--niche-accent, var(--n-accent));
}

/* ==========================================
   HERO v4: Cinematic Full-Bleed
   ========================================== */
.master-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 4% 80px;
    background: #000;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 0;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 70%),
        linear-gradient(to top, #000 0%, transparent 30%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 20%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
}

.badge-premium {
    display: inline-block;
    padding: 6px 18px;
    background: var(--niche-accent, var(--n-accent));
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 4px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.3);
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-price-tag {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-netflix-main {
    background: linear-gradient(135deg, #ffc107, #00b4d8);
    /* Yunis Amarillo to Celeste */
    color: #000;
    /* Dark text for contrast on yellow/blue */
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 900;
    border-radius: 8px;
    display: flex;
    /* Enforce flex block instead of inline-flex */
    width: 100%;
    /* Take full width of container */
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    border: none;
}

.btn-netflix-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.6), 0 0 20px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #00b4d8, #ffc107);
    color: #fff;
}

.hero-trust-line {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   PARALLAX SECTION: Benefits
   ========================================== */
.premium-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(5, 5, 5, 0.85) 100%);
    z-index: 1;
}

.section-title-glow {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 0 0 40px rgba(229, 9, 20, 0.15);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

/* Glassmorphism Cards */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--niche-accent, var(--n-accent)), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--niche-accent, var(--n-accent));
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(229, 9, 20, 0.1);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
}

.glass-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   MOTIVES PREMIUM: Gradient Cards
   ========================================== */
.motives-premium {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #0a0f1a 50%, #000 100%);
}

.motives-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.motive-card-premium {
    border-radius: 16px;
    padding: 40px;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
}

.motive-card-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.gradient-1 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    grid-column: span 2;
}

.gradient-2 {
    background: linear-gradient(135deg, #1b2838 0%, #2d4059 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #162447 0%, #1f4068 100%);
}

.motive-img-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.motive-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: opacity 0.4s;
}

.motive-card-premium:hover .motive-img-container img {
    opacity: 0.35;
}

.motive-text {
    position: relative;
    z-index: 2;
}

.motive-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.motive-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

/* ==========================================
   GENERAL SECTIONS
   ========================================== */
section {
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.comparison-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 45px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.compare-card.winner {
    background: linear-gradient(135deg, rgba(22, 36, 71, 0.8) 0%, rgba(15, 52, 96, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-list {
    list-style: none;
    padding: 0;
}

.compare-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
}

.step-card,
.card-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    border-radius: 16px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover,
.card-premium:hover {
    transform: translateY(-5px);
    border-color: var(--niche-accent, rgba(255, 255, 255, 0.15));
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pricing-combo-grid {
    display: grid;
    gap: 20px;
    justify-content: center;
}

.pricing-tier-neon.best-value {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-tier-neon.best-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--niche-accent, var(--n-accent)), var(--n-gold));
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--n-accent);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
}

.strike-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

.final-price {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.sticky-urgency {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1a1a1a, #0a0a0a);
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 9999;
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.curriculum-accordion {
    text-align: left;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.accordion-header {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s;
    color: rgba(255, 255, 255, 0.7);
}

.accordion-item.active .accordion-content {
    padding: 15px 25px;
    max-height: 500px;
}

.testimonial-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-card-neon {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

.testimonial-card-neon:hover {
    border-color: var(--niche-accent, rgba(255, 255, 255, 0.15));
    transform: translateY(-3px);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-stars {
    color: var(--n-gold);
    margin-bottom: 8px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

@media (max-width: 768px) {
    .comparison-section {
        grid-template-columns: 1fr;
    }

    .motives-grid-premium {
        grid-template-columns: 1fr;
    }

    .gradient-1 {
        grid-column: span 1;
    }

    h1 {
        font-size: 2.5rem;
    }

    .parallax-section {
        background-attachment: scroll;
    }

    .glass-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   V5 UPGRADE: ROADMAP & BENTO BOX (Ingles Pilot)
   ========================================== */

/* ROADMAP */
.roadmap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    z-index: 3;
}

.roadmap-node {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    transform: translateY(10px);
    transition: all 0.4s ease;
    z-index: 2;
}

.roadmap-node:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--niche-accent, #fff);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.06);
}

.rm-icon {
    font-size: 3rem;
    margin-right: 30px;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 50%;
    color: var(--niche-accent, #fff);
    flex-shrink: 0;
}

.rm-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-align: left;
}

.rm-content p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    text-align: left;
    font-size: 1.05rem;
}

.roadmap-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, var(--niche-accent, #fff) 50%, rgba(255,255,255,0.2) 100%);
    opacity: 0.8;
    z-index: 1;
}

.rm-final {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-color: rgba(0, 180, 216, 0.3);
}

.glow-icon {
    text-shadow: 0 0 20px var(--niche-accent, #00b4d8);
}

@media (max-width: 600px) {
    .roadmap-node { flex-direction: column; text-align: center; }
    .rm-icon { margin: 0 0 20px 0; }
    .rm-content h3, .rm-content p { text-align: center; }
}


/* ==========================================
   V6: BENTO ELITE GRID (ULTRA PREMIUM)
   ========================================== */
.elite-motives {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.bento-elite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Atmospheric Glow Behind Grid */
.elite-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--niche-accent, rgba(0, 180, 216, 0.15)) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: orbFloat 10s infinite alternate ease-in-out;
}

@keyframes orbFloat {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-40%, -60%) scale(1.2); opacity: 0.8; }
}

.elite-box {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 20px 40px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.elite-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 30px 60px rgba(0,0,0,0.8);
}

/* Image Expansion Base */
.elite-large {
    grid-column: span 2;
    grid-row: span 2;
    background: #000;
}

.elite-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.elite-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s;
    transform: scale(1.02);
}

.elite-large:hover .elite-bg {
    transform: scale(1.1);
    opacity: 0.7;
}

.elite-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(5,5,8,0.95) 100%);
    z-index: 1;
}

/* Cinematic Grain */
.elite-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Animated Shimmer on Neon Box */
.elite-neon {
    position: relative;
}

.elite-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.1), transparent 30%);
    animation: rotate 6s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.elite-neon:hover .elite-shimmer {
    opacity: 1;
}

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

/* Content Styling */
.elite-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.elite-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.elite-icon {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    transition: all 0.5s;
}

.elite-glass:hover .elite-icon {
    color: #fff;
    transform: translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(255,255,255,0.3));
}

.elite-icon.accent-glow {
    color: var(--niche-accent, #00b4d8);
    filter: drop-shadow(0 0 20px var(--niche-accent, rgba(0,180,216,0.5)));
}

.elite-neon:hover .elite-icon.accent-glow {
    transform: translateY(-5px);
    filter: drop-shadow(0 0 30px var(--niche-accent, rgba(0,180,216,0.9)));
}

.elite-content h3 {
    font-size: 2rem;
    font-weight: 400; /* Modern thin-medium font for luxury feel */
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 15px 0;
}

.elite-large .elite-content h3 {
    font-size: 2.8rem;
    font-weight: 600;
}

.elite-content p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 990px) {
    .bento-elite-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .elite-large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 500px;
    }
    .elite-box {
        min-height: 350px;
    }
}


/* PREMIUM TESTIMONIALS */
.premium-auth {
    align-items: center;
}

.testimonial-avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.testimonial-img-premium {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
}

.verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--niche-accent, #00b4d8);
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 3px solid #141414;
}

/* AEO ANIMATED BLOCK */
.aeo-animated article {
    position: relative;
    z-index: 2;
}

.aeo-animated h3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aeo-animated h3::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--niche-accent, #fff);
    box-shadow: 0 0 12px var(--niche-accent, #fff);
}


/* ==========================================
   PURE NON-TEXTUAL VISUAL ANIMATION
   ========================================== */
.visual-anim-stage {
    position: relative;
    max-width: 800px;
    height: 350px;
    margin: 60px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.anim-track {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
}

.anim-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--niche-accent, #00b4d8), #22c55e);
    animation: tracePath 10s infinite ease-out;
}

/* Master Timeline: 0 to 50% sequencing, 60% to 90% Success State */
@keyframes tracePath {
    0% { width: 0%; transform: translateX(-10%); opacity: 0; background: linear-gradient(90deg, transparent, var(--niche-accent, #00b4d8), #fff); }
    5% { opacity: 1; }
    50% { width: 100%; transform: translateX(0%); opacity: 1;}
    60%, 90% { width: 100%; transform: translateX(0%); opacity: 1; background: linear-gradient(90deg, transparent, #22c55e, #10b981); }
    95%, 100% { width: 100%; transform: translateX(50%); opacity: 0;}
}

.anim-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: grayscale(100%) opacity(0.5);
}

.anim-node.node-1 { animation: nodeSeq1 10s infinite; }
.anim-node.node-2 { animation: nodeSeq2 10s infinite; }
.anim-node.node-3 { animation: nodeSeq3 10s infinite; }

.node-icon-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(10,10,10,0.9);
    border: 2px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.icon-pulse {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px solid var(--niche-accent, #00b4d8);
    opacity: 0;
    transform: scale(0.8);
}

.anim-node.node-1 .icon-pulse { animation: pulse1 10s infinite; }
.anim-node.node-2 .icon-pulse { animation: pulse2 10s infinite; }
.anim-node.node-3 .icon-pulse { animation: pulse3 10s infinite; }

.node-label {
    margin-top: 30px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
}

.anim-node.node-1 .node-label { animation: label1 10s infinite; }
.anim-node.node-2 .node-label { animation: label2 10s infinite; }
.anim-node.node-3 .node-label { animation: label3 10s infinite; }

/* === SEQUENCE 1 === (10% to 25%, then 60%-90% green) */
@keyframes nodeSeq1 {
    0%, 9%, 26%, 59%, 95%, 100% { transform: scale(0.9); filter: grayscale(100%) opacity(0.5); }
    10%, 25% { transform: scale(1.15); filter: grayscale(0%) opacity(1); }
    60%, 90% { transform: scale(1.1); filter: grayscale(0%) opacity(1); filter: drop-shadow(0 0 10px rgba(34,197,94,0.3)); }
}
@keyframes pulse1 {
    0%, 9%, 26%, 59%, 95%, 100% { opacity: 0; transform: scale(0.8); }
    10%, 20% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 40px var(--niche-accent, #00b4d8); background: rgba(0, 180, 216, 0.1); border-color: var(--niche-accent, #00b4d8);}
    60%, 90% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 40px rgba(34,197,94,0.8); background: rgba(34,197,94,0.15); border-color: #22c55e;}
}
@keyframes label1 {
    0%, 9%, 26%, 59%, 95%, 100% { opacity: 0; transform: translateY(15px); text-shadow: none; color: #fff;}
    10%, 25% { opacity: 1; transform: translateY(0); text-shadow: 0 4px 15px var(--niche-accent, #00b4d8); color: #fff;}
    60%, 90% { opacity: 1; transform: translateY(0); text-shadow: 0 4px 15px #22c55e; color: #22c55e;}
}

/* === SEQUENCE 2 === (25% to 40%, then 60%-90% green) */
@keyframes nodeSeq2 {
    0%, 24%, 41%, 59%, 95%, 100% { transform: scale(0.9); filter: grayscale(100%) opacity(0.5); }
    25%, 40% { transform: scale(1.15); filter: grayscale(0%) opacity(1); }
    60%, 90% { transform: scale(1.1); filter: grayscale(0%) opacity(1); filter: drop-shadow(0 0 10px rgba(34,197,94,0.3)); }
}
@keyframes pulse2 {
    0%, 24%, 41%, 59%, 95%, 100% { opacity: 0; transform: scale(0.8); }
    25%, 35% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 40px var(--niche-accent, #00b4d8); background: rgba(0, 180, 216, 0.1); border-color: var(--niche-accent, #00b4d8);}
    60%, 90% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 40px rgba(34,197,94,0.8); background: rgba(34,197,94,0.15); border-color: #22c55e;}
}
@keyframes label2 {
    0%, 24%, 41%, 59%, 95%, 100% { opacity: 0; transform: translateY(15px); text-shadow: none; color: #fff;}
    25%, 40% { opacity: 1; transform: translateY(0); text-shadow: 0 4px 15px var(--niche-accent, #00b4d8); color: #fff;}
    60%, 90% { opacity: 1; transform: translateY(0); text-shadow: 0 4px 15px #22c55e; color: #22c55e;}
}

/* === SEQUENCE 3 === (40% to 55%, then 60%-90% green) */
@keyframes nodeSeq3 {
    0%, 39%, 56%, 59%, 95%, 100% { transform: scale(0.9); filter: grayscale(100%) opacity(0.5); }
    40%, 55% { transform: scale(1.15); filter: grayscale(0%) opacity(1); }
    60%, 90% { transform: scale(1.1); filter: grayscale(0%) opacity(1); filter: drop-shadow(0 0 10px rgba(34,197,94,0.3)); }
}
@keyframes pulse3 {
    0%, 39%, 56%, 59%, 95%, 100% { opacity: 0; transform: scale(0.8); }
    40%, 50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 40px var(--niche-accent, #00b4d8); background: rgba(0, 180, 216, 0.1); border-color: var(--niche-accent, #00b4d8);}
    60%, 90% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 40px rgba(34,197,94,0.8); background: rgba(34,197,94,0.15); border-color: #22c55e;}
}
@keyframes label3 {
    0%, 39%, 56%, 59%, 95%, 100% { opacity: 0; transform: translateY(15px); text-shadow: none; color: #fff;}
    40%, 55% { opacity: 1; transform: translateY(0); text-shadow: 0 4px 15px var(--niche-accent, #00b4d8); color: #fff;}
    60%, 90% { opacity: 1; transform: translateY(0); text-shadow: 0 4px 15px #22c55e; color: #22c55e;}
}

@media (max-width: 768px) {
    .visual-anim-stage {
        flex-direction: column;
        height: 600px;
        margin-top: 40px;
    }
    .anim-track {
        width: 4px;
        height: 80%;
        left: 50%;
        top: 10%;
        transform: translateX(-50%);
    }
    @keyframes tracePath {
        0% { height: 0%; transform: translateY(-10%); opacity: 0; background: linear-gradient(180deg, transparent, var(--niche-accent, #00b4d8), #fff); }
        5% { opacity: 1; }
        50% { height: 100%; transform: translateY(0%); opacity: 1;}
        60%, 90% { height: 100%; transform: translateY(0%); opacity: 1; background: linear-gradient(180deg, transparent, #22c55e, #10b981); }
        95%, 100% { height: 100%; transform: translateY(50%); opacity: 0;}
    }
}


/* ==========================================
   V7: EXPANDING ACCORDION (SURPRISE PREMIUM)
   ========================================== */
.surprise-motives {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.expansion-accordion {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 20px;
    margin-top: 30px;
}

.expand-card {
    position: relative;
    flex: 1; 
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.2, 1, 0.2, 1);
    background: #080808;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Hover State - Expansion */
.expand-card:hover {
    flex: 3.5; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px var(--niche-accent, rgba(0,180,216,0.2));
    border-color: rgba(255,255,255,0.15);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1), filter 0.7s ease;
}

.bg-image {
    filter: grayscale(80%) brightness(0.5);
}

.expand-card:hover .card-bg {
    transform: scale(1.05);
}

.expand-card:hover .bg-image {
    filter: grayscale(0%) brightness(1.1);
}

/* Texture generation for dynamic panels */
.texture-metallic {
    background: linear-gradient(145deg, #18181f 0%, #08080a 100%);
    overflow: hidden;
}
.metallic-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    opacity: 0.5;
    transition: opacity 0.5s;
}
.expand-card:hover .metallic-glow { opacity: 1; transform: scale(1.2); }

.texture-cyber {
    background: #050508;
    overflow: hidden;
}
.cyber-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,180,216,0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,180,216,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridMove 15s linear infinite;
    opacity: 0.3;
    transition: opacity 0.5s;
}
.expand-card:hover .cyber-grid { opacity: 1; }

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(100px) translateZ(-200px); }
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    opacity: 0.9;
    transition: opacity 0.5s;
}
.expand-card:hover .card-overlay { opacity: 0.7; }

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-icon-glass {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    color: rgba(255,255,255,0.6);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.expand-card:hover .card-icon-glass {
    background: var(--niche-accent, rgba(0,180,216,0.1));
    border-color: var(--niche-accent, #00b4d8);
    color: var(--niche-accent, #00b4d8);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card-text {
    position: relative;
    width: 100%;
}

.card-meta {
    font-family: monospace;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: all 0.5s;
}

.expand-card:hover .card-meta {
    color: var(--niche-accent, #00b4d8);
    transform: translateY(0);
}

.card-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    color: rgba(255,255,255,0.8);
}

.expand-card:hover .card-text h3 {
    transform: translateY(0px);
    color: #fff;
    margin-bottom: 15px;
}

.card-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.expand-card:hover .card-text p {
    opacity: 1;
    height: auto;
    transform: translateY(0);
    transition-delay: 0.1s;
}

@media (max-width: 990px) {
    .expansion-accordion {
        flex-direction: column;
        height: 1000px;
    }
    .expand-card {
        flex: 1;
    }
    .expand-card:hover {
        flex: 2;
    }
    .card-text h3 { font-size: 1.6rem; white-space: normal;}
    .expand-card .card-text p { opacity: 1; height: auto; transform: none; display:none; }
    .expand-card:hover .card-text p { display:block; }
}


/* ==========================================
   V8: MONOLITH ASCENSION STEPS (TOP PREMIUM)
   ========================================== */
.monopath-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.monopath-line-wrapper {
    position: absolute;
    top: 75px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255,255,255,0.05);
    z-index: -1;
}

.monopath-beam {
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--niche-accent, #00b4d8), #fff);
    animation: beamShoot 6s infinite cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 0 0 20px var(--niche-accent, #00b4d8);
}

@keyframes beamShoot {
    0% { width: 0%; transform: translateX(0%); opacity: 0; }
    5% { opacity: 1; }
    50% { width: 60%; transform: translateX(100%); opacity: 1; }
    60%, 100% { width: 0%; transform: translateX(200%); opacity: 0; }
}

.monopath-card {
    background: rgba(10,12,18,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 30px;
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Asymmetrical Cascade to show dynamic motion rather than a boring flat grid */
.step-1 { transform: translateY(0); }
.step-2 { transform: translateY(40px); }
.step-3 { transform: translateY(80px); }

.monopath-card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255,255,255,0.1);
    background: rgba(15,18,25,0.9);
}

/* Re-adjust individual hover translations so cascade maintains aesthetic */
.step-1:hover { transform: translateY(-15px) scale(1.02); }
.step-2:hover { transform: translateY(25px) scale(1.02); }
.step-3:hover { transform: translateY(65px) scale(1.02); }

.monopath-number {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 15rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    z-index: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    letter-spacing: -5px;
}

.monopath-card:hover .monopath-number {
    -webkit-text-stroke: 1px var(--niche-accent, rgba(0,180,216,0.15));
    transform: translate(-10px, 15px) scale(1.05);
}

.monopath-content {
    position: relative;
    z-index: 1;
}

.mono-icon-glow {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--niche-accent, #00b4d8);
    margin-bottom: 35px;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.02);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.mono-stroke {
    filter: drop-shadow(0 0 5px transparent);
    transition: all 0.6s;
}

.monopath-card:hover .mono-icon-glow {
    background: var(--niche-accent, #00b4d8);
    color: #fff;
    box-shadow: 0 15px 35px var(--niche-accent, rgba(0,180,216,0.5));
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--niche-accent, #00b4d8);
}

.monopath-card:hover .mono-stroke {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

.monopath-content h3 {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.monopath-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
    transition: color 0.4s;
}

.monopath-card:hover .monopath-content p {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
    .monopath-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .monopath-line-wrapper { display: none; }
    .step-1, .step-2, .step-3, 
    .step-1:hover, .step-2:hover, .step-3:hover {
        transform: none;
    }
    .monopath-card:hover { transform: translateY(-10px); }
}


/* ==========================================
   V9: MAGAZINE HOMEPAGE TESTIMONIALS (TOP PREMIUM)
   ========================================== */
.magazine-testimonial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mag-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
}

.mag-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1), filter 0.8s;
    filter: brightness(0.6) grayscale(20%);
}

.mag-card:hover .mag-bg {
    transform: scale(1.05);
    filter: brightness(0.9) grayscale(0%);
}

.mag-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    transition: opacity 0.5s;
}

.mag-card:hover .mag-overlay {
    opacity: 0.8;
}

.mag-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 50px;
    color: #fff;
    z-index: 2;
}

.mag-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.star-icon {
    width: 22px;
    height: 22px;
    color: #fbbf24;
    filter: drop-shadow(0 2px 10px rgba(251, 191, 36, 0.5));
}

.mag-card:hover .mag-stars {
    transform: translateY(0);
    opacity: 1;
}

.mag-quote {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-style: italic;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.5px;
}

.mag-author {
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(15px);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.mag-indicator {
    width: 4px;
    height: 40px;
    background: var(--niche-accent, #00b4d8);
    border-radius: 4px;
    box-shadow: 0 0 15px var(--niche-accent, rgba(0,180,216,0.6));
}

.mag-author h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.mag-verified {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mag-card:hover .mag-author {
    transform: translateY(0);
}

/* Secondary Column */
.mag-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 600px;
}

.mag-card.flex-row {
    height: 100%;
    flex: 1;
}

.mag-overlay-side {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    transition: opacity 0.5s;
}

.mag-card.flex-row:hover .mag-overlay-side {
    opacity: 0.8;
}

.mag-content-side {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    z-index: 2;
}

.mag-quote-small {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    margin: 20px 0 0 0;
    color: rgba(255,255,255,0.9);
}

.side-author h4 {
    font-size: 1.1rem;
    margin: 0 10px 0 0;
    display: inline-block;
}

.side-author { display: flex; align-items: center; flex-wrap: wrap; }

@media (max-width: 950px) {
    .magazine-testimonial-grid { grid-template-columns: 1fr; }
    .mag-col { height: auto; }
    .mag-card.flex-row { height: 350px; }
    .mag-overlay-side { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 80%); }
    .mag-content-side { width: 100%; justify-content: flex-end; padding: 30px; }
}


/* ==========================================
   V10: ALUMNOS GALLERY WITH PREMIUM GRID BG
   ========================================== */
.gallery-bg {
    background-color: #030408;
    position: relative;
}

.premium-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    z-index: 0;
}

.premium-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, #030408 100%);
    pointer-events: none;
    z-index: 1;
}

.magazine-testimonial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mag-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
}

.mag-card:hover {
    box-shadow: 0 30px 60px var(--niche-accent, rgba(0,180,216,0.2));
    border-color: rgba(255,255,255,0.15);
}

.mag-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1);
}

.mag-card:hover .mag-bg {
    transform: scale(1.05);
}

.mag-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 600px;
}

.mag-card.flex-row {
    height: 100%;
    flex: 1;
}

@media (max-width: 950px) {
    .magazine-testimonial-grid { grid-template-columns: 1fr; }
    .mag-col { height: auto; }
    .mag-card.flex-row { height: 350px; }
}


/* ==========================================
   V11: AEO BENTO DATA DASHBOARD
   ========================================== */
.aeo-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.data-card {
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 20px 40px rgba(0,0,0,0.5);
}

.aeo-main {
    grid-column: span 2;
}

.data-card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 30px 60px rgba(0,0,0,0.8);
    background: rgba(15, 20, 35, 0.6);
    transform: translateY(-5px);
}

.data-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.data-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: -0.5px;
}

.data-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-family: monospace;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.data-card:hover .data-badge {
    color: var(--niche-accent, #00b4d8);
    border-color: var(--niche-accent, rgba(0,180,216,0.3));
    background: var(--niche-accent, rgba(0,180,216,0.05));
}

.data-body p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.data-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-list li {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.data-card:hover .data-body p, .data-card:hover .data-list li {
    color: rgba(255,255,255,0.9);
}

.data-check {
    color: var(--niche-accent, #00b4d8);
    font-weight: bold;
}

.data-list strong {
    color: #fff;
}

/* Cyber Scanline effect on Main */
.data-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--niche-accent, rgba(0,180,216,0.1)) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.data-card:hover .data-scanline {
    opacity: 1;
    animation: scanAeo 3s infinite linear;
}

@keyframes scanAeo {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

@media (max-width: 800px) {
    .aeo-main { grid-column: span 1; }
    .aeo-bento-grid { grid-template-columns: 1fr; }
}


/* ==========================================
   V12: ORGANIC GEO DASHBOARD (NO BLOCKS)
   ========================================== */
.organic-geo {
    background: #000;
}

/* Moving Light Orbs */
.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    animation: drift 30s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-1 {
    top: -20%; left: -10%;
    width: 800px; height: 800px;
    background: var(--niche-accent, rgba(0, 180, 216, 0.3));
    animation-delay: 0s;
}

.orb-2 {
    bottom: -30%; right: -10%;
    width: 1000px; height: 1000px;
    background: rgba(34, 197, 94, 0.15); /* very subtle organic green */
    animation-delay: -5s;
}

.orb-3 {
    top: 60%; left: 40%;
    width: 600px; height: 600px;
    background: rgba(150, 50, 255, 0.12); /* deep purple touch for depth */
    transform: translate(-50%, -50%);
    animation-delay: -15s;
}

@keyframes drift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(150px, -150px); }
}

.organic-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Organic Flow Layout */
.organic-flow-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.organic-item {
    position: relative;
}

.main-flow {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.flow-marker {
    width: 3px;
    height: 150px;
    background: linear-gradient(to bottom, var(--niche-accent, #00b4d8), transparent);
    border-radius: 6px;
    margin-top: 15px;
    opacity: 0.8;
}

.flow-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.flow-lead {
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    max-width: 1000px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
    margin: 0;
    letter-spacing: -0.5px;
}

.organic-flow-split {
    display: flex;
    gap: 120px;
    margin-left: 53px; /* Align with text from main-flow considering marker width and gap */
}

.side-flow {
    flex: 1;
}

.side-flow .flow-content h3 {
    font-size: 1rem;
    color: var(--niche-accent, #00b4d8);
    display: flex;
    align-items: center;
    gap: 15px;
    letter-spacing: 3px;
}

.flow-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--niche-accent, #00b4d8);
    box-shadow: 0 0 15px var(--niche-accent, #00b4d8);
}

.side-flow .flow-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin: 0 0 25px 0;
    font-weight: 300;
}

.side-flow .flow-content strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .organic-flow-split {
        flex-direction: column;
        gap: 80px;
        margin-left: 0;
    }
    .main-flow { gap: 25px; }
    .flow-marker { display: none; }
    .flow-lead { font-size: 1.8rem; }
    .organic-geo { padding: 100px 0; }
    .section-title-glow { font-size: 2.5rem !important; margin-bottom: 60px !important; }
}


Z(0deg); }
    100% { transform: rotateX(60deg) rotateZ(360deg); }
}

/* Typography Labels */
.hud-label {
    margin-top: 50px;
    text-align: center;
}

.label-center {
    margin-top: 70px;
}

.hud-label h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hud-label p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile Fallback */
@media (max-width: 900px) {
    .orbital-hud-stage {
        flex-direction: column;
        height: auto;
        gap: 80px;
    }
    .hud-connection-lines {
        display: none;
    }
    .label-center { margin-top: 50px; }
}


/* ==========================================
   V14: 3D ISOMETRIC HOLOGRAM STACK (RESPONSIVE FLAT FIX)
   ========================================== */
.holographic-stage {
    perspective: 1500px;
}

.hologram-container {
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    cursor: crosshair;
}

.hologram-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 220px;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.hologram-container:hover .hologram-wrapper {
    transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg) scale(1);
}

/* Floor Grid */
.holo-grid {
    position: absolute;
    inset: -600px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 50px 50px;
    transform: translateZ(-50px);
    opacity: 0.2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 60%);
    transition: all 0.8s;
}

.hologram-container:hover .holo-grid {
    opacity: 0.02;
    transform: translateZ(-200px);
}

.holo-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

/* Base Rest State (Stacked Isometric) */
.layer-1 { transform: translateZ(0px); animation: float1 4s infinite alternate ease-in-out; z-index: 1; }
.layer-2 { transform: translateZ(40px); animation: float2 4.5s infinite alternate ease-in-out; animation-delay: -1s; z-index: 2;}
.layer-3 { transform: translateZ(80px); animation: float3 5s infinite alternate ease-in-out; animation-delay: -2s; z-index: 3;}

/* Expanded State on Hover (Flat Panel Layout side-by-side) 
   We explicitly set translateZ to 0 so z-index rules apply */
.hologram-container:hover .layer-1 { transform: translateX(-110%) translateZ(0px); }
.hologram-container:hover .layer-2 { transform: translateX(0%) translateZ(0px); }
.hologram-container:hover .layer-3 { transform: translateX(110%) translateZ(0px); }

/* The translucent glass plane */
.holo-box {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    box-shadow: 
        inset 0 0 20px rgba(255,255,255,0.05),
        -5px 5px 15px rgba(0,0,0,0.5);
    transition: all 0.5s;
}

.layer-2 .holo-box { border-color: var(--niche-accent, rgba(0,180,216,0.5)); background: rgba(0,180,216,0.1); }
.layer-3 .holo-box { border-color: rgba(34,197,94,0.5); background: rgba(34,197,94,0.1); }

/* Solidify when hovering flat */
.hologram-container:hover .layer-1 .holo-box { border-color: rgba(255,255,255,0.3); background: rgba(20,25,35,0.95); box-shadow: 0 20px 40px rgba(0,0,0,0.9); }
.hologram-container:hover .layer-2 .holo-box { border-color: var(--niche-accent, rgba(0,180,216,0.8)); background: rgba(20,25,35,0.95); box-shadow: 0 20px 40px rgba(0,0,0,0.9); }
.hologram-container:hover .layer-3 .holo-box { border-color: #22c55e; background: rgba(20,25,35,0.95); box-shadow: 0 20px 40px rgba(0,0,0,0.9); }

/* Content mapped inside the 3D plane */
.holo-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    transform: translateZ(20px); /* Pop out from glass slightly */
    transform-style: preserve-3d;
}

.holo-num {
    font-size: 6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    position: absolute;
    right: 15px;
    bottom: -15px;
    opacity: 0.4;
    transition: all 0.5s;
    line-height: 1;
}

.layer-2 .holo-num { -webkit-text-stroke: 1px var(--niche-accent, rgba(0,180,216,0.3)); }
.layer-3 .holo-num { -webkit-text-stroke: 1px rgba(34,197,94,0.3); }

/* On hover, pop the number out even further */
.hologram-container:hover .holo-num {
    opacity: 1;
    transform: translateZ(50px) translateY(-10px);
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
}

.holo-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateZ(10px);
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    transition: color 0.5s;
}

.holo-content p {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    margin: 5px 0 0 0;
}

/* Continuous Floating */
@keyframes float1 { 0% { transform: translateZ(0px) translateY(0px); } 100% { transform: translateZ(5px) translateY(-5px); } }
@keyframes float2 { 0% { transform: translateZ(40px) translateY(0px); } 100% { transform: translateZ(45px) translateY(-5px); } }
@keyframes float3 { 0% { transform: translateZ(80px) translateY(0px); } 100% { transform: translateZ(85px) translateY(-8px); } }

/* Fix animation conflicts on hover */
.hologram-container:hover .layer-1, 
.hologram-container:hover .layer-2, 
.hologram-container:hover .layer-3 {
    animation: none;
}

/* Responsiveness */
@media (max-width: 1150px) {
    .hologram-container:hover .hologram-wrapper {
        transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg) scale(0.9);
    }
}

@media (max-width: 950px) {
    .hologram-container:hover .hologram-wrapper {
        transform: translate(-50%, -50%) rotateX(0deg) rotateZ(0deg) scale(0.7);
    }
}

@media (max-width: 760px) {
    .hologram-container { height: 900px; max-width: 100%; overflow: hidden;}
    .hologram-wrapper { width: 300px; height: 200px; }
    .hologram-container:hover .hologram-wrapper { transform: translate(-50%, -50%) rotateX(0) rotateZ(0) scale(1.1); }
    .hologram-container:hover .layer-1 { transform: translateX(0) translateY(-110%) translateZ(0px); }
    .hologram-container:hover .layer-2 { transform: translateX(0) translateY(0px) translateZ(0px); }
    .hologram-container:hover .layer-3 { transform: translateX(0) translateY(110%) translateZ(0px); }
}
