/* ============================================================================
   E-KAFA PIUMS - Landing Page Redesign Styles
   Modern, conversion-focused landing page design
   ============================================================================ */

/* ==================
   Landing Page Container
   ================== */

.landing-page-redesign {
    width: 100%;
    overflow-x: hidden;
}

/* ==================
   Hero Modern Section
   ================== */

.hero-modern {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 65, 53, 0.95) 0%, rgba(0, 31, 21, 0.98) 100%);
}

.hero-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-modern-content {
    color: var(--text-white);
    animation: fadeInLeft 0.8s ease-out;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.trust-badge i {
    color: var(--ekafa-accent);
    font-size: 1rem;
}

/* Hero Title */
.hero-modern-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-modern-highlight {
    display: block;
    background: linear-gradient(135deg, var(--ekafa-accent), var(--ekafa-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Role Subtitle with Rotation */
.hero-role-subtitle {
    height: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.role-subtitle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.role-subtitle.active {
    opacity: 1;
    transform: translateY(0);
}

.role-subtitle i {
    font-size: 2rem;
    color: var(--ekafa-accent);
}

/* Hero Description */
.hero-modern-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Hero Role Cards */
.hero-role-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-role-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(17, 104, 77, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-role-card:hover {
    transform: translateY(-5px);
    border-color: var(--ekafa-accent);
    box-shadow: 0 12px 40px rgba(0, 168, 107, 0.3);
    color: var(--text-white);
}

.hero-role-card:hover::before {
    opacity: 1;
}

.hero-role-card.featured {
    border-color: var(--ekafa-accent);
    background: rgba(0, 168, 107, 0.15);
}

.hero-role-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--ekafa-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.hero-role-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--ekafa-accent), var(--ekafa-accent-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-role-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-role-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Hero Actions */
.hero-modern-actions {
    margin-top: 2rem;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--ekafa-accent);
    color: var(--text-white);
    transform: translateX(5px);
}

/* Hero Visual - Image Carousel */
.hero-modern-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-carousel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-carousel-inner {
    position: relative;
    width: 100%;
    height: 600px;
}

.hero-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-carousel-item.active {
    opacity: 1;
}

.hero-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.hero-carousel-indicators .indicator {
    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;
}

.hero-carousel-indicators .indicator.active {
    width: 40px;
    border-radius: 6px;
    background: var(--ekafa-accent);
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-stat i {
    font-size: 2.5rem;
    color: var(--ekafa-accent);
}

.floating-stat .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ekafa-primary);
    line-height: 1;
}

.floating-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.floating-stat-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.floating-stat-2 {
    bottom: 10%;
    left: -30px;
    animation-delay: 1.5s;
}

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

/* ==================
   Impact Stats Section
   ================== */

.impact-stats {
    padding: 6rem 0;
    background: white;
}

.impact-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.impact-stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.impact-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.impact-stat-icon.students {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.impact-stat-icon.teachers {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.impact-stat-icon.classes {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.impact-stat-icon.success {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    color: #6b21a8;
}

.impact-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--ekafa-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-stat-suffix {
    display: inline;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ekafa-accent);
}

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

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

/* ==================
   Section Headers (Modern)
   ================== */

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

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(17, 104, 77, 0.1));
    border: 1px solid rgba(0, 168, 107, 0.3);
    border-radius: 50px;
    color: var(--ekafa-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.section-title-modern {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

/* ==================
   How It Works Section
   ================== */

.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.how-steps {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.how-step {
    flex: 1;
    position: relative;
}

.how-step-number {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ekafa-accent), var(--ekafa-accent-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.how-step-content {
    background: white;
    padding: 3rem 2rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.how-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.how-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.1), rgba(17, 104, 77, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ekafa-accent);
}

.how-step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.how-step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.how-step-connector {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--ekafa-accent), var(--ekafa-accent-light));
    margin-top: 100px;
    flex-shrink: 0;
}

/* ==================
   Features Preview Section
   ================== */

.features-preview {
    padding: 6rem 0;
    background: white;
}

.features-preview-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-preview-card {
    position: relative;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ekafa-accent), var(--ekafa-accent-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-preview-card:hover::before {
    opacity: 1;
}

.feature-preview-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-preview-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-preview-icon.primary {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.feature-preview-icon.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.feature-preview-icon.warning {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.feature-preview-icon.info {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    color: #6b21a8;
}

.feature-preview-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-preview-card > p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.feature-preview-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.feature-preview-list i {
    color: var(--status-success);
    font-size: 1.25rem;
}

.features-preview-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    border: 2px solid var(--ekafa-accent);
    border-radius: 12px;
    color: var(--ekafa-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    background: var(--ekafa-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

/* ==================
   Testimonials Section
   ================== */

.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonials-track {
    position: relative;
    height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ekafa-accent), var(--ekafa-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.testimonial-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--ekafa-accent);
    background: white;
    color: var(--ekafa-accent);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--ekafa-accent);
    color: white;
}

.testimonials-dots {
    display: flex;
    gap: 0.75rem;
}

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

.testimonials-dots .dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--ekafa-accent);
}

/* ==================
   FAQ Section
   ================== */

.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--ekafa-accent);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--gray-50);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

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

.faq-answer a {
    color: var(--ekafa-accent);
    text-decoration: underline;
}

/* ==================
   Final CTA Section
   ================== */

.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--ekafa-primary) 0%, var(--ekafa-primary-dark) 100%);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.final-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--ekafa-accent);
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.final-cta-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta-stats i {
    color: var(--ekafa-accent);
    font-size: 1.25rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, var(--ekafa-accent), var(--ekafa-accent-light));
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.4);
    color: white;
}

.btn-modern-primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-modern-outline.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.final-cta-help {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}

.final-cta-help a {
    color: var(--ekafa-accent);
    text-decoration: underline;
}

/* ==================
   Animations
   ================== */

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ==================
   Responsive Design
   ================== */

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

    .floating-stat-1,
    .floating-stat-2 {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-carousel-inner {
        height: 400px;
    }

    .impact-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps {
        flex-direction: column;
    }

    .how-step-connector {
        width: 3px;
        height: 60px;
        margin: 0 auto;
    }

    .features-preview-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-role-cards {
        grid-template-columns: 1fr;
    }

    .hero-carousel-inner {
        height: 300px;
    }

    .impact-stats-container {
        grid-template-columns: 1fr;
    }

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

    .testimonial-card {
        padding: 2rem;
    }

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

    .final-cta h2 {
        font-size: 2rem;
    }

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

@media (max-width: 576px) {
    .hero-trust-badges {
        flex-direction: column;
    }

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

    .role-subtitle {
        font-size: 1rem;
    }

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