/* ==========================================================================
   HYBRID HOMEPAGE STYLES - Phase 2 Enhancement
   Combines conversion optimization with SEO/trust elements
   ========================================================================== */

/* ==========================================================================
   HERO SECTION ENHANCEMENTS
   ========================================================================== */

/* ==========================================================================
   DESKTOP-FIRST HERO OPTIMIZATION
   ========================================================================== */

/* Desktop grid layout for hero section */
@media (min-width: 1200px) {
    .hero {
        padding: 120px 60px 80px; /* Increase from 20px horizontal padding */
    }
    
    .hero-content {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr; /* Text column | Chart column */
        gap: 80px;
        align-items: center;
    }
    
    /* Force all text elements into left column */
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .trust-indicators,
    .hero-cta,
    .stats-container {
        grid-column: 1;
        text-align: left;
        align-self: flex-start;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-badge {
        margin-right: auto;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 4.5vw, 5.5rem);
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: clamp(1.25rem, 1.75vw, 1.75rem);
        margin-bottom: 2rem;
        max-width: 540px;
    }
    
    .trust-indicators {
        justify-content: flex-start;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .hero-cta {
        font-size: 1.375rem;
        padding: 1.25rem 3rem;
        margin: 2rem 0;
    }
    
    .stats-container {
        justify-content: flex-start;
        gap: 3rem;
        width: 100%;
    }
    
    /* CRITICAL: Chart sizing and positioning for desktop */
    .chart-container {
        grid-column: 2 !important;
        grid-row: 1 / span 7 !important; /* Span all text rows */
        width: 600px !important;
        height: 600px !important;
        margin: 0 !important;
        position: relative;
        transform: perspective(1200px) rotateY(-5deg);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .chart-container:hover {
        transform: perspective(1200px) rotateY(0deg) scale(1.05);
        filter: drop-shadow(0 20px 60px rgba(102, 126, 234, 0.4));
    }
}

/* 14" MacBook Pro optimization (1512px logical width) */
@media (min-width: 1400px) and (max-width: 1600px) {
    .hero-content {
        max-width: 1360px;
        gap: 60px;
    }
    
    .chart-container {
        width: 650px !important;
        height: 650px !important;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Ultra-wide screens (1600px+) */
@media (min-width: 1600px) {
    .hero {
        padding: 140px 80px 100px;
    }
    
    .hero-content {
        max-width: 1600px;
        gap: 100px;
    }
    
    .chart-container {
        width: 800px !important;
        height: 800px !important;
    }
    
    .hero-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        max-width: 600px;
    }
}

/* Enhanced gradient orbs for desktop */
@media (min-width: 1200px) {
    .orb-1 {
        width: 800px !important;
        height: 800px !important;
        top: -30%;
        left: -20%;
    }
    
    .orb-2 {
        width: 700px !important;
        height: 700px !important;
        bottom: -30%;
        right: -20%;
    }
    
    .orb-3 {
        width: 600px !important;
        height: 600px !important;
        top: 50%;
        left: 60%;
    }
}

/* Live pulse animation for badge */
.live-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(102, 126, 234, 0);
    }
}

/* Counter animation */
.counter-animate {
    display: inline-block;
    min-width: 2.5ch;
    text-align: center;
}

/* Trust indicators with stagger animation */
.trust-item {
    opacity: 0;
    transform: translateY(20px);
}

.trust-item.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Stats number animation */
.stat-number {
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-number.animated::after {
    transform: scaleX(1);
}

/* ==========================================================================
   TRUST BAR / AS FEATURED IN - CLEANED & OPTIMIZED VERSION
   ========================================================================== */

.trust-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 0 0.75rem 0;
    position: relative;
    overflow: hidden;
}

.trust-bar-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Fixed centered label - positioned above logos */
.trust-label-fixed {
    position: absolute;
    left: 50%;
    top: -55px;  /* Changed from 0 to -10px to move it above the logos */
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(8, 8, 8, 0.95);
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Container for the scrolling effect */
.trust-logos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 35px;
    margin-top: 3rem; /* Space for the absolute positioned label */
}

/* Scrolling logos */
.trust-logos-scroll {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.trust-logos-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    white-space: nowrap;
}

/* Hide any inline labels in the scroll */
.trust-logos-group .trust-label {
    display: none;
}

/* Logo styling */
.trust-logo {
    display: flex;
    align-items: center;
    height: 30px;
    filter: brightness(0) invert(0.6); /* Gray color matching the label */
    opacity: 0.8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.trust-logo img {
    height: 100%;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.trust-logo:hover {
    filter: brightness(0) invert(0.8);
    opacity: 1;
    transform: scale(1.05);
}

/* Fallback text when images don't load */
.logo-fallback {
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.trust-bar:hover .trust-logos-scroll {
    animation-play-state: paused;
}

/* ==========================================================================
   TRUST BAR DESKTOP ENHANCEMENT (Override existing)
   ========================================================================== */
@media (min-width: 1200px) {
    .trust-bar {
        padding: 5rem 60px 3rem !important;
    }
    
    .trust-bar-container {
        max-width: 1600px !important;
    }
    
    .trust-logos-wrapper {
        height: 45px !important;
        margin-top: 3rem;
    }
    
    .trust-label-fixed {
        font-size: 0.95rem;
        padding: 0.6rem 2.5rem;
    }
    
    .trust-logo {
        height: 35px !important;
    }
    
    .trust-logo img {
        max-width: 140px !important;
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .trust-bar {
        padding: 1rem 0 0.5rem 0;
    }
    
    .trust-label-fixed {
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
    }
    
    .trust-logos-wrapper {
        height: 30px;
        margin-top: 2.5rem;
    }
    
    .trust-logos-group {
        gap: 3rem;
    }
    
    .trust-logo {
        height: 25px;
    }
    
    .trust-logo img {
        max-width: 100px;
    }
    
    .trust-logos-scroll {
        animation-duration: 15s;
    }
}

/* ==========================================================================
   DARK MODE COMPATIBILITY
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    .trust-logo {
        filter: brightness(0) invert(0.6);
    }
    
    .trust-logo:hover {
        filter: brightness(0) invert(0.8);
    }
}

/* ==========================================================================
   CURIOSITY STATS DESKTOP ENHANCEMENT (Override existing)
   ========================================================================== */
@media (min-width: 1200px) {
    .curiosity-stats {
        max-width: 1200px;
        margin: 4rem auto;
        padding: 0 60px;
    }
    
    .stat-card {
        padding: 3rem 2.5rem !important;
    }
    
    .stat-value {
        font-size: 4rem !important;
    }
}


/* ==========================================================================
   CURIOSITY GAP SECTION
   ========================================================================== */

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

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.2),
        0 0 0 1px rgba(102, 126, 234, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: icon-float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
    animation: gradient-shift 3s ease infinite;
}

/* Mirror Hook Styling */
.mirror-hook {
    text-align: center;
    padding: 3rem 2rem;
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(164, 85, 247, 0.05)),
        radial-gradient(circle at top right, rgba(245, 87, 108, 0.05), transparent),
        radial-gradient(circle at bottom left, rgba(79, 172, 254, 0.05), transparent);
    border-radius: 24px;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.mirror-hook::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1), transparent);
    animation: rotate-bg 20s linear infinite;
}

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

.mirror-hook h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-light);
    position: relative;
    z-index: 1;
}

.mirror-question {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.mirror-question strong {
    color: var(--color-light);
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 4px;
}

.mirror-cta {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Quiz CTA Box Enhancement */
.quiz-cta-box {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(164, 85, 247, 0.08)),
        radial-gradient(ellipse at top, rgba(102, 126, 234, 0.1), transparent);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.quiz-cta-box::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.quiz-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.quiz-cta-box:hover::after {
    opacity: 0.15;
}

.micro-commitment {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ==========================================================================
   SAMPLE QUESTION SECTION
   ========================================================================== */

.sample-preview {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.sample-question-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sample-question-card.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.sample-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.sample-options .option {
    padding: 0.75rem 2rem;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.sample-options .option::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.sample-options .option:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(102, 126, 234, 0.2);
    border-color: var(--color-purple);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.25);
}

.sample-options .option:hover::before {
    width: 150px;
    height: 150px;
}

.sample-options .option.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    animation: option-selected 0.4s ease;
}

@keyframes option-selected {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.08);
    }
}

.sample-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    color: var(--color-purple);
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.4s ease;
}

.sample-cta {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

.sample-cta strong {
    color: var(--color-light);
}

.sample-cta a {
    color: var(--color-purple);
    text-decoration: none;
    position: relative;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sample-cta a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-purple);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.sample-cta a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   SOCIAL PROOF TICKER
   ========================================================================== */

.social-proof-ticker {
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.05), 
        rgba(164, 85, 247, 0.03), 
        rgba(102, 126, 234, 0.05));
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-item {
    padding: 0 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.ticker-item strong {
    color: var(--color-light);
    margin-right: 0.25rem;
    font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.2);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.faq-question {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-light);
    padding: 1.5rem;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-purple);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    animation: fadeInUp 0.3s ease;
}

.faq-answer p {
    margin: 0;
}

/* ==========================================================================
   STICKY QUIZ BAR ENHANCEMENTS
   ========================================================================== */

.sticky-quiz-bar {
    backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(90deg, 
        rgba(15, 15, 15, 0.95),
        rgba(20, 15, 25, 0.95),
        rgba(15, 15, 15, 0.95));
    box-shadow: 
        0 -10px 40px rgba(102, 126, 234, 0.1),
        0 -2px 10px rgba(0, 0, 0, 0.5);
}

.sticky-quiz-bar.visible {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.quiz-takers-live {
    color: #4ade80;
    font-weight: 600;
}

.sticky-quiz-btn {
    position: relative;
    overflow: hidden;
}

.sticky-quiz-btn::after {
    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;
}

.sticky-quiz-btn:hover::after {
    left: 100%;
}



/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

.fade-in,
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible,
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for lists */
.animate-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }

/* ==========================================================================
   SECTIONS & CONTAINERS DESKTOP
   ========================================================================== */
@media (min-width: 1200px) {
    .section {
        padding: 120px 60px !important;
    }
    
    .container {
        max-width: 1400px !important;
    }
    
    .section-title {
        font-size: 4rem !important;
    }
    
    .section-subtitle {
        font-size: 1.5rem !important;
        max-width: 900px;
    }
}

/* ==========================================================================
   NAVIGATION DESKTOP SPACING
   ========================================================================== */
@media (min-width: 1200px) {
    .nav {
        padding: 2rem 60px !important;
    }
    
    .nav.scrolled {
        padding: 1.25rem 60px !important;
    }
    
    .nav-container {
        max-width: 1600px;
    }
    
    .logo {
        font-size: 1.75rem;
    }
    
    .nav-links {
        gap: 4rem;
    }
}

/* ==========================================================================
   STICKY QUIZ BAR DESKTOP (Override existing)
   ========================================================================== */
@media (min-width: 1200px) {
    .sticky-quiz-bar {
        padding: 1.5rem 60px !important;
    }
    
    .sticky-quiz-text {
        font-size: 1.25rem !important;
    }
    
    .sticky-quiz-btn {
        padding: 1rem 3rem !important;
        font-size: 1.125rem !important;
    }
}

/* ==========================================================================
   FAQ SECTION DESKTOP
   ========================================================================== */
@media (min-width: 1200px) {
    .faq-container {
        max-width: 1000px !important;
    }
    
    .faq-question {
        font-size: 1.25rem !important;
        padding: 2rem !important;
    }
    
    .faq-answer {
        font-size: 1.125rem !important;
        padding: 0 2rem 2rem !important;
    }
}

/* ==========================================================================
   FOOTER DESKTOP
   ========================================================================== */
@media (min-width: 1200px) {
    .footer {
        padding: 80px 60px 40px !important;
    }
    
    .footer-content {
        max-width: 1400px !important;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
        gap: 4rem !important;
    }
}

/* ==========================================================================
   MOBILE SAFETY OVERRIDES
   Ensure mobile layout is preserved
   ========================================================================== */
@media (max-width: 1199px) {
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
        max-width: 100% !important;
    }
    
    .chart-container {
        width: min(85vw, 500px) !important;
        height: min(85vw, 500px) !important;
        margin: 3rem auto !important;
        grid-column: unset !important;
        grid-row: unset !important;
    }
    
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .trust-indicators,
    .hero-cta,
    .stats-container {
        grid-column: unset !important;
        text-align: center !important;
        align-self: center !important;
    }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
    .curiosity-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .mirror-hook {
        padding: 2rem 1.5rem;
    }
    
    .mirror-question {
        font-size: 1.125rem;
    }
    
    .sample-options {
        flex-direction: column;
    }
    
    .sample-options .option {
        width: 100%;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .quiz-cta-box {
        padding: 2rem 1.5rem;
    }
}

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