/* CSS Reset & Variables */
:root {
    --bg-dark: #000000;
    --bg-card: #000000;
    --primary: #9ECD56;
    /* Electric Blue */
    --secondary: #743187;
    /* Neon Purple */
    --alernative: #F03489;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--text-main);
    color: #000;
}

/* Navbar */
.logo-header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    /* Above navbar */
}

.logo-header img {
    height: 120px;
    /* Adjust size as needed */
    width: auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: fixed;
    top: 165px;
    /* Pushed down to make room for logo */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Increased from 90% to stick closer to edges */
    max-width: 1400px;
    /* Increased from 1200px to match cards */
    background: rgba(255, 255, 255, 0.05);
    /* Lighter transparency for glass effect */
    backdrop-filter: blur(15px);
    /* Matches floating-badge */
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-radius: 50px;
    /* Pill shape */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: top 0.4s ease-in-out;
    /* Smooth transition for scroll effect */
}

/* Dark Mode Dynamic Navbar */
.navbar.dark-mode {
    background: rgba(0, 0, 0, 0.1);
    /* Slightly darker glass for contrast on bright bg */
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar.dark-mode .nav-links a {
    color: #D03488;
    /* Pink from Social Strip */
}

.navbar.dark-mode .nav-links a:hover {
    color: #333;
}

.navbar.dark-mode .btn-primary {
    background: #000;
    border: 2px solid #000;
    color: #fff;
    box-shadow: none;
}

.navbar.dark-mode .btn-primary:hover {
    background: transparent;
    color: #000;
}

.navbar.dark-mode .menu-toggle {
    color: #000;
}

.navbar.dark-mode .mobile-contact-icon img {
    filter: invert(1);
}

.navbar.scrolled {
    top: 40px;
}

.nav-btn {
    padding: 10px 25px;
    font-size: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    /* Adjust height to fit navbar */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 600;
    /* Added to match dark mode and prevent shift */
}

.nav-links li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-overlay {
    display: none;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Changed from space-between to center per user request */
    gap: 60px;
    /* Bring them closer together */
    overflow: hidden;
    position: relative;
    /* For the slider positioning */
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    z-index: 2;
}

.hero-slide {
    display: none !important;
    /* Completely hidden when inactive */
    width: 100%;
}

.hero-slide.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 150px 10% 0;
    gap: 60px;
    opacity: 0;
    animation: fadeInSlide 1.5s forwards;
    z-index: 3;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Ensure content and image behave inside the slide grid container */
.hero-slide .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide .hero-image {
    width: 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 50%;
}

.hero-content .subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.0;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    word-break: normal;
    overflow-wrap: anywhere;
}

/* Promotional Hero Specific Typography to prevent wrapping */
.hero-promocion .hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    /* Smaller max size for long words */
    overflow-wrap: normal;
    /* Allow long words to dictate width if needed, or wrap naturally */
    word-break: keep-all;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-promocion .hero-content p {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    z-index: 2;
    /* Removed width: 45% and align-self: flex-end to allow slider flex to control layout */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Push to bottom so it touches the boundary */
}

.hero-image .image-wrapper {
    position: relative;
    width: auto;
    height: 480px;
    /* Adjusted to 480px per user request */
    margin-left: 30px;
    /* Nudged right per user request */
    margin-bottom: -60px;
    /* Pull it into the strip aggressively as per Figma/user */
}

.hero-image img {
    display: block;
    /* Removes baseline gap */
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    vertical-align: text-bottom;
    /* Ensure image sits at bottom of wrapper */
    /* Changed to contain to show full cutout */
    /* border-radius: 20px; removed for cutout */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    /* Added drop-shadow for depth */
    /* Basic cutout styling if using a cutout image, simplified here */
    /* mask-image removed for transparent PNG */
    z-index: 2;

    /* Fix for blurriness on resize/transform */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
    transition: transform 0.3s ease;
    /* Only animate transform, not width/height */
}

/* Specific styling for the promotional hero image to make it float */
.promo-float {
    animation: float 4s ease-in-out infinite;
    max-height: 85%;
    /* Make it slightly smaller as requested */
    margin-bottom: 0;
}

.hero-image .glow-effect,
.about-image .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    border-radius: 50%;
}

.floating-badge {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
    overflow: hidden;
}

.badge-secondary {
    width: 150px;
    height: 150px;
    bottom: 220px;
    left: 280px;
    animation-delay: 0s;
}

.badge-primary {
    bottom: 30px;
    /* Positioned lower */
    left: -20px;
    /* Positioned on the left side */
    animation-delay: -1.5s;
    /* Offset animation */
}

.floating-badge img {
    width: 35%;
    height: auto;
    object-fit: contain;
}

.badge-secondary img {
    width: 45%;
    margin-top: 60px;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(119, 40, 117, 0.20);
    /* Purple */
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(119, 40, 117, 0.20);
    /* Blue */
}

/* Hero & About Particle Animation */
#hero-particles,
#about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content, in front of bg shapes */
    pointer-events: none;
    opacity: 0.4;
    /* Reduced opacity for subtlety */
}

/* Social Strip */
.social-strip {
    padding: 30px 0;
    background: #D03488;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Ensure stacking context */
    z-index: 10;
    /* Sit above hero particles */
}

.social-strip h3 {
    text-align: center;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-track {
    display: flex;
    justify-content: center;
    gap: 50px;
    opacity: 0.6;
}

.logo-item {
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo-item:hover {
    color: var(--secondary);
    transform: translateY(-3px);
    opacity: 1;
    /* Ensure full opacity on hover */
}

@media (max-width: 768px) {
    .logos-track {
        flex-wrap: nowrap;
        gap: 30px;
    }

    .logo-item {
        font-size: 0;
        gap: 0;
    }

    .logo-item i {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 100px 10%;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    width: 40%;
    position: relative;
}

.about-img-full {
    width: 100%;
    max-width: 500px;
    /* Reduced limit from 900px to 700px for laptop balance */
    height: auto;
    border-radius: 20px;
    /* Soft edges */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.floating-orb {
    position: absolute;
    bottom: 30px;
    left: -40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.about-text {
    width: 50%;
    position: relative;
    z-index: 2;
    /* Elevate above particles (z-index: 1) to ensure buttons are clickable */
}

.about-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text p b {
    color: var(--primary);
    font-weight: 600;
}

/* Video Showcase Section */
.video-section {
    padding: 80px 10%;
    background: var(--primary);
    /* Changed to Primary */
    position: relative;
    overflow: hidden;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-header {
    text-align: center;
    margin-bottom: 0px;
}

.video-header h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    /* Updated gradient: Pink to Light Purple/Grey */
    background: linear-gradient(to right, #d03488, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.video-header p {
    color: #444;
    /* Dark grey for subtitle */
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 50px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    /* Device Shadow + Screen Glint */
    border: 20px solid #1a1a1a;
    /* Device Bezel */
    z-index: 2;
}

/* iPad Camera Dot */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: -12px;
    /* Inside top bezel */
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
    z-index: 10;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Glow removed as background is already bright */
.video-glow {
    display: none;
}

.stats-mini {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
}

/* Socials Mini (New) */
.socials-mini {
    display: flex;
    gap: 15px;
}

.socials-mini a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.socials-mini a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(158, 205, 86, 0.4);
    border-color: var(--primary);
}

/* Video Modal Logic */
#videoTrigger {
    cursor: pointer;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 20px solid #1a1a1a;
    width: 90%;
    aspect-ratio: 16/9;
    margin: 0 auto 20px;
    /* Centered with bottom margin */
    /* Force consistent video shape */
    background: #000;
    /* Fallback */
}

#videoTrigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#videoTrigger:hover img {
    transform: scale(1.03);
}

/* Restored Play Button Styles */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    /* Visual center fix for play icon */
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
    /* Ensure on top of image */
    pointer-events: none;
    /* Let clicks pass to parent trigger */
}

#videoTrigger:hover .play-button {
    background: var(--primary);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(158, 205, 86, 0.6);
}

.modal-content-video {
    background: transparent;
    width: 90%;
    max-width: 1000px;
    position: relative;
    animation: modalPop 0.4s ease forwards;
}

.video-frame-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-video:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.hidden {
    display: none !important;
}

/* Remove Cinematic Specifics (Clean up) */
/* .video-section.cinematic removed */

.stat-box {
    text-align: left;
}

.stat-box .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-box .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* Methodology Section */
/* Methodology Section */
.methodology-section {
    padding: 100px 10% 140px;
    /* Top 100, Bottom 140 */
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient starts pink on left, fades to transparent by 45% */
    background: linear-gradient(to right, rgba(208, 52, 136, 0.5) 0%, transparent 45%);
    /*background: url('https://www.transparenttextures.com/patterns/absurdity.png');*/
    opacity: 0.5;
    /* Overlay opacity */
    z-index: 0;
}

.methodology-section * {
    position: relative;
    z-index: 1;
}


.methodology-section h2 {
    margin-bottom: 50px;
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* New Modules Layout */
/* New Modules Layout */
.modules-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    max-width: 1400px;
    /* Allow 3 cards (400*3 + 60 gap = 1260) */
    margin: 0 auto;
}

.module-card-large {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 400px;
    /* Restored */
    overflow: hidden;
    /* Restored */
    transition: var(--transition);
    position: relative;
    /* cursor: pointer; removed */
}

/* Hover and Active styling for all modules */
.module-card-large:hover,
.module-card-large.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(158, 205, 86, 0.2);
}

.module-card-large:hover h3,
.module-card-large.active h3,
.module-card-large:hover i,
.module-card-large.active i,
.module-card-large:hover .module-toggle-btn,
.module-card-large.active .module-toggle-btn {
    color: var(--bg-dark);
}

.module-card-large:hover .module-icon,
.module-card-large.active .module-icon {
    /*background: none;*/
    -webkit-text-fill-color: var(--secondary);
    color: var(--secondary);
}

.module-card-large:hover .module-toggle-btn,
.module-card-large.active .module-toggle-btn {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.module-card-large:hover .syllabus-list i,
.module-card-large.active .syllabus-list i {
    color: var(--secondary);
}

.module-card-large:hover .syllabus-list strong,
.module-card-large.active .syllabus-list strong {
    color: #000;
}

.module-card-large:hover .syllabus-list p,
.module-card-large.active .syllabus-list p {
    color: rgba(0, 0, 0, 0.7);
}

.module-header {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.module-icon {
    font-size: 3rem;
    /*margin-bottom: 20px;*/
    color: var(--primary);
    transition: var(--transition);
}

.module-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.module-toggle-btn {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.module-toggle-btn i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.module-toggle-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
}

/* .module-card-large.active .module-content handled via JS */

.module-card-large.active .module-toggle-btn i {
    transform: rotate(90deg);
}

.syllabus-list {
    padding: 20px 30px;
    list-style: none;
}

.syllabus-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #000;
}

.module-content strong {
    color: #000 !important;
    font-weight: 700;
}

.syllabus-list i {
    color: var(--secondary);
    font-size: 1.1rem;
    /* Adjust if needed */
    margin-top: 3px;
    /* Align with text */
}

.syllabus-list li:last-child {
    margin-bottom: 0;
}

.syllabus-list li i {
    margin-top: 5px;
    color: var(--secondary);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.syllabus-list li strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}

.syllabus-list li p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    color: var(--text-muted);
}

.module-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.module-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Resources/Book Section */
.resources-section {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    background: #080812;
}

.product-content {
    width: 50%;
}

.product-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.feature-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.product-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.book-mockup {
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.book-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.book-mockup img {
    max-width: 300px;
    border-radius: 5px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
}

/* Academy Section */
.academy-section {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(to bottom, var(--bg-dark), #0f0f1a);
    position: relative;
    overflow: hidden;
}

.academy-header {
    width: 45%;
    position: relative;
    z-index: 2;
}

.academy-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.academy-features {
    display: flex;
    flex-wrap: wrap;
    /* Allow items to wrap if needed */
    gap: 30px;
    margin-top: 30px;
}

.academy-features .feat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-weight: 600;
    white-space: nowrap;
    /* Prevent text breaking */
}

.academy-features .feat i {
    font-size: 1.2rem;
    color: var(--secondary);
    /* Keep icon purple */
}

.academy-visuals {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.academy-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: 0.8;
    -webkit-mask-image: linear-gradient(to right, transparent, black 60%);
    mask-image: linear-gradient(to right, transparent, black 60%);
}

.floating-card {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.floating-card span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
}

/* Impact Section */
.impact-section {
    padding: 80px 10%;
    background: #0d0d16;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stats-content {
    z-index: 2;
    width: 60%;
}

.stats-content h2 .highlight {
    color: var(--primary);
    background: none;
    -webkit-text-fill-color: var(--primary);
}

.stats-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #fff;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stat-item i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    z-index: 1;
    pointer-events: none;
}

.map-visual img {
    width: 100%;
    opacity: 0.1;
    /* Creating watermark effect */
}

/* Testimonials */
.testimonials-section {
    padding: 100px 10%;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.testimonials-section p {
    color: var(--text-muted);
    margin-bottom: 50px;
}

.testimonials-slider {
    width: 100%;
    overflow: hidden;
    /* Hide scrollbar */
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonials-track {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: max-content;
    /* Allow items to determine width */
    /* No CSS animation here, will use JS */
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    width: 300px;
    cursor: pointer;
    /* Interaction feedback */
    text-align: left;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.card-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content h4 {
    font-size: 1.1rem;
}

.card-content .role {
    color: var(--primary);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 0;
}

/* ----------------------------------------------------
   FAQ SECTION (ACCORDION)
   ---------------------------------------------------- */
.faq-section {
    padding: 100px 10%;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.faq-section .section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding-top: 150px !important;
    }
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(188, 19, 254, 0.3);
    /* Purple tint on hover */
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    padding-right: 20px;
    transition: var(--transition);
}

.faq-icon {
    color: var(--primary);
    /* Green accent */
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--secondary);
    /* Purple active state */
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    /* Set a large enough max-height via JS ideally, or a fixed large value here for CSS only */
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.faq-answer b {
    color: var(--primary)
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 10%;
    background: linear-gradient(to top, #1a0b2e, var(--bg-dark));
}

.contact-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1000px;
    /* Constrain width on large screens */
    margin: 0 auto;
    /* Center the wrapper */
    width: 100%;
}

.contact-info {
    width: 50%;
    /* Adjusted to 50% per user request */
    padding: 60px;
    background: rgba(188, 19, 254, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a0a0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 3rem;
}

.contact-details {
    margin: 40px 0;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--primary);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #fff;
}

.social-links a:hover {
    background: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
}

.price-badge {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    color: var(--primary);
    border: 1px solid rgba(158, 205, 86, 0.3);
    vertical-align: middle;
}

.contact-form {
    width: 50%;
    /* Adjusted to balance the 50/50 split */
    padding: 60px;
}

/* Remove ugly spinners from number input */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
    -webkit-appearance: textfield;
}

.form-group {
    margin-bottom: 50px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(158, 205, 86, 0.3);
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(158, 205, 86, 0.3);
}

/* Custom Form Styles */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.half {
    width: 50%;
}

.hidden {
    display: none;
}

.contact-form select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-main);
    transition: var(--transition);
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.contact-form select option {
    background: #000;
    color: #fff;
}

/* Center Contact Form Button */
.contact-form button[type="submit"] {
    display: block;
    margin: 20px auto 0;
    width: 80%;
    /* Match modal width */
    max-width: 350px;
    min-width: 0;
    padding: 15px 20px;
    white-space: nowrap;
    letter-spacing: 0px !important;
}

/* Footer */
footer {
    padding: 30px 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Force right positioning */
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(158, 205, 86, 0.6);
}

/* Tablet Landscape / Small Laptop Override (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {

    /* Specific Tablet Landscape styles */
    .mobile-menu-overlay {
        display: none !important;
    }

    .hero-image .image-wrapper {
        position: relative;
        width: auto;
        height: 500px;
        margin-left: -15px;
    }

    .contact-info {
        width: 40%;
        padding: 50px;
        background: rgba(188, 19, 254, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-form {
        width: 60%;
        padding: 50px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 5rem !important;
    }

    /* Navbar Tablet Adjusment */
    .navbar {
        width: 95%;
        padding: 15px 40px !important;
        /* Tablet Portrait padding */
    }

    /* .module-card-large {
        width: 100%; already set */
    /* max-width: 400px; already set 
    }*/

    /* .modules-container grid override removed as we are back to flex */

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 0;
        /* Removed margin per user request */
    }

    .hero-image {
        width: 100%;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-width: 500px;
        /* User requested limit */
        margin: 0 auto 30px;
        /* Center and add spacing */
        text-align: center;
    }

    .about-text {
        width: 100%;
        text-align: center;
    }

    .about-actions {
        justify-content: center;
    }

    .stats-mini {
        justify-content: center;
    }

    .product-section {
        flex-direction: column;
    }

    .product-content,
    .product-image {
        width: 100%;
    }

    .product-image {
        margin-top: 50px;
    }

    .academy-section {
        flex-direction: column-reverse;
    }

    .academy-header,
    .academy-visuals {
        width: 100%;
        text-align: left;
        /* Ensure left alignment */
    }

    .academy-features {
        justify-content: flex-start !important;
        /* Force left alignment */
        margin-left: 0 !important;
    }

    .stats-section {
        flex-direction: column;
        text-align: center;
    }

    .stats-content {
        width: 100%;
    }

    .stats-grid {
        justify-content: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        padding: 40px;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
        color: #fff;
    }

    /* Navbar Stacking Context Fix */
    .navbar {
        isolation: isolate;
        /* Create new stacking context */
    }

    /* Mobile Menu Overlay Styles */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.7);
        /* Glassy Dark */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);

        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center Vertically */
        align-items: center;
        /* Center Horizontally */

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s ease-in-out;
        z-index: 2000;
        /* Super high to cover everything */

        /* Prevent Switch/Scroll */
        overflow: hidden;
        touch-action: none;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .mobile-links {
        list-style: none;
        text-align: center;
        width: 100%;
    }

    .mobile-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .mobile-menu-overlay.active .mobile-links li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Animation */
    .mobile-menu-overlay.active .mobile-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-menu-overlay.active .mobile-links li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .mobile-menu-overlay.active .mobile-links li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .mobile-menu-overlay.active .mobile-links li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .mobile-menu-overlay.active .mobile-links li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .mobile-menu-overlay.active .mobile-links li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .mobile-links a {
        font-size: 1.5rem;
        /* Big Fonts */
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
    }

    .mobile-links a:hover {
        color: var(--primary);
    }

    /* Close Button */
    .mobile-menu-close {
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        transition: color 0.3s;
    }

    .mobile-menu-close:hover {
        color: var(--primary);
    }

    /* Hide Original Nav Links on Mobile */
    .nav-links {
        display: none !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }

    /* Hide the 'Contacto' button inside navbar on mobile if needed, or adjust it. 
       Currently the Contact button is outside nav-links, so it stays visible in the pill. 
       That's good. */
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Force right positioning */
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(158, 205, 86, 0.6);
}

/* Mobile Fixes & Adjustments */
@media (max-width: 576px) {
    .navbar {
        width: 95%;
        padding: 15px 40px;
        /* Increased to 40px per user request */
    }

    .hero-section,
    .about-section,
    .methodology-section,
    .testimonials-section,
    .contact-section,
    .academy-section,
    .impact-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        /* Smaller title for mobile */
    }

    .hero-content p {
        font-size: 1rem;
    }

    .social-strip .logos-track {
        gap: 30px;
        /* Tighter logos */
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .floating-badge {
        width: 70px;
        height: 70px;
    }

    .badge-secondary {
        width: 100px;
        height: 100px;
        left: unset;
        right: 10px;
        bottom: 200px;
    }

    .badge-primary {
        left: 10px;
        bottom: 50px;
    }

    /* Mobile Layout "Stack": Logo -> Navbar -> Hero */
    /* Handled in 768px block now
    .logo-header {
        top: 15px;
        width: 100%;
        text-align: center;
        z-index: 2000;
    } */

    .logo-header img {
        height: 80px;
        /* Slightly smaller to save vertical space */
    }

    /* Handled in 768px block now
    .navbar {
        top: 110px;
        width: 90%;
        left: 50%;
        transform: translateX(-50%);
    } */

    /* Keep navbar sticky on scroll */
    .navbar.scrolled {
        top: 20px;
    }

    .hero-section {
        /* Optimized padding: fine-tuned to 210px */
        padding-top: 210px;
        align-items: center;
        /* Center content horizontally */
        text-align: center;
    }

    .hero-content {
        margin-bottom: 10px;
        /* Reduced from 30px to pull image up */
    }

    .hero-content h1 {
        font-size: 3.2rem;
        /* Significantly bigger for impact */
        line-height: 1.0;
        /* Tighter line height for big text */
        margin-bottom: 5px;
        /* Tighter to the text below */
    }

    /* Hide the line break on mobile so name is one line or wraps naturally */
    .hero-content h1 br {
        display: none;
    }

    .hero-content p {
        font-size: 0.95rem;
        /* Tighter body text */
        margin-bottom: 25px;
    }

    .hero-content .subtitle {
        font-size: 0.8rem;
        margin-bottom: 5px;
        opacity: 0.9;
        /* Slightly brighter */
    }

    /* Tweaking buttons for mobile */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        /* Stack buttons on mobile for impact */
        gap: 15px;
        align-items: center;
        width: 100%;
        max-width: 300px;
        /* Limit width */
        margin: 0 auto;
    }

    .cta-buttons .btn {
        width: 100%;
        /* Full width buttons */
        margin: 0;
        /* consistent */
    }

    .hero-image {
        margin-top: -100px;
        /* Pull up image as requested */
        width: 100%;
        /* Full width for larger size */
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 5;
        /* Higher than particles (0), Lower than content (10) */
    }

    .hero-content {
        position: relative;
        z-index: 10;
        /* Highest priority for interactivity */
    }
}

/* Navbar Contact Icon (Mobile Only) */
.mobile-contact-icon {
    display: none;
    /* Hidden on Desktop */
    margin-right: 15px;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 50%;
}

.mobile-contact-icon img {
    width: 40px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.mobile-contact-icon:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary));
}

@media (max-width: 992px) {

    /* Hide Text Button on Mobile */
    .nav-btn {
        display: none;
    }

    /* Show Icon on Mobile */
    .mobile-contact-icon {
        display: flex;
    }
}

/* Navbar Contact Icon */
.nav-contact-icon {
    margin-right: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    border-radius: 50%;
}

.nav-contact-icon img {
    width: 45px;
    /* Adjust size to match previous icon visual weight */
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-contact-icon:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary));
}

@media (max-width: 992px) {
    .nav-contact-icon {
        margin-right: 15px;
        /* Adjust spacing on mobile */
    }

    .nav-contact-icon img {
        width: 40px;
        /* Slightly smaller on mobile */
    }
}

/* ----------------------------------------------------
   OFFER / PRICING SECTION - New Glass Design
   ---------------------------------------------------- */
.offer-section {
    padding: 100px 5% 140px;
    /* Top 100, Bottom 140 */
    background: var(--secondary);
    /* Purple Background (Methodology Match) */
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Overlay for texture/depth like Methodology */
.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Matching Methodology Gradient EXACTLY */
    /* Gradient starts pink on left, fades to transparent by 45% */
    background: linear-gradient(to right, rgba(208, 52, 136, 0.5) 0%, transparent 45%);
    opacity: 0.5;
    /* Overlay opacity */
    z-index: 0;
}

.offer-section .section-title {
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    /* White text on green bg */
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-transform: none;
    position: relative;
    z-index: 1;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* Equal height */
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.85);
    /* Much darker/solid to pop on Green */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px 25px;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Glass Shine Effect on Background */
.pricing-card .card-glass-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(158, 205, 86, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.pricing-card:hover .card-glass-bg {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: rgba(158, 205, 86, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Featured Card (Center) */
.pricing-card.featured {
    background: rgba(25, 25, 35, 0.9);
    /* More solid */
    border: 1px solid var(--primary);
    transform: none;
    /* No scaling */
    /* Slightly larger by default */
    box-shadow: 0 0 30px rgba(158, 205, 86, 0.15);
    z-index: 3;
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
    /* Match others */
    box-shadow: 0 0 50px rgba(158, 205, 86, 0.3);
}

.card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon-container {
    width: 50px;
    /* Reduced from 60px */
    height: 50px;
    /* Reduced from 60px */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    /* Reduced from 1.5rem */
    color: var(--text-main);
    margin-bottom: 15px;
    /* Reduced margin */
    transition: var(--transition);
}

.pricing-card:hover .icon-container,
.pricing-card.featured .icon-container {
    background: var(--primary);
    color: #000;
}

/* Typography */
.pricing-card h3 {
    font-size: 1.6rem;
    /* Reduced from 2rem */
    margin-bottom: 5px;
    color: var(--text-main);
}

.subtitle-card {
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-bottom: 20px;
    /* Reduced margin */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Price Block */
.price-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    /* Reduced margin */
    color: var(--text-main);
}

.currency {
    color: var(--alernative);
    font-size: 1.5rem;
    margin-top: 5px;
    font-weight: 600;
}

.amount {
    color: var(--alernative);
    font-size: 3rem;
    /* Reduced from 4rem */
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
}

.period {
    align-self: flex-end;
    margin-bottom: 8px;
    /* Slightly adjusted */
    margin-left: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 30px;
    /* Reduced margin */
    flex-grow: 1;
    /* Push button to bottom */
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    /* Thinner spacing */
    color: #ccc;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.features-list li i {
    margin-right: 12px;
    color: var(--primary);
    font-size: 1.1rem;
}

.features-list li.disabled {
    color: #666;
    text-decoration: line-through;
}

.features-list li.disabled i {
    color: #444;
}

/* Button Adjustments */
.full-width {
    width: 80%;
    /* Was 100% */
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 350px;
    border-radius: 50px;
    white-space: nowrap;
    /* Force 1 line */
    padding: 15px 20px;
    /* Reduced side padding to fit text */
}

.pricing-card.featured .popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card,
    .pricing-card.featured {
        width: 100%;
        max-width: 400px;
        transform: none !important;
        /* Disable scale effect on mobile for consistency */
    }
}

/* ----------------------------------------------------
   MAP & GLOBAL IMPACT STYLES
   ---------------------------------------------------- */
.map-visual {
    position: relative;
    width: 100%;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.map-visual img {
    width: 100%;
    height: auto;
    display: block;
    /* filter removed to restore original look */
}

.map-marker {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
    z-index: 10;
}

/* Pulse Animation Ring */
.map-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
    animation: pulse-green 2s infinite;
}

.map-marker::after {
    content: attr(data-label);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.map-marker:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes pulse-green {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 400%;
        height: 400%;
        opacity: 0;
    }
}

/* ----------------------------------------------------
   MAP & GLOBAL IMPACT STYLES (Restored Full View)
   ---------------------------------------------------- */
.impact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Center to avoid stretching/cropping */
    padding: 0 !important;
    background: #000;
    overflow: hidden;
}

.stats-content {
    flex: 1;
    min-width: 300px;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-visual {
    flex: 1.2;
    /* Slightly larger area for map */
    min-width: 300px;
    position: relative;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
}

.map-visual img {
    width: 100%;
    height: auto;
    /* Natural aspect ratio - SHOW FULL MAP */
    object-fit: contain;
    display: block;
    filter: brightness(1.5) contrast(1.1);
    /* Boost visibility on dark bg */
    /* Ensure it's not too ghost-like if it has transparency */
}

/* ----------------------------------------------------
   ADVANCED MAP SECTION (Tech / Connected)
   ---------------------------------------------------- */
.advanced-map-section {
    padding: 2rem 0;
    /* Reduced padding */
    background: #000;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
    /* No bottom margin */
}

.map-header {
    display: none;
    /* Hidden by user request */
}

.map-container-tech {
    position: relative;
    max-width: 1200px;
    /* Increased from 1000px */
    margin: 0 auto;
    /* Aspect Ratio Box to keep SVG/Img synced */
    aspect-ratio: 2 / 1;
}

.tech-map-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.10;
    /* Updated opacity per user request */
    /* Force White Map: Turn to black first, then invert to white */
    filter: brightness(0) invert(1);
    display: block;
    /* Removed problematic mask that hid the map */
}

/* SVG Overlay */
/* SVG Overlay Removed by user request */
.map-connections {
    display: none;
}

/* Markers */
/* Markers */
.tech-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    /* CRITICAL: Container ignores mouse so overlapping regions don't conflict */
    pointer-events: none;
}

.tech-dot {
    width: 8px;
    /* Increased from 6px */
    height: 8px;
    background: #d03488;
    /* Custom Pink */
    border-radius: 50%;
    z-index: 2;
    position: relative;
    box-shadow: 0 0 6px rgba(208, 52, 136, 0.6);
    /* Pink Glow */
    /* Re-enable mouse interaction specifically for the dot */
    pointer-events: auto;
}

.pulse-ring {
    display: none;
    /* Hide the 'puntos' pulse loop */
}

.tech-label {
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #ccc;
    white-space: nowrap;
    opacity: 0;
    /* Hidden by default */
    transform: translateY(5px);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    pointer-events: none;
}

.tech-marker:hover .tech-label,
.tech-marker.active .tech-label {
    opacity: 1;
    border-color: var(--primary);
    transform: translateY(0);
    color: #fff;
    z-index: 100;
    /* Ensure it stays on top */
}

.tech-marker:hover .tech-dot {
    background: var(--primary);
    transform: scale(1.5);
    transition: 0.3s;
}

@media (max-width: 768px) {
    .map-container-tech {
        transform: scale(1.3);
        margin-top: 20px;
    }

    .tech-marker {
        margin-top: 10px;
    }

    .advanced-map-section {
        overflow: hidden;
        /* Changed from visible to prevent scrollbar */
    }

    .testimonial-card {
        text-align: center;
    }

    .card-image {
        margin: 0 auto 20px;
    }

    .offer-section {
        padding: 60px 5% 80px;
    }

    .academy-visuals img {
        opacity: 0.25;
        -webkit-mask-image: linear-gradient(to top, transparent, black 80%);
        mask-image: linear-gradient(to top, transparent, black 80%);
    }

    .floating-card {
        transform: scale(0.8);
        transform-origin: top right;
        right: 15px;
        /* Adjusting position slightly since it scales */
    }

    /* Academy Features - Mobile Horizontal Layout */
    .academy-header {
        text-align: left;
        width: 100%;
    }

    .academy-features {
        flex-wrap: wrap;
        /* Allow wrapping for safety */
        justify-content: center;
        /* Center items */
        gap: 20px;
        /* Increased gap slightly for better separation if left aligned */
    }

    .academy-features .feat {
        flex-direction: column;
        /* Stack Icon top, Text bottom */
        text-align: center;
        background: none;
        border: none;
        padding: 0;
    }

    .academy-features .feat i {
        font-size: 2rem;
        /* Larger Icon */
        margin-bottom: 5px;
        color: var(--secondary);
    }

    .academy-features .feat span {
        font-size: 0.75rem;
        /* Smaller Text */
        line-height: 1.2;
    }

    /* Footer - Mobile Vertical Layout */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .scroll-top-btn {
        right: 15px;
        bottom: 15px;
    }

    .contact-section {
        padding: 80px 5% 80px;
    }
}

/* ----------------------------------------------------
   USER RESTORED MAP VISUAL
   ---------------------------------------------------- */
.map-visual {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    text-align: center;
}

.map-visual img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    filter: invert(1);
    /* Keep tech look */
    display: block;
}

@media (max-width: 768px) {
    .navbar {
        top: 170px;
        /* Adjust to sit below logo */
        width: 90%;
        padding: 10px 20px;
    }

    .hero-section {
        padding-top: 280px;
    }

    .map-visual {
        transform: scale(1.1);
        margin-top: 20px;
    }
}

.marker-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.map-marker:hover .marker-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.5);
}

/* Ikea Style Card Tooltip */
.ikea-card {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 160px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-align: center;
    color: #333;
    z-index: 100;
}

/* Arrow for the card */
.ikea-card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}

.ikea-card strong {
    display: block;
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 2px;
}

.ikea-card .city {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.ikea-card .mini-stat {
    display: inline-block;
    font-size: 0.75rem;
    color: #fff;
    background: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Show on Hover */
.map-marker:hover .ikea-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ----------------------------------------------------
   TESTIMONIALS SECTION
   ---------------------------------------------------- */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background: #000;
}

.testimonials-section h2 {
    font-size: 3rem;
    /* Matched to Methodology */
    margin-bottom: 0;
    /* Removed per user request */
    text-align: center;
    background: linear-gradient(to right, #fff, #a0a0b0);
    /* Matched gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.testimonials-section p {
    color: var(--text-muted);
    margin-bottom: 15px;
    /* Reduced from 50px per request */
}

/* ----------------------------------------------------
   PRICING MODAL STYLES
   ---------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 3000;
    /* Highest priority */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Body Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* Scroll Top Button Dark Mode */
.scroll-top-btn.dark-mode {
    background: #000;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.dark-mode:hover {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    transform: translateY(-5px);
}

/* Modal Form Specifics - DELETED to allow index.html inline styles to take precedence */

/* Mobile Video Section Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 225px;
    }

    .logo-header img {
        height: 90px;
    }

    .navbar {
        top: 130px !important;
        width: 90% !important;
        padding: 10px 30px !important;
    }

    .navbar.scrolled {
        top: 20px !important;
    }

    .logo-header {
        top: 20px;
        width: 100%;
        text-align: center;
        z-index: 2000;
    }

    .mobile-contact-icon img {
        width: 35px;
        height: auto;
    }

    .hero-image .image-wrapper {
        position: relative;
        width: auto;
        height: 480px;
        margin-left: 0px;
    }

    .hero-image {
        margin-top: -150px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 5;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-image .glow-effect,
    .about-image .glow-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
        height: 250px;
        background: var(--primary);
        filter: blur(80px);
        opacity: 0.4;
        z-index: -1;
        border-radius: 50%;
    }

    #videoTrigger {
        cursor: pointer;
        position: relative;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        border: 15px solid #1a1a1a;
        width: 95%;
        aspect-ratio: 16 / 9;
        margin: 0 auto 20px;
        background: #000;
    }

    .about-section {
        padding: 60px 10%;
        position: relative;
        overflow: hidden;
    }

    .badge-primary {
        left: 10px;
        bottom: 30px;
    }

    .floating-orb {
        width: 100px;
        height: 100px;
        bottom: 20px;
        left: 0;
    }

    .about-text {
        margin-top: -80px;
    }

    .stats-mini {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 30px 0;
        margin-bottom: 0;
    }

    .methodology-section {
        padding: 40px 5% 80px;
    }

    .testimonials-section h2 {
        font-size: 3rem;
        margin-bottom: 0;
        text-align: center;
        background: linear-gradient(to right, #fff, #999);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        line-height: 1.3;
    }

    .testimonials-section {
        padding: 40px 5% 50px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .form-group.half {
        width: 100%;
    }

    .video-section {
        padding: 60px 0;
        /* Zero side padding to maximize width */
    }

    .video-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        /* Tiny buffer */
    }

    .video-wrapper {
        border-radius: 20px;
        /* Slightly less rounded to leverage width */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25),
            inset 0 0 0 2px rgba(255, 255, 255, 0.1);
        /* Reduced Shadow */
        transform: scale(1.05);
        /* Slight enlargement */
        margin-top: 10px;
    }

    .floating-orb {
        width: 100px;
        height: 100px;
        bottom: 40px;
        left: 0;
    }

    .stats-mini {
        justify-content: center;
        width: 100%;
    }

    .stat-box {
        display: block;
        text-align: center;
    }

    .stat-box .label {
        display: block;
    }

    .about-text {
        margin-top: -50px;
    }

    .methodology-section {
        padding: 60px 5% 80px;
    }

    .testimonials-section {
        padding: 60px 5% 80px;
    }
}

/* ==========================================================================
   LAPTOPS & MEDIUM SCREENS (1024px - 1440px)
   ========================================================================== */
@media (max-width: 1440px) {
    .promo-hero .hero-image .image-wrapper {
        height: 380px;
        /* Balanced size for laptop screens */
    }
}

/* ==========================================================================
   FULL HD & 2K SCREENS (1600px +)
   Restoring grandeur for large monitors
   ========================================================================== */
@media (min-width: 1600px) {

    /* 1. Expand Container Limits */
    .navbar,
    .container,
    .modules-container,
    .offer-section .pricing-container {
        max-width: 1600px;
        /* Allow wider spread */
    }

    /* 2. Hero Section: More Breathing Room & Spread */
    .hero-section {
        padding: 250px 5% 0;
        /* Increased top, Reduced side (5%) */
        gap: 0;
        /* Remove gap to allow justify-content to control */
        /* Force edges */
    }

    .hero-content .subtitle {
        margin-bottom: 0;
    }

    .hero-content h1 {
        font-size: 6rem;
        /* Larger Title */
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 1.3rem;
        max-width: 500px;
        line-height: 1.6;
    }

    /* 3. Hero Image: Restore Height & Align Right */
    .hero-image {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        width: 50% !important;
        /* Force half width */
        max-width: none;
        padding-right: 0;
    }

    .hero-image .image-wrapper {
        height: 550px;
        /* Adjusted per user request */
        margin-left: auto;
        /* Push to Right edge */
        margin-right: 0;
    }

    /* 4. Reposition Badges for Larger Scale */
    .badge-secondary {
        bottom: 250px;
        left: 320px;
        width: 150px;
        height: 150px;
    }

    .badge-secondary img {
        margin-top: 70px;
    }

    .badge-primary {
        bottom: 50px;
        left: -40px;
        width: 120px;
        height: 120px;
    }

    /* 5. About Section: Larger Image */
    .about-img-full {
        max-width: 500px;
        /* Adjusted to 500px per user request */
    }

    .about-image {
        width: 50%;
    }

    .floating-orb {
        width: 150px;
        height: 150px;
    }

    .academy-header .btn {
        margin-top: 40px !important;
    }
}

/* ==========================================================================
   PATREON VISIBILITY TOGGLE
   ========================================================================== 
   To show Patreon content again:
   Option 1: Change "display: none !important;" to "display: flex !important;" or similar.
   Option 2: Delete this block completely.
*/
.patreon-element {
    display: none !important;
}

/* -------------------------------------
 * Promotional Pricing / Offer Section 
 * ------------------------------------- */
.promo-offer-section .original-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-right: 10px;
    display: inline-block;
}

.promo-offer-section .original-price del {
    text-decoration: line-through;
    opacity: 0.6;
}

.promo-offer-section .promo-featured .promo-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 15px rgba(212, 59, 137, 0.4);
    font-weight: bold;
    letter-spacing: 1px;
}

.promo-offer-section .pricing-card.promo-featured {
    border-color: rgba(212, 59, 137, 0.5);
    box-shadow: 0 0 40px rgba(212, 59, 137, 0.15);
}