/* EDG Grant Page Styles */

/* EDG Hero Section */
.edg-hero {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.95), rgba(15, 25, 35, 0.95));
    padding: 12rem 0 8rem 0;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.edg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cyberpunk-inspo/cp-inspo1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.edg-hero .section-container {
    position: relative;
    z-index: 1;
}

.edg-hero-badge {
    display: inline-block;
    background: rgba(252, 238, 10, 0.1);
    border: 1px solid var(--color-highlight);
    color: var(--color-highlight);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.edg-hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.edg-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.edg-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem auto;
    padding: 3rem;
    background: rgba(252, 238, 10, 0.05);
    border: 1px solid rgba(252, 238, 10, 0.2);
    border-radius: 20px;
}

.edg-stat {
    text-align: center;
}

.edg-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.edg-stat-label {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 400;
}

.edg-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.edg-hero-cta .cta-note {
    color: var(--color-white);
}

/* EDG About Section */
.edg-about-section {
    background-color: var(--color-background);
    padding: 8rem 0;
}

.edg-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.edg-about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.edg-benefits {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(252, 238, 10, 0.08), rgba(0, 240, 255, 0.05));
    border: 1px solid rgba(252, 238, 10, 0.2);
    border-radius: 15px;
}

.edg-benefits-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-highlight);
    margin-bottom: 1.5rem;
}

.edg-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edg-benefits-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--color-primary);
    line-height: 1.6;
}

.edg-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: 700;
    font-size: 1.25rem;
}

.edg-about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.edg-card {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.6), rgba(10, 1, 24, 0.7));
    border: 2px solid rgba(252, 238, 10, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.edg-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.edg-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.edg-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edg-card-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.6;
}

.edg-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: 700;
    font-size: 1.5rem;
}

/* EDG Services Section */
.edg-services-section {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.95), rgba(15, 25, 35, 0.95));
    padding: 8rem 0;
    position: relative;
}

.edg-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.edg-service-card {
    background: rgba(15, 25, 35, 0.5);
    border: 2px solid rgba(252, 238, 10, 0.15);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.edg-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-highlight);
    background: rgba(15, 25, 35, 0.8);
}

.edg-service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    color: var(--color-highlight);
}

.edg-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.edg-service-description {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.edg-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edg-service-features li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: rgba(252, 238, 10, 0.7);
    line-height: 1.5;
}

.edg-service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: 700;
}

/* EDG Process Section */
.edg-process-section {
    background-color: var(--color-background);
    padding: 8rem 0;
}

.edg-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}

.edg-process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-highlight), rgba(252, 238, 10, 0.2));
}

.edg-process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.edg-process-step:last-child {
    margin-bottom: 0;
}

.edg-process-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-highlight), rgba(252, 238, 10, 0.8));
    color: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid var(--color-background);
    z-index: 2;
}

.edg-process-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.edg-process-description {
    font-size: 1.125rem;
    color: var(--color-primary);
    line-height: 1.7;
}

/* EDG Why Section */
.edg-why-section {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.95), rgba(15, 25, 35, 0.95));
    padding: 8rem 0;
}

.edg-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.edg-why-card {
    background: rgba(15, 25, 35, 0.5);
    border: 2px solid rgba(252, 238, 10, 0.15);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.edg-why-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-highlight);
    background: rgba(15, 25, 35, 0.8);
}

.edg-why-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.edg-why-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.edg-why-description {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.6;
}

/* EDG Success Section */
.edg-success-section {
    background-color: var(--color-background);
    padding: 8rem 0;
}

.edg-success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.edg-success-card {
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.6), rgba(10, 1, 24, 0.7));
    border: 2px solid rgba(252, 238, 10, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.edg-success-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-highlight);
}

.edg-success-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(252, 238, 10, 0.2);
}

.edg-success-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-highlight);
    line-height: 1;
}

.edg-success-label {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.edg-success-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.edg-success-description {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.edg-success-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(252, 238, 10, 0.1);
}

.edg-success-result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.edg-result-metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-highlight);
    line-height: 1;
}

.edg-result-label {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-align: center;
    margin-top: 0.5rem;
}

/* EDG FAQ Section */
.edg-faq-section {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.95), rgba(15, 25, 35, 0.95));
    padding: 8rem 0;
}

.edg-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.edg-faq-item {
    background: rgba(15, 25, 35, 0.5);
    border: 2px solid rgba(252, 238, 10, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.edg-faq-item:hover {
    border-color: var(--color-highlight);
    background: rgba(15, 25, 35, 0.8);
}

.edg-faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.edg-faq-answer {
    font-size: 1rem;
    color: var(--color-primary);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .edg-hero-stats {
        gap: 2rem;
        padding: 2rem;
    }

    .edg-about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .edg-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .edg-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .edg-success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .edg-faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .edg-hero {
        padding: 10rem 0 6rem 0;
    }

    .edg-hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .edg-stat-number {
        font-size: 2.5rem;
    }

    .edg-about-section,
    .edg-services-section,
    .edg-process-section,
    .edg-why-section,
    .edg-success-section,
    .edg-faq-section {
        padding: 6rem 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .edg-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .edg-service-card {
        padding: 2rem;
    }

    .edg-process-timeline::before {
        left: 20px;
    }

    .edg-process-step {
        padding-left: 70px;
        margin-bottom: 3rem;
    }

    .edg-process-number {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }

    .edg-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .edg-why-card {
        padding: 2rem;
    }

    .edg-success-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .edg-success-card {
        padding: 2rem;
    }

    .edg-success-results {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .edg-hero {
        padding: 8rem 0 5rem 0;
    }

    .edg-hero-title {
        font-size: 2.5rem;
    }

    .edg-stat-number {
        font-size: 2rem;
    }

    .edg-benefits {
        padding: 1.5rem;
    }

    .edg-card {
        padding: 1.5rem;
    }

    .edg-service-card {
        padding: 1.5rem;
    }

    .edg-process-step {
        padding-left: 60px;
    }

    .edg-process-title {
        font-size: 1.25rem;
    }

    .edg-why-card {
        padding: 1.5rem;
    }

    .edg-success-card {
        padding: 1.5rem;
    }

    .edg-faq-item {
        padding: 1.5rem;
    }
}

/* Section Header Alignment */
.section-header {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin: 0 auto;
}

/* Final CTA Section - Revamped */
.final-cta-section {
    background: linear-gradient(135deg, rgba(10, 1, 24, 0.98), rgba(15, 25, 35, 0.98));
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(252, 238, 10, 0.15), transparent 60%);
    pointer-events: none;
}

.final-cta-section .section-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-note {
    font-size: 1rem;
    color: rgba(252, 238, 10, 0.8);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.cta-note::before,
.cta-note::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-highlight), transparent);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 5rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-note {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-note::before,
    .cta-note::after {
        display: none;
    }
}
