/* ============================================
   LANDING PAGE STYLES
   Modern, Premium, Responsive Design
   ============================================ */

:root {
    --lp-primary: #4B89AC;
    --lp-primary-dark: #3a6d8a;
    --lp-secondary: #5BC0BE;
    --lp-accent: #FF6B6B;
    --lp-gradient-start: #4B89AC;
    --lp-gradient-end: #5BC0BE;
    --lp-text-primary: #1a1a1a;
    --lp-text-secondary: #555555;
    --lp-text-light: #ffffff;
    --lp-bg-light: #FAFAFA;
    --lp-bg-white: #FFFFFF;
    --lp-border: #EBEBEB;
    --lp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --lp-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --lp-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --lp-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --lp-radius-sm: 8px;
    --lp-radius-md: 12px;
    --lp-radius-lg: 16px;
    --lp-radius-xl: 24px;
}

html[data-theme="dark"],
html.dark-theme {
    --lp-text-primary: #f5f5f5;
    --lp-text-secondary: #b0b0b0;
    --lp-bg-light: #0f0f0f;
    --lp-bg-white: #1e1e1e;
    --lp-border: #333333;
    --lp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --lp-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --lp-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --lp-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* Override styles.css global styles for landing page sections */
.hero-section,
.how-it-works-section,
.why-hocavar-section,
.for-teachers-section,
.for-students-section,
.trust-section,
.faq-section,
.final-cta-section {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.hero-section *,
.how-it-works-section *,
.why-hocavar-section *,
.for-teachers-section *,
.for-students-section *,
.trust-section *,
.faq-section *,
.final-cta-section * {
    box-sizing: border-box;
}

/* Override global link styles for landing page */
.hero-section a,
.how-it-works-section a,
.why-hocavar-section a,
.for-teachers-section a,
.for-students-section a,
.trust-section a,
.faq-section a,
.final-cta-section a {
    text-decoration: none !important;
}

.hero-section a:hover,
.how-it-works-section a:hover,
.why-hocavar-section a:hover,
.for-teachers-section a:hover,
.for-students-section a:hover,
.trust-section a:hover,
.faq-section a:hover,
.final-cta-section a:hover {
    text-decoration: none !important;
}

/* Container - Override styles.css for landing page */
.hero-section .container,
.how-it-works-section .container,
.why-hocavar-section .container,
.for-teachers-section .container,
.for-students-section .container,
.trust-section .container,
.faq-section .container,
.final-cta-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

@media (max-width: 768px) {
    .hero-section .container,
    .how-it-works-section .container,
    .why-hocavar-section .container,
    .for-teachers-section .container,
    .for-students-section .container,
    .trust-section .container,
    .faq-section .container,
    .final-cta-section .container {
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-section .container,
    .how-it-works-section .container,
    .why-hocavar-section .container,
    .for-teachers-section .container,
    .for-students-section .container,
    .trust-section .container,
    .faq-section .container,
    .final-cta-section .container {
        padding: 0 16px !important;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

html[data-theme="dark"] .hero-section,
html.dark-theme .hero-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--lp-secondary) 0%, var(--lp-accent) 100%);
    bottom: -50px;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-primary) 100%);
    top: 50%;
    right: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-container {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px !important;
}

/* Override styles.css .hero-content for landing page */
.hero-section .hero-content {
    animation: fadeInUp 0.8s ease-out !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    gap: 0 !important;
    position: relative !important;
}

.hero-section .hero-content > * {
    width: 100% !important;
    display: block !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
}

.hero-section .hero-content .hero-badge,
.hero-section .hero-content .hero-title,
.hero-section .hero-content .hero-description,
.hero-section .hero-content .hero-stats,
.hero-section .hero-content .hero-cta,
.hero-section .hero-content .hero-trust {
    display: block !important;
    width: 100% !important;
    flex: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    background: var(--lp-bg-white) !important;
    border: 1px solid var(--lp-border) !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--lp-text-secondary) !important;
    margin-bottom: 24px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-shadow: var(--lp-shadow-sm) !important;
    width: auto !important;
    flex: 0 0 auto !important;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: 64px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: var(--lp-text-primary) !important;
    margin-bottom: 24px !important;
    margin-top: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: left !important;
    letter-spacing: -0.02em !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px !important;
    line-height: 1.6 !important;
    color: var(--lp-text-secondary) !important;
    margin-bottom: 40px !important;
    max-width: 600px !important;
    opacity: 1 !important;
    text-align: left !important;
}

.hero-stats {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    margin-top: 0 !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.stat-item {
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 auto !important;
    width: auto !important;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--lp-primary);
    line-height: 1.2;
    margin-bottom: 4px;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    color: var(--lp-text-secondary);
}

.hero-cta {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
    margin-top: 0 !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.hero-trust {
    display: flex !important;
    gap: 24px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

.trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    color: var(--lp-text-secondary) !important;
    flex: 0 0 auto !important;
    width: auto !important;
}

.trust-item svg {
    color: var(--lp-primary);
    flex-shrink: 0;
}

/* Hero Visual - Animated Logo */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-logo-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: logoFloat 6s ease-in-out infinite, logoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(75, 137, 172, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 15px 40px rgba(75, 137, 172, 0.5));
    animation-play-state: paused;
}

/* Logo Glow Orbs */
.logo-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: logoOrbFloat 8s ease-in-out infinite;
}

.logo-glow-orb.orb-1 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
    z-index: 0;
}

.logo-glow-orb.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--lp-secondary) 0%, var(--lp-accent) 100%);
    top: 30%;
    left: 30%;
    animation-delay: 2s;
    z-index: 0;
}

.logo-glow-orb.orb-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-primary) 100%);
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
    z-index: 0;
}

/* Logo Particles */
.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-primary);
    opacity: 0.6;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    background: var(--lp-primary);
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
    background: var(--lp-secondary);
}

.particle-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 1s;
    background: var(--lp-accent);
}

.particle-4 {
    top: 50%;
    right: 30%;
    animation-delay: 1.5s;
    background: var(--lp-primary);
}

.particle-5 {
    bottom: 15%;
    right: 20%;
    animation-delay: 2s;
    background: var(--lp-secondary);
}

/* Logo Animations */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes logoOrbFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.logo-glow-orb.orb-2 {
    animation-name: logoOrbFloat2;
}

.logo-glow-orb.orb-3 {
    animation-name: logoOrbFloat3;
}

@keyframes logoOrbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -20px) scale(1.15);
        opacity: 0.5;
    }
}

@keyframes logoOrbFloat3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-15px, 15px) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Buttons - Override styles.css for landing page */
.hero-section .btn,
.how-it-works-section .btn,
.why-hocavar-section .btn,
.for-teachers-section .btn,
.for-students-section .btn,
.trust-section .btn,
.faq-section .btn,
.final-cta-section .btn,
.hero-cta .btn,
.cta-buttons .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    border-radius: var(--lp-radius-md) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    box-shadow: none !important;
}

.hero-section .btn-primary,
.how-it-works-section .btn-primary,
.why-hocavar-section .btn-primary,
.for-teachers-section .btn-primary,
.for-students-section .btn-primary,
.trust-section .btn-primary,
.faq-section .btn-primary,
.final-cta-section .btn-primary,
.hero-cta .btn-primary,
.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%) !important;
    color: var(--lp-text-light) !important;
    box-shadow: var(--lp-shadow-md) !important;
}

.hero-section .btn-primary:hover,
.how-it-works-section .btn-primary:hover,
.why-hocavar-section .btn-primary:hover,
.for-teachers-section .btn-primary:hover,
.for-students-section .btn-primary:hover,
.trust-section .btn-primary:hover,
.faq-section .btn-primary:hover,
.final-cta-section .btn-primary:hover,
.hero-cta .btn-primary:hover,
.cta-buttons .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--lp-shadow-lg) !important;
    background: linear-gradient(135deg, var(--lp-primary-dark) 0%, var(--lp-primary) 100%) !important;
}

.hero-section .btn-secondary,
.how-it-works-section .btn-secondary,
.why-hocavar-section .btn-secondary,
.for-teachers-section .btn-secondary,
.for-students-section .btn-secondary,
.trust-section .btn-secondary,
.faq-section .btn-secondary,
.final-cta-section .btn-secondary,
.hero-cta .btn-secondary,
.cta-buttons .btn-secondary {
    background: var(--lp-bg-white) !important;
    color: var(--lp-primary) !important;
    border: 2px solid var(--lp-primary) !important;
}

.hero-section .btn-secondary:hover,
.how-it-works-section .btn-secondary:hover,
.why-hocavar-section .btn-secondary:hover,
.for-teachers-section .btn-secondary:hover,
.for-students-section .btn-secondary:hover,
.trust-section .btn-secondary:hover,
.faq-section .btn-secondary:hover,
.final-cta-section .btn-secondary:hover,
.hero-cta .btn-secondary:hover,
.cta-buttons .btn-secondary:hover {
    background: var(--lp-primary) !important;
    color: var(--lp-text-light) !important;
    transform: translateY(-2px) !important;
}

.hero-section .btn-large,
.how-it-works-section .btn-large,
.why-hocavar-section .btn-large,
.for-teachers-section .btn-large,
.for-students-section .btn-large,
.trust-section .btn-large,
.faq-section .btn-large,
.final-cta-section .btn-large,
.hero-cta .btn-large,
.cta-buttons .btn-large {
    padding: 16px 32px !important;
    font-size: 18px !important;
}

.hero-section .btn-white,
.final-cta-section .btn-white,
.cta-buttons .btn-white {
    background: var(--lp-text-light) !important;
    color: var(--lp-primary) !important;
}

.hero-section .btn-white:hover,
.final-cta-section .btn-white:hover,
.cta-buttons .btn-white:hover {
    background: var(--lp-bg-light) !important;
}

.hero-section .btn-outline,
.final-cta-section .btn-outline,
.cta-buttons .btn-outline {
    background: transparent !important;
    border: 2px solid var(--lp-text-light) !important;
    color: var(--lp-text-light) !important;
}

.hero-section .btn-white-outline:hover,
.final-cta-section .btn-white-outline:hover,
.cta-buttons .btn-white-outline:hover {
    background: var(--lp-text-light) !important;
    color: var(--lp-primary) !important;
}

.hero-section .btn-icon,
.how-it-works-section .btn-icon,
.why-hocavar-section .btn-icon,
.for-teachers-section .btn-icon,
.for-students-section .btn-icon,
.trust-section .btn-icon,
.faq-section .btn-icon,
.final-cta-section .btn-icon,
.hero-cta .btn-icon,
.cta-buttons .btn-icon {
    font-size: 20px !important;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: var(--lp-text-primary) !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
}

.section-description {
    font-size: 20px !important;
    color: var(--lp-text-secondary) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
    opacity: 1 !important;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    z-index: 0;
    opacity: 0.2;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 24px;
    background: var(--lp-bg-white);
    border-radius: var(--lp-radius-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    color: var(--lp-text-light);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.step-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--lp-text-primary) !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
}

.step-description {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--lp-text-secondary) !important;
    text-align: center !important;
    opacity: 1 !important;
}

/* ============================================
   WHY HOCAVAR SECTION
   ============================================ */

.why-hocavar-section {
    padding: 100px 0;
    background: var(--lp-bg-light);
}

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

.feature-card {
    background: var(--lp-bg-white);
    padding: 32px;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
    border-color: var(--lp-primary);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--lp-text-primary) !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
    letter-spacing: -0.02em !important;
}

.feature-description {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--lp-text-secondary) !important;
    opacity: 1 !important;
}

/* ============================================
   FOR TEACHERS & STUDENTS SECTIONS
   ============================================ */

.for-teachers-section,
.for-students-section {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

.for-students-section {
    background: var(--lp-bg-light);
}

.section-split {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
    width: 100% !important;
}

.section-split.reverse {
    direction: rtl !important;
}

.section-split.reverse > * {
    direction: ltr !important;
}

.section-content {
    width: 100% !important;
}

.section-visual {
    width: 100% !important;
}

.section-content {
    animation: fadeInLeft 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    color: var(--lp-text-light);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-visual {
    animation: fadeInRight 0.8s ease-out;
}

.benefits-list {
    margin: 32px 0;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.benefit-item svg {
    color: var(--lp-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: var(--lp-text-primary) !important;
    margin-bottom: 4px !important;
    margin-top: 0 !important;
    letter-spacing: -0.02em !important;
}

.benefit-item p {
    font-size: 16px !important;
    color: var(--lp-text-secondary) !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.visual-card-teacher {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    border-radius: var(--lp-radius-xl);
    padding: 40px;
    color: var(--lp-text-light);
    box-shadow: var(--lp-shadow-xl);
}

.visual-card-student {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    border-radius: var(--lp-radius-xl);
    padding: 48px 44px;
    color: var(--lp-text-light);
    box-shadow: 0 25px 50px -12px rgba(75, 137, 172, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.15);
    min-height: 360px;
    display: flex;
    align-items: center;
}

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

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

.stat-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.student-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.visual-card-student .feature-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: var(--lp-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 18px;
    font-weight: 600;
}

.visual-card-student .feature-badge .badge-icon {
    font-size: 28px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--lp-radius-md);
}

.feature-badge .badge-icon {
    font-size: 24px;
}

/* ============================================
   TRUST & SOCIAL PROOF SECTION
   ============================================ */

.trust-section {
    padding: 100px 0;
    background: var(--lp-bg-white);
}

/* Testimonials Carousel */
.testimonials-carousel-container {
    position: relative;
    margin-bottom: 60px;
    padding: 0 60px;
    overflow: hidden;
    min-height: 350px;
}

.testimonials-carousel {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
    width: 100%;
    will-change: transform;
    align-items: stretch;
}

.testimonial-card {
    background: var(--lp-bg-white);
    padding: 32px;
    border-radius: var(--lp-radius-lg);
    border: 1px solid var(--lp-border);
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 22px);
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
}

.rating-number {
    font-size: 14px;
    color: var(--lp-primary);
    font-weight: 600;
    margin-left: 4px;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--lp-text-secondary) !important;
    margin-bottom: 24px !important;
    opacity: 1 !important;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-text-light);
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--lp-text-primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 14px;
    color: var(--lp-text-secondary);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--lp-bg-white);
    border: 2px solid var(--lp-border);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--lp-primary);
    box-shadow: var(--lp-shadow-sm);
}

.carousel-btn:hover {
    background: var(--lp-primary);
    color: var(--lp-text-light);
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--lp-border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--lp-primary);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--lp-primary);
    width: 32px;
    border-radius: 6px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid var(--lp-border);
}

.trust-stat-item {
    text-align: center;
}

.trust-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    line-height: 1.2;
}

.trust-stat-label {
    font-size: 16px;
    color: var(--lp-text-secondary);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: 100px 0;
    background: var(--lp-bg-light);
}

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

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

.faq-item:hover {
    border-color: var(--lp-primary);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-text-primary);
    cursor: pointer;
    font-family: inherit;
}

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

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--lp-primary);
}

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

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

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

.faq-answer p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--lp-text-secondary) !important;
    opacity: 1 !important;
    margin: 0 !important;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.cta-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.2);
    top: -100px;
    left: -100px;
}

.cta-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    bottom: -50px;
    right: -50px;
    animation-delay: 7s;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: var(--lp-text-light) !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
}

.cta-description {
    font-size: 20px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 40px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    opacity: 1 !important;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-container {
        width: 250px !important;
        height: 250px !important;
    }

    .hero-logo {
        width: 150px !important;
        height: 150px !important;
    }

    .logo-glow-orb.orb-1 {
        width: 200px !important;
        height: 200px !important;
    }

    .logo-glow-orb.orb-2,
    .logo-glow-orb.orb-3 {
        width: 150px !important;
        height: 150px !important;
    }

    .stat-value {
        font-size: 24px !important;
    }

    .stat-label {
        font-size: 13px !important;
    }

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

    .steps-container::before {
        display: none;
    }

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

    .section-split {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel-container {
        padding: 0 50px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 16px);
        display: flex;
        flex-direction: column;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

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

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px !important;
    }

    .hero-title {
        font-size: 36px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .hero-description {
        font-size: 17px !important;
        text-align: center !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
        margin-bottom: 32px !important;
        padding: 0 10px !important;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 32px !important;
    }

    .hero-content {
        text-align: center !important;
        padding: 0 !important;
    }

    .hero-stats {
        justify-content: center !important;
        gap: 32px !important;
        margin-bottom: 32px !important;
        flex-wrap: wrap !important;
    }

    .stat-item {
        margin-bottom: 8px !important;
    }

    .stat-number {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }

    .stat-label {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .hero-trust {
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
        margin-top: 32px !important;
    }

    .trust-item {
        font-size: 13px !important;
        gap: 6px !important;
    }

    .hero-cta {
        flex-direction: column !important;
        gap: 16px !important;
        margin-bottom: 32px !important;
    }

    .btn-large {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 24px !important;
        font-size: 16px !important;
    }

    .section-header {
        margin-bottom: 40px !important;
        padding: 0 10px !important;
    }

    .section-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }

    .section-description {
        font-size: 16px !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
    }

    .how-it-works-section,
    .why-hocavar-section,
    .for-teachers-section,
    .for-students-section,
    .trust-section,
    .faq-section {
        padding: 60px 0 !important;
    }

    .steps-container {
        gap: 24px !important;
    }

    .step-item {
        padding: 32px 20px !important;
        margin-bottom: 16px !important;
    }

    .step-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    .step-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        padding: 0 8px !important;
    }

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

    .feature-card {
        padding: 28px 20px !important;
    }

    .feature-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    .feature-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .section-split {
        gap: 40px !important;
        grid-template-columns: 1fr !important;
    }

    .section-split.reverse {
        direction: ltr !important;
    }

    .section-split.reverse > * {
        direction: ltr !important;
    }

    .section-content {
        padding: 0 8px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-content .section-title {
        padding: 0 !important;
        margin-bottom: 16px !important;
        line-height: 1.3 !important;
        font-size: 28px !important;
    }

    .section-content .section-description {
        padding: 0 !important;
        margin-bottom: 24px !important;
        line-height: 1.6 !important;
        font-size: 16px !important;
    }

    .for-teachers-section .section-content,
    .for-students-section .section-content {
        padding: 0 8px !important;
    }

    .for-teachers-section .section-title,
    .for-students-section .section-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }

    .for-teachers-section .section-description,
    .for-students-section .section-description {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    .section-badge {
        margin-bottom: 16px !important;
        font-size: 13px !important;
        padding: 6px 14px !important;
    }

    .benefits-list {
        margin: 24px 0 !important;
    }

    .benefit-item {
        margin-bottom: 20px !important;
        gap: 14px !important;
        padding: 0 !important;
    }

    .benefit-item h4 {
        font-size: 17px !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }

    .benefit-item p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .section-content .btn-large {
        width: 100% !important;
        margin-top: 8px !important;
    }

    .section-visual {
        padding: 0 8px !important;
        width: 100% !important;
    }

    .visual-card-teacher,
    .visual-card-student {
        padding: 32px 24px !important;
        margin-top: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .visual-card-student {
        min-height: auto !important;
        padding: 36px 24px !important;
    }

    .visual-card-student .feature-badge {
        padding: 16px 20px !important;
        font-size: 16px !important;
    }

    .visual-card-student .feature-badge .badge-icon {
        font-size: 24px !important;
    }

    .trust-stats {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 40px 0 !important;
    }

    .trust-stat-item {
        padding: 0 10px !important;
    }

    .trust-stat-number {
        font-size: 26px !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }

    .trust-stat-label {
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    .testimonials-carousel-container {
        padding: 0 20px !important;
        margin-bottom: 40px !important;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 28px 20px !important;
    }

    .testimonial-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .faq-container {
        padding: 0 10px !important;
    }

    .faq-item {
        margin-bottom: 12px !important;
    }

    .faq-question {
        padding: 20px 16px !important;
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    .faq-answer {
        padding: 0 16px !important;
    }

    .faq-item.active .faq-answer {
        padding: 16px 16px 20px !important;
    }

    .faq-answer p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .cta-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        padding: 0 10px !important;
    }

    .cta-description {
        font-size: 17px !important;
        line-height: 1.6 !important;
        margin-bottom: 32px !important;
        padding: 0 10px !important;
    }

    .cta-buttons {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }

    .cta-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 24px !important;
        font-size: 16px !important;
    }
}

/* Sponsors Section Override for Landing Page */
.sponsors-section {
    display: block !important;
    flex-flow: initial !important;
    justify-content: normal !important;
    align-items: normal !important;
    flex-wrap: initial !important;
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 50px !important;
    }

    .hero-title {
        font-size: 28px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        padding: 0 8px !important;
    }

    .hero-description {
        font-size: 15px !important;
        text-align: center !important;
        line-height: 1.6 !important;
        margin-bottom: 28px !important;
        padding: 0 8px !important;
    }

    .hero-container {
        gap: 28px !important;
    }

    .hero-stats {
        gap: 24px !important;
        margin-bottom: 28px !important;
    }

    .stat-item {
        min-width: 100px !important;
    }

    .stat-number {
        font-size: 20px !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
    }

    .stat-label {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .trust-stat-number {
        font-size: 22px !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }

    .trust-stat-label {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .hero-trust {
        gap: 16px !important;
        margin-top: 28px !important;
    }

    .trust-item {
        font-size: 12px !important;
        gap: 6px !important;
    }

    .hero-cta {
        gap: 16px !important;
        margin-bottom: 28px !important;
    }

    .btn-large {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    .hero-logo-container {
        width: 180px !important;
        height: 180px !important;
    }

    .hero-logo {
        width: 110px !important;
        height: 110px !important;
    }

    .logo-glow-orb.orb-1 {
        width: 140px !important;
        height: 140px !important;
    }

    .logo-glow-orb.orb-2,
    .logo-glow-orb.orb-3 {
        width: 90px !important;
        height: 90px !important;
    }

    .section-header {
        margin-bottom: 32px !important;
        padding: 0 8px !important;
    }

    .section-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 12px !important;
    }

    .section-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        padding: 0 8px !important;
    }

    .how-it-works-section,
    .why-hocavar-section,
    .for-teachers-section,
    .for-students-section,
    .trust-section,
    .faq-section {
        padding: 50px 0 !important;
    }

    .steps-container {
        gap: 20px !important;
    }

    .step-item {
        padding: 28px 16px !important;
        margin-bottom: 12px !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        margin-bottom: 16px !important;
    }

    .step-icon {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }

    .step-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
    }

    .step-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 0 4px !important;
    }

    .features-grid {
        gap: 20px !important;
    }

    .feature-card {
        padding: 24px 16px !important;
    }

    .feature-icon {
        font-size: 40px !important;
        margin-bottom: 16px !important;
    }

    .feature-title {
        font-size: 17px !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
    }

    .feature-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .section-split {
        gap: 32px !important;
        grid-template-columns: 1fr !important;
    }

    .section-split.reverse {
        direction: ltr !important;
    }

    .section-split.reverse > * {
        direction: ltr !important;
    }

    .section-content {
        padding: 0 8px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .section-content .section-title {
        padding: 0 !important;
        margin-bottom: 14px !important;
        line-height: 1.3 !important;
        font-size: 26px !important;
    }

    .section-content .section-description {
        padding: 0 !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
        font-size: 15px !important;
    }

    .for-teachers-section .section-content,
    .for-students-section .section-content {
        padding: 0 8px !important;
    }

    .for-teachers-section .section-title,
    .for-students-section .section-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
    }

    .for-teachers-section .section-description,
    .for-students-section .section-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
    }

    .section-badge {
        margin-bottom: 14px !important;
        font-size: 12px !important;
        padding: 5px 12px !important;
    }

    .benefits-list {
        margin: 20px 0 !important;
    }

    .benefit-item {
        margin-bottom: 18px !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .benefit-item svg {
        width: 20px !important;
        height: 20px !important;
        margin-top: 2px !important;
        flex-shrink: 0 !important;
    }

    .benefit-item h4 {
        font-size: 16px !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }

    .benefit-item p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .section-content .btn-large {
        width: 100% !important;
        margin-top: 8px !important;
    }

    .section-visual {
        padding: 0 8px !important;
        width: 100% !important;
    }

    .visual-card-teacher,
    .visual-card-student {
        padding: 28px 20px !important;
        margin-top: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .visual-card-student {
        min-height: auto !important;
        padding: 30px 20px !important;
    }

    .visual-card-student .feature-badge {
        padding: 14px 18px !important;
        font-size: 15px !important;
    }

    .visual-card-student .feature-badge .badge-icon {
        font-size: 22px !important;
    }

    .stat-value {
        font-size: 20px !important;
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
    }

    .stat-label {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .teacher-stats {
        gap: 16px !important;
    }

    .trust-stats {
        gap: 28px !important;
        padding: 32px 0 !important;
    }

    .trust-stat-item {
        padding: 0 8px !important;
    }

    .testimonials-carousel-container {
        padding: 0 16px !important;
        margin-bottom: 32px !important;
    }

    .carousel-btn {
        width: 36px !important;
        height: 36px !important;
    }

    .carousel-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    .testimonial-card {
        padding: 24px 16px !important;
    }

    .testimonial-text {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }

    .author-name {
        font-size: 15px !important;
    }

    .author-role {
        font-size: 13px !important;
    }

    .faq-container {
        padding: 0 8px !important;
    }

    .faq-item {
        margin-bottom: 10px !important;
    }

    .faq-question {
        padding: 18px 14px !important;
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    .faq-answer {
        padding: 0 14px !important;
    }

    .faq-item.active .faq-answer {
        padding: 14px 14px 18px !important;
    }

    .faq-answer p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .final-cta-section {
        padding: 60px 0 !important;
    }

    .cta-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
        margin-bottom: 14px !important;
        padding: 0 8px !important;
    }

    .cta-description {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 28px !important;
        padding: 0 8px !important;
    }

    .cta-buttons {
        gap: 10px !important;
        padding: 0 8px !important;
    }

    .cta-buttons .btn {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }
}

