        @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Source+Sans+3:wght@400;600;700;900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            overflow-x: hidden;
            background: #fff;
        }

        /* POP ART SPLIT HERO */
        .hero-pop-split {
            display: grid;
            grid-template-columns: 55% 45%;
            min-height: 100vh;
        }

        /* Left side - Bold magenta with content */
        .hero-left-pop {
            background: #dd4298;
            padding: 6rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Halftone dot pattern overlay */
        .hero-left-pop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle, rgba(0,0,0,0.15) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.4;
        }

        /* Splatter texture */
        .hero-left-pop::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/_3000-600-SPLATTER.png') center/cover;
            opacity: 0.2;
            mix-blend-mode: multiply;
        }

        .hero-content-left {
            position: relative;
            z-index: 10;
            max-width: 650px;
        }

        .logo-pop {
            max-width: 500px;
            margin-bottom: 4rem;
            animation: popIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }

        .logo-pop img {
            width: 100%;
            height: auto;
            filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.15));
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.8) rotate(-5deg);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }

        .hero-badge-pop {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
            opacity: 0;
            animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s forwards;
        }

        @keyframes slideInPop {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title-pop {
            font-family: 'Source Sans 3', sans-serif;
            font-size: clamp(3.5rem, 7vw, 7rem);
            font-weight: 900;
            color: #fff;
            line-height: 0.95;
            letter-spacing: -3px;
            margin-bottom: 2rem;
            text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
            opacity: 0;
            animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
        }

        .hero-subtitle-pop {
            font-size: 1.6rem;
            line-height: 1.6;
            color: #fff;
            font-weight: 600;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
            opacity: 0;
            animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.7s forwards;
        }

        .hero-cta-pop {
            display: inline-block;
            padding: 2rem 4rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 4px solid #000;
            box-shadow: 8px 8px 0px #000;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            animation: slideInPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.9s forwards;
        }

        .hero-cta-pop:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0px #000;
            background: #bed745;
        }

        /* CTA button with green shadow variant */
        .cta-btn-green {
            display: inline-block;
            padding: 2rem 4rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 4px solid #000;
            box-shadow: 8px 8px 0px #bed745;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            align-self: flex-start;
        }

        .cta-btn-green:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0px #fff;
            background: #bed745;
            color: #fff;
        }

        /* Right side - Image showcase */
        .hero-right-pop {
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        /* Colorful geometric shapes */
        .shape-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: #bed745;
            top: -10%;
            right: -10%;
            animation: float1 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: #f19235;
            bottom: -5%;
            left: -5%;
            animation: float2 10s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-30px, 30px); }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .hero-image-container {
            position: relative;
            max-width: 450px;
            z-index: 10;
        }

        .hero-lightbulb {
            width: 100%;
            height: auto;
            filter: drop-shadow(10px 10px 0px rgba(0, 0, 0, 0.2));
            animation: spinIn 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }

        @keyframes spinIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }
            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

        .hero-info-box {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: #f19235;
            padding: 2rem;
            border: 4px solid #000;
            box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.3);
            animation: popUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.2s forwards;
            opacity: 0;
        }

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

        .info-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #000;
            font-weight: 900;
            margin-bottom: 0.3rem;
        }

        .info-value {
            font-family: 'Nunito', sans-serif;
            font-size: 1.3rem;
            font-weight: 900;
            color: #000;
        }

        /* COMIC BOOK STYLE CONTENT SECTION */
        .content-comic {
            padding: 8rem 6%;
            background: #fff;
            position: relative;
        }

        /* Splatter background */
        .content-comic::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/_3000-SPLATTER-HEADER.jpg') center/cover;
            opacity: 0.03;
        }

        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-number-pop {
            font-family: 'Nunito', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 4px #dd4298;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .section-title-pop {
            font-family: 'Source Sans 3', sans-serif;
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 900;
            color: #000;
            line-height: 1;
            letter-spacing: -3px;
            margin-bottom: 4rem;
            text-transform: uppercase;
        }

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

        .content-text-pop {
            font-size: 1.2rem;
            line-height: 1.9;
            color: #374151;
            margin-bottom: 2rem;
        }

        /* Pop art speech bubble */
        .speech-bubble {
            background: #bed745;
            padding: 3rem;
            border: 5px solid #000;
            position: relative;
            box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
            margin: 3rem 0;
        }

        .speech-bubble::before {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50px;
            width: 0;
            height: 0;
            border-left: 30px solid transparent;
            border-right: 0px solid transparent;
            border-top: 30px solid #000;
        }

        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -21px;
            left: 54px;
            width: 0;
            height: 0;
            border-left: 26px solid transparent;
            border-right: 0px solid transparent;
            border-top: 26px solid #bed745;
        }

        .speech-bubble p {
            font-family: 'Nunito', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: #000;
            line-height: 1.5;
        }

        /* QUESTIONS - 2x2 + CENTERED */
        .questions-pop {
            padding: 8rem 6%;
            background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
        }

        .questions-header-pop {
            text-align: center;
            margin-bottom: 6rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .questions-number-pop {
            font-family: 'Nunito', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 4px #f19235;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .questions-title-pop {
            font-family: 'Source Sans 3', sans-serif;
            font-size: clamp(3rem, 7vw, 7rem);
            font-weight: 900;
            color: #000;
            line-height: 1;
            letter-spacing: -4px;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .questions-subtitle-pop {
            font-size: 1.4rem;
            color: #000;
            font-weight: 600;
            line-height: 1.7;
        }

        .questions-grid-pop {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .question-card-pop:last-child {
            grid-column: 1 / -1;
            max-width: 650px;
            margin: 0 auto;
            width: 100%;
        }

        .question-card-pop {
            background: #fff;
            border: 5px solid #000;
            padding: 3rem;
            position: relative;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .question-card-pop::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: -10px;
            bottom: -10px;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .question-card-pop:nth-child(1)::before { background: #dd4298; }
        .question-card-pop:nth-child(2)::before { background: #bed745; }
        .question-card-pop:nth-child(3)::before { background: #f19235; }
        .question-card-pop:nth-child(4)::before { background: #dd4298; }
        .question-card-pop:nth-child(5)::before { background: #bed745; }

        .question-card-pop:hover {
            transform: translate(-5px, -5px);
        }

        .question-card-pop:hover::before {
            transform: translate(8px, 8px);
        }

        .question-num-pop {
            font-family: 'Nunito', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .question-card-pop:nth-child(1) .question-num-pop { color: #dd4298; }
        .question-card-pop:nth-child(2) .question-num-pop { color: #bed745; }
        .question-card-pop:nth-child(3) .question-num-pop { color: #f19235; }
        .question-card-pop:nth-child(4) .question-num-pop { color: #dd4298; }
        .question-card-pop:nth-child(5) .question-num-pop { color: #bed745; }

        .question-title-pop {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.6rem;
            font-weight: 900;
            color: #000;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .question-text-pop {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #000;
        }

        /* IMMERSIVE FINAL CTA - From Concept 9 */
        .final-cta {
            background: #fff;
            padding: 0;
            position: relative;
        }

        /* Split design */
        .cta-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .cta-left {
            background: #dd4298;
            padding: 8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-left::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('../images/_3000-600-SPLATTER.png') center/cover;
            opacity: 0.2;
            mix-blend-mode: multiply;
        }

        .cta-lightbulb-big {
            width: 80%;
            max-width: 400px;
            height: auto;
            filter: brightness(0) invert(1) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
            position: relative;
            animation: pulse 4s ease-in-out infinite;
            transition: filter 0.6s ease, transform 0.3s ease;
            cursor: pointer;
        }

        /* Illuminate on hover - reveal color lightbulb */
        .cta-lightbulb-big:hover {
            filter: drop-shadow(0 0 80px rgba(221, 66, 152, 0.8)) drop-shadow(0 0 40px rgba(190, 231, 69, 0.6));
            transform: scale(1.08);
            animation: none;
        }

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

        .cta-right {
            background: #000;
            padding: 8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #fff;
        }

        .cta-final-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: clamp(4rem, 8vw, 9rem);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -4px;
            margin-bottom: 3rem;
            color: #fff;
        }

        .cta-final-title span {
            color: #bed745;
        }

        .cta-final-text {
            font-size: 1.6rem;
            line-height: 1.7;
            color: #d1d5db;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .cta-final-location {
            font-family: 'Nunito', sans-serif;
            font-size: 1.3rem;
            font-weight: 900;
            color: #f19235;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-final-button {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2.5rem 5rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 900;
            transition: all 0.4s ease;
            align-self: flex-start;
        }

        .cta-final-button:hover {
            background: #bed745;
            transform: translateX(10px);
        }

        /* FOOTER */
        .footer-pop {
            background: #1f2937;
            color: #fff;
            padding: 4rem 6%;
            text-align: center;
        }

        .footer-pop p {
            margin: 0.75rem 0;
            font-size: 1.1rem;
        }

        .footer-brand-pop {
            color: #bed745;
            font-weight: 700;
        }

        /* UTILITY FOOTER BAR */
        .utility-footer {
            background: #1f2937;
            color: #9ca3af;
            padding: 1.5rem 8%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .utility-footer-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .utility-footer-left {
            flex: 0 0 auto;
        }

        .utility-copyright {
            font-size: 0.9rem;
            color: #9ca3af;
            margin: 0;
            white-space: nowrap;
        }

        .utility-footer-center {
            flex: 1 1 auto;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .utility-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            color: #9ca3af;
            transition: color 0.3s ease;
        }

        .utility-social-link:hover {
            color: #fff;
        }

        .utility-social-link svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

        .utility-footer-right {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .utility-footer-links {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .utility-footer-link {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

        .utility-footer-link:hover {
            color: #fff;
        }

        .utility-divider {
            color: #4b5563;
        }

        .back-to-top {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .back-to-top:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* ========================================
           RESPONSIVE DESIGN
           ======================================== */

        /* Desktop - Large screens */
        @media (max-width: 1400px) {
            .hero-left-pop {
                padding: 5rem;
            }

            .cta-left,
            .cta-right {
                padding: 6rem;
            }
        }

        /* Tablet Landscape */
        @media (max-width: 1200px) {
            .hero-pop-split {
                grid-template-columns: 1fr;
            }

            .hero-right-pop {
                min-height: 60vh;
            }

            .content-columns {
                grid-template-columns: 1fr;
            }

            .cta-split {
                grid-template-columns: 1fr;
            }

            .cta-left {
                min-height: 60vh;
            }
        }

        /* Tablet Portrait */
        @media (max-width: 900px) {
            .hero-left-pop {
                padding: 4rem 3rem;
            }

            .logo-pop {
                max-width: 400px;
                margin-bottom: 3rem;
            }

            .hero-subtitle-pop {
                font-size: 1.4rem;
                margin-bottom: 2.5rem;
            }

            .content-comic,
            .questions-pop {
                padding: 6rem 5%;
            }

            .speech-bubble {
                padding: 2.5rem;
            }

            .speech-bubble p {
                font-size: 1.6rem;
            }

            .cta-left,
            .cta-right {
                padding: 5rem 4rem;
            }
        }

        /* Mobile Landscape */
        @media (max-width: 768px) {
            .hero-left-pop {
                padding: 3rem 2rem;
                min-height: auto;
            }

            .logo-pop {
                max-width: 320px;
                margin-bottom: 2.5rem;
            }

            .hero-badge-pop {
                padding: 0.75rem 2rem;
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .hero-subtitle-pop {
                font-size: 1.3rem;
                margin-bottom: 2rem;
            }

            .hero-cta-pop {
                padding: 1.5rem 3rem;
                font-size: 1.3rem;
            }

            .hero-right-pop {
                padding: 3rem 2rem;
                min-height: 50vh;
            }

            .content-comic,
            .questions-pop {
                padding: 5rem 5%;
            }

            .section-number-pop,
            .questions-number-pop {
                font-size: 4rem;
            }

            .questions-grid-pop {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .question-card-pop {
                padding: 2.5rem;
            }

            .question-card-pop:last-child {
                max-width: 100%;
            }

            .question-num-pop {
                font-size: 3rem;
            }

            .cta-section {
                padding: 3rem 5%;
            }

            .cta-left,
            .cta-right {
                padding: 4rem 3rem;
            }

            .cta-btn-green {
                padding: 1.5rem 3rem;
                font-size: 1.3rem;
            }

            .utility-footer-container {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .utility-footer-center {
                order: 1;
            }

            .utility-footer-left {
                order: 2;
            }

            .utility-footer-right {
                order: 3;
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Mobile Portrait - Critical for 400px screens */
        @media (max-width: 480px) {
            .hero-left-pop {
                padding: 2.5rem 1.5rem;
            }

            .logo-pop {
                max-width: 280px;
                margin-bottom: 2rem;
            }

            .hero-badge-pop {
                padding: 0.65rem 1.5rem;
                font-size: 0.85rem;
                letter-spacing: 2px;
                margin-bottom: 1.25rem;
            }

            .hero-title-pop {
                font-size: clamp(2.5rem, 10vw, 3.5rem);
                margin-bottom: 1.5rem;
                letter-spacing: -2px;
            }

            .hero-subtitle-pop {
                font-size: 1.1rem;
                margin-bottom: 1.75rem;
                line-height: 1.5;
            }

            .hero-cta-pop {
                padding: 1.25rem 2.5rem;
                font-size: 1.1rem;
                letter-spacing: 1px;
                box-shadow: 6px 6px 0px #000;
            }

            .hero-right-pop {
                padding: 2.5rem 1.5rem;
                min-height: 40vh;
            }

            .hero-image-container {
                max-width: 300px;
            }

            .hero-info-box {
                padding: 1.5rem;
                bottom: -15px;
                right: -15px;
            }

            .info-label {
                font-size: 0.75rem;
            }

            .info-value {
                font-size: 1.1rem;
            }

            .content-comic,
            .questions-pop {
                padding: 4rem 5%;
            }

            .section-number-pop,
            .questions-number-pop {
                font-size: 3.5rem;
                -webkit-text-stroke: 3px #dd4298;
            }

            .section-title-pop {
                font-size: clamp(2.5rem, 8vw, 3rem);
                margin-bottom: 3rem;
                letter-spacing: -2px;
            }

            .content-text-pop {
                font-size: 1.1rem;
                line-height: 1.8;
            }

            .speech-bubble {
                padding: 2rem;
                margin: 2rem 0;
            }

            .speech-bubble p {
                font-size: 1.4rem;
                line-height: 1.4;
            }

            .questions-title-pop {
                font-size: clamp(2.5rem, 8vw, 3rem);
                letter-spacing: -3px;
            }

            .questions-subtitle-pop {
                font-size: 1.2rem;
            }

            .questions-header-pop {
                margin-bottom: 4rem;
            }

            .questions-grid-pop {
                gap: 2rem;
            }

            .question-card-pop {
                padding: 2rem;
                border: 4px solid #000;
            }

            .question-num-pop {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .question-title-pop {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }

            .question-text-pop {
                font-size: 1rem;
                line-height: 1.7;
            }

            .cta-left,
            .cta-right {
                padding: 3rem 2rem;
            }

            .cta-final-title {
                font-size: clamp(2.5rem, 10vw, 4rem);
                margin-bottom: 2rem;
                letter-spacing: -3px;
            }

            .cta-final-text {
                font-size: 1.3rem;
            }

            .cta-final-location {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .cta-btn-green {
                padding: 1.25rem 2.5rem;
                font-size: 1.1rem;
                letter-spacing: 1px;
                box-shadow: 6px 6px 0px #bed745;
            }

            .pre-footer {
                padding: 2.5rem 5%;
            }

            .utility-footer-minimal {
                padding: 1.5rem 5%;
            }

            .utility-footer-minimal-links {
                gap: 1.5rem;
            }
        }

        /* Small Phones - iPhone SE, etc. */
        @media (max-width: 375px) {
            .hero-left-pop {
                padding: 2rem 1.25rem;
            }

            .logo-pop {
                max-width: 240px;
                margin-bottom: 1.75rem;
            }

            .hero-badge-pop {
                padding: 0.6rem 1.25rem;
                font-size: 0.8rem;
                letter-spacing: 1.5px;
            }

            .hero-title-pop {
                font-size: clamp(2.25rem, 10vw, 3rem);
                margin-bottom: 1.25rem;
            }

            .hero-subtitle-pop {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .hero-cta-pop {
                padding: 1.1rem 2.25rem;
                font-size: 1rem;
                box-shadow: 5px 5px 0px #000;
            }

            .hero-right-pop {
                padding: 2rem 1.25rem;
            }

            .hero-image-container {
                max-width: 260px;
            }

            .hero-info-box {
                padding: 1.25rem;
            }

            .content-comic,
            .questions-pop {
                padding: 3rem 5%;
            }

            .section-number-pop,
            .questions-number-pop {
                font-size: 3rem;
            }

            .speech-bubble {
                padding: 1.75rem;
            }

            .speech-bubble p {
                font-size: 1.3rem;
            }

            .question-card-pop {
                padding: 1.75rem;
            }

            .question-num-pop {
                font-size: 2.25rem;
            }

            .question-title-pop {
                font-size: 1.3rem;
            }

            .cta-left,
            .cta-right {
                padding: 2.5rem 1.5rem;
            }

            .cta-btn-green {
                padding: 1.1rem 2.25rem;
                font-size: 1rem;
                box-shadow: 5px 5px 0px #bed745;
            }

            .pre-footer-title {
                font-size: 1.6rem;
            }

            .utility-footer-minimal-social a {
                width: 28px;
                height: 28px;
            }
        }

        /* CTA SECTION - POP ART STYLE */
        .cta-section {
            background: #000;
            padding: 5rem 8%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
            background-size: 30px 30px;
        }

        .cta-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 3rem;
            color: #fff;
            margin-bottom: 1.5rem;
            font-weight: 900;
            text-shadow: 4px 4px 0px #dd4298;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .cta-text {
            font-size: 1.2rem;
            color: #d1d5db;
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .btn-submit-large {
            display: inline-block;
            background: #dd4298;
            color: #fff;
            padding: 2rem 5rem;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 6px 6px 0px #bed745;
            transition: all 0.3s ease;
        }

        .btn-submit-large:hover {
            background: #bed745;
            color: #000;
            transform: translate(-3px, -3px);
            box-shadow: 9px 9px 0px #dd4298;
        }

        /* ===== PRE-FOOTER: BLACK WITH GREEN ACCENT ===== */
        .pre-footer {
            background: #000;
            padding: 4rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4rem;
            position: relative;
            overflow: hidden;
        }

        .pre-footer::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            background: url('../images/_26-ILLUMINATE-ICON.png') center/contain no-repeat;
            opacity: 0.08;
        }

        .pre-footer-content {
            position: relative;
            z-index: 10;
        }

        .pre-footer-eyebrow {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #bed745;
            font-weight: 900;
            margin-bottom: 0.75rem;
        }

        .pre-footer-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 0.5rem;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .pre-footer-details {
            font-size: 1.1rem;
            color: #9ca3af;
            font-weight: 600;
        }

        .pre-footer-logo {
            max-width: 150px;
            position: relative;
            z-index: 10;
        }

        .pre-footer-logo img {
            width: 100%;
            height: auto;
        }

        /* ===== UTILITY FOOTER: MINIMAL LINE ===== */
        .utility-footer-minimal {
            background: #000;
            padding: 1rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .utility-footer-minimal .copyright {
            font-size: 0.85rem;
            color: #6b7280;
            font-weight: 500;
        }

        .utility-footer-minimal-group {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .utility-footer-minimal-links {
            display: flex;
            gap: 2rem;
        }

        .utility-footer-minimal-links a {
            font-size: 0.85rem;
            color: #9ca3af;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .utility-footer-minimal-links a:hover {
            color: #bed745;
        }

        .utility-footer-minimal-social {
            display: flex;
            gap: 1rem;
        }

        .utility-footer-minimal-social a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .utility-footer-minimal-social a:hover {
            color: #dd4298;
            transform: scale(1.2);
        }

        .utility-footer-minimal-social svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

        /* Responsive for new footers */
        @media (max-width: 1024px) {
            .pre-footer {
                flex-direction: column;
                text-align: center;
            }

            .pre-footer::before {
                right: 50%;
                transform: translate(50%, -50%);
            }
        }

        @media (max-width: 768px) {
            .pre-footer {
                padding: 3rem 5%;
            }

            .pre-footer-title {
                font-size: 1.8rem;
            }

            .pre-footer-details {
                font-size: 1rem;
            }

            .pre-footer-logo {
                max-width: 120px;
            }

            .utility-footer-minimal {
                flex-direction: column;
            }

            .utility-footer-minimal-group {
                flex-direction: column;
                gap: 1.5rem;
            }

            .utility-footer-minimal-links {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
        }
