:root {
            --navy: #1a3267;
            --navy-deep: #0f1d3d;
            --navy-light: #2a4a8a;
            --gold: #f4b41a;
            --gold-light: #ffd54f;
            --gold-dark: #c9930f;
            --cream: #fdf8f0;
            --white: #ffffff;
            --charcoal: #1a1a1a;
            --gray: #6b7280;
            --gray-light: #f3f4f6;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Cormorant Garamond', Georgia, serif;
            color: var(--charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
        }
        .nav.scrolled {
            background: rgba(255,255,255,0.98);
            padding: 14px 40px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }
        .nav-logo img { height: 44px; }
        .nav.scrolled .nav-logo img { height: 36px; }
        .nav-links { display: flex; gap: 32px; align-items: center; }
        .nav-links a {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }
        .nav.scrolled .nav-links a { color: var(--navy); }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta {
            background: var(--gold);
            color: var(--navy-deep) !important;
            padding: 12px 24px;
            border-radius: 4px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           HERO - EMOTIONAL, CHILD-FOCUSED
           ═══════════════════════════════════════════════════════════ */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--navy-deep);
        }
        .hero-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('/mnt/user-data/uploads/bg.jpg');
            background-size: cover;
            background-position: center 30%;
            opacity: 0.35;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(15,29,61,0.9) 0%, rgba(26,50,103,0.85) 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
            padding: 160px 40px 100px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-text {
            text-align: left;
        }
        .hero-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .hero-label::before {
            content: '';
            width: 40px;
            height: 2px;
            background: var(--gold);
        }
        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 4.5vw, 3.5rem);
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        .hero h1 span { color: var(--gold); }
        .hero-sub {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
        }
        .hero-stat {
            text-align: left;
        }
        .hero-stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }
        .hero-stat-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.7);
            margin-top: 4px;
        }
        
        /* Featured Child Card */
        .hero-featured {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
        }
        .hero-featured-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 24px;
            overflow: hidden;
            border: 4px solid var(--gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        .hero-featured-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-featured-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
        }
        .hero-featured-age {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .hero-featured-bio {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .btn {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: var(--gold);
            color: var(--navy-deep);
        }
        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(244,180,26,0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        .btn-outline:hover {
            background: var(--navy);
            color: white;
        }
        .btn-white-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
        }
        .btn-white-outline:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }
        
        /* Section basics */
        .section-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-dark);
            margin-bottom: 16px;
        }
        
        /* Utility Classes */
        .section {
            padding: 100px 40px;
        }
        .section--cream {
            background: var(--cream);
        }
        .section--navy {
            background: var(--navy);
        }
        .section--dark {
            background: var(--navy-deep);
        }
        .section--navy.section--dark {
            background: var(--navy-deep);
        }
        .section--navy.section--dark .section-label {
            color: var(--gold);
        }
        .section--navy.section--dark h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .section--navy.section--dark p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .section--navy.section--dark .btn-primary {
            background: var(--gold);
            color: var(--navy-deep);
        }
        .section--navy.section--dark .btn-primary:hover {
            background: var(--gold-light);
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
        }
        .section-header p {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .grid {
            display: grid;
            gap: 24px;
        }
        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }
        .text-center {
            text-align: center;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
            width: fit-content;
        }
        .mb-md {
            margin-bottom: 16px;
        }
        .mx-auto.mb-md svg {
            width: 48px;
            height: 48px;
            max-width: 48px;
            max-height: 48px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           SPONSORSHIP VALUE PROP
           ═══════════════════════════════════════════════════════════ */
        .value-prop {
            padding: 80px 40px;
            background: var(--navy);
        }
        .value-inner {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }
        .value-header {
            margin-bottom: 50px;
        }
        .value-header .section-label { color: var(--gold); }
        .value-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }
        .value-header p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto;
        }
        .value-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
        }
        .value-item {
            text-align: center;
        }
        .value-icon {
            width: 60px;
            height: 60px;
            background: rgba(244,180,26,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }
        .value-icon svg {
            width: 26px;
            height: 26px;
            color: var(--gold);
        }
        .value-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            line-height: 1.4;
        }
        
        /* ═══════════════════════════════════════════════════════════
           CHILDREN GRID
           ═══════════════════════════════════════════════════════════ */
        .children {
            padding: 100px 40px;
            background: var(--cream);
        }
        .children-inner {
            max-width: 1300px;
            margin: 0 auto;
        }
        .children-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .children-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .children-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .filter-tab {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            padding: 12px 24px;
            border-radius: 30px;
            border: 2px solid var(--navy);
            background: transparent;
            color: var(--navy);
            cursor: pointer;
            transition: all 0.3s;
        }
        .filter-tab:hover {
            background: var(--navy);
            color: white;
        }
        .filter-tab.active {
            background: var(--navy);
            color: white;
        }
        .filter-tab .count {
            background: rgba(255,255,255,0.2);
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 6px;
            font-size: 0.7rem;
        }
        .filter-tab.active .count {
            background: var(--gold);
            color: var(--navy-deep);
        }
        
        /* Children Grid */
        .children-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        /* Child Card */
        .child-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s;
            position: relative;
        }
        .child-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .child-card-image {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }
        .child-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .child-card:hover .child-card-image img {
            transform: scale(1.08);
        }
        .child-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--navy);
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 20px;
        }
        .child-card-badge.needs-sponsor {
            background: var(--gold);
            color: var(--navy-deep);
        }
        .child-card-content {
            padding: 20px;
        }
        .child-card-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 6px;
        }
        .child-card-bio {
            font-size: 1rem;
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 16px;
            min-height: 48px;
        }
        .child-card-cta {
            display: flex;
            gap: 8px;
        }
        .child-card-cta .btn {
            flex: 1;
            padding: 12px 16px;
            font-size: 0.75rem;
            text-align: center;
        }
        
        /* View All Link */
        .children-view-all {
            text-align: center;
            margin-top: 50px;
        }
        
        /* ═══════════════════════════════════════════════════════════
           SPONSORSHIP TIERS
           ═══════════════════════════════════════════════════════════ */
        .tiers {
            padding: 100px 40px;
            background: white;
        }
        .tiers-inner {
            max-width: 1000px;
            margin: 0 auto;
        }
        .tiers-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .tiers-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .tiers-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        .tiers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .tier-card {
            background: var(--gray-light);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }
        .tier-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        .tier-card.popular {
            background: var(--navy);
            transform: scale(1.05);
        }
        .tier-card.popular:hover {
            transform: scale(1.05) translateY(-6px);
        }
        .tier-card.popular .tier-name,
        .tier-card.popular .tier-price,
        .tier-card.popular .tier-desc {
            color: white;
        }
        .tier-card.popular .tier-desc {
            color: rgba(255,255,255,0.8);
        }
        .tier-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--navy-deep);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
        }
        .tier-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 8px;
        }
        .tier-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--navy);
            line-height: 1;
            margin-bottom: 4px;
        }
        .tier-price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gray);
        }
        .tier-card.popular .tier-price span {
            color: rgba(255,255,255,0.6);
        }
        .tier-desc {
            font-size: 0.95rem;
            color: var(--gray);
            margin: 16px 0 24px;
            min-height: 48px;
            line-height: 1.5;
        }
        .tier-card .btn {
            width: 100%;
            padding: 14px 20px;
        }
        .tier-card.popular .btn-outline {
            border-color: white;
            color: white;
        }
        .tier-card.popular .btn-outline:hover {
            background: white;
            color: var(--navy);
        }
        
        /* ═══════════════════════════════════════════════════════════
           MUSIC PLAYER (WORSHIP)
           ═══════════════════════════════════════════════════════════ */
        .worship {
            padding: 100px 40px;
            background: var(--gray-light);
        }
        .worship-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }
        .worship-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .worship-content p {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 24px;
        }
        .worship-player {
            background: var(--navy);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
        }
        .now-playing {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }
        .now-playing-art {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: var(--navy-light);
            overflow: hidden;
        }
        .now-playing-art img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .now-playing-info h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }
        .now-playing-info p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin: 0;
        }
        .audio-player {
            width: 100%;
        }
        .audio-player audio {
            width: 100%;
            height: 40px;
        }
        
        /* Track List */
        .track-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .track {
            background: white;
            border-radius: 8px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.3s;
        }
        .track:hover {
            background: var(--cream);
            transform: translateX(4px);
        }
        .track.playing {
            background: var(--navy);
        }
        .track.playing .track-title,
        .track.playing .track-duration {
            color: white;
        }
        .track-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .track-play {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .track-play svg {
            width: 12px;
            height: 12px;
            color: var(--navy-deep);
            margin-left: 2px;
        }
        .track-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--navy);
        }
        .track-duration {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            color: var(--gray);
        }
        
        /* ═══════════════════════════════════════════════════════════
           FAQ
           ═══════════════════════════════════════════════════════════ */
        .faq {
            padding: 100px 40px;
            background: var(--cream);
        }
        .faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .faq-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
        }
        .faq-item {
            border-bottom: 1px solid var(--gray-light);
            padding: 24px 0;
        }
        .faq-item:first-child {
            border-top: 1px solid var(--gray-light);
        }
        .faq-question {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--gold);
            transition: transform 0.3s;
        }
        .faq-item.open .faq-question svg {
            transform: rotate(45deg);
        }
        .faq-answer {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.7;
            margin-top: 16px;
            display: none;
        }
        .faq-item.open .faq-answer {
            display: block;
        }
        
        /* ═══════════════════════════════════════════════════════════
           FAQ SECTION
           ═══════════════════════════════════════════════════════════ */
        .faq {
            padding: 100px 40px;
            background: var(--cream);
        }
        .faq-inner {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .faq-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 16px;
        }
        .faq-header p {
            font-size: 1.2rem;
            color: var(--gray);
        }
        
        /* FAQ Items using mb-lg */
        .mb-lg {
            background: white;
            border-radius: 12px;
            padding: 24px 28px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            transition: all 0.3s;
            margin-bottom: 16px;
        }
        .mb-lg:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .mb-lg .btn {
            width: 100%;
            justify-content: space-between;
            text-align: left;
            padding: 20px 24px;
            background: transparent;
            border: 2px solid var(--navy);
            color: var(--navy);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 16px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .mb-lg .btn:hover {
            background: var(--navy);
            color: white;
        }
        .mb-lg .btn svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .mb-lg.open .btn svg {
            transform: rotate(45deg);
        }
        .mb-lg .mt-md {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--gray-light);
            display: none;
        }
        .mb-lg.open .mt-md {
            display: block;
        }
        .mb-lg .mt-md p {
            font-size: 1.05rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 12px;
        }
        .mb-lg .mt-md p:last-child {
            margin-bottom: 0;
        }
        .mb-lg .mt-md strong {
            color: var(--charcoal);
        }
        
        /* ═══════════════════════════════════════════════════════════
           SPONSOR CTA SECTION
           ═══════════════════════════════════════════════════════════ */
        .section {
            padding: 100px 40px;
        }
        .section--navy {
            background: var(--navy);
        }
        .section--dark {
            background: var(--navy-deep);
        }
        .section--navy.section--dark {
            background: var(--navy-deep);
        }
        .section--navy.section--dark .section-label {
            color: var(--gold);
        }
        .section--navy.section--dark h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .section--navy.section--dark p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .section--navy.section--dark .btn-primary {
            background: var(--gold);
            color: var(--navy-deep);
        }
        .section--navy.section--dark .btn-primary:hover {
            background: var(--gold-light);
        }
        
        /* ═══════════════════════════════════════════════════════════
           CTA
           ═══════════════════════════════════════════════════════════ */
        .cta {
            padding: 100px 40px;
            background: var(--navy);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f4b41a' fill-opacity='0.05'%3E%3Cpath d='M30 5l2.47 7.6h7.99l-6.47 4.7 2.47 7.6L30 20.2l-6.46 4.7 2.47-7.6-6.47-4.7h7.99L30 5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .cta-inner {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .cta .section-label { color: var(--gold); }
        .cta h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            margin-bottom: 20px;
        }
        .cta p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 36px;
        }
        
        /* Footer */
        .footer {
            background: var(--navy-deep);
            padding: 40px;
            text-align: center;
        }
        .footer-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
        }
        .footer-brand span { color: var(--gold); }
        .footer-legal {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
        }
        
        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */
        @media (max-width: 1200px) {
            .children-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-label { justify-content: center; }
            .hero-label::before { display: none; }
            .hero-stats { justify-content: center; }
            .hero-featured { max-width: 400px; margin: 0 auto; }
            .value-grid { grid-template-columns: repeat(3, 1fr); }
            .children-grid { grid-template-columns: repeat(2, 1fr); }
            .tiers-grid { grid-template-columns: repeat(2, 1fr); }
            .tier-card.popular { transform: scale(1); }
            .tier-card.popular:hover { transform: translateY(-6px); }
            .worship-inner { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .nav { padding: 16px 20px; }
            .nav-links { display: none; }
            .hero-content { padding: 120px 24px 80px; }
            .hero-stats { flex-direction: column; gap: 16px; text-align: center; }
            .value-prop, .children, .tiers, .worship, .faq, .cta { padding: 70px 24px; }
            .value-grid { grid-template-columns: repeat(2, 1fr); }
            .children-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
            .tiers-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
            .filter-tabs { gap: 6px; }
            .filter-tab { padding: 10px 16px; font-size: 0.75rem; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero-featured-photo { width: 150px; height: 150px; }
            .value-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
        }