/* ============================================================================
   E-KAFA PIUMS - Modern SaaS Landing Page Styles
   Performance-Optimized | Mobile-First | User-Friendly
   ============================================================================ */

/* ========================================
   Base Landing Page Container
   ======================================== */
.landing-page-modern {
    background: transparent;
    overflow-x: hidden;
}

/* ========================================
   HERO SECTION - Modern SaaS Style
   ======================================== */
.hero-section-modern {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 56, 41, 0.95) 0%, rgba(0, 31, 21, 0.97) 100%);
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Text Content */
.hero-text-content {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-badge-modern i {
    font-size: 16px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description-modern {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    font-weight: 400;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    font-size: 18px;
    color: var(--ekafa-accent);
}

/* CTA Buttons */
.hero-cta-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-section-modern .btn-primary-modern,
.hero-section-modern .btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.hero-section-modern .btn-primary-modern {
    background: var(--text-white);
    color: var(--ekafa-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-section-modern .btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: var(--text-white-soft);
    color: var(--ekafa-primary);
}

.hero-section-modern .btn-secondary-modern {
    background: transparent;
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-section-modern .btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* Hero Visual Content */
.hero-visual-content {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
    width: 100%;
    max-width: 800px;
}

/* Image Carousel */
.hero-image-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.carousel-inner-modern {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.image-card-modern {
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    padding: 16px;
}

.image-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Carousel Controls */
.carousel-indicators-modern {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--text-white);
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--ekafa-primary);
    font-size: 20px;
}

.carousel-prev {
    left: 16px;
}

.carousel-next {
    right: 16px;
}

.carousel-nav:hover {
    background: var(--text-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 5;
}

.floating-badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 1.5s;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--ekafa-primary) 0%, var(--ekafa-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
}

.badge-content {
    text-align: left;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--ekafa-primary);
    line-height: 1;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section-modern {
    background: var(--bg-white);
    padding: 80px 20px;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.stats-container-modern {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.stat-card-modern {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ekafa-accent);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
}

.stat-icon-modern.students {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.stat-icon-modern.teachers {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon-modern.classes {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stat-icon-modern.satisfaction {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--ekafa-primary);
    line-height: 1;
    margin-bottom: 8px;
    display: inline-block;
}

.stat-suffix-modern {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ekafa-primary);
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1;
}

.stat-label-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-sublabel-modern {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ========================================
   FEATURES SECTION - Equal Showcase
   ======================================== */
.features-section-modern {
    padding: 100px 20px;
    background: var(--bg-lighter);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--ekafa-accent) 0%, var(--ekafa-primary-light) 100%);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 168, 107, 0.3);
}

.section-badge i {
    margin-right: 6px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

.features-grid-modern {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card-modern {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--ekafa-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--ekafa-accent);
}

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

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2.25rem;
    color: var(--text-white);
}

.feature-icon-wrapper.primary {
    background: linear-gradient(135deg, #004135 0%, #11684d 100%);
}

.feature-icon-wrapper.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-wrapper.info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.feature-icon-wrapper.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon-wrapper.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon-wrapper.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-title {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature-list li i {
    color: var(--ekafa-accent);
    font-size: 1.125rem;
}

/* ========================================
   ROLES SECTION
   ======================================== */
.roles-section-modern {
    padding: 100px 20px;
    background: var(--bg-white);
}

.roles-section-modern .section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.roles-section-modern .section-title {
    text-align: center !important;
    display: block !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.roles-grid-modern {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.roles-section-modern .role-card-modern {
    background: var(--bg-white);
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 40px 32px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.roles-section-modern .role-card-modern.featured {
    border-color: var(--ekafa-accent);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.15);
}

.roles-section-modern .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--ekafa-accent) 0%, var(--ekafa-primary-light) 100%);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.roles-section-modern .role-icon-modern {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 24px;
}

.roles-section-modern .role-card-modern.admin .role-icon-modern {
    background: linear-gradient(135deg, #004135 0%, #11684d 100%);
}

.roles-section-modern .role-card-modern.teacher .role-icon-modern {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.roles-section-modern .role-card-modern.parent .role-icon-modern {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.roles-section-modern .role-title-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.roles-section-modern .role-desc-modern {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.roles-section-modern .role-features-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    width: 100%;
}

.roles-section-modern .role-features-modern span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.roles-section-modern .role-features-modern span i {
    color: var(--ekafa-accent);
}

.roles-section-modern .role-cta-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ekafa-primary);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-top: auto;
}

.roles-section-modern .role-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--ekafa-accent);
}

.roles-section-modern .role-card-modern:hover .role-cta-modern {
    gap: 12px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section-modern {
    padding: 100px 20px;
    background: var(--bg-lighter);
}

.testimonials-wrapper-modern {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track-modern {
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card-modern.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-weight: 400;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ekafa-primary) 0%, var(--ekafa-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-role {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.testimonials-controls-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--ekafa-primary);
    font-size: 1.25rem;
}

.testimonial-nav-btn:hover {
    background: var(--ekafa-primary);
    color: var(--text-white);
    border-color: var(--ekafa-primary);
    transform: scale(1.1);
}

.testimonial-dots-modern {
    display: flex;
    gap: 10px;
}

.testimonial-dots-modern .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots-modern .dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--ekafa-primary);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section-modern {
    padding: 100px 20px;
    background: var(--bg-white);
}

.faq-section-modern .section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-section-modern .section-title {
    text-align: center !important;
    display: block !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.faq-container-modern {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-modern {
    background: var(--bg-white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: var(--ekafa-accent);
}

.faq-question-modern {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question-modern:hover {
    color: var(--ekafa-primary);
}

.faq-question-modern i {
    font-size: 1.25rem;
    color: var(--ekafa-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-modern.active .faq-question-modern i {
    transform: rotate(180deg);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-modern.active .faq-answer-modern {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer-modern p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.faq-answer-modern a {
    color: var(--ekafa-primary);
    text-decoration: underline;
    font-weight: 600;
}

.faq-answer-modern a:hover {
    color: var(--ekafa-accent);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-modern {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--ekafa-primary) 0%, var(--ekafa-primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-icon-modern {
    width: 96px;
    height: 96px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--text-white);
    font-size: 3.5rem;
}

.cta-title-modern {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description-modern {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-benefits-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 1.0625rem;
    font-weight: 600;
}

.benefit-item i {
    font-size: 1.25rem;
    color: var(--ekafa-accent);
}

.cta-buttons-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-cta-primary {
    background: var(--text-white);
    color: var(--ekafa-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    color: var(--ekafa-primary);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: var(--text-white);
}

.cta-help-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-help-text a {
    color: var(--text-white);
    text-decoration: underline;
    font-weight: 600;
}

.cta-help-text a:hover {
    color: var(--text-white-soft);
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   RESPONSIVE DESIGN - Mobile First
   ======================================== */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual-content {
        order: -1;
    }

    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        padding: 40px 16px;
        min-height: auto;
    }

    .hero-title-modern {
        font-size: 2.25rem;
    }

    .hero-description-modern {
        font-size: 1.0625rem;
    }

    .hero-trust-indicators {
        gap: 16px;
    }

    .trust-item {
        font-size: 13px;
    }

    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .floating-badge {
        padding: 12px 16px;
        scale: 0.85;
    }

    .floating-badge-1 {
        top: -10px;
        right: -10px;
    }

    .floating-badge-2 {
        bottom: -10px;
        left: -10px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-indicators-modern {
        bottom: 12px;
        gap: 6px;
    }

    .indicator-dot {
        width: 8px;
        height: 8px;
    }

    .indicator-dot.active {
        width: 20px;
        border-radius: 4px;
    }

    .stats-section-modern {
        padding: 60px 16px;
    }

    .stats-container-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number-modern {
        font-size: 2.75rem;
    }

    .features-section-modern,
    .roles-section-modern,
    .testimonials-section-modern,
    .faq-section-modern,
    .final-cta-modern {
        padding: 60px 16px;
    }

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

    .section-description {
        font-size: 1.0625rem;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card-modern {
        padding: 32px 24px;
    }

    .roles-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card-modern {
        padding: 28px 20px;
    }

    .testimonial-quote {
        font-size: 1.0625rem;
    }

    .cta-title-modern {
        font-size: 2.25rem;
    }

    .cta-description-modern {
        font-size: 1.125rem;
    }

    .cta-benefits-modern {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 1.875rem;
    }

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

    .stat-icon-modern {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .stat-number-modern {
        font-size: 2.25rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.875rem;
    }

    .role-icon-modern {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Will-change for smooth animations */
.carousel-slide,
.stat-card-modern,
.feature-card-modern,
.role-card-modern,
.testimonial-card-modern {
    will-change: transform;
}

/* Optimize repaints */
.hero-section-modern .btn-primary-modern,
.hero-section-modern .btn-secondary-modern,
.final-cta-modern .btn-cta-primary,
.final-cta-modern .btn-cta-secondary {
    will-change: transform, box-shadow;
}
