/* Ultra-Futuristic Cyberpunk Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* New color scheme - White & Red */
    --primary-red: #FF0000;
    --primary-red-bright: #FF3333;
    --primary-red-dim: #CC0000;
    --deep-dark: #0A0A0A;
    --dark-bg: #1A1A1A;
    --medium-dark: #2A2A2A;
    --light-red: #FF4444;
    --pure-white: #FFFFFF;
    --off-white: #F5F5F5;
    --grid-red: rgba(255, 0, 0, 0.2);
    --glow-red: rgba(255, 0, 0, 0.3);
    --glow-white: rgba(255, 255, 255, 0.3);

    /* Shadows */
    --shadow-main: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-soft: 0 4px 20px rgba(255, 0, 0, 0.2);
    --shadow-hard: 0 8px 40px rgba(255, 0, 0, 0.3);

    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    --gradient-red: linear-gradient(135deg, #FF0000 0%, #FF3333 100%);
    --gradient-white-red: linear-gradient(135deg, #FFFFFF 0%, #FF0000 100%);
    --gradient-subtle: linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.1) 50%, transparent 70%);
    --gradient-cta: linear-gradient(90deg, #FF0000 0%, #FF3333 100%);

    /* Legacy variables for backward compatibility */
    --primary-pink: #FF0000;
    --primary-pink-bright: #FF3333;
    --primary-pink-dim: #CC0000;
    --corp-red: #FF0000;
    --corp-red-bright: #FF3333;
    --corp-red-dim: #CC0000;
    --deep-purple: #0A0A0A;
    --dark-purple: #1A1A1A;
    --medium-purple: #2A2A2A;
    --light-purple: #FF0000;
    --cyber-black: #0A0A0A;
    --cyber-dark: #1A1A1A;
    --cyber-grey: #2A2A2A;
    --cyber-white: #F5F5F5;
    --gradient-cyber: var(--gradient-bg);
    --gradient-corp: var(--gradient-red);
    --gradient-pink: var(--gradient-red);
    --gradient-purple: var(--gradient-red);
}

/* Import modern Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--pure-white);
    background-image:
        radial-gradient(circle at 20% 30%, var(--off-white) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--off-white) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--deep-dark);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    font-feature-settings: "liga", "kern";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Enhanced High-End Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-purple) 50%, var(--deep-purple) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

.loading-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    z-index: 10;
}

/* Loading Brand */
.loading-brand {
    text-align: center;
    position: relative;
    z-index: 5;
}

.loading-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.9;
    color: var(--pure-white); /* Changed to white */
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: titlePulse 2s ease-in-out infinite alternate;
}

.loading-accent {
    color: var(--primary-pink);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px var(--primary-pink), 0 0 40px var(--primary-pink);
}

.loading-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-pink);
    box-shadow: 0 0 15px var(--primary-pink);
    animation: accentGlow 1.5s ease-in-out infinite alternate;
}

@keyframes titlePulse {
    0% { transform: scale3d(1, 1, 1); text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { transform: scale3d(1.02, 1.02, 1); text-shadow: 0 0 30px rgba(0, 0, 0, 0.5); }
}

@keyframes accentGlow {
    0% { box-shadow: 0 0 15px var(--primary-pink); }
    100% { box-shadow: 0 0 25px var(--primary-pink), 0 0 35px var(--primary-pink); }
}

.loading-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-purple);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    animation: taglineBlink 2s linear infinite;
}

@keyframes taglineBlink {
    0%, 50% { opacity: 0.8; }
    51%, 100% { opacity: 0.4; }
}

/* Loading Animation Circle */
.loading-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-circle {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-inner-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-pink);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    box-shadow:
        0 0 20px var(--light-purple),
        inset 0 0 20px rgba(255, 0, 0, 0.2);
    animation: innerPulse 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes innerPulse {
    0% { transform: scale3d(1, 1, 1); box-shadow: 0 0 20px var(--light-purple), inset 0 0 20px rgba(255, 0, 0, 0.2); }
    100% { transform: scale3d(1.1, 1.1, 1); box-shadow: 0 0 40px var(--light-purple), inset 0 0 30px rgba(255, 0, 0, 0.4); }
}

.loading-bars {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: barsRotate 3s linear infinite;
}

.loading-bar {
    position: absolute;
    width: 4px;
    height: 25px;
    background: linear-gradient(to top, transparent, var(--primary-pink), transparent);
    transform-origin: 50% 100px;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-87px);
    animation: barPulse calc(0.5s + var(--i) * 0.1s) ease-in-out infinite alternate;
    box-shadow: 0 0 10px var(--primary-pink);
}

@keyframes barsRotate {
    0% { transform: rotate3d(0, 0, 1, 0deg); }
    100% { transform: rotate3d(0, 0, 1, 360deg); }
}

@keyframes barPulse {
    0% { height: 15px; opacity: 0.6; }
    100% { height: 35px; opacity: 1; }
}

/* Loading Progress */
.loading-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--corp-red);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(224, 32, 32, 0.3);
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-pink), var(--light-purple), var(--primary-pink));
    transition: width 0.3s ease;
    position: relative;
    box-shadow: 0 0 20px var(--primary-pink);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-pink), transparent);
    filter: blur(5px);
}

.progress-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-pink);
    text-shadow: 0 0 10px var(--primary-pink);
    letter-spacing: 0.1em;
}

/* Loading Particles */
.loading-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.loading-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-pink);
    animation: particleFloat 4s linear infinite;
}

.loading-particles .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.loading-particles .particle:nth-child(2) { left: 20%; animation-delay: -0.5s; }
.loading-particles .particle:nth-child(3) { left: 30%; animation-delay: -1s; }
.loading-particles .particle:nth-child(4) { left: 50%; animation-delay: -1.5s; }
.loading-particles .particle:nth-child(5) { left: 60%; animation-delay: -2s; }
.loading-particles .particle:nth-child(6) { left: 70%; animation-delay: -2.5s; }
.loading-particles .particle:nth-child(7) { left: 80%; animation-delay: -3s; }
.loading-particles .particle:nth-child(8) { left: 90%; animation-delay: -3.5s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10px) rotate(360deg);
        opacity: 0;
    }
}

/* Loading Grid */
.loading-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.loading-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 0, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.02); }
}

/* Loading Screen Mobile Responsive */
@media (max-width: 768px) {
    .loading-container {
        gap: 2rem;
        padding: 2rem;
    }
    
    .loading-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        will-change: transform; /* Optimize for mobile */
    }
    
    .loading-tagline {
        font-size: 1rem;
        will-change: opacity;
    }
    
    .loading-circle {
        width: 150px;
        height: 150px;
        will-change: transform;
    }
    
    .loading-inner-circle {
        width: 90px;
        height: 90px;
        will-change: transform;
    }
    
    .loading-bar {
        transform: rotate(calc(var(--i) * 30deg)) translateY(-62px);
        will-change: transform;
    }
    
    .loading-bars {
        animation-duration: 4s; /* Slower on mobile */
    }
    
    .progress-bar {
        min-width: 250px;
    }
    
    /* Reduce particle count on mobile */
    .loading-particles .particle:nth-child(n+5) {
        display: none;
    }
}




/* Hero Section - Modern Split Layout */
.hero {
    min-height: 100vh;
    background: var(--pure-white);
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: visible;
    z-index: 3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 4;
    padding: 0 5%;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.accent-tag {
    display: inline-block;
    background: rgba(255, 0, 0, 0.15);
    color: var(--light-purple);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--deep-dark);
}

.accent-text {
    color: var(--primary-pink);
    position: relative;
    display: inline;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--deep-dark); /* Changed from --off-white to --deep-dark */
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
}

.comparison-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .hero-right {
        order: 0;
    }
    
    .comparison-container {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
    }
}

/* Learn Section */
.learn-section {
    padding: 6rem 0;
    background: var(--pure-white);
    position: relative;
}

.learn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 90% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-dark);
}

/* High-End Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.in-view {
    opacity: 1;
}

.animate-fade-in {
    transform: translateY(0);
}

.animate-fade-in.in-view {
    opacity: 1;
}

.animate-fade-in-up {
    transform: translateY(40px);
}

.animate-fade-in-up.in-view {
    transform: translateY(0);
}

.animate-slide-in-left {
    transform: translateX(-60px);
}

.animate-slide-in-left.in-view {
    transform: translateX(0);
}

.animate-slide-in-right {
    transform: translateX(60px);
}

.animate-slide-in-right.in-view {
    transform: translateX(0);
}

.animate-scale-in {
    transform: scale(0.95);
}

.animate-scale-in.in-view {
    transform: scale(1);
}

.animate-slide-in-up {
    transform: translateY(50px);
}

.animate-slide-in-up.in-view {
    transform: translateY(0);
}

/* Stagger Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Resting Animations - Continuous Subtle Movements */
@keyframes pulse-glow-animation {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 0, 0, 0.7);
        transform: scale(1.02);
    }
}

.pulse-glow {
    animation: pulse-glow-animation 3s ease-in-out infinite;
}

@keyframes shimmer-animation {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.animate-shimmer {
    background: linear-gradient(90deg, var(--light-purple) 0%, rgba(255, 0, 0, 0.7) 25%, var(--light-purple) 50%, rgba(255, 0, 0, 0.7) 75%, var(--light-purple) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-animation 4s linear infinite;
}

@keyframes floating-animation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-element {
    animation: floating-animation 4s ease-in-out infinite;
}

@keyframes floating-number {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.floating-number {
    animation: floating-number 3s ease-in-out infinite;
}

@keyframes pulsing-glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.pulsing-glow {
    animation: pulsing-glow 4s ease-in-out infinite;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.7);
    }
}

.pulse-button {
    animation: pulse-button 2s ease-in-out infinite;
}

/* Parallax Scroll Effect */
.dfy-premium {
    position: relative;
    overflow: hidden;
}

.dfy-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    animation: rotate-bg 20s linear infinite;
    pointer-events: none;
}

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

/* Depth Layering - Parallax on scroll */
.showcase-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.showcase-card .card-number {
    transform: translateZ(20px);
}

.showcase-card .showcase-image-wrapper {
    transform: translateZ(0);
}

.showcase-card .showcase-overlay {
    transform: translateZ(10px);
}

/* Premium Course Section */
.learn-header {
    text-align: center;
    margin-bottom: 4rem;
}

.learn-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 1), rgba(75, 50, 150, 1));
    color: var(--deep-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.learn-badge svg {
    stroke: currentColor;
}

.learn-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Course Layout */
.course-layout {
    display: grid;
    gap: 3rem;
}

.course-hero-image {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: visible;
}

.hero-cta-wrapper {
    position: relative;
    z-index: 10;
}

.hero-cta-wrapper a {
    text-decoration: none;
}

.hero-cta-wrapper button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: blur(20px);
    opacity: 0;
}

.hero-image-wrapper img.loaded {
    filter: blur(0);
    opacity: 1;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(30, 30, 30, 0.9) 100%);
    pointer-events: none;
}

.overlay-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--light-purple), rgba(75, 50, 150, 1));
    color: var(--deep-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
    animation: pulse 2s infinite;
    pointer-events: all;
}

.overlay-badge svg {
    stroke: currentColor;
    fill: currentColor;
}

/* Course Info Grid */
.course-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}

/* Pricing Card */
.course-pricing-card {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    height: fit-content;
    background-image:
        linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    color: var(--pure-white);
}

.course-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.6);
}

.pricing-tag-new {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.current-price-new {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--light-purple), rgba(255, 0, 0, 0.7));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Course Stats */
.course-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-item svg {
    stroke: var(--light-purple);
    flex-shrink: 0;
}

/* CTA Button */
.cta-course-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--light-purple), rgba(75, 50, 150, 1));
    color: var(--deep-dark);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.cta-course-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.6);
}

.cta-course-primary svg {
    transition: transform 0.3s ease;
}

.cta-course-primary:hover svg {
    transform: translateX(5px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-item svg {
    stroke: #10b981;
    flex-shrink: 0;
}

/* Course Modules Card */
.course-modules-card {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--pure-white);
    background-image:
        linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.modules-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 2rem;
}

.modules-title svg {
    stroke: var(--light-purple);
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image:
        linear-gradient(135deg, rgba(50, 50, 50, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    color: var(--pure-white);
}

.module-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.8) 0%, rgba(30, 30, 30, 0.8) 100%);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

.module-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(75, 50, 150, 0.3));
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.module-item:hover .module-icon {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.5), rgba(75, 50, 150, 0.5));
    transform: scale(1.1) rotate(5deg);
}

.module-icon svg {
    stroke: var(--light-purple);
}

.module-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0 0 0.5rem 0;
}

.module-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.pricing-box {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.7) 0%, rgba(40, 40, 40, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
    pointer-events: none;
    z-index: -1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--deep-dark);
}

.pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
}

.access-tag {
    font-size: 1rem;
    color: var(--light-purple);
    font-style: italic;
}

.pricing-features {
    margin-bottom: 2.5rem;
}

.feature-list.dark li {
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    padding: 1rem 0 1rem 2.5rem;
    color: rgba(0, 0, 0, 0.8);
}

.feature-list.dark li::before {
    content: '✓';
    color: var(--primary-pink);
    font-size: 1.1rem;
    left: 0.5rem;
}

.pricing-footer {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1024px) {
    .course-info-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .learn-header {
        margin-bottom: 3rem;
    }

    .learn-subtitle {
        font-size: 1rem;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .overlay-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .course-pricing-card,
    .course-modules-card {
        padding: 2rem;
    }

    .current-price-new {
        font-size: 2.5rem;
    }

    .modules-title {
        font-size: 1.5rem;
    }

    .module-item {
        flex-direction: column;
        gap: 1rem;
    }

    .module-item:hover {
        transform: translateY(-5px);
    }

    .pricing-box {
        padding: 2rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-box {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .badge {
        flex-direction: row;
        gap: 0.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--pure-white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--pure-white);
    background-image:
        linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-pink);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--pure-white);
}

.testimonial-author p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.star.empty {
    opacity: 0.3;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--pure-white);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(70, 70, 70, 1) 0%, rgba(50, 50, 50, 1) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--pure-white);
    background-image:
        linear-gradient(135deg, rgba(70, 70, 70, 1) 0%, rgba(50, 50, 50, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.08) 2px, rgba(255, 255, 255, 0.08) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.08) 2px, rgba(255, 255, 255, 0.08) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.8);
}

.faq-item.active {
    border-color: rgba(255, 0, 0, 0.9);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 0, 0, 0.25);
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.05) 50%, transparent 100%);
}

.faq-question:hover {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.1) 50%, transparent 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--pure-white);
    letter-spacing: 0.02em;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: transform 0.4s ease, color 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.5));
    font-weight: 300;
}

.faq-question:hover .faq-icon {
    color: #FF3333;
    filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.7));
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #FF3333;
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    display: none;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    margin-top: 0.5rem;
    padding-top: 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInAnswer 0.4s ease-in-out;
}

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

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
}

/* Bonus Section */
.bonus-section {
    padding: 6rem 0;
    background: var(--deep-purple);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 0;
}

.free-tag {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--deep-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-left: 0.75rem;
    vertical-align: middle;
}

.bonus-description {
    font-size: 0.95rem;
    color: var(--light-purple);
    font-style: italic;
    margin: -0.5rem 0 0;
}

.bonus-info {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
}

.bonus-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.bonus-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.bonus-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.3);
    z-index: 1;
    animation: bonusGlow 3s ease-in-out infinite alternate;
}

@keyframes bonusGlow {
    0% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.2); }
    100% { box-shadow: 0 0 60px rgba(255, 0, 0, 0.4); }
}

@media (max-width: 992px) {
    .bonus-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bonus-text {
        order: 0;
    }
    
    .bonus-image {
        order: 1;
        max-width: 400px;
    }
    
    .section-title.left-align {
        text-align: center;
    }
    
    .bonus-text {
        align-items: center;
        text-align: center;
    }
}

/* Product Highlight (replacing slider) */
.product-highlight {
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.7) 0%, rgba(40, 40, 40, 0.7) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-radius: 20px;
}

.product-highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px;
}

.ph-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.ph-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border: 2px solid var(--corp-red);
    box-shadow: var(--shadow-hard);
    display: block;
    background: #000;
}

.ph-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.ph-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.ph-subtitle {
    color: var(--cyber-white);
    opacity: 0.9;
    line-height: 1.7;
}

.ph-bullets {
    list-style: none;
    margin-top: 0.5rem;
}

.ph-bullets li {
    padding: 0.75rem 0 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(224, 32, 32, 0.2);
    position: relative;
}

.ph-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 8px;
    height: 8px;
    background: var(--corp-red);
}

.cta-playbook {
    background: var(--gradient-cta);
    color: var(--deep-dark);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    align-self: flex-start;
    border-radius: 50px;
}

.cta-playbook::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-playbook:hover {
    background: var(--corp-red-bright);
    box-shadow: var(--shadow-hard);
}

.cta-playbook:hover::before {
    left: 100%;
}

@media (max-width: 980px) {
    .ph-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .ph-image img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .product-highlight {
        border-width: 1px;
    }
    .ph-title {
        font-size: 1.4rem;
    }
    .ph-subtitle {
        font-size: 0.95rem;
    }
    .ph-bullets li {
        font-size: 0.95rem;
    }
    .cta-playbook {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

.hero-title {
    font-size: clamp(4rem, 8vw, 8rem); /* Better desktop sizing range */
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: var(--deep-dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
    max-width: 100%; /* Allow full width on desktop */
}

.red-accent {
    color: var(--corp-red);
    position: relative;
    display: inline-block;
    font-size: 1em;
    white-space: nowrap;
    font-weight: 900;
}

.dfy-accent {
    color: var(--primary-pink);
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.package-title {
    white-space: nowrap;
}

.dfy-accent::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-pink);
}

.dfy-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-pink);
}

.red-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--corp-red);
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 10px;
    background-color: var(--corp-red);
}

.creator-slider {
    padding: 2.5rem;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--corp-red);
    border-radius: 0;
    position: relative;
    width: 100%;
    max-width: 800px; /* Increased to accommodate larger images */
    margin-bottom: 1rem; /* Added margin to ensure it's not cut off at the bottom */
    height: auto; /* Auto height */
}

.creator-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(224, 32, 32, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 650px; /* Increased height for taller images */
    overflow: hidden;
}

.slider-track {
    display: flex;
    flex-direction: row; /* Back to horizontal */
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%; /* Take full height */
}

.slider-item {
    height: 100%; /* Fixed height */
    min-width: 100%; /* Back to horizontal sliding */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.slider-controls {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1rem;
    position: relative;
}

.slider-controls::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--corp-red), transparent);
    z-index: 1;
}

.slider-prev,
.slider-next {
    background: transparent;
    border: none;
    color: var(--corp-red);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.slider-prev::before,
.slider-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 45%, var(--corp-red) 45%, var(--corp-red) 55%, transparent 55%);
    z-index: -1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slider-prev::before {
    transform: rotate(180deg);
}

.slider-prev:hover::before,
.slider-next:hover::before {
    opacity: 1;
    box-shadow: 0 0 15px var(--corp-red);
}

.slider-prev:hover,
.slider-next:hover {
    color: var(--deep-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid var(--corp-red);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(45deg);
    margin: 0 5px;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--corp-red);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.slider-dot.active::after {
    opacity: 1;
}

.slider-dot.active {
    background: transparent;
    border-color: var(--corp-red-bright);
    box-shadow: 0 0 10px var(--corp-red);
}

.creator-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-self: center;
    position: relative; /* For absolute positioning of name */
}

.creator-image.active {
    opacity: 1;
    transform: scale(1.05);
}

.creator-image:hover {
    opacity: 1;
    transform: scale(1.02);
}

.creator-image img {
    width: 320px;
    height: 570px;
    border-radius: 0;
    border: 2px solid var(--corp-red);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    transition: all 0.3s ease;
    display: block; /* Ensure proper display */
    aspect-ratio: 9/16; /* Phone-like aspect ratio */
    min-height: 570px; /* Enforce minimum height */
    max-width: 320px; /* Enforce maximum width */
    /* Force vertical rectangle shape */
    min-width: 320px;
}

.creator-image.active img {
    box-shadow: var(--shadow-hard);
    border-width: 3px;
}

.creator-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin-top: 0.7rem;
    width: 100%;
}

.creator-image.active .creator-name {
    color: var(--corp-red);
}

.creator-image:nth-child(1) {
    grid-row: span 1;
}

.creator-image:nth-child(2) {
    grid-row: span 1;
    margin-top: 3.2rem;
}

.creator-image:nth-child(3) {
    grid-row: span 1;
    margin-top: 1.3rem;
}

.creator-image:nth-child(4) {
    grid-row: span 1;
    margin-top: 4.5rem;
}

.creator-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-red);
    text-shadow: 0 0 20px var(--neon-red), 0 0 40px var(--neon-red);
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--cyber-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
    text-align: center;
    font-weight: 500;
}


.cta-primary {
    background: var(--gradient-cta);
    color: var(--deep-dark);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    align-self: center; /* Center the button */
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-primary:hover {
    background: var(--corp-red-bright);
    /* Removed Y-axis transform */
    box-shadow: var(--shadow-hard);
}

.cta-primary:hover::before {
    left: 100%;
}

/* Enhanced Carousel with Cyberpunk Elements */
.carousel-container {
    position: relative;
    width: 100%;
    height: 91vh;
    border-radius: 0;
    overflow: hidden;
    border: 3px solid var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 0, 64, 0.4), 0 0 50px rgba(255, 0, 64, 0.2);
    transition: all 0.3s ease;
}

.carousel-container:hover {
    box-shadow: 0 0 40px rgba(255, 0, 64, 0.6), 0 0 80px rgba(255, 0, 64, 0.3);
}

.carousel-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--gradient-neon);
    z-index: -1;
    animation: carouselBorder 4s linear infinite;
}

@keyframes carouselBorder {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--cyber-black);
    box-shadow: inset 0 0 50px rgba(255, 0, 64, 0.3);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%) contrast(1.2) brightness(0.9);
    transition: all 0.6s ease;
}

.hero-image:hover {
    filter: grayscale(0%) contrast(1.3) brightness(1.05);
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(255, 0, 64, 0.3) 100%),
        radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    mix-blend-mode: multiply;
    animation: overlayPulse 5s ease-in-out infinite alternate;
}

@keyframes overlayPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.carousel-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    padding: 1.3rem 2.5rem;
    border: 3px solid var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 0, 64, 0.4), 0 0 50px rgba(255, 0, 64, 0.2);
    border-radius: 2px;
}

.carousel-controls::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-neon);
    z-index: -1;
    animation: controlsGlow 3s ease-in-out infinite alternate;
}

@keyframes controlsGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.carousel-btn {
    background: transparent;
    color: var(--neon-red);
    border: 3px solid var(--neon-red);
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--neon-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.carousel-btn:hover {
    color: var(--deep-dark);
    box-shadow: 0 0 15px var(--neon-red);
    transform: scale(1.03);
}

.carousel-btn:hover::before {
    left: 0;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 1rem;
    height: 1rem;
    background: transparent;
    border: 3px solid var(--neon-red);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--neon-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot.active::before {
    width: 100%;
    height: 100%;
}

.dot.active {
    box-shadow: 0 0 10px var(--neon-red);
    transform: scale(1.05);
}

.dot:hover {
    box-shadow: 0 0 8px var(--neon-red);
    transform: scale(1.03);
}

/* Package Sections - Corporate Futuristic Brutalist Enhancement */
.package {
    padding: 8rem 5%;
    position: relative;
    border-bottom: 2px solid var(--corp-red);
    z-index: 3;
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, var(--cyber-black) 0%, var(--cyber-grey) 50%, var(--cyber-dark) 100%),
        linear-gradient(90deg, rgba(224, 32, 32, 0.02) 0%, transparent 100%);
    z-index: -1;
}

.package.dfy {
    background: var(--deep-purple);
    color: var(--deep-dark);
}

.package.dfy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.package.custom {
    background: transparent;
    color: var(--deep-dark);
}

.package.marketing {
    background: transparent;
    color: var(--deep-dark);
}

.package-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch; /* Changed from start to stretch */
    position: relative;
    z-index: 2;
}

.package-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--deep-dark);
    position: relative;
}

@keyframes titleShimmer {
    0%, 100% { 
        text-shadow: 0 0 8px rgba(255, 0, 64, 0.4), 0 0 16px rgba(255, 0, 64, 0.2);
    }
    50% { 
        text-shadow: 0 0 12px rgba(255, 0, 64, 0.6), 0 0 24px rgba(255, 0, 64, 0.3);
    }
}

.package-price {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary-pink);
    margin-bottom: 3rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.package-price::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-pink);
}

.package-for {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--neon-red);
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px var(--neon-red);
}

.package-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: var(--deep-dark);
    position: relative;
    display: inline-block;
}

.package-features h3::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--gradient-pink);
}

.package-features ul {
    list-style: none;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
}

.package-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.package-features li:hover {
    color: var(--primary-pink);
    border-bottom-color: var(--primary-pink);
    padding-left: 2.5rem;
}

.package-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary-pink);
}

/* Enhanced CTA Buttons */
.cta-neon {
    background: var(--gradient-pink);
    color: var(--deep-dark);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    border-radius: 50px;
}

.cta-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-neon:hover {
    background: var(--primary-pink-bright);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

.cta-neon:hover::before {
    left: 100%;
}

.cta-oversized {
    background: var(--gradient-cta);
    color: var(--deep-dark);
    border: none;
    padding: 1.75rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 2.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    animation: oversizedGlow 3s ease-in-out infinite alternate;
    border-radius: 50px;
}

@keyframes oversizedGlow {
    0% { box-shadow: 0 0 15px rgba(255, 0, 64, 0.3); }
    100% { box-shadow: 0 0 25px rgba(255, 0, 64, 0.5), 0 0 50px rgba(255, 0, 64, 0.3); }
}

.cta-oversized::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-oversized:hover {
    transform: translateY(-1px) scale(1.005);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.3), 0 0 40px rgba(255, 0, 64, 0.2);
}

.cta-oversized:hover::before {
    left: 100%;
}

/* Enhanced Package Images */
.package-images {
    height: 100%; /* Make package-images fill available height */
    display: flex; /* Use flexbox to allow image-grid to take full height */
    flex-direction: column;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Removed fixed height to allow full height */
    margin-top: 2rem;
    height: 100%; /* Ensure it takes full height of parent */
}

.grid-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.7) 0%, rgba(40, 40, 40, 0.7) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 12px;
    box-shadow: var(--shadow-main);
    height: 300px; /* Set fixed height for consistent grid */
    transition: all 0.4s ease;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.4s ease;
}

.grid-image:hover {
    /* Removed Y-axis transform */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
}

.grid-image:hover img {
    filter: grayscale(0%) contrast(1.2);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
    color: var(--deep-dark);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-top: 2px solid var(--primary-pink);
    width: 100%;
    text-align: center;
}

/* Premium DFY Section */
.dfy-premium {
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    border-top: 2px solid var(--pure-white);
    border-bottom: 2px solid var(--pure-white);
}

.dfy-header-banner {
    background: var(--pure-white);
    border-bottom: 2px solid var(--pure-white);
    padding: 4rem 0;
    position: relative;
    opacity: 1 !important;
}


.dfy-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 1 !important;
}

.dfy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 1), rgba(75, 50, 150, 1));
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    opacity: 1 !important;
}

.badge-icon {
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.dfy-main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--deep-dark);
    opacity: 1 !important;
}

.title-icon {
    stroke: var(--light-purple);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
    animation: float 3s ease-in-out infinite;
}

.dfy-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 1);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    opacity: 1 !important;
}

.dfy-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(60, 60, 60, 1) 0%, rgba(40, 40, 40, 1) 100%);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--light-purple);
    backdrop-filter: blur(10px);
    opacity: 1 !important;
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pure-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-purple);
    letter-spacing: -0.02em;
}

/* DFY Showcase Grid */
.dfy-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    margin: 4rem 0;
    opacity: 1 !important;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(60, 60, 60, 1) 0%, rgba(40, 40, 40, 1) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: var(--pure-white);
    background-image:
        linear-gradient(135deg, rgba(60, 60, 60, 1) 0%, rgba(40, 40, 40, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.05) 2px, rgba(255, 255, 255, 0.05) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(75, 50, 150, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.showcase-card:hover::before {
    opacity: 1;
}

.showcase-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 0, 0, 0.8);
    box-shadow: 0 25px 50px rgba(255, 0, 0, 0.4), 0 0 40px rgba(75, 50, 150, 0.3);
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.4s ease;
}

.showcase-card:hover .card-number {
    color: rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

.showcase-image-wrapper {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.showcase-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    filter: brightness(0.85) saturate(1.1);
}

.showcase-card:hover .showcase-image-wrapper img {
    transform: scale(1.15);
    filter: brightness(1) saturate(1.3);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.showcase-card:hover .image-glow {
    opacity: 1;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 30, 30, 1) 0%, rgba(30, 30, 30, 0.95) 60%, transparent 100%);
    padding: 1.5rem 1.5rem;
    transform: translateY(calc(100% - 100px));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
}

.overlay-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.overlay-icon {
    stroke: var(--light-purple);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.8));
    flex-shrink: 0;
}

.overlay-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--pure-white);
    margin: 0;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.2;
}

.overlay-content p {
    font-size: 0.9rem;
    color: var(--pure-white);
    margin: 0.5rem 0 0.75rem 0;
    line-height: 1.4;
}

.overlay-stats {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.overlay-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    background: rgba(255, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.7);
    border-radius: 6px;
    color: var(--pure-white);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.overlay-stats svg {
    stroke: var(--light-purple);
    flex-shrink: 0;
}

/* Features Grid */
.dfy-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    opacity: 1 !important;
}

.feature-highlight {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(70, 70, 70, 1) 0%, rgba(45, 45, 45, 1) 100%);
    border: 2px solid rgba(255, 0, 0, 0.4);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-image:
        linear-gradient(135deg, rgba(70, 70, 70, 1) 0%, rgba(45, 45, 45, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.08) 2px, rgba(255, 255, 255, 0.08) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.08) 2px, rgba(255, 255, 255, 0.08) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-highlight:hover::before {
    opacity: 1;
}

.feature-highlight:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 0, 0, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.4);
}

.feature-icon {
    margin-bottom: 2rem;
    line-height: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.feature-icon svg {
    stroke: var(--primary-red);
    fill: none;
    filter: drop-shadow(0 5px 20px rgba(255, 0, 0, 0.4));
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-highlight:hover .feature-icon {
    transform: scale(1.2) translateY(-5px);
}

.feature-highlight:hover .feature-icon svg {
    stroke: #FF3333;
    filter: drop-shadow(0 10px 30px rgba(255, 0, 0, 0.7));
    transform: rotate(5deg);
}

.feature-highlight h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pure-white);
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF, #FF3333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.feature-highlight p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Premium CTA Section */
.dfy-cta-section {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05) 0%, transparent 100%);
    border-radius: 30px;
    margin: 2rem 0;
}

.cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: var(--pure-white);
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 5rem;
    border-radius: 16px;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 15px 50px rgba(255, 0, 0, 0.6),
        0 0 40px rgba(255, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(135deg, #FF0000 0%, #CC0000 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.cta-premium:hover::before {
    left: 100%;
}

.cta-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.cta-premium:hover::after {
    opacity: 1;
}

.cta-premium:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow:
        0 25px 70px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-premium:active {
    transform: translateY(-2px) scale(1.05);
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    font-size: 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
}

.cta-premium:hover .cta-arrow {
    transform: translateX(10px) scale(1.2);
}

.cta-subtext {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--deep-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-subtext::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

/* Custom Influencer Premium Section */
.custom-premium {
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.custom-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 50%);
    animation: rotate-bg 25s linear infinite;
    pointer-events: none;
}

.flowing-gradient-bg {
    background: linear-gradient(45deg,
        rgba(255, 0, 0, 0.3) 0%,
        rgba(75, 50, 150, 0.3) 50%,
        rgba(255, 0, 0, 0.3) 100%);
    background-size: 200% 200%;
    animation: flowing-gradient 8s ease infinite;
}

@keyframes flowing-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.package-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgba(75, 50, 150, 0.9));
    color: var(--deep-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.7);
}

.package-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0.5rem 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, var(--light-purple) 0%, rgba(255, 0, 0, 0.6) 50%, var(--light-purple) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.package-price {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--light-purple), rgba(255, 0, 0, 0.7));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.package-description {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.7;
    margin: 2rem 0;
}

.package-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--deep-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.package-features h3 svg {
    stroke: var(--light-purple);
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.8));
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.9);
    line-height: 1.6;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li svg {
    stroke: var(--light-purple);
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.package-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
    position: relative;
}

.collage-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.5) 0%, rgba(40, 40, 40, 0.5) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.collage-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.7);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.9) saturate(1.1);
}

.collage-item:hover img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.3);
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.collage-item:hover .image-shine {
    left: 150%;
}

/* Marketing & Consulting Premium Section */
.marketing-premium {
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.marketing-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 50%);
    animation: rotate-bg 30s linear infinite reverse;
    pointer-events: none;
}

.marketing-banner {
    text-align: center;
    padding: 5rem 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%);
    border-radius: 30px;
    background-image:
        linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(10, 10, 10, 1) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 0, 0, 0.3) 30px, rgba(255, 0, 0, 0.3) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255, 0, 0, 0.3) 30px, rgba(255, 0, 0, 0.3) 31px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 30px 30px, 30px 30px;
    }
}

.marketing-banner .package-title {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    position: relative;
    z-index: 1;
}

.marketing-banner .package-price {
    margin-top: 1rem;
    color: var(--pure-white);
    position: relative;
    z-index: 1;
}

.elite-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow-animation 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.cta-oversized {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--light-purple), rgba(75, 50, 150, 1));
    color: var(--deep-dark);
    border: none;
    padding: 2rem 5rem;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-oversized::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-oversized:hover::before {
    left: 100%;
}

.cta-oversized:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.8);
}

.cta-oversized svg {
    stroke: var(--pure-white);
    transition: transform 0.4s ease;
}

.cta-oversized:hover svg {
    transform: translateX(8px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .dfy-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dfy-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dfy-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .dfy-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dfy-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-image-wrapper {
        height: 400px;
    }

    .showcase-overlay {
        transform: translateY(0);
    }

    .dfy-main-title {
        font-size: 2.5rem;
    }

    .dfy-header-banner {
        padding: 3rem 0;
    }

    .cta-premium {
        padding: 1.5rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Enhanced Collage Images */
.collage-container {
    position: relative;
    height: 100%; /* Changed from fixed height to full height */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 3fr 2fr; /* Increased second row height for better proportions */
    gap: 15px;
    min-height: 700px; /* Increased minimum height for better image display */
}

.collage-image {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: none;
    height: 100%;
    width: 100%;
    background: transparent; /* Ensure transparent background */
}

.collage-image::before {
    display: none; /* Removed gradient background */
}

.collage-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: none; /* No filter to ensure original colors */
    transition: none; /* Removed transition to prevent any filter effects */
    background: transparent; /* Transparent background instead of cyber-black */
}

/* No hover effects for collage images */

.collage-image:hover img {
    /* No hover effects that could add tints */
    filter: none;
    transform: none;
}

    .collage-image.main {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        z-index: 1;
        height: 100%; /* Use full height of grid cell */
        min-height: 400px; /* Increased minimum height to show full image */
    }
    
    .collage-image.overlay1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        z-index: 2;
        height: 100%; /* Use full height of grid cell */
        min-height: 280px; /* Significantly increased minimum height */
    }
    
    .collage-image.overlay2 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        z-index: 3;
        height: 100%; /* Use full height of grid cell */
        min-height: 280px; /* Significantly increased minimum height */
    }

.collage-image.overlay3 {
    display: none;
}

.tech-frame {
    display: none; /* Hide tech-frame completely */
}

.stylish-frame {
    display: none; /* Hide stylish-frame completely */
}

.stylish-frame::before {
    display: none; /* Hide stylish-frame before element */
}

.stylish-frame::after {
    display: none; /* Hide stylish-frame after element */
}

/* Removed hover effect for tech-frame */

/* Removed hover effects for stylish-frame */

/* Enhanced Split Images */
.split-image {
    height: 100%; /* Changed from fixed height to full height */
    display: flex;
    gap: 1.5rem;
    min-height: 400px; /* Ensure minimum height for better appearance */
}

.split-left,
.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: var(--cyber-black);
    transition: all 0.4s ease;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.3);
    height: 100%; /* Ensure split images take full height */
}

.split-left::before,
.split-right::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-neon);
    z-index: -1;
    animation: splitBorder 6s linear infinite;
}

@keyframes splitBorder {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.split-left img,
.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.6s ease;
}

.split-left:hover,
.split-right:hover {
    /* Using a subtle scale that won't affect layout as much */
    transform: scale(1.01);
    box-shadow: 0 0 25px var(--neon-red), 0 0 50px var(--neon-red);
}

.split-left:hover img,
.split-right:hover img {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.02);
    /* Reduced scale to minimize layout impact */
}

.split-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--neon-red);
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-red);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
    text-shadow: 0 0 10px var(--neon-red);
}

.split-left:hover .split-overlay,
.split-right:hover .split-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.01);
    /* Reduced scale to minimize layout impact */
}

/* Corporate Brutalist Closing Section - Modern Style */
.closing {
    padding: 10rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(20, 20, 20, 1) 100%);
    position: relative;
    overflow: hidden;
}

.closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 0, 0, 0.15) 40px, rgba(255, 0, 0, 0.15) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 0, 0, 0.15) 40px, rgba(255, 0, 0, 0.15) 41px);
    background-size: 40px 40px;
    animation: gridPulse 15s linear infinite;
    pointer-events: none;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
        background-position: 0 0, 0 0;
    }
    50% {
        opacity: 0.6;
        background-position: 40px 40px, 40px 40px;
    }
}

.closing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.closing-content .section-title {
    color: var(--pure-white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
}

.closing-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
}

.closing-cta {
    margin-bottom: 3rem;
}

.cta-large {
    padding: 2.5rem 6rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: var(--pure-white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow:
        0 20px 60px rgba(255, 0, 0, 0.7),
        0 0 50px rgba(255, 0, 0, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(135deg, #FF0000 0%, #CC0000 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.04) 2px, rgba(255, 255, 255, 0.04) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.04) 2px, rgba(255, 255, 255, 0.04) 3px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.cta-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.8s ease;
}

.cta-large:hover::before {
    left: 100%;
}

.cta-large:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow:
        0 30px 80px rgba(255, 0, 0, 0.9),
        0 0 70px rgba(255, 0, 0, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.guarantee p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 0, 0, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

/* Corporate Brutalist Marketing Banner */
.market/* ... */

/* Footer */
.footer {
    padding: 4rem 0;
    background: rgba(18, 11, 41, 0.95);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-dark);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.footer-copyright {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-links {
        gap: 2rem;
    }
}

/* End of document */
    .hero-title {
        font-size: clamp(4.5rem, 7vw, 7rem);
    }
    
    .creator-image img {
        width: 190px;
        height: 190px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column; /* Already stacked vertically */
        align-items: center;
        text-align: center;
    }

    .hero-top {
        padding: 3rem 0 1.5rem 0;
        gap: 2rem;
    }

    .hero-bottom {
        padding: 1.5rem 0 3rem 0;
    }

    .hero-title {
        font-size: clamp(3rem, 8vw, 7rem); /* Adjust font size for tablet */
        margin-bottom: 1.5rem;
    }

    .cta-primary {
        align-self: center;
    }

    .creator-slider {
        padding: 2rem;
    }

    .slider-item {
        padding: 0.5rem;
    }

    .creator-image img {
        width: 180px; /* Increased size for tablet */
        height: 180px; /* Increased size for tablet */
    }

    .creator-name {
        font-size: 0.9rem; /* Adjust font size for tablet */
    }

    /* Remove specific nth-child margins for a more consistent grid */
    .creator-image:nth-child(1),
    .creator-image:nth-child(2),
    .creator-image:nth-child(3),
    .creator-image:nth-child(4) {
        margin-top: 0;
    }

    .package-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .package-text {
        text-align: center;
    }
    
    .hero {
        padding: 0;
    }
    
    .package,
    .closing {
        padding: 5rem 3%;
    }
    
    .carousel-container {
        height: 65vh;
        margin-bottom: 3rem;
    }
    
    .image-grid,
    .collage-container {
        height: auto; /* Allow height to adjust */
    }
    
    /* Enhanced collage container responsiveness for tablet */
    .collage-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
        min-height: 700px;
    }
    
    .collage-image.main {
        grid-column: 1;
        grid-row: 1;
        height: 350px; /* Increased height to show full image */
    }
    
    .collage-image.overlay1 {
        grid-column: 1;
        grid-row: 2;
        height: 250px; /* Increased height to show full image */
    }
    
    .collage-image.overlay2 {
        grid-column: 1;
        grid-row: 3;
        height: 250px; /* Increased height to show full image */
    }
    
    .collage-image.overlay3 {
        display: none;
    }
    
    .split-image {
        height: auto; /* Allow height to adjust */
        flex-direction: column;
        gap: 1rem;
    }

    .split-left, .split-right {
        height: 300px; /* Give a fixed height for consistency */
    }
    
    /* Marketing banner adjustments */
    .marketing-banner {
        padding: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh; /* Ensure full height on mobile */
        min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom)); /* Account for notches */
        height: auto; /* Allow content to expand if needed */
        padding: max(1rem, env(safe-area-inset-top)) 5% max(2rem, env(safe-area-inset-bottom));
        align-items: flex-start;
    }
    
    .package,
    .closing {
        padding: 3rem 5%;
    }
    
    .hero-content {
        min-height: 100vh; /* Ensure content fills viewport */
        justify-content: center; /* Center content vertically */
        gap: 2rem; /* Add gap between top and bottom sections */
    }
    
    .hero-top {
        padding: 2rem 0 1rem 0;
        gap: 2rem;
        flex-shrink: 0; /* Prevent shrinking */
    }
    
    .hero-bottom {
        padding: 1rem 0 2rem 0;
        flex-shrink: 0; /* Prevent shrinking */
    }
    
    /* Optimize animations for mobile performance */
    .hero-title {
        will-change: transform;
        transform: translateZ(0); /* Force hardware acceleration */
    }
    
    .red-accent::after {
        will-change: box-shadow;
    }
    
    /* Reduce animation complexity on mobile */
    .hero-title:hover,
    .package-title:hover,
    .closing-title:hover {
        animation: none; /* Disable glitch animation on mobile */
    }
    
    .final-ctas {
        gap: 1.5rem;
    }
    
    .final-cta {
        padding: 1.5rem 2rem;
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .final-cta::after {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .cta-primary,
    .cta-neon {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
    
    .cta-oversized {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
    
    .carousel-container {
        height: 52vh;
    }
    
    .carousel-controls {
        padding: 1rem 2rem;
        gap: 2rem;
        bottom: 2rem;
    }
    
    .carousel-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .dot {
        width: 0.8rem;
        height: 0.8rem;
        border-width: 2px;
    }
    
    .carousel-dots {
        gap: 0.8rem;
    }
    
    .creator-slider {
        padding: 1.5rem; /* Increased padding to accommodate larger images */
        will-change: transform; /* Optimize for mobile */
    }
    
    /* Optimize slider animations for mobile */
    .slider-track {
        will-change: transform;
        transform: translateZ(0); /* Force hardware acceleration */
    }
    
    .creator-image {
        will-change: transform, opacity;
        transform: translateZ(0);
    }
    
    .creator-image.active {
        transform: translateZ(0) scale3d(1.05, 1.05, 1); /* Use 3D transform */
    }
    
    .creator-image:hover {
        transform: translateZ(0) scale3d(1.02, 1.02, 1); /* Use 3D transform */
    }
    
    .creator-image img {
        width: 160px; /* Increased size for mobile */
        height: 160px; /* Increased size for mobile */
        border-width: 2px;
    }
    
    .creator-name {
        font-size: 0.8rem; /* Adjusted font size for mobile */
    }
    
    /* Remove specific nth-child margins for a more consistent grid */
    .creator-image:nth-child(1),
    .creator-image:nth-child(2),
    .creator-image:nth-child(3),
    .creator-image:nth-child(4) {
        margin-top: 0;
    }
    
    .creator-stats {
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    /* Enhanced mobile collage layout */
    .collage-container {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 1rem;
        width: 100%;
    }
    
    .collage-image {
        width: 100%;
        grid-column: auto;
        grid-row: auto;
    }
    
    .collage-image.main {
        height: 280px; /* Increased height for mobile to show full image */
        order: 1;
    }
    
    .collage-image.overlay1 {
        height: 220px; /* Increased height for mobile to show full image */
        order: 2;
    }
    
    .collage-image.overlay2 {
        height: 220px; /* Increased height for mobile to show full image */
        order: 3;
    }
    
    .collage-image.overlay3 {
        display: none;
    }

    .split-image {
        height: auto;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .split-left, .split-right {
        height: 200px; /* Adjusted height for mobile */
        width: 100%;
        will-change: transform; /* Optimize for mobile */
    }
    
    /* Optimize image animations for mobile */
    .grid-image, .collage-image, .split-left, .split-right {
        will-change: transform;
        transform: translateZ(0); /* Force hardware acceleration */
    }
    
    .grid-image:hover, .collage-image:hover {
        transform: translateZ(0) translateY(-3px); /* Reduced hover effect on mobile */
    }
    
    .split-left:hover, .split-right:hover {
        transform: translateZ(0) scale3d(1.01, 1.01, 1); /* Reduced scale on mobile */
    }
    
    /* Disable complex hover effects on touch devices */
    @media (hover: none) and (pointer: coarse) {
        .grid-image:hover,
        .collage-image:hover,
        .split-left:hover,
        .split-right:hover {
            transform: translateZ(0); /* No hover effects on touch */
        }
        
        .split-overlay {
            display: none; /* Hide overlay on touch devices */
        }
    }
    
    /* Marketing banner mobile adjustments */
    .marketing-banner {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .marketing-banner .package-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    
    .marketing-banner .package-price {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }

    .closing-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .package-text {
        text-align: center;
    }

    .closing-marker {
        width: 80px;
        height: 5px;
    }

    .closing-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }
}

/* Performance Optimizations */
.hero-image,
.grid-image img,
.collage-image img,
.split-left img,
.split-right img {
    will-change: transform, filter;
}

.carousel-slide {
    will-change: opacity;
}

.final-cta,
.cta-primary,
.cta-neon,
.cta-oversized {
    will-change: transform, box-shadow;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cyber-black);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-red);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--neon-red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-red-bright);
    box-shadow: 0 0 15px var(--neon-red);
}

/* Additional small screen responsive fixes */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 0.5rem 5% 1rem;
    }
    
    .hero-content {
        min-height: 100vh;
        justify-content: space-evenly; /* Better spacing on small screens */
        gap: 1.5rem;
    }
    
    .hero-top {
        padding: 1.5rem 0 1rem 0;
        gap: 1.5rem;
    }
    
    .hero-bottom {
        padding: 1rem 0 1.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem); /* Better mobile scaling */
        line-height: 1.1; /* Improve line spacing on small screens */
    }
    
    .package-content {
        gap: 2rem;
    }
    
    .package-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
        word-break: break-word;
    }
    
    .package-price {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .package-features h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .package-features ul {
        font-size: 1rem;
    }
    
    .package-features li {
        padding: 0.8rem 0;
    }
    
    .collage-image.main {
        height: 250px; /* Increased for small screens */
    }
    
    .collage-image.overlay1,
    .collage-image.overlay2 {
        height: 180px; /* Increased for small screens */
    }
    
    .split-left, .split-right {
        height: 180px;
    }
    
    .marketing-banner {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .marketing-banner .package-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .marketing-banner .package-price {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .cta-neon, .cta-oversized {
        padding: 1rem 1.5rem;
        font-size: 0.8rem;
        margin-top: 2rem;
        will-change: transform; /* Optimize button animations */
        transform: translateZ(0);
    }
    
    /* Optimize button animations for mobile */
    .cta-primary, .cta-neon, .cta-oversized, .final-cta {
        will-change: transform;
        transform: translateZ(0);
    }
    
    .cta-primary:hover, .cta-neon:hover, .cta-oversized:hover {
        transform: translateZ(0) translateY(-1px); /* Reduced hover effect */
    }
    
    .final-cta {
        padding: 1.2rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .package {
        padding: 2rem 5%;
    }
    
    /* Hero slider images for very small screens */
    .creator-image img {
        width: 140px; /* Larger than before for very small screens */
        height: 140px;
    }
    
    .creator-slider {
        padding: 1.2rem;
    }
}

/* Mobile Animation Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Use hardware acceleration for key elements */
    .hero-title, .package-title, .loading-inner-circle, .loading-bars {
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Simplify complex animations */
    @keyframes gridPulse {
        0% { opacity: 0.3; }
        100% { opacity: 0.6; }
    }
    
    @keyframes particleFloat {
        0% { transform: translateY(100vh); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-10px); opacity: 0; }
    }
    
    /* Disable expensive animations */
    .atmosphere {
        animation: none;
        opacity: 0.5;
    }
    
    /* Reduce particle effects */
    .loading-particles .particle:nth-child(n+4) {
        display: none;
    }
}

/* Prefer reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .loading-bars,
    .loading-particles,
    .loading-grid::before {
        animation: none;
    }
}

/* Selection Styling */
::selection {
    background: var(--neon-red);
    color: var(--deep-dark);
    text-shadow: 0 0 10px var(--neon-red);
}

::-moz-selection {
    background: var(--neon-red);
    color: var(--deep-dark);
    text-shadow: 0 0 10px var(--neon-red);
}
