/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 235, 59, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 152, 0, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.cta-button.hero-cta-btn {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease;
}

.preloader-content {
    text-align: center;
    color: white;
    max-width: 500px;
    padding: 2rem;
    animation: preloaderFadeIn 1s ease;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.logo-symbol {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: logoGlow 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

.preloader-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.preloader-message {
    font-size: 1rem;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 500;
}

.preloader-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 2rem auto;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffeb3b, #ffc107);
    border-radius: 2px;
    width: 0%;
    animation: progressFill 3s ease-in-out forwards;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.preloader-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ffeb3b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.preloader-submessage {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 1rem;
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 235, 59, 0.5);
    }
    100% {
        text-shadow: 0 0 40px rgba(255, 235, 59, 0.8);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

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

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

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Floating Particles */
.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 5s linear infinite;
    z-index: 1;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(255, 235, 59, 0.3);
}

/* Hanging Chains Animation */
.chains-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.word-chain-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: chainDrop 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(-100px);
}

.word-space {
    width: 1rem;
    height: 1rem;
}

.chain {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #ffeb3b, #ffc107);
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    animation: chainSwing 3s ease-in-out infinite;
}

.chain::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #ffeb3b;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.8);
}

.chain::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #ffc107;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
}

.hanging-word {
    font-size: clamp(1rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 235, 59, 0.3);
    animation: wordSwing 4s ease-in-out infinite;
    animation-delay: 0.5s;
    position: relative;
}

.hanging-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: wordGlow 2s ease-in-out infinite;
}

@keyframes chainDrop {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(-10deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(20px) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes chainSwing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

@keyframes wordSwing {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1deg);
    }
    75% {
        transform: rotate(-1deg);
    }
}

a#primary-cta-case-study,
a#primary-cta-proof,
a#primary-cta-who,
a#primary-cta-stats,
a#primary-cta-event-details,
a#primary-cta-benefits,
a#primary-cta-process,
a#primary-cta-why-now,
a#primary-cta-about-rowell,
a#primary-cta-final {
    width: fit-content !important;
}
@keyframes wordGlow {
    0%, 100% {
        opacity: 0;
        filter: blur(0px);
    }
    50% {
        opacity: 0.3;
        filter: blur(1px);
    }
}
span.hero-title-line-1.toronto-underline {
    -webkit-text-fill-color: #ffffff;
    text-decoration-color: #ffc3187a;
}
/* Hero CTA */
.hero-cta {
 
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #000;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s ease;
    box-shadow: 
        0 8px 25px rgba(255, 235, 59, 0.5),
        0 4px 12px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
    animation: ctaPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 193, 7, 0.5);
    transform-style: preserve-3d;
    transform: translateY(-1px);
    white-space: nowrap;
    width: auto;
    min-width: auto;
}

.hero-cta-btn::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.5s ease;
    z-index: 1;
    border-radius: 16px;
}

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

.hero-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 235, 59, 0.5),
        0 4px 12px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.hero-cta-btn:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 
        0 2px 6px rgba(255, 235, 59, 0.6),
        0 1px 3px rgba(255, 193, 7, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffc107, #ff9800);
    transition: all 0.1s ease;
}

.cta-text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.hero-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 235, 59, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 235, 59, 0.6);
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #ffeb3b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.2);
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 255, 0, 1),
            0 0 10px rgba(255, 235, 59, 1),
            0 0 15px rgba(255, 193, 7, 0.8),
            0 0 20px rgba(255, 152, 0, 0.6),
            0 0 30px rgba(255, 152, 0, 0.4),
            0 0 40px rgba(255, 152, 0, 0.3),
            0 0 50px rgba(255, 152, 0, 0.2);
        filter: 
            drop-shadow(0 0 5px rgba(255, 255, 0, 0.8))
            drop-shadow(0 0 10px rgba(255, 235, 59, 0.6))
            drop-shadow(0 0 15px rgba(255, 193, 7, 0.4));
    }
    100% {
        text-shadow: 
            0 0 8px rgba(255, 255, 0, 1),
            0 0 16px rgba(255, 235, 59, 1),
            0 0 24px rgba(255, 193, 7, 1),
            0 0 32px rgba(255, 152, 0, 0.8),
            0 0 40px rgba(255, 152, 0, 0.6),
            0 0 50px rgba(255, 152, 0, 0.4),
            0 0 60px rgba(255, 152, 0, 0.3);
        filter: 
            drop-shadow(0 0 8px rgba(255, 255, 0, 1))
            drop-shadow(0 0 16px rgba(255, 235, 59, 0.8))
            drop-shadow(0 0 24px rgba(255, 193, 7, 0.6));
    }
}

p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.89);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* VSL Video Section */
.vsl-container {
    margin: 4rem 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* VSL Play Overlay */
.vsl-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    box-sizing: border-box;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 20px rgba(255, 235, 59, 0.5),
        0 0 40px rgba(255, 193, 7, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
    animation: playPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(255, 235, 59, 0.7),
        0 0 60px rgba(255, 193, 7, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-icon {
    font-size: 2.5rem;
    color: #000000;
    font-weight: bold;
    margin-left: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sound-message {
    text-align: center;
    color: #ffffff;
}

.sound-text {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.sound-wave {
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
}

.sound-wave span {
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 2px;
    animation: soundWave 1.5s ease-in-out infinite;
}

.sound-wave span:nth-child(2) {
    animation-delay: 0.2s;
}

.sound-wave span:nth-child(3) {
    animation-delay: 0.4s;
}

/* VSL Play Overlay Animations */
@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 20px rgba(255, 235, 59, 0.5),
            0 0 40px rgba(255, 193, 7, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 30px rgba(255, 235, 59, 0.7),
            0 0 60px rgba(255, 193, 7, 0.5),
            0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

@keyframes soundWave {
    0%, 100% {
        height: 20px;
        opacity: 0.7;
    }
    50% {
        height: 30px;
        opacity: 1;
    }
}

.vsl-header {
    margin-bottom: 3rem;
}

.vsl-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
}

.vsl-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vsl-video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(255, 235, 59, 0.2),
        0 0 60px rgba(255, 193, 7, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.3);
    animation: videoFloat 6s ease-in-out infinite;
}

.vsl-video-border {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 235, 59, 0.3);
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 193, 7, 0.05));
}

.vsl-video-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.vsl-video-wrapper iframe {
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.vsl-video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 40px rgba(255, 235, 59, 0.3),
        0 0 80px rgba(255, 193, 7, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.4);
}

.vsl-video-wrapper:hover .vsl-video-glow {
    opacity: 0.8;
    animation-duration: 1.5s;
}

/* VSL Animations */
@keyframes videoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* Mobile VSL Responsiveness */
@media (max-width: 768px) {
    .vsl-container {
        margin: 3rem 0;
    }
    
    .vsl-title {
        font-size: 1.5rem;
    }
    
    .vsl-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .vsl-video-wrapper {
        margin: 0 1rem;
        border-radius: 15px;
    }
    
    .vsl-video-border {
        border-radius: 15px;
    }
    
    .vsl-video-glow {
        border-radius: 17px;
    }
    
    /* Mobile overlay fixes */
    .vsl-play-overlay {
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .play-icon {
        font-size: 1.8rem;
    }
    
    .sound-text {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .sound-wave span {
        width: 3px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .vsl-play-overlay {
        padding: 0.25rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .play-icon {
        font-size: 1.5rem;
    }
    
    .sound-text {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .sound-wave span {
        width: 2px;
        height: 12px;
    }
}

/* Hero Navbar */
.hero-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-left {
    flex: 1;
}

.navbar-title-container {
    position: relative;
    display: inline-block;
}

.navbar-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 235, 59, 0.3);
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: -8px;
    right: -55px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 4px 8px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: liveBadgeHang 2s ease-in-out infinite;
    z-index: 10;
}

.live-text {
    color: #fff;
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.live-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 10px;
    animation: livePulse 1.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes liveBadgeHang {
    0%, 100% {
        transform: rotate(-2deg) translateY(0);
    }
    50% {
        transform: rotate(2deg) translateY(-2px);
    }
}

@keyframes livePulse {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-countdown {
    display: flex;
    align-items: center;
}

.navbar-countdown-timer {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navbar-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.navbar-countdown-number {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #ffeb3b;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.navbar-countdown-label {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Geometric Grid */
.geometric-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 59, 0.5), transparent);
    animation: gridPulse 4s infinite ease-in-out;
}

.grid-line-1 {
    width: 100%;
    height: 1px;
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.grid-line-2 {
    width: 100%;
    height: 1px;
    top: 40%;
    left: 0;
    animation-delay: -1s;
}

.grid-line-3 {
    width: 100%;
    height: 1px;
    top: 60%;
    left: 0;
    animation-delay: -2s;
}

.grid-line-4 {
    width: 1px;
    height: 100%;
    top: 0;
    left: 25%;
    animation-delay: -0.5s;
}

.grid-line-5 {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    animation-delay: -1.5s;
}

.grid-line-6 {
    width: 1px;
    height: 100%;
    top: 0;
    left: 75%;
    animation-delay: -2.5s;
}

/* Floating Cubes */
.floating-cubes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cube {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.4), rgba(255, 193, 7, 0.2));
    border: 1px solid rgba(255, 235, 59, 0.5);
    animation: cubeFloat 8s infinite ease-in-out;
    transform-style: preserve-3d;
}

.cube-1 {
    width: 40px;
    height: 40px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.cube-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: -2s;
    animation-duration: 8s;
}

.cube-3 {
    width: 30px;
    height: 30px;
    top: 80%;
    left: 25%;
    animation-delay: -4s;
    animation-duration: 7s;
}

.cube-4 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 70%;
    animation-delay: -1s;
    animation-duration: 9s;
}

.cube-5 {
    width: 35px;
    height: 35px;
    top: 40%;
    left: 5%;
    animation-delay: -3s;
    animation-duration: 5s;
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 235, 59, 0.6);
    animation: waveExpand 6s infinite ease-out;
}

.wave-1 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.wave-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 60%;
    animation-delay: -2s;
    animation-duration: 5s;
}

.wave-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 40%;
    animation-delay: -4s;
    animation-duration: 3s;
}

/* Particle Field */
.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    animation: particleFloat 10s infinite linear;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.9);
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    top: 20%;
    left: 30%;
    animation-delay: -1s;
    animation-duration: 12s;
}

.particle-3 {
    top: 40%;
    left: 60%;
    animation-delay: -2s;
    animation-duration: 10s;
}

.particle-4 {
    top: 60%;
    left: 20%;
    animation-delay: -3s;
    animation-duration: 9s;
}

.particle-5 {
    top: 80%;
    left: 80%;
    animation-delay: -4s;
    animation-duration: 11s;
}

.particle-6 {
    top: 30%;
    left: 90%;
    animation-delay: -5s;
    animation-duration: 7s;
}

.particle-7 {
    top: 70%;
    left: 50%;
    animation-delay: -6s;
    animation-duration: 13s;
}

.particle-8 {
    top: 50%;
    left: 5%;
    animation-delay: -7s;
    animation-duration: 6s;
}

/* Animations */
@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

@keyframes cubeFloat {
    0% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotateX(90deg) rotateY(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-60px) rotateX(180deg) rotateY(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) rotateX(270deg) rotateY(270deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) rotateX(360deg) rotateY(360deg);
        opacity: 0.3;
    }
}

@keyframes waveExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

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

span.live-text {
    -webkit-text-fill-color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
    isolation: isolate;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hero Copy Styling */
.hero-copy {
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.hero-location {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.underlined {
    text-decoration: underline;
    text-decoration-color: #ffeb3b;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.underlined-text span {
    text-decoration: underline;
    text-decoration-color: #333333;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.hero-main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 2rem 0;
    line-height: 1.1;
}

.hero-title-line-1 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 600;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.2),
        0 0 20px rgba(255, 193, 7, 0.1);
}

.toronto-underline {
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-decoration-thickness: 4px;
    text-underline-offset: 3px;
}

.hero-title-line-2-container {
    position: relative;
    display: inline-block;
}

.hero-title-line-2 {
    font-size: clamp(4rem, 9.6vw, 7.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.3),
        0 0 20px rgba(255, 193, 7, 0.2);
    white-space: nowrap;
    display: inline-block;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: auto;
}

.hero-title-line-2b {
    font-size: clamp(4rem, 9.6vw, 7.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.3),
        0 0 20px rgba(255, 193, 7, 0.2);
    white-space: nowrap;
    display: inline-block;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    will-change: auto;
}

.hero-live-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.6), 0 0 20px rgba(255, 68, 68, 0.4);
    animation: liveBadgeHang 2s ease-in-out infinite;
    z-index: 20;
}

.hero-live-badge .live-text {
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 10;
    white-space: nowrap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-live-badge .live-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 13px;
    animation: livePulse 1.5s ease-in-out infinite;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.hero-title-line-3 {
    font-size: clamp(1.92rem, 4vw, 2.88rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.25),
        0 0 20px rgba(255, 193, 7, 0.15);
}

.hero-details {
    max-width: 900px;
    margin: 0 auto;
}

.hero-details p {
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.hero-details strong {
    color: #ffeb3b;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

.hero-subheadline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-subheadline-line-1,
.hero-subheadline-line-2,
.hero-subheadline-line-3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.secondary-cta-link {
    display: inline-block;
    text-align: center;
    color: #ffeb3b;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    cursor: pointer;
}

.secondary-cta-link:hover {
    color: #ffc107;
    background: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 235, 59, 0.3);
    text-decoration: none;
}

.urgency-strip {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 500;
}

/* Case Study Video Section */
.case-study-video {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.case-study-headline {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Case-study-video section animated background - black elements */
.case-study-video .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.case-study-video .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.case-study-video .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.case-study-video .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Who-its-for section animated background - black elements (same as quick-nav) */
.who-its-for .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.who-its-for .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.who-its-for .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.who-its-for .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Case-study-video section text colors - black for light background */
.case-study-video .secondary-cta-link {
    color: #000000;
    background: rgb(0 0 0 / 10%);
    border-color: rgb(0 0 0 / 30%);
}

.case-study-video .secondary-cta-link:hover {
    color: #f57c00;
    background: rgba(255, 152, 0, 0.2);
    border-color: rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.case-study-video .urgency-strip {
    color: rgba(0, 0, 0, 0.7);
}

/* Who-its-for section text colors - black for light background (same as quick-nav) */
.who-its-for .secondary-cta-link {
    color: #000000;
    background: rgb(0 0 0 / 10%);
    border-color: rgb(0 0 0 / 30%);
}

.who-its-for .secondary-cta-link:hover {
    color: #f57c00;
    background: rgba(255, 152, 0, 0.2);
    border-color: rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.who-its-for .urgency-strip {
    color: rgba(0, 0, 0, 0.7);
}

/* About Rowell section text colors - black for light background */
.about-rowell .secondary-cta-link {
    color: #000000;
    background: rgb(0 0 0 / 10%);
    border-color: rgb(0 0 0 / 30%);
}

.about-rowell .secondary-cta-link:hover {
    color: #f57c00;
    background: rgba(255, 152, 0, 0.2);
    border-color: rgba(255, 152, 0, 0.5);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.about-rowell .urgency-strip {
    color: rgba(0, 0, 0, 0.7);
}

/* Proof Strip Section */
.proof-strip {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-strip h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.proof-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.proof-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.5);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.2);
}

.proof-item:hover::before {
    opacity: 1;
}

.proof-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.proof-item:hover .proof-image-wrapper {
    box-shadow: 0 12px 32px rgba(255, 235, 59, 0.3);
    border-color: rgba(255, 235, 59, 0.3);
    transform: scale(1.02);
}

.proof-image {
    width: 100%;
    height: 300px;
    object-fit: fill;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.95;
}

.proof-item:hover .proof-image {
    transform: scale(1.05);
    opacity: 1;
}

.proof-caption {
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.08), rgba(255, 193, 7, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
}

.proof-headline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    border-bottom: 2px solid rgba(255, 235, 59, 0.3);
    position: relative;
}

.proof-headline::before {
    content: '✓';
    display: inline-block;
    margin-right: 0.75rem;
    color: #ffeb3b;
    font-weight: 700;
    font-size: 1.3rem;
    vertical-align: middle;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    line-height: 1;
}

.proof-headline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffeb3b, transparent);
}

.proof-subheadline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.proof-item:hover .proof-caption {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.15), rgba(255, 193, 7, 0.1));
    border-color: rgba(255, 235, 59, 0.3);
    box-shadow: 0 4px 16px rgba(255, 235, 59, 0.2);
    transform: translateY(-2px);
}

.proof-item:hover .proof-headline {
    color: #ffffff;
    border-bottom-color: rgba(255, 235, 59, 0.6);
}

.proof-item:hover .proof-headline::after {
    width: 100px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, transparent);
}

.proof-item:hover .proof-subheadline {
    color: rgba(255, 255, 255, 0.95);
}

/* Make the image area more prominent */
.proof-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.proof-item:hover .proof-image-wrapper::after {
    opacity: 1;
}

.proof-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Who It's For Section */
.who-its-for {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.who-bullets {
    max-width: 800px;
    margin: 3rem auto;
}

.who-its-for h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    line-height: 1.3;
    padding: 0 1rem;
}

.who-its-for h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.4);
}

.who-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 2rem 2rem 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.who-bullet-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ffeb3b, #ffc107, #ff9800);
    opacity: 0.5;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.who-bullet-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.5);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.2);
    background: rgba(0, 0, 0, 0.65);
}

.who-bullet-item:hover::before {
    opacity: 1;
    width: 5px;
}

.who-bullet-item .check-icon {
    font-size: 1.8rem;
    color: #ffeb3b;
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.2), rgba(255, 193, 7, 0.15));
    border-radius: 50%;
    border: 2px solid rgba(255, 235, 59, 0.3);
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    transition: all 0.4s ease;
    font-weight: 700;
}

.who-bullet-item:hover .check-icon {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.3), rgba(255, 193, 7, 0.25));
    border-color: rgba(255, 235, 59, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 235, 59, 0.4);
}

.who-bullet-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
    flex: 1;
}

.who-bullet-item:hover p {
    color: #ffffff;
}

.outcome-line {
    text-align: center;
    margin: 4rem auto 3rem;
    padding: 2rem 3rem;
    background: rgb(0 0 0 / 10%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgb(0 0 0 / 30%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.outcome-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent, rgba(0, 0, 0, 0.3));
    transform: translateY(-50%);
    border-radius: 2px;
    opacity: 0.5;
}

.outcome-line:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 152, 0, 0.6);
    box-shadow: 0 6px 25px rgba(255, 152, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: rgba(255, 152, 0, 0.15);
}

.outcome-line:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.4), transparent);
}

.outcome-line p {
    color: #000000;
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    margin: 0;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
    text-align: center;
}

.outcome-line strong {
    color: #000000;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
}

.who-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Countdown Timer */
.countdown-container {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.countdown-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 600;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.countdown-item:hover::before {
    left: 100%;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 235, 59, 0.5);
    box-shadow: 0 12px 40px rgba(255, 235, 59, 0.2);
}

.countdown-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countdownPulse 1s ease-in-out infinite;
}

.countdown-label {
    display: block;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile responsiveness for countdown */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }

    .proof-image {
    width: 100%;
    height: 300px;
    object-fit: contain !important;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.95;
}

.hero-cta-btn {
    max-width: 90vw !important;
}

.hero-cta-btn span {
    margin: -3px !important;
}
    
    .countdown-item {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }
    
    .countdown-number {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .countdown-label {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
    }
    
    .hero-cta-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 0.3rem;
    }
    
    .hero-cta-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .cta-note {
        font-size: 0.9rem;
    }
}

/* Ensure content appears above animated backgrounds */
.container {
    position: relative;
    z-index: 5;
}

.form-container,
.stats-grid,
.urgency-content,
.details-grid,
.benefits-grid,
.steps-grid,
.why-content,
.credentials-grid,
.faq-content,
.cta-content {
    position: relative;
    z-index: 5;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
}

.hero-description {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 3rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-highlights {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 900px;
    backdrop-filter: blur(30px);
    position: relative;
    animation: highlightPulse 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.event-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0.6;
}

@keyframes highlightPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.event-highlights p {
    color: #ffffff;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Registration Form */
.registration {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(15, 15, 15, 0.6) 100%);
    backdrop-filter: blur(20px);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: #ffeb3b;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.2), 0 0 20px rgba(255, 235, 59, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    color: #000000;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

.cta-button::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-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 235, 59, 0.4);
}

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

.cta-button:active {
    transform: translateY(-1px);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(255, 235, 59, 0.5); }
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(15, 15, 15, 0.7) 100%);
    backdrop-filter: blur(20px);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(30px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffeb3b, #ffc107, #ff9800);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 235, 59, 0.1);
}

.stat-card:hover::before {
    opacity: 0.6;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Quick Navigation Menu */
/* Quick Navigation Hero Section (after hero) */
.quick-nav-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 6rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.quick-nav-hero .nav-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quick-nav-hero .nav-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quick-nav-hero .nav-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    margin: 0;
}

.quick-nav-hero .nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-nav-hero .nav-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.quick-nav-hero .nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 59, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-nav-hero .nav-card:hover::before {
    left: 100%;
}

.quick-nav-hero .nav-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.1);
    background: rgba(0, 0, 0, 0.65);
}

.quick-nav-hero .nav-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #ffeb3b;
}

.quick-nav-hero .nav-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.quick-nav-hero .nav-card:hover .nav-icon {
    background: rgba(255, 235, 59, 0.2);
    transform: scale(1.1);
}

.quick-nav-hero .cta-nav:hover .nav-icon {
    background: rgba(255, 235, 59, 0.1);
    transform: scale(1);
}

.quick-nav-hero .nav-content {
    flex: 1;
}

.quick-nav-hero .nav-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.quick-nav-hero .nav-card:hover .nav-content h3 {
    color: #ffeb3b;
}

.quick-nav-hero .nav-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.quick-nav-hero .nav-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quick-nav-hero .nav-card:hover .nav-arrow {
    color: #ffeb3b;
    transform: translateX(5px);
}

/* Quick-nav-hero section animated background - black elements */
.quick-nav-hero .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.quick-nav-hero .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.quick-nav-hero .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.quick-nav-hero .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.quick-nav {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.nav-header {
    text-align: center;
    margin-bottom: 4rem;
}

.nav-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333, #666666);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: underlinePulse 2s ease-in-out infinite;
}

.nav-subtitle {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animations for nav header */
@keyframes titleGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

@keyframes underlinePulse {
    0%, 100% {
        width: 80px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        width: 120px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
}

.nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}


.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15);
}

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

.nav-content {
    flex: 1;
}

.nav-arrow {
    font-size: 1.5rem;
    color: #ffeb3b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-card:hover .nav-arrow {
    transform: translateX(5px);
}

/* Special styling for CTA nav card */
.cta-nav {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.15), rgba(255, 193, 7, 0.1));
    border: 2px solid rgba(255, 235, 59, 0.3);
}

.cta-nav:hover {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.25), rgba(255, 193, 7, 0.2));
    border-color: rgba(255, 235, 59, 0.5);
}

.cta-nav .nav-icon {
    background: rgba(255, 235, 59, 0.1);
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-nav .nav-content h3 {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quick-nav section animated background - black elements */
.quick-nav .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.quick-nav .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.quick-nav .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.quick-nav .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Make nav cards smaller */
.nav-card {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 235, 59, 0.3);
    flex-shrink: 0;
    animation: iconFloat 3s ease-in-out infinite;
}

.nav-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.nav-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Mobile responsiveness for quick nav */
@media (max-width: 768px) {
    .nav-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-card {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .nav-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .nav-content h3 {
        font-size: 1.2rem;
    }
    
    .nav-content p {
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-header h2 {
        font-size: 1.8rem;
    }
    
    .nav-subtitle {
        font-size: 1rem;
    }
    
    .nav-card {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .nav-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .nav-content h3 {
        font-size: 1.1rem;
    }
    
    .nav-content p {
        font-size: 0.85rem;
    }
    
    .nav-arrow {
        font-size: 1.2rem;
    }
}

/* Urgency Banner */
.urgency {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.urgency-content h3 {
    color: #000000;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 600;
}

.seats-remaining {
    margin: 2rem 0;
}

.seats-number {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.2), rgba(255, 193, 7, 0.1));
    color: #ffeb3b;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-block;
    border: 2px solid #ffeb3b;
    backdrop-filter: blur(10px);
    animation: seatsPulse 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

@keyframes seatsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing {
    margin-top: 2rem;
}

.price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Event Details */
.event-details {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Map Container Styles */
.map-container {
    margin: 1.5rem;
}

/* Full width map card */
.map-card-full-width {
    max-width: none;
    width: 100%;
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.directions-btn,
.view-map-btn {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
    border: none;
    cursor: pointer;
}

.directions-btn:hover,
.view-map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.event-details-header {
    text-align: center;
    margin-bottom: 4rem;
}

.event-details-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
}

.event-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-details-card,
.audience-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.event-details-card::before,
.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
}

.event-details-card:hover,
.audience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 2.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
}

.event-icon,
.audience-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.event-info {
    padding: 2rem 2.5rem 2.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 235, 59, 0.2);
    transform: translateX(5px);
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffeb3b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.audience-content {
    padding: 2rem 2.5rem 2.5rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.audience-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(76, 175, 80, 0.3);
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

.audience-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.not-for-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 100, 100, 0.2);
    border-left: 4px solid rgba(255, 100, 100, 0.6);
}

.not-for-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 2px 4px rgba(255, 100, 100, 0.3));
}

.not-for-text {
    color: rgba(255, 100, 100, 0.9) !important;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

/* Mobile responsiveness for event details */
@media (max-width: 768px) {
    .details-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-header {
        padding: 2rem 2rem 1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .event-icon,
    .audience-icon {
        font-size: 1.5rem;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
    
    .event-info,
    .audience-content {
        padding: 1.5rem 2rem 2rem;
    }
    
    .info-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .audience-item {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .event-details-header h2 {
        font-size: 2rem;
    }
    
    .event-subtitle {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem;
        gap: 0.8rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .event-icon,
    .audience-icon {
        font-size: 1.3rem;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .event-info,
    .audience-content {
        padding: 1.2rem 1.5rem 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .audience-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .not-for-section {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
}

.target-audience p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.not-for {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 1rem;
    margin-top: 1rem;
}

/* What You Get */
.what-you-get {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

.benefits-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.benefits-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333, #666666);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: underlinePulse 2s ease-in-out infinite;
}

.benefits-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15);
}

.benefit-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 80px;
    text-align: center;
   
}

.benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex: 1;
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
    flex-shrink: 0;
}

.benefit-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.benefit-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-text {
    background: rgba(255, 235, 59, 0.1);
    color: #ffeb3b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 235, 59, 0.3);
    transition: all 0.3s ease;
}

.highlight-text:hover {
    background: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
    transform: translateY(-2px);
}

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

/* Mobile responsiveness for what-you-get */
@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .benefit-number {
        font-size: 3rem;
        min-width: 60px;
        align-self: flex-start;
    }
    
    .benefit-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
        align-self: flex-start;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-text h3 {
        font-size: 1.5rem;
    }
    
    .benefit-text p {
        font-size: 1rem;
    }
    
    .benefit-highlight {
        gap: 0.8rem;
    }
    
    .highlight-text {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefits-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .benefit-number {
        font-size: 2.5rem;
        min-width: 50px;
    }
    
    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon {
        font-size: 1.8rem;
    }
    
    .benefit-text h3 {
        font-size: 1.3rem;
    }
    
    .benefit-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-highlight {
        gap: 0.6rem;
    }
    
    .highlight-text {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Process Steps */
.process-steps {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.process-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-line {
    width: 3px;
    height: 120px;
    background: linear-gradient(180deg, #ffeb3b, #ffc107, #ff9800);
    margin-top: 1rem;
    border-radius: 2px;
    opacity: 0.6;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-top: 1rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.step-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.step-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.step-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    background: rgba(255, 235, 59, 0.1);
    color: #ffeb3b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 235, 59, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
    transform: translateY(-2px);
}

/* Mobile responsiveness for process-steps */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .timeline-marker {
        align-self: flex-start;
        flex-direction: row;
        gap: 2rem;
    }
    
    .timeline-line {
        width: 120px;
        height: 3px;
        margin-top: 0;
        margin-left: 1rem;
    }
    
    .timeline-content {
        padding-top: 0;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-info h3 {
        font-size: 1.5rem;
    }
    
    .step-info p {
        font-size: 1rem;
    }
    
    .step-features {
        gap: 0.8rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .process-header h2 {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-item {
        margin-bottom: 2.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .timeline-line {
        width: 80px;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-info h3 {
        font-size: 1.3rem;
    }
    
    .step-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .step-features {
        gap: 0.6rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Why Now */
.why-now {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-now-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-now-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.why-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.urgency-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.urgency-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.15);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
}

.urgency-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 193, 7, 0.5);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.25);
}

.card-icon {
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
    margin: 0 auto;
}

.urgency-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.card-content p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.urgency-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.highlight-item {
    background: rgba(255, 235, 59, 0.15);
    color: #ffc107;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    text-align: left;
}

.highlight-item:hover {
    background: rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateX(5px);
}

/* Special styling for different card types */
.time-sensitive .icon-wrapper {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.time-sensitive .card-content h3 {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reset-button .icon-wrapper {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.reset-button .card-content h3 {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.limited-time .icon-wrapper {
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
}

.limited-time .card-content h3 {
    background: linear-gradient(135deg, #ffd93d, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile responsiveness for why-now */
@media (max-width: 768px) {
    .urgency-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .urgency-card {
        padding: 2rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .urgency-icon {
        font-size: 2rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
    
    .card-content p {
        font-size: 1rem;
    }
    
    .urgency-highlights {
        gap: 0.6rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .why-now-header h2 {
        font-size: 2rem;
    }
    
    .why-subtitle {
        font-size: 1.1rem;
    }
    
    .urgency-card {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .urgency-icon {
        font-size: 1.8rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .urgency-highlights {
        gap: 0.5rem;
    }
    
    .highlight-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* About Rowell */
.about-rowell {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff8e1 50%, #f5f5f5 100%);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #000000, #333333, #666666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #000000, #333333, #666666);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: underlinePulse 2s ease-in-out infinite;
}

.about-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.rowell-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
}

.profile-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.profile-avatar {
    flex-shrink: 0;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffeb3b;
    box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
    animation: avatarGlow 3s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    border-color: #ffc107;
    box-shadow: 0 12px 30px rgba(255, 235, 59, 0.5);
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
}

.profile-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credentials-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credential-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.event-details .icon-wrapper {
    margin: 0px !important;
}

.credential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
}

.credential-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 235, 59, 0.3);
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.1);
}

.credential-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 235, 59, 0.3);
    margin: 0 auto;
}

.credential-symbol {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.credential-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

.credential-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.credential-title {
    font-size: 1rem;
    color: #ffeb3b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.credential-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.credential-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.highlight-tag {
    background: rgba(255, 235, 59, 0.1);
    color: #ffeb3b;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 235, 59, 0.3);
    transition: all 0.3s ease;
}

.highlight-tag:hover {
    background: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
    transform: translateY(-2px);
}

@keyframes avatarGlow {
    0% {
        box-shadow: 0 8px 20px rgba(255, 235, 59, 0.3);
    }
    100% {
        box-shadow: 0 12px 30px rgba(255, 235, 59, 0.5);
    }
}

/* Section CTAs */
.stats-cta,
.urgency-cta,
.event-details-cta,
.benefits-cta,
.process-cta,
.why-now-cta,
.about-rowell-cta,
.faq-cta {
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-cta-btn,
.urgency-cta-btn,
.event-details-cta-btn,
.benefits-cta-btn,
.process-cta-btn,
.why-now-cta-btn,
.about-rowell-cta-btn,
.faq-cta-btn {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 
        0 6px 20px rgba(255, 235, 59, 0.4),
        0 3px 8px rgba(255, 193, 7, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite;
    border: 1px solid rgba(255, 193, 7, 0.4);
    transform-style: preserve-3d;
    transform: translateY(-1px);
}

.stats-cta-btn::before,
.urgency-cta-btn::before,
.event-details-cta-btn::before,
.benefits-cta-btn::before,
.process-cta-btn::before,
.why-now-cta-btn::before,
.about-rowell-cta-btn::before,
.faq-cta-btn::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.5s ease;
}

.stats-cta-btn:hover::before,
.urgency-cta-btn:hover::before,
.event-details-cta-btn:hover::before,
.benefits-cta-btn:hover::before,
.process-cta-btn:hover::before,
.why-now-cta-btn:hover::before,
.about-rowell-cta-btn:hover::before,
.faq-cta-btn:hover::before {
    left: 100%;
}

.stats-cta-btn:hover,
.urgency-cta-btn:hover,
.event-details-cta-btn:hover,
.benefits-cta-btn:hover,
.process-cta-btn:hover,
.why-now-cta-btn:hover,
.about-rowell-cta-btn:hover,
.faq-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(255, 235, 59, 0.5),
        0 4px 12px rgba(255, 193, 7, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.stats-cta-btn:active,
.urgency-cta-btn:active,
.event-details-cta-btn:active,
.benefits-cta-btn:active,
.process-cta-btn:active,
.why-now-cta-btn:active,
.about-rowell-cta-btn:active,
.faq-cta-btn:active {
    transform: translateY(0px) scale(0.98);
    box-shadow: 
        0 2px 6px rgba(255, 235, 59, 0.6),
        0 1px 3px rgba(255, 193, 7, 0.5),
        inset 0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffc107, #ff9800);
    transition: all 0.1s ease;
}

.stats-cta .cta-text,
.urgency-cta .cta-text,
.event-details-cta .cta-text,
.benefits-cta .cta-text,
.process-cta .cta-text,
.why-now-cta .cta-text,
.about-rowell-cta .cta-text,
.faq-cta .cta-text {
    position: relative;
    z-index: 2;
}

.stats-cta .cta-arrow,
.urgency-cta .cta-arrow,
.event-details-cta .cta-arrow,
.benefits-cta .cta-arrow,
.process-cta .cta-arrow,
.why-now-cta .cta-arrow,
.about-rowell-cta .cta-arrow,
.faq-cta .cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.stats-cta-btn:hover .cta-arrow,
.urgency-cta-btn:hover .cta-arrow,
.event-details-cta-btn:hover .cta-arrow,
.benefits-cta-btn:hover .cta-arrow,
.process-cta-btn:hover .cta-arrow,
.why-now-cta-btn:hover .cta-arrow,
.about-rowell-cta-btn:hover .cta-arrow,
.faq-cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.stats-cta .cta-note,
.urgency-cta .cta-note,
.event-details-cta .cta-note,
.benefits-cta .cta-note,
.process-cta .cta-note,
.why-now-cta .cta-note,
.about-rowell-cta .cta-note,
.faq-cta .cta-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Urgency CTA note override for light background */
.urgency-cta .cta-note {
    color: #000000;
}

/* Urgency section text overrides for light background */
.urgency .seats-number {
    color: #000000;
}

.urgency .price {
    color: #000000;
}

.urgency .price-note {
    color: rgba(0, 0, 0, 0.7);
}

/* Why-now section card overrides - restore dark theme */
.why-now .urgency-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.why-now .urgency-card:hover {
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15);
}

.why-now .card-content h3 {
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-now .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.why-now .highlight-item {
    background: rgba(255, 235, 59, 0.1);
    color: #ffeb3b;
    border: 1px solid rgba(255, 235, 59, 0.3);
}

.why-now .highlight-item:hover {
    background: rgba(255, 235, 59, 0.2);
    border-color: rgba(255, 235, 59, 0.5);
}

/* What-you-get section text overrides for light background */
.what-you-get .benefits-subtitle {
    color: rgba(0, 0, 0, 0.8);
}

.what-you-get .benefits-cta .cta-note {
    color: #000000;
}

/* Force dark card styling for what-you-get section */
.what-you-get .benefit-item {
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.what-you-get .benefit-item:hover {
    border-color: rgba(255, 235, 59, 0.4) !important;
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15) !important;
}

.what-you-get .benefit-text p {
    color: rgba(255, 255, 255, 0.9) !important;
}



/* What-you-get section animated background - black elements */
.what-you-get .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.what-you-get .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.what-you-get .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.what-you-get .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* About-rowell section text overrides for light background */
.about-rowell .about-subtitle {
    color: rgba(0, 0, 0, 0.8);
}

.about-rowell .about-rowell-cta .cta-note {
    color: #000000;
}

/* About-rowell section card overrides - glassy black cards */
.about-rowell .profile-card {
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.about-rowell .profile-card:hover {
    border-color: rgba(255, 235, 59, 0.4) !important;
    box-shadow: 0 20px 60px rgba(255, 235, 59, 0.15) !important;
}

.about-rowell .credential-card {
    background: rgba(0, 0, 0, 0.55) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.about-rowell .credential-card:hover {
    border-color: rgba(255, 235, 59, 0.3) !important;
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.1) !important;
}

/* About-rowell section icon wrapper override - large size for credential images */
.about-rowell .icon-wrapper {
    width: 250px !important;
    height: 250px !important;
}

/* About-rowell section animated background - black elements */
.about-rowell .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.about-rowell .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.about-rowell .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.about-rowell .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Urgency section animated background - black elements */
.urgency .grid-line {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.4), transparent);
}

.urgency .cube {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 26, 0.2));
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.urgency .wave {
    border: 2px solid rgba(0, 0, 0, 0.5);
}

.urgency .particle {
    background: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Mobile responsiveness for about-rowell */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-stats {
        gap: 2rem;
        justify-content: center;
    }
    
    .credentials-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .credential-card {
        padding: 2rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .about-rowell .icon-wrapper {
        width: 150px !important;
        height: 150px !important;
    }
    
    .credential-symbol {
        font-size: 1.5rem;
    }
    
    .credential-image {
        width: 100%;
        height: 100%;
    }
    
    .credential-content h4 {
        font-size: 1.2rem;
    }
    
    .credential-description {
        font-size: 0.9rem;
    }
    
    .highlight-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .profile-card {
        padding: 2rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-info h3 {
        font-size: 2rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .credential-card {
        padding: 1.5rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .about-rowell .icon-wrapper {
        width: 120px !important;
        height: 120px !important;
    }
    
    .credential-symbol {
        font-size: 1.3rem;
    }
    
    .credential-image {
        width: 100%;
        height: 100%;
    }
    
    .credential-content h4 {
        font-size: 1.1rem;
    }
    
    .credential-title {
        font-size: 0.9rem;
    }
    
    .credential-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .credential-highlights {
        gap: 0.4rem;
    }
    
    .highlight-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Mobile responsiveness for section CTAs */
@media (max-width: 768px) {
    .stats-cta-btn,
    .urgency-cta-btn,
    .event-details-cta-btn,
    .benefits-cta-btn,
    .process-cta-btn,
    .why-now-cta-btn,
    .about-rowell-cta-btn,
    .faq-cta-btn {
        width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stats-cta-btn,
    .urgency-cta-btn,
    .event-details-cta-btn,
    .benefits-cta-btn,
    .process-cta-btn,
    .why-now-cta-btn,
    .about-rowell-cta-btn,
    .faq-cta-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .stats-cta .cta-arrow,
    .urgency-cta .cta-arrow,
    .event-details-cta .cta-arrow,
    .benefits-cta .cta-arrow,
    .process-cta .cta-arrow,
    .why-now-cta .cta-arrow,
    .about-rowell-cta .cta-arrow,
    .faq-cta .cta-arrow {
        font-size: 1.3rem;
    }
    
    .stats-cta .cta-note,
    .urgency-cta .cta-note,
    .event-details-cta .cta-note,
    .benefits-cta .cta-note,
    .process-cta .cta-note,
    .why-now-cta .cta-note,
    .about-rowell-cta .cta-note,
    .faq-cta .cta-note {
        font-size: 0.9rem;
    }
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(15, 15, 15, 0.7) 100%);
    backdrop-filter: blur(20px);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-content p {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 3rem;
}

.faq-questions {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffeb3b, #ffc107, #ff9800);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 235, 59, 0.3);
    box-shadow: 0 12px 40px rgba(255, 235, 59, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-questions {
        margin: 0 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .faq-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(15, 15, 15, 0.8) 100%);
    backdrop-filter: blur(20px);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.cta-content .cta-button {
    max-width: 350px;
    margin: 3rem auto 0;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(15, 15, 15, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 1rem;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .hero-main-title {
        gap: 0.4rem;
    }
    
    .hero-title-line-1 {
        font-size: clamp(1.3rem, 2vw, 1.3rem);
    }
    
    .hero-title-line-2 {
        font-size: clamp(2.4rem, 5vw, 3.5rem);
        white-space: normal;
    }
    
    .hero-title-line-2b {
        font-size: clamp(2.7rem, 5vw, 3.5rem);
        white-space: normal;
    }
    
    .hero-title-line-3 {
        font-size: clamp(1rem, 3.52vw, 2.4rem);
    }
    
    .hero-subheadline {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proof-item {
        padding: 1.5rem;
    }
    
    .who-bullets {
        margin: 2rem 1rem;
    }
    
    .who-bullet-item {
        padding: 1.5rem 1.2rem 1.5rem 1rem;
        margin-bottom: 1.2rem;
        gap: 1rem;
    }
    
    .who-bullet-item .check-icon {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .who-bullet-item p {
        font-size: 1rem;
    }
    
    .outcome-line {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }
    
    .case-study-headline {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        gap: 0.3rem;
    }
    
    .hero-title-line-1 {
        font-size: clamp(1.3rem, 2vw, 1.3rem);
    }
    
    .hero-title-line-2 {
        font-size: clamp(2.4rem, 5vw, 3.5rem);
        white-space: normal;
    }
    
    .hero-title-line-2b {
        font-size: clamp(2.7rem, 5vw, 3.5rem);
        white-space: normal;
    }
    
    .hero-title-line-3 {
        font-size: clamp(1rem, 3.2vw, 2.08rem);
    }
    
    .hero-subheadline {
        font-size: clamp(0.95rem, 2vw, 1.2rem);
    }
    
    .proof-item {
        padding: 1.2rem;
    }
    
    .proof-caption {
        font-size: 0.9rem;
    }
    
    .who-bullet-item {
        padding: 1.2rem 1rem 1.2rem 0.8rem;
        margin-bottom: 1rem;
        gap: 0.8rem;
    }
    
    .who-bullet-item .check-icon {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    
    .who-bullet-item p {
        font-size: 0.95rem;
    }
    
    .outcome-line {
        padding: 1.5rem 1.2rem;
        margin: 2rem 0.5rem;
    }
    
    .outcome-line p {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }
    
    .secondary-cta-link {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .urgency-strip {
        font-size: 0.8rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-navbar {
        padding: 0.8rem 1rem;
    }
    
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .navbar-left,
    .navbar-right {
        flex: none;
    }
    
    .navbar-countdown-timer {
        gap: 0.8rem;
    }
    
    .navbar-countdown-item {
        min-width: 40px;
    }
    
    .live-badge {
        top: -6px;
        right: -23px;
        padding: 3px 6px;
    }
    
    .live-text {
        font-size: clamp(0.5rem, 1.2vw, 0.7rem);
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-details p {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .details-grid,
    .benefits-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card,
    .credential {
        padding: 1.5rem;
    }
    
    .event-highlights {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .urgency {
        padding: 1.5rem 0;
    }
    
    .seats-number {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .price {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .price-note {
        margin-left: 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    .benefit-card,
    .credential,
    .detail-card {
        padding: 1.25rem;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 12px;
        width: 100% !important;
    }
    
    .seats-number {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
.cta-button:focus,
.form-group input:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
    }
    
    .benefit-card,
    .credential,
    .detail-card {
        border: 2px solid #fff;
    }
}

/* Form Submission Modal */
.form-submission-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-submission-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-submission-modal .modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 4rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 235, 59, 0.3);
    max-width: 500px;
    width: 90%;
}

.form-submission-modal .modal-message {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.form-submission-modal .modal-message #countdown-number {
    color: #000000;
    font-weight: 800;
    font-size: 1.8rem;
}

.form-submission-modal .countdown-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.form-submission-modal .countdown-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffeb3b, #ffc107);
    border-radius: 4px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .form-submission-modal .modal-content {
        padding: 2rem 2.5rem;
    }
    
    .form-submission-modal .modal-message {
        font-size: 1.2rem;
    }
    
    .form-submission-modal .modal-message #countdown-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-submission-modal .modal-content {
        padding: 1.5rem 2rem;
    }
    
    .form-submission-modal .modal-message {
        font-size: 1rem;
    }
    
    .form-submission-modal .modal-message #countdown-number {
        font-size: 1.3rem;
    }
}
