        /* Foundation Program Custom Variables */
        :root {
            --fp-coral: #e67e5a;
            --fp-peach: #f4a574;
            --fp-gold: #d4a854;
            --fp-cream: #fdf8f3;
            --fp-sand: #f5f0e8;
            --fp-forest: #4a7c59;
            --fp-purple: #8b6dae;
            --fp-gradient-warm: linear-gradient(135deg, #e67e5a 0%, #f4a574 50%, #d4a854 100%);
        }
        /* ========================================
           HERO SECTION
           ======================================== */
        .fp-hero {
            position: relative;
            min-height: 600px;
            background: linear-gradient(135deg, var(--fp-cream) 0%, #ffffff 50%, var(--fp-sand) 100%);
            padding: 140px 60px 100px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .fp-hero::before {
            content: 'FOUNDATION';
            position: absolute;
            top: 50%;
            right: -5%;
            transform: translateY(-50%);
            font-family: 'Outfit', sans-serif;
            font-size: 180px;
            font-weight: 800;
            color: rgba(230, 126, 90, 0.04);
            letter-spacing: -5px;
            pointer-events: none;
            white-space: nowrap;
        }
        .fp-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1300px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }
        .fp-hero-content {
            position: relative;
        }
        .fp-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(230, 126, 90, 0.1);
            border: 1px solid rgba(230, 126, 90, 0.25);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 24px;
        }
        .fp-hero-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--fp-coral);
        }
        .fp-hero-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--fp-coral);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .fp-hero-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 700;
            color: var(--pd-primary);
            line-height: 1.15;
            margin: 0 0 20px;
        }
        .fp-hero-title span {
            background: var(--fp-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .fp-hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            color: #64748b;
            line-height: 1.8;
            margin: 0 0 28px;
            max-width: 540px;
        }
        .fp-hero-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 32px;
        }
        .fp-hero-highlight {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.08);
            padding: 10px 18px;
            border-radius: 25px;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--pd-primary);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .fp-hero-highlight svg {
            width: 16px;
            height: 16px;
            stroke: var(--fp-coral);
        }
        .fp-hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .fp-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--fp-gradient-warm);
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(230, 126, 90, 0.3);
        }
        .fp-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230, 126, 90, 0.4);
            color: #ffffff;
        }
        .fp-btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .fp-btn-primary:hover svg {
            transform: translateX(4px);
        }
        .fp-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--pd-primary);
            padding: 16px 32px;
            border-radius: 30px;
            border: 2px solid var(--pd-primary);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .fp-btn-secondary:hover {
            background: var(--pd-primary);
            color: #ffffff;
        }
        .fp-btn-secondary svg {
            width: 18px;
            height: 18px;
        }
        /* Hero Visual */
        .fp-hero-visual {
            position: relative;
        }
        .fp-hero-card {
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            border-radius: 28px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(30, 58, 95, 0.25);
        }
        .fp-hero-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(230, 126, 90, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        .fp-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }
        .fp-card-icon {
            width: 56px;
            height: 56px;
            background: rgba(255,255,255,0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .fp-card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--fp-peach);
        }
        .fp-card-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255,255,255,0.6);
        }
        .fp-card-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin: 4px 0 0;
        }
        .fp-card-pathways {
            display: flex;
            flex-direction: column;
            gap: 14px;
            position: relative;
            z-index: 2;
        }
        .fp-pathway-item {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.1);
            padding: 16px 20px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }
        .fp-pathway-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateX(6px);
        }
        .fp-pathway-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .fp-pathway-dot.coral { background: var(--fp-coral); }
        .fp-pathway-dot.gold { background: var(--fp-gold); }
        .fp-pathway-dot.green { background: var(--fp-forest); }
        .fp-pathway-dot.purple { background: var(--fp-purple); }
        .fp-pathway-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.9);
        }
        .fp-pathway-arrow {
            margin-left: auto;
            width: 18px;
            height: 18px;
            stroke: rgba(255,255,255,0.4);
        }
        /* Floating Elements */
        .fp-float-stat {
            position: absolute;
            background: #ffffff;
            border-radius: 16px;
            padding: 16px 22px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            z-index: 10;
        }
        .fp-float-stat.top-left {
            top: -20px;
            left: -30px;
        }
        .fp-float-stat.bottom-right {
            bottom: -20px;
            right: -30px;
        }
        .fp-float-stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--fp-coral);
        }
        .fp-float-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            color: #64748b;
        }
        @media (max-width: 1024px) {
            .fp-hero { padding: 120px 40px 80px; }
            .fp-hero-container { grid-template-columns: 1fr; gap: 50px; }
            .fp-hero-visual { max-width: 500px; margin: 0 auto; }
            .fp-float-stat { display: none; }
        }
        @media (max-width: 768px) {
            .fp-hero { padding: 120px 24px 60px; min-height: auto; }
            .fp-hero-title { font-size: 32px; }
            .fp-hero-cta { flex-direction: column; }
            .fp-hero::before { font-size: 80px; }
        }

        /* ========================================
           SECTION 1: WHAT IS FOUNDATION PROGRAM
           ======================================== */
        .fp-what-section {
            padding: 100px 60px;
            background: #ffffff;
            position: relative;
        }
        .fp-what-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .fp-section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .fp-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(230, 126, 90, 0.1);
            border: 1px solid rgba(230, 126, 90, 0.2);
            padding: 8px 18px;
            border-radius: 25px;
            margin-bottom: 20px;
        }
        .fp-section-badge svg {
            width: 18px;
            height: 18px;
            stroke: var(--fp-coral);
        }
        .fp-section-badge span {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--fp-coral);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .fp-section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 46px);
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 16px;
            line-height: 1.2;
        }
        .fp-section-title span {
            background: var(--fp-gradient-warm);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .fp-section-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .fp-what-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .fp-what-content h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 20px;
        }
        .fp-what-content p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #64748b;
            line-height: 1.8;
            margin: 0 0 20px;
        }
        .fp-what-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .fp-what-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .fp-what-list li:last-child {
            border-bottom: none;
        }
        .fp-what-list svg {
            width: 22px;
            height: 22px;
            stroke: var(--fp-coral);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .fp-what-list span {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--pd-primary);
            line-height: 1.6;
        }
        .fp-what-visual {
            position: relative;
        }
        .fp-what-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }
        .fp-what-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 1024px) {
            .fp-what-section { padding: 80px 40px; }
            .fp-what-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 768px) {
            .fp-what-section { padding: 60px 24px; }
        }

        /* ========================================
           SECTION 2: WHO IS IT FOR
           ======================================== */
        .fp-who-section {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--fp-cream) 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        .fp-who-section::before {
            content: 'FOR YOU';
            position: absolute;
            bottom: 5%;
            left: -5%;
            font-family: 'Outfit', sans-serif;
            font-size: 200px;
            font-weight: 800;
            color: rgba(230, 126, 90, 0.03);
            pointer-events: none;
        }
        .fp-who-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }
        .fp-who-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }
        .fp-who-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 36px 30px;
            border: 1px solid rgba(0,0,0,0.06);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .fp-who-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--card-accent, var(--fp-coral));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .fp-who-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        .fp-who-card:hover::before {
            transform: scaleX(1);
        }
        .fp-who-card.coral { --card-accent: var(--fp-coral); }
        .fp-who-card.gold { --card-accent: var(--fp-gold); }
        .fp-who-card.green { --card-accent: var(--fp-forest); }
        .fp-who-card.purple { --card-accent: var(--fp-purple); }
        .fp-who-card.blue { --card-accent: #5b9bd5; }
        .fp-who-card.teal { --card-accent: #3d8b8b; }
        .fp-who-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .fp-who-icon svg {
            width: 32px;
            height: 32px;
            stroke: #ffffff;
        }
        .fp-who-icon.coral { background: linear-gradient(135deg, #e67e5a, #f4a574); }
        .fp-who-icon.gold { background: linear-gradient(135deg, #d4a854, #e8c777); }
        .fp-who-icon.green { background: linear-gradient(135deg, #4a7c59, #6ba378); }
        .fp-who-icon.purple { background: linear-gradient(135deg, #8b6dae, #a78bc7); }
        .fp-who-icon.blue { background: linear-gradient(135deg, #5b9bd5, #7eb8e8); }
        .fp-who-icon.teal { background: linear-gradient(135deg, #3d8b8b, #5aadad); }
        .fp-who-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 12px;
        }
        .fp-who-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 1024px) {
            .fp-who-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .fp-who-section { padding: 60px 24px; }
            .fp-who-grid { grid-template-columns: 1fr; }
            .fp-who-section::before { font-size: 100px; }
        }

        /* ========================================
           SECTION 3: FOUNDATION TRACKS
           ======================================== */
        .fp-tracks-section {
            padding: 100px 60px;
            background: #ffffff;
            position: relative;
        }
        .fp-tracks-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .fp-tracks-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }
        .fp-track-card {
            background: linear-gradient(180deg, #ffffff 0%, var(--fp-cream) 100%);
            border-radius: 24px;
            padding: 32px 28px;
            border: 1px solid rgba(0,0,0,0.06);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .fp-track-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--track-color, var(--fp-coral));
        }
        .fp-track-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }
        .fp-track-card.stem { --track-color: var(--fp-coral); }
        .fp-track-card.business { --track-color: var(--fp-gold); }
        .fp-track-card.health { --track-color: var(--fp-forest); }
        .fp-track-card.arts { --track-color: var(--fp-purple); }
        .fp-track-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            background: var(--track-color, var(--fp-coral));
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .fp-track-icon svg {
            width: 36px;
            height: 36px;
            stroke: #ffffff;
        }
        .fp-track-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 12px;
        }
        .fp-track-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0 0 20px;
        }
        .fp-track-subjects {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }
        .fp-track-subject {
            background: rgba(0,0,0,0.04);
            padding: 6px 12px;
            border-radius: 15px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            color: var(--pd-primary);
        }
        @media (max-width: 1200px) {
            .fp-tracks-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .fp-tracks-section { padding: 60px 24px; }
            .fp-tracks-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 4: PROGRAM STRUCTURE
           ======================================== */
        .fp-structure-section {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--fp-sand) 0%, var(--fp-cream) 100%);
            position: relative;
        }
        .fp-structure-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .fp-structure-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
            margin-top: 50px;
        }
        .fp-structure-info {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        }
        .fp-structure-info h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 20px;
        }
        .fp-structure-info p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #64748b;
            line-height: 1.8;
            margin: 0 0 24px;
        }
        .fp-duration-box {
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .fp-duration-icon {
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .fp-duration-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--fp-peach);
        }
        .fp-duration-text h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 4px;
        }
        .fp-duration-text p {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin: 0;
        }
        .fp-modules-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .fp-module-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid rgba(0,0,0,0.06);
            display: flex;
            align-items: flex-start;
            gap: 18px;
            transition: all 0.3s ease;
        }
        .fp-module-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transform: translateX(6px);
        }
        .fp-module-num {
            width: 44px;
            height: 44px;
            background: var(--fp-gradient-warm);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            flex-shrink: 0;
        }
        .fp-module-content h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--pd-primary);
            margin: 0 0 6px;
        }
        .fp-module-content p {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }
        @media (max-width: 1024px) {
            .fp-structure-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .fp-structure-section { padding: 60px 24px; }
        }

        /* ========================================
           SECTION 5: BENEFITS
           ======================================== */
        .fp-benefits-section {
            padding: 100px 60px;
            background: #ffffff;
            position: relative;
        }
        .fp-benefits-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .fp-benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 50px;
        }
        .fp-benefit-card {
            background: linear-gradient(180deg, #ffffff 0%, var(--fp-cream) 100%);
            border-radius: 20px;
            padding: 32px 28px;
            border: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }
        .fp-benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }
        .fp-benefit-icon {
            width: 56px;
            height: 56px;
            background: rgba(230, 126, 90, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .fp-benefit-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--fp-coral);
        }
        .fp-benefit-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--pd-primary);
            margin: 0 0 10px;
        }
        .fp-benefit-desc {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 1024px) {
            .fp-benefits-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .fp-benefits-section { padding: 60px 24px; }
            .fp-benefits-grid { grid-template-columns: 1fr; }
        }

        /* ========================================
           SECTION 6: CTA
           ======================================== */
        .fp-cta-section {
            padding: 100px 60px;
            background: linear-gradient(135deg, var(--pd-primary) 0%, #2c5282 100%);
            position: relative;
            overflow: hidden;
        }
        .fp-cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(230, 126, 90, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }
        .fp-cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .fp-cta-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(32px, 4vw, 44px);
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 20px;
            line-height: 1.2;
        }
        .fp-cta-title span {
            color: var(--fp-peach);
        }
        .fp-cta-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.15rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin: 0 0 36px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }
        .fp-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .fp-cta-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--fp-gradient-warm);
            color: #ffffff;
            padding: 18px 36px;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(230, 126, 90, 0.4);
        }
        .fp-cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(230, 126, 90, 0.5);
            color: #ffffff;
        }
        .fp-cta-btn-primary svg {
            width: 20px;
            height: 20px;
        }
        .fp-cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ffffff;
            padding: 18px 36px;
            border-radius: 30px;
            border: 2px solid rgba(255,255,255,0.4);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .fp-cta-btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.6);
            color: #ffffff;
        }
        .fp-cta-btn-secondary svg {
            width: 20px;
            height: 20px;
        }
        @media (max-width: 768px) {
            .fp-cta-section { padding: 60px 24px; }
            .fp-cta-buttons { flex-direction: column; align-items: center; }
        }
