/* For Early Stage Startups Page Specific Styles */
:root {
    --es-primary: #21D891;
    --es-secondary: #0988FF;
    --es-dark: #0f172a;
    --es-light-bg: #f8fafc;
    --es-card-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    --es-radius: 20px;
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    width: 100%;
}

.es-page {
    position: relative;
    background-color: #ffffff;
}

/* Hero Section */
.es-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.99) 0%, rgba(2, 6, 23, 1) 100%);
    padding: 180px 0 110px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.es-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(9, 136, 255, 0.06) 0%, transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.es-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 216, 145, 0.04) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

.es-hero-badge {
    background: rgba(9, 136, 255, 0.1);
    color: var(--es-secondary);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(9, 136, 255, 0.2);
}

.es-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    font-family: 'Sora', sans-serif;
}

.es-hero-title span {
    color: var(--es-primary);
}

.es-hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 850px;
    margin: 0 auto 45px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.es-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.es-btn-primary {
    background: var(--es-secondary);
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(9, 136, 255, 0.25);
    display: inline-block;
}

.es-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.es-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(9, 136, 255, 0.4);
    color: #ffffff;
}

.es-btn-outline:hover {
    background: #ffffff;
    color: var(--es-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

/* Program Overview / Intro */
.es-intro-section {
    padding: 100px 0 60px;
    background-color: #ffffff;
    text-align: center;
}

.es-section-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--es-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.es-section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--es-dark);
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    letter-spacing: -1px;
}

.es-section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 3-Phases Section */
.es-phases-section {
    padding: 60px 0 100px;
    background-color: var(--es-light-bg);
}

.es-phase-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--es-radius);
    padding: 45px;
    margin-bottom: 35px;
    box-shadow: var(--es-card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.es-phase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(9, 136, 255, 0.2);
}

.es-phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--es-secondary);
    transition: background 0.3s ease;
}

.es-phase-card:nth-child(2)::before {
    background: var(--es-primary);
}

.es-phase-card:nth-child(3)::before {
    background: #FFD905;
    /* Yellow accent */
}

.es-phase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.es-phase-badge {
    background: rgba(9, 136, 255, 0.08);
    color: var(--es-secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.es-phase-card:nth-child(2) .es-phase-badge {
    background: rgba(33, 216, 145, 0.08);
    color: var(--es-primary);
}

.es-phase-card:nth-child(3) .es-phase-badge {
    background: rgba(255, 217, 5, 0.1);
    color: #d4a500;
}

.es-phase-number {
    font-size: 3rem;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    opacity: 0.7;
}

.es-phase-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--es-dark);
    margin-top: 10px;
    width: 100%;
    font-family: 'Sora', sans-serif;
}

/* Outcome styling */
.es-phase-outcome {
    background: rgba(33, 216, 145, 0.06);
    border-left: 4px solid var(--es-primary);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 35px;
    font-size: 1.05rem;
    color: #0f172a;
}

.es-phase-card:nth-child(2) .es-phase-outcome {
    background: rgba(9, 136, 255, 0.06);
    border-left-color: var(--es-secondary);
}

.es-phase-card:nth-child(3) .es-phase-outcome {
    background: rgba(255, 217, 5, 0.05);
    border-left-color: #FFD905;
}

.es-phase-outcome strong {
    color: var(--es-dark);
    font-weight: 700;
}

.es-deliverables-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--es-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.es-deliverables-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e2e8f0;
}

/* Responsive grid for deliverables */
.es-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.es-deliverable-item {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.es-deliverable-item:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transform: translateX(3px);
}

.es-deliverable-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(33, 216, 145, 0.1);
    color: var(--es-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.es-phase-card:nth-child(2) .es-deliverable-icon {
    background: rgba(9, 136, 255, 0.1);
    color: var(--es-secondary);
}

.es-phase-card:nth-child(3) .es-deliverable-icon {
    background: rgba(255, 217, 5, 0.15);
    color: #b58c00;
}

.es-deliverable-text {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

/* Call to Action Section */
.es-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 1) 0%, rgba(15, 23, 42, 0.99) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.es-cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 136, 255, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.es-cta-card {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.es-cta-badge {
    color: var(--es-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.es-cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 25px;
    font-family: 'Sora', sans-serif;
}

.es-cta-desc {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.es-cta-btn {
    background: var(--es-primary);
    color: var(--es-dark);
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(33, 216, 145, 0.2);
}

.es-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(33, 216, 145, 0.4);
    color: var(--es-dark);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .es-hero {
        padding: 140px 0 80px;
    }

    .es-phases-section {
        padding: 40px 0 60px;
    }

    .es-phase-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .es-phase-header {
        margin-bottom: 20px;
    }

    .es-phase-title {
        font-size: 1.4rem;
    }

    .es-phase-number {
        font-size: 2.2rem;
    }

    .es-phase-outcome {
        font-size: 0.95rem;
        padding: 12px 15px;
        margin-bottom: 25px;
    }

    .es-deliverables-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .es-deliverable-item {
        padding: 12px 16px;
    }

    .es-cta-section {
        padding: 70px 0;
    }
}

/* Pricing Section */
.es-pricing-section {
    padding: 85px 0;
    background-color: #ffffff;
    text-align: center;
}

.es-pricing-card {
    background: linear-gradient(135deg, rgba(33, 216, 145, 0.04) 0%, rgba(9, 136, 255, 0.04) 100%);
    border: 1px solid rgba(33, 216, 145, 0.15);
    border-radius: var(--es-radius);
    padding: 55px 40px;
    box-shadow: var(--es-card-shadow);
    position: relative;
    overflow: hidden;
}

.es-pricing-card::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(9, 136, 255, 0.06) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.es-pricing-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--es-secondary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.es-pricing-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--es-dark);
    margin-bottom: 30px;
    font-family: 'Sora', sans-serif;
    letter-spacing: -1px;
}

.es-price-badge {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    background: var(--es-dark);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.es-price-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--es-primary);
    margin-right: 4px;
}

.es-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.es-price-period {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-left: 8px;
    font-weight: 500;
}

.es-pricing-note {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.es-pricing-taglines {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.es-tagline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--es-dark);
    font-family: 'Outfit', sans-serif;
}

.es-tagline-item i {
    color: var(--es-primary);
    font-size: 1.15rem;
}

.es-tagline-divider {
    width: 6px;
    height: 6px;
    background-color: var(--es-secondary);
    border-radius: 50%;
}

@media (max-width: 767px) {
    .es-pricing-section {
        padding: 55px 0;
    }

    .es-pricing-card {
        padding: 35px 20px;
    }

    .es-pricing-title {
        font-size: 1.75rem;
    }

    .es-price-amount {
        font-size: 2.1rem;
    }

    .es-pricing-taglines {
        flex-direction: column;
        gap: 15px;
    }

    .es-tagline-divider {
        display: none;
    }
}