/**
 * EAP Page Styles - Dark Theme
 * SkoolBeez Early Access Program
 */

/* ========================================
   CSS Variables (inherited from homepage)
   ======================================== */
:root {
    --sb-dark-1: #0d1b2a;
    --sb-dark-2: #1b263b;
    --sb-dark-3: #415a77;
    --sb-yellow: #ffed00;
    --sb-yellow-dark: #ffc300;
    --sb-glass: rgba(255, 255, 255, 0.03);
    --sb-glass-border: rgba(255, 255, 255, 0.1);
    --sb-text-muted: rgba(255, 255, 255, 0.6);
}

/* ========================================
   EAP Hero Section
   ======================================== */
.eap-hero {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 50%, var(--sb-dark-3) 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    margin-top: -80px;
}

.eap-hero-honeycomb {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50V16L28 0l28 16v34L28 66zm0-12l20-12V22L28 10 8 22v20l20 12z' fill='%23ffed00' fill-opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.6;
    animation: honeycombFloat 25s ease-in-out infinite;
}

.eap-hero-glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 237, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes honeycombFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

.eap-hero-content {
    position: relative;
    z-index: 10;
}

.eap-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 237, 0, 0.1);
    border: 1px solid rgba(255, 237, 0, 0.3);
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--sb-yellow);
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 237, 0, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(255, 237, 0, 0); }
}

.eap-hero-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.eap-hero-title .highlight {
    color: var(--sb-yellow);
    position: relative;
}

.eap-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 237, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.eap-hero-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: var(--sb-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 550px;
}

.eap-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.eap-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--sb-dark-2);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eap-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.eap-btn-primary:hover::before {
    left: 100%;
}

.eap-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(255, 237, 0, 0.4);
    color: var(--sb-dark-2);
}

.eap-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.eap-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--sb-yellow);
    color: var(--sb-yellow);
    transform: translateY(-3px);
}

.eap-btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sb-text-muted);
    text-decoration: none;
    cursor: not-allowed;
}

/* Hero Visual */
.eap-hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eap-center-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.2) 0%, rgba(255, 195, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: centerPulse 3s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(255, 237, 0, 0.2);
}

.eap-center-icon img {
    width: 80px;
    height: auto;
}

@keyframes centerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(255, 237, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(255, 237, 0, 0.3); }
}

.eap-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    white-space: nowrap;
}

.eap-floating-card iconify-icon {
    font-size: 1.5rem;
    color: var(--sb-yellow);
}

.eap-floating-card.card-1 {
    top: 10%;
    left: 0;
    animation: float1 6s ease-in-out infinite;
}

.eap-floating-card.card-2 {
    top: 50%;
    right: -20px;
    animation: float2 7s ease-in-out infinite;
}

.eap-floating-card.card-3 {
    bottom: 10%;
    left: 10%;
    animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    50% { transform: translate(10px, -15px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(2deg); }
    50% { transform: translate(-15px, 10px) rotate(-2deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(1deg); }
    50% { transform: translate(15px, -10px) rotate(-1deg); }
}

/* ========================================
   Alert Banner
   ======================================== */
.eap-alert-banner {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    padding: 20px 0;
    position: relative;
}

.eap-alert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.eap-alert-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eap-alert-icon iconify-icon {
    font-size: 1.75rem;
    color: #ffffff;
}

.eap-alert-content h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 8px;
}

.eap-alert-content h4 span {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.eap-alert-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   Section Headers (shared with homepage)
   ======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--sb-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: var(--sb-text-muted);
    max-width: 600px;
}

/* ========================================
   Benefits Section
   ======================================== */
.eap-benefits {
    background: linear-gradient(180deg, var(--sb-dark-2) 0%, var(--sb-dark-1) 100%);
    padding: 100px 0;
    position: relative;
}

.benefit-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sb-yellow), var(--sb-yellow-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 237, 0, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.2) 0%, rgba(255, 195, 0, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--sb-yellow);
}

.benefit-icon.icon-red {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.1) 100%);
    color: #ff6b7a;
}

.benefit-icon.icon-green {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
    color: #5dd879;
}

.benefit-icon.icon-blue {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 123, 255, 0.1) 100%);
    color: #5fa8ff;
}

.benefit-icon.icon-orange {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    color: #ffcd39;
}

.benefit-icon.icon-purple {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.2) 0%, rgba(111, 66, 193, 0.1) 100%);
    color: #9f7aea;
}

.benefit-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--sb-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   Stats Section
   ======================================== */
.eap-stats {
    background: var(--sb-dark-1);
    padding: 100px 0;
    position: relative;
}

.eap-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sb-glass-border), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 237, 0, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--sb-yellow);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--sb-text-muted);
}

/* ========================================
   Schools Section
   ======================================== */
.eap-schools {
    background: linear-gradient(180deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.school-card {
    background: var(--sb-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.school-card:hover {
    border-color: rgba(255, 237, 0, 0.3);
    transform: translateY(-5px);
}

.school-logo {
    height: 180px;
    background: linear-gradient(135deg, rgba(255, 237, 0, 0.1) 0%, rgba(255, 195, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.school-logo img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.school-info {
    padding: 1.5rem;
}

.school-info h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0 0 8px;
}

.school-info p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--sb-text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.school-info p iconify-icon {
    color: var(--sb-yellow);
}

/* Carousel Dots */
.schools-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.schools-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--sb-glass-border);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.schools-carousel .owl-dot.active {
    background: var(--sb-yellow);
    transform: scale(1.2);
}

/* ========================================
   FAQ Section
   ======================================== */
.eap-faq {
    background: var(--sb-dark-1);
    padding: 100px 0;
}

.eap-accordion .accordion-item {
    background: var(--sb-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--sb-glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.eap-accordion .accordion-button {
    background: transparent;
    padding: 1.5rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: none;
}

.eap-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.eap-accordion .accordion-button:not(.collapsed) {
    color: var(--sb-yellow);
    background: rgba(255, 237, 0, 0.05);
}

.eap-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(91%) sepia(69%) saturate(1000%) hue-rotate(359deg) brightness(103%) contrast(106%);
}

.eap-accordion .accordion-body {
    padding: 0 2rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--sb-text-muted);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.eap-cta {
    background: linear-gradient(135deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.eap-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 33L15 25V8l15-8 15 8v17l-15 8z' fill='%23000' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.eap-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.eap-cta-logo {
    width: 100px;
    margin-bottom: 2rem;
    animation: ctaBounce 2s ease-in-out infinite;
}

@keyframes ctaBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.eap-cta-content h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--sb-dark-2);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.eap-cta-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    color: var(--sb-dark-3);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.eap-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.eap-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--sb-dark-2);
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.eap-cta-btn-primary:hover {
    background: var(--sb-dark-1);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.eap-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--sb-dark-2);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--sb-dark-2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.eap-cta-btn-secondary:hover {
    background: var(--sb-dark-2);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========================================
   Modal Styles
   ======================================== */
.eap-modal {
    background: var(--sb-dark-2);
    border: 1px solid var(--sb-glass-border);
    border-radius: 24px;
}

.eap-modal .modal-header {
    background: linear-gradient(135deg, var(--sb-dark-1) 0%, var(--sb-dark-2) 100%);
    border-bottom: 1px solid var(--sb-glass-border);
    padding: 1.5rem 2rem;
    border-radius: 24px 24px 0 0;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title-icon {
    font-size: 1.5rem;
    color: var(--sb-yellow);
}

.eap-modal .modal-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0;
}

.eap-modal .modal-body {
    padding: 2rem;
}

.eap-modal .form-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.eap-form-control {
    background: var(--sb-glass);
    border: 1px solid var(--sb-glass-border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.eap-form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--sb-yellow);
    box-shadow: 0 0 0 3px rgba(255, 237, 0, 0.1);
    color: #ffffff;
}

.eap-form-control::placeholder {
    color: var(--sb-text-muted);
}

.eap-form-control option {
    background: var(--sb-dark-2);
    color: #ffffff;
}

.eap-input-addon {
    background: var(--sb-dark-1);
    border: 1px solid var(--sb-glass-border);
    border-left: none;
    color: var(--sb-text-muted);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
}

.eap-form-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255, 237, 0, 0.1);
    border: 1px solid rgba(255, 237, 0, 0.2);
    border-radius: 12px;
    margin-top: 1rem;
}

.eap-form-notice iconify-icon {
    font-size: 1.25rem;
    color: var(--sb-yellow);
    flex-shrink: 0;
    margin-top: 2px;
}

.eap-form-notice span {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.eap-modal .modal-footer {
    background: var(--sb-dark-1);
    border-top: 1px solid var(--sb-glass-border);
    padding: 1.25rem 2rem;
    border-radius: 0 0 24px 24px;
}

.eap-modal-btn-secondary {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--sb-glass-border);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--sb-text-muted);
    transition: all 0.3s ease;
}

.eap-modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.eap-modal-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--sb-yellow) 0%, var(--sb-yellow-dark) 100%);
    border: none;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--sb-dark-2);
    transition: all 0.3s ease;
}

.eap-modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(255, 237, 0, 0.4);
    color: var(--sb-dark-2);
}

.eap-registration-closed {
    text-align: center;
    padding: 2rem;
}

.eap-registration-closed iconify-icon {
    font-size: 4rem;
    color: var(--sb-text-muted);
    margin-bottom: 1.5rem;
}

.eap-registration-closed h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.eap-registration-closed p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--sb-text-muted);
    margin: 0;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 992px) {
    .eap-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .eap-hero-description {
        max-width: 100%;
    }
    
    .eap-hero-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .eap-alert {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .eap-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .eap-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .eap-btn-primary,
    .eap-btn-secondary,
    .eap-btn-disabled {
        width: 100%;
        justify-content: center;
    }
    
    .eap-modal .modal-body {
        padding: 1.5rem;
    }
}
