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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        /* ===== WCAG AA - SKIP NAVIGATION ===== */
        .skip-nav {
            position: absolute;
            top: -40px;
            left: 0;
            background: #C93550;
            color: #fff;
            padding: 8px 16px;
            z-index: 1000;
            font-size: 0.9rem;
            transition: top 0.3s;
        }

        .skip-nav:focus {
            top: 0;
        }

        /* ===== WCAG AA - FOCUS VISIBLE ===== */
        a:focus-visible, button:focus-visible {
            outline: 3px solid #E8536B;
            outline-offset: 2px;
        }

        /* ===== NAVIGATION ===== */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            background-color: #fff;
            border-bottom: 1px solid #e5e5e5;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        nav .logo-container img {
            height: 45px;
            width: auto;
        }

        nav .logo-text {
            display: flex;
            flex-direction: column;
        }

        nav .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            font-style: italic;
            color: #0D0D0D;
            margin: 0;
        }

        nav .logo-tagline {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            color: #595959;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.25rem;
        }

        nav .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #C93550;
        }

        nav .cta-btn {
            background-color: #C93550;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 0.9rem;
        }

        nav .cta-btn:hover {
            background-color: #A82A42;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(62, 202, 168, 0.2);
        }

        /* ===== FLOATING SOCIAL SIDEBAR ===== */
        .floating-social-sidebar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            background: white;
            border-radius: 0 12px 12px 0;
            padding: 12px 8px;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-icon-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease;
            border: none;
            padding: 0;
        }

        .social-icon-btn:hover {
            transform: scale(1.15);
        }

        .social-icon-btn svg {
            width: 20px;
            height: 20px;
        }

        .social-icon-btn.instagram {
            background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
        }

        .social-icon-btn.facebook {
            background-color: #1877F2;
        }

        .social-icon-btn.tiktok {
            background-color: #010101;
        }

        .social-icon-btn.youtube {
            background-color: #FF0000;
        }

        .social-icon-btn.linkedin {
            background-color: #0A66C2;
        }

        @media (max-width: 1024px) {
            .floating-social-sidebar {
                display: none;
            }
        }

        /* ===== FLOATING REFERRAL BUTTON ===== */
        .floating-referral-btn {
            position: fixed;
            bottom: 40px;
            right: 40px;
            z-index: 999;
            background-color: #C93550;
            color: #fff;
            padding: 16px 28px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(232, 83, 107, 0.45);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .floating-referral-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(232, 83, 107, 0.55);
        }

        @media (max-width: 768px) {
            .floating-referral-btn {
                bottom: 20px;
                right: 20px;
                padding: 14px 24px;
                font-size: 0.9rem;
            }
        }

        /* ===== HERO ===== */
        .hero {
            background-image: url('../sca-banner.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 480px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            text-align: left;
            padding: 3rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(62, 202, 168, 0.06);
            animation: pulse-gradient 4s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes pulse-gradient {
            0%, 100% {
                background: rgba(62, 202, 168, 0.06);
            }
            50% {
                background: rgba(232, 83, 107, 0.06);
            }
        }

        .hero .content-wrapper {
            background: rgba(255, 255, 255, 0.65);
            padding: 2.5rem;
            border-radius: 4px;
            max-width: 60%;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            color: #0D0D0D;
        }

        .underline-animated {
            display: inline-block;
            position: relative;
        }

        .underline-animated::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #C93550;
            animation: underline-draw 0.6s ease-out forwards;
            animation-delay: 0.8s;
        }

        @keyframes underline-draw {
            from {
                width: 0;
                left: 0;
            }
            to {
                width: 100%;
            }
        }

        .hero .program-tag {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #595959;
            margin-bottom: 1.5rem;
        }

        .hero .subtext {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            font-weight: 300;
            line-height: 1.7;
            max-width: 100%;
            margin-bottom: 2rem;
            color: #0D0D0D;
        }

        .hero .button-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background-color: #C93550;
            color: #0D0D0D;
            font-size: 1.15rem;
            padding: 1.25rem 2.5rem;
            box-shadow: 0 4px 15px rgba(62, 202, 168, 0.4);
        }

        .btn-primary:hover {
            background-color: #A82A42;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(62, 202, 168, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: #0D0D0D;
            border: 2px solid #0D0D0D;
        }

        .btn-secondary:hover {
            background-color: rgba(13, 13, 13, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(13, 13, 13, 0.2);
        }

        .hero .credit {
            position: absolute;
            bottom: 2rem;
            font-size: 0.85rem;
            color: #767676;
            font-weight: 300;
            display: none;
        }

        /* ===== MARQUEE ===== */
        .marquee-section {
            background-color: #C93550;
            color: #0D0D0D;
            padding: 1.5rem 0;
            overflow: hidden;
            margin: 3rem 0;
        }

        .marquee {
            display: flex;
            white-space: nowrap;
            animation: marquee 15s linear infinite;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.1em;
        }

        .marquee span {
            display: inline-block;
            margin-right: 2rem;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== SECTION STYLING ===== */
        section {
            padding: 5rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        section.white {
            background-color: #fff;
        }

        section.off-white {
            background-color: #F7F6F3;
        }

        section.dark {
            background-color: #0D0D0D;
            color: #fff;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 2.5rem;
            line-height: 1.3;
            text-align: center;
        }

        .dark h2 {
            color: #fff;
        }

        /* ===== WHAT IS EYL ===== */
        .what-is-eyl {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .what-is-eyl .quote {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 2rem);
            font-style: italic;
            line-height: 1.4;
            color: #0D0D0D;
            margin-top: 1rem;
        }

        .what-is-eyl .prose {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .what-is-eyl p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }

        @media (max-width: 768px) {
            .what-is-eyl {
                grid-template-columns: 1fr;
            }
        }

        /* ===== THE 4 STAGES WITH CIRCULAR PROGRESS ===== */
        .stages-container {
            margin-top: 3rem;
        }

        .progress-bar-wrapper {
            position: relative;
            margin-bottom: 3rem;
            height: 8px;
            background-color: #e0e0e0;
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background-color: #C93550;
            width: 0%;
            animation: fill-progress 1.5s ease-out forwards;
            animation-delay: 0.5s;
        }

        @keyframes fill-progress {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

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

        .stage {
            padding: 2rem;
            background-color: #fff;
            border-radius: 4px;
            opacity: 0;
            animation: fadeUp 0.8s ease-out forwards;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .stage:nth-child(1) { animation-delay: 0.2s; }
        .stage:nth-child(2) { animation-delay: 0.4s; }
        .stage:nth-child(3) { animation-delay: 0.6s; }
        .stage:nth-child(4) { animation-delay: 0.8s; }

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

        .stage-progress-circle {
            width: 100px;
            height: 100px;
            margin-bottom: 1.5rem;
        }

        .stage-circle-text {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            fill: none;
        }

        .stage:nth-child(1) .stage-circle-stroke {
            stroke: #E8536B;
        }

        .stage:nth-child(2) .stage-circle-stroke {
            stroke: #F9C74F;
        }

        .stage:nth-child(3) .stage-circle-stroke {
            stroke: #E8536B;
        }

        .stage:nth-child(4) .stage-circle-stroke {
            stroke: #9B59B6;
        }

        .stage-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0D0D0D;
        }

        .stage-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #595959;
        }

        /* ===== THE FOUR PILLARS - REDESIGNED ===== */
        .pillars-container {
            margin-top: 2rem;
        }

        .pillar {
            padding: 2.5rem;
            margin-bottom: 2rem;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.05);
            opacity: 0;
            animation: fadeUp 0.8s ease-out forwards;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2rem;
            align-items: center;
            border-right: 6px solid;
            transition: background-color 0.3s ease;
        }

        .pillar:hover {
            background-color: rgba(232, 83, 107, 0.08);
        }

        .pillar:nth-child(1) {
            animation-delay: 0.2s;
            border-right-color: #E8536B;
        }

        .pillar:nth-child(2) {
            animation-delay: 0.4s;
            border-right-color: #F9C74F;
        }

        .pillar:nth-child(3) {
            animation-delay: 0.6s;
            border-right-color: #E8536B;
        }

        .pillar:nth-child(4) {
            animation-delay: 0.8s;
            border-right-color: #9B59B6;
        }

        .pillar-number {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.08);
            line-height: 1;
            min-width: 80px;
        }

        .pillar-content {
            flex: 1;
        }

        .pillar-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .pillar-description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #d0d0d0;
            font-weight: 300;
        }

        .pillar-icon {
            font-size: 2rem;
            opacity: 0.6;
        }

        @media (max-width: 1024px) {
            .pillar {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .pillar-number {
                display: none;
            }

            .pillar-icon {
                display: none;
            }
        }

        /* ===== QUOTE BLOCK ===== */
        .quote-block {
            background-color: #1a1a1a;
            padding: 4rem 3rem;
            border-radius: 8px;
            text-align: center;
            position: relative;
            margin: 3rem auto;
            opacity: 0;
            animation: fadeUp 0.8s ease-out forwards;
        }

        .quote-block .quote-mark {
            font-family: 'Playfair Display', serif;
            font-size: 8rem;
            color: #C93550;
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: 20px;
            line-height: 1;
        }

        .quote-block-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-style: italic;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .quote-block-author {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #767676;
            font-weight: 500;
        }

        /* ===== WHO IT'S FOR ===== */
        .who-its-for {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .who-its-for h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #0D0D0D;
        }

        .who-its-for ol {
            list-style: none;
            counter-reset: item;
        }

        .who-its-for li {
            counter-increment: item;
            margin-bottom: 1.5rem;
            padding-left: 3rem;
            position: relative;
            line-height: 1.7;
            color: #555;
            font-size: 1rem;
        }

        .who-its-for li:before {
            content: counter(item);
            position: absolute;
            left: 0;
            top: 0;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #C93550;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .who-its-for {
                grid-template-columns: 1fr;
            }
        }

        /* ===== REFERRAL CTA ENHANCED ===== */
        .referral-cta {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .referral-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .referral-cta > * {
            position: relative;
            z-index: 2;
        }

        .decorative-dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            pointer-events: none;
        }

        .dot-pink {
            background-color: #C93550;
        }

        .dot-teal {
            background-color: #C93550;
        }

        .dot-yellow {
            background-color: #F9C74F;
        }

        .dot-purple {
            background-color: #9B59B6;
        }

        .referral-cta h2 {
            margin-bottom: 1.5rem;
        }

        .referral-cta .cta-subtext {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #e0e0e0;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .referral-cta .referral-btn-large {
            background-color: #C93550;
            color: #fff;
            padding: 1.75rem 3.5rem;
            border: none;
            border-radius: 4px;
            font-size: 1.35rem;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(232, 83, 107, 0.4);
        }

        .referral-cta .referral-btn-large:hover {
            background-color: #d63a52;
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(232, 83, 107, 0.4);
        }

        .referral-cta .contact-line {
            margin-top: 2rem;
            font-size: 0.95rem;
            color: #767676;
        }

        .referral-cta a {
            color: #C93550;
            text-decoration: none;
            font-weight: 600;
        }

        .referral-cta a:hover {
            text-decoration: underline;
        }

        /* ===== SOCIAL FOOTER ROW ===== */
        .social-footer-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-footer-label {
            font-size: 1rem;
            font-weight: 600;
            color: #0D0D0D;
        }

        .social-footer-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .social-footer-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .social-footer-icon svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }

        .social-footer-icon.instagram {
            background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
        }

        .social-footer-icon.facebook {
            background-color: #1877F2;
        }

        .social-footer-icon.tiktok {
            background-color: #010101;
        }

        .social-footer-icon.youtube {
            background-color: #FF0000;
        }

        .social-footer-icon.linkedin {
            background-color: #0A66C2;
        }

        .social-footer-icon:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* ===== FOOTER ===== */
        footer {
            background-color: #F7F6F3;
            color: #0D0D0D;
            padding: 3rem;
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.8;
            border-top: 3px solid #E8536B;
        }

        footer a {
            color: #C93550;
            text-decoration: none;
            margin: 0 0.5rem;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* ===== INTERSECTION OBSERVER ANIMATIONS ===== */
        .fade-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            nav {
                padding: 1.2rem 2rem;
            }

            nav .logo-container {
                gap: 0.75rem;
            }

            nav .logo-container img {
                height: 40px;
            }

            nav .logo {
                font-size: 1.2rem;
            }

            nav .nav-links {
                gap: 1.5rem;
            }

            .hero .content-wrapper {
                max-width: 70%;
            }

            section {
                padding: 4rem 2rem;
            }

            .hero {
                padding: 2rem;
            }

            h2 {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1rem 1.5rem;
            }

            nav .logo-container {
                width: 100%;
                justify-content: center;
                gap: 0.75rem;
            }

            nav .logo-text {
                align-items: center;
            }

            nav .logo {
                font-size: 1.1rem;
            }

            nav .logo-tagline {
                font-size: 0.7rem;
            }

            nav .nav-links {
                gap: 1rem;
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero {
                min-height: 400px;
                padding: 2rem;
            }

            .hero .content-wrapper {
                max-width: 100%;
                padding: 2rem;
            }

            .hero h1 {
                font-size: clamp(1.8rem, 6vw, 3rem);
            }

            .hero .button-group {
                flex-direction: column;
                align-items: center;
            }

            .hero .button-group .btn {
                width: 100%;
                max-width: 300px;
            }

            section {
                padding: 3rem 1.5rem;
            }

            .what-is-eyl {
                gap: 2rem;
            }

            .what-is-eyl .quote {
                font-size: 1.3rem;
            }

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

            .pillar-title {
                font-size: 1.3rem;
            }

            .hero .credit {
                font-size: 0.75rem;
            }

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

            .quote-block {
                padding: 3rem 2rem;
            }

            .quote-block-text {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            nav .nav-links {
                gap: 0.75rem;
            }

            nav a {
                font-size: 0.8rem;
            }

            nav .cta-btn {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero .subtext {
                font-size: 0.95rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            h2 {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .marquee {
                font-size: 1rem;
            }

            .who-its-for li {
                padding-left: 2.5rem;
                font-size: 0.9rem;
            }

            .who-its-for li:before {
                font-size: 1rem;
            }

            .floating-referral-btn {
                bottom: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 0.85rem;
            }
        }
    
        .social-icon-btn.whatsapp { background-color: #25D366; }
        .social-footer-icon.whatsapp { background-color: #25D366; }

        /* ===================================================
           RESPONSIVE FIXES — ordered largest to smallest
           =================================================== */

        /* ===== TABLET: 768px ===== */
        @media (max-width: 768px) {

            /* Child safe: 4 cols → 2 cols */
            .child-safe-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            .child-safe-grid > div {
                padding: 1.2rem !important;
            }

            /* Pillars: collapse to single column earlier */
            .pillar {
                grid-template-columns: 1fr !important;
                gap: 0.75rem !important;
            }
            .pillar-number, .pillar-icon { display: none; }
            .pillar-description { font-size: 0.95rem; }

            /* Social footer icons: wrap & correct sizing */
            .social-footer-icons {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }
            /* Keep NDIS logo distinct from social icons */
            .social-footer-icons img {
                width: 60px !important;
                height: 60px !important;
            }

            /* Footer padding */
            footer { padding: 2.5rem 2rem; }

            /* Quote photo: stack vertically on tablet */
            .what-is-eyl .quote > div[style] {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .yos-photo {
                width: 220px !important;
                height: 220px !important;
            }

            /* Who it's for H3 */
            .who-its-for h3 { font-size: 1.2rem; }
        }

        /* ===== MOBILE NAV: 600px ===== */
        @media (max-width: 600px) {
            nav {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 0;
                padding: 0.85rem 1rem;
            }
            nav .logo-container {
                width: auto;
                justify-content: flex-start;
            }
            nav .nav-links {
                display: none;
            }
            nav .cta-btn {
                display: inline-flex;
                padding: 0.55rem 1rem;
                font-size: 0.82rem;
            }

            /* Stages: force 1 col from 600px */
            .stages-grid {
                grid-template-columns: 1fr !important;
            }
        }

        /* ===== SMALL MOBILE: 480px ===== */
        @media (max-width: 480px) {

            /* Child safe: 2 cols → 1 col */
            .child-safe-grid {
                grid-template-columns: 1fr !important;
            }
            .child-safe-grid > div {
                padding: 1rem !important;
            }
            /* Child safe header: stack icon + title */
            .child-safe-grid + p,
            section .child-safe-grid {
                margin-top: 1rem;
            }

            /* Hero */
            .hero { min-height: 300px; }
            .hero h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
            .program-tag { font-size: 0.72rem; line-height: 1.5; }

            /* Quote photo */
            .yos-photo {
                width: 160px !important;
                height: 160px !important;
            }

            /* Quote block */
            .quote-block { padding: 2rem 1.5rem; }
            .quote-block .quote-mark { font-size: 4rem; top: -8px; left: 12px; }

            /* Stage cards */
            .stage { padding: 1rem !important; }
            .stage-progress-circle { width: 70px !important; height: 70px !important; }

            /* Pillar cards */
            .pillar { padding: 1.5rem 1rem !important; }

            /* Who it's for H3 */
            .who-its-for h3 { font-size: 1.1rem; }

            /* Decorative dots: hide on small screens to avoid overflow */
            .decorative-dot { display: none !important; }

            /* Referral CTA */
            .referral-cta .cta-subtext { font-size: 0.9rem; }
            .referral-btn-large { padding: 1rem 2rem !important; font-size: 1rem !important; }
            .referral-cta a[href^="mailto"] {
                font-size: 0.78rem;
                word-break: break-all;
                padding: 0.75rem 1rem;
            }

            /* Social footer: keep NDIS logo visually distinct */
            .social-footer-icons img {
                width: 48px !important;
                height: 48px !important;
            }

            /* Section padding tighter */
            section { padding: 2.5rem 1rem !important; }

            /* Footer */
            footer { padding: 2rem 1rem; font-size: 0.82rem; }

            /* Floating referral btn */
            .floating-referral-btn {
                bottom: 15px;
                right: 15px;
                padding: 10px 16px;
                font-size: 0.8rem;
                white-space: nowrap;
            }
        }

        /* ===== FIND US SECTION ===== */
        .find-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }
        @media (max-width: 768px) {
            .find-us-grid {
                grid-template-columns: 1fr !important;
            }
        }

        /* ===== VERY SMALL PHONES: 375px ===== */
        @media (max-width: 375px) {
            nav .logo { font-size: 1rem; }
            nav .logo-tagline { font-size: 0.62rem; }
            .floating-referral-btn { font-size: 0.75rem; padding: 9px 14px; }
        }
            .key-facts-grid {}
        @media (max-width: 900px) {
            .key-facts-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2.5rem !important; }
        }
        @media (max-width: 500px) {
            .key-facts-grid { grid-template-columns: 1fr !important; }
        }
        .pull-quote-grid {}
        @media (max-width: 700px) {
            .pull-quote-grid { grid-template-columns: 1fr !important; gap: 0.5rem !important; }
        }