@import url('/cbt/css/root-9d5fcdc55e929de012f85d1d9923e44d.css');

:root {
    --primary-green: #3d8644;
    --hero-green: #50844B;
    --light-green: #4a7c59;
    --dark-green: #2E7D32;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --section-gray: #F7F7F8;
    --border-gray: #e9ecef;
}

body {
    font-family: var(--default-font);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--section-gray);
    padding-top: 0;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--hero-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.announcement-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 150px 0 120px;
    overflow: hidden;
    background: radial-gradient(48% 55% at 8% 12%, rgba(61, 134, 68, 0.16), transparent 62%),
    radial-gradient(42% 50% at 92% 8%, rgba(26, 84, 186, 0.12), transparent 60%),
    radial-gradient(60% 65% at 78% 100%, rgba(34, 197, 94, 0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f3faf3 60%, #eef7ef 100%);
    color: var(--text-dark);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(46, 125, 50, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 125, 50, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 80%);
    mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 80%);
    opacity: 0.7;
}

.hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    animation: heroAuroraDrift 16s ease-in-out infinite;
}

.hero-aurora-1 {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(61, 134, 68, 0.5), transparent 65%);
}

.hero-aurora-2 {
    width: 600px;
    height: 600px;
    bottom: -220px;
    right: -140px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4), transparent 65%);
    animation-delay: -8s;
}

@keyframes heroAuroraDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(30px, 40px, 0) scale(1.08);
    }
}

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

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(46, 125, 50, 0.18);
    box-shadow: 0 4px 16px rgba(16, 40, 20, 0.06);
    backdrop-filter: blur(8px);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark-green);
    margin-bottom: 1.8rem;
}

.hero-chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: heroPulse 2.4s ease-out infinite;
}

@keyframes heroPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5.2vw, 4.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.06;
    letter-spacing: -0.025em;
    max-width: 15ch;
    background: linear-gradient(135deg, #1f5a2b 0%, #2f8b3e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #266c33;
}

.hero-title .hero-accent {
    background: linear-gradient(110deg, #1a54ba 0%, #2563eb 55%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1a54ba;
}

.hero-lead {
    font-size: 1.18rem;
    font-weight: 400;
    color: #4a5b4d;
    margin-bottom: 2.4rem;
    line-height: 1.6;
    max-width: 46ch;
}

.hero-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: linear-gradient(120deg, #3d8644, #2E7D32);
    color: #ffffff;
    border: none;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.32);
}

.hero-cta-primary i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.hero-cta-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(46, 125, 50, 0.4);
}

.hero-cta-primary:hover i {
    transform: translateX(4px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    color: var(--dark-green);
    border: 1px solid rgba(46, 125, 50, 0.25);
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.hero-cta-secondary:hover {
    background: #ffffff;
    color: var(--dark-green);
    border-color: rgba(46, 125, 50, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 40, 20, 0.08);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust-avatars {
    display: flex;
}

.hero-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    border: 2px solid #fff;
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, #3d8644, #2E7D32);
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar:nth-child(2) {
    background: linear-gradient(135deg, #1a54ba, #2563eb);
}

.hero-avatar:nth-child(3) {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.hero-avatar:last-child {
    background: #eef3ee;
    color: var(--dark-green);
}

.hero-trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-trust-stars {
    color: #f5b50a;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hero-trust-stars strong {
    color: var(--text-dark);
    margin-left: 6px;
    font-size: 0.92rem;
}

.hero-trust-label {
    font-size: 0.86rem;
    color: #5b6b5d;
}

.hero-trust-label span:first-child {
    font-weight: 700;
    color: var(--text-dark);
}

.hero-visual {
    position: relative;
}

.hero-stage {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.hero-panel {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 86%;
    padding: 26px 26px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 70px rgba(16, 50, 26, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(18px);
    animation: heroFloat 7s ease-in-out infinite;
}

.hero-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.hero-panel-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.98rem;
}

.hero-panel-offline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark-green);
    background: rgba(46, 125, 50, 0.1);
    padding: 5px 10px;
    border-radius: 100px;
}

.hero-ring-wrap {
    position: relative;
    width: 188px;
    height: 188px;
    margin: 4px auto 20px;
}

.hero-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hero-ring-track {
    fill: none;
    stroke: rgba(46, 125, 50, 0.12);
    stroke-width: 14;
}

.hero-ring-progress {
    fill: none;
    stroke: url(#heroRingGrad);
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    filter: drop-shadow(0 4px 10px rgba(34, 197, 94, 0.4));
    animation: heroRingFill 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes heroRingFill {
    to {
        stroke-dashoffset: 45;
    }
}

.hero-ring-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-ring-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.hero-ring-value small {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.hero-ring-sub {
    margin-top: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #6b7c6d;
}

.hero-bars {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.hero-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
}

.hero-bar > span:first-child {
    width: 84px;
    color: #4a5b4d;
    font-weight: 600;
}

.hero-bar-track {
    flex: 1;
    height: 7px;
    border-radius: 100px;
    background: rgba(46, 125, 50, 0.1);
    overflow: hidden;
}

.hero-bar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #3d8644, #22c55e);
    transform-origin: left;
    animation: heroBarGrow 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s backwards;
}

@keyframes heroBarGrow {
    from {
        transform: scaleX(0);
    }
}

.hero-float {
    position: absolute;
    z-index: 3;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(16, 50, 26, 0.16);
    backdrop-filter: blur(14px);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-float-ai {
    top: 6%;
    right: -6%;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    width: 230px;
    padding: 14px;
    animation-delay: -2s;
}

.hero-float-avatar {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #1a54ba, #2563eb);
}

.hero-float-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-float-role {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #1a54ba;
    padding: 2px 6px;
    border-radius: 6px;
}

.hero-float-msg {
    font-size: 0.78rem;
    color: #56655a;
    line-height: 1.4;
    margin-top: 3px;
}

.hero-float-q {
    bottom: 16%;
    left: -8%;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    animation-delay: -4s;
}

.hero-float-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.hero-float-q-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hero-float-q-sub {
    font-size: 0.68rem;
    color: #6b7c6d;
}

.hero-float-streak {
    bottom: 2%;
    right: 4%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    animation-delay: -1s;
}

.hero-float-streak i {
    color: #f97316;
}

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

@media (prefers-reduced-motion: reduce) {
    .hero-aurora,
    .hero-panel,
    .hero-float,
    .hero-chip-dot {
        animation: none;
    }

    .hero-ring-progress {
        animation: none;
        stroke-dashoffset: 45;
    }

    .hero-bar-fill {
        animation: none;
    }
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

/* Dark Mode - Make section titles more visible */
[data-theme="dark"] .section-title {
    color: var(--text-primary) !important;
    font-weight: 700;
    text-shadow: none;
}

[data-theme="dark"] .section-description {
    color: var(--text-secondary) !important;
}

/* Preview Learning Section */
.preview-learning-section {
    background: linear-gradient(135deg, rgba(247, 247, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.preview-learning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(61, 134, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(80, 132, 75, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.preview-learning-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.preview-learning-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.preview-video-container {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    padding: 8px;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover img {
    opacity: 0.95;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-play-overlay i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.video-wrapper:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper:hover .video-play-overlay i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 1);
}

.preview-cta-container {
    position: relative;
    z-index: 1;
}

.preview-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(61, 134, 68, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.preview-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(61, 134, 68, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--hero-green), var(--dark-green));
}

.preview-cta-button i {
    font-size: 1.5rem;
}

/* Practice Section */
.practice-section {
    background-color: var(--section-gray);
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--hero-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-green);
}

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

.stat-icon-wrapper {
    margin-bottom: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: var(--hero-green);
}

.stat-content {
    flex-grow: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
    /* Gradient text effect with fallback */
    color: var(--primary-green); /* Fallback color */
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 10px;
}

.card-arrow-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(61, 134, 68, 0.1), rgba(80, 132, 75, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    z-index: 2;
}

.card-arrow-icon i {
    color: var(--primary-green);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .card-arrow-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    transform: scale(1.1);
}

.stat-card:hover .card-arrow-icon i {
    color: white;
    transform: translateX(3px);
}

.card-arrow-icon:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    transform: scale(1.15);
}

.card-arrow-icon:hover i {
    color: white;
    transform: translateX(5px);
}

/* Trending Section */
.trending-section {
    background-color: var(--section-gray);
    padding: 80px 0;
}

.trending-section .section-description {
    text-align: left;
}

.view-all-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    background: white;
    padding: 8px 16px;
    border-radius: 6px;
}

.view-all-link:hover {
    color: var(--primary-green);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-green);
}

.course-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.course-card:hover .course-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.course-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.course-badge-level {
    background: rgba(61, 134, 68, 0.1);
    color: var(--primary-green);
}

.course-badge-type {
    background: rgba(61, 134, 68, 0.1);
    color: var(--primary-green);
}

.course-badge i {
    font-size: 0.7rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.course-description {
    color: var(--text-light);
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.course-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.course-action-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 134, 68, 0.3);
}

.course-action-btn i {
    transition: transform 0.3s ease;
}

.course-action-btn:hover i {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    gap: 20px;
}

.testimonial-card {
    background: var(--section-gray);
    padding: 30px;
    margin-bottom: 20px;
    width: calc(50% - 10px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 70px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.read-story {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-story:hover {
    color: var(--light-green);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    font-size: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Results/Stats Section */
.results-section {
    background-color: var(--white);
    padding: 80px 0;
}

.results-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.result-stat-item {
    text-align: center;
    min-width: 200px;
}

.result-stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.result-stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Exam Boards Coverage Section */
/* Scholarship Banner Section */
.scholarship-banner-section {
    background-color: var(--white);
    padding: 40px 0;
}

.scholarship-banner-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.scholarship-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.scholarship-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.exam-boards-section {
    background-color: var(--white);
    padding: 80px 0;
}

.exam-board-card {
    background-color: var(--section-gray);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray);
}

.exam-board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.exam-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.exam-board-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
}

.exam-board-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 80px;
}

.exam-board-practice-btn {
    background-color: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: auto;
    text-align: left;
}

.exam-board-practice-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 134, 68, 0.3);
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 80px 0;
}

.faq-see-all-btn {
    background-color: #f8f9fa;
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: auto;
    text-align: left;
}

.faq-see-all-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 134, 68, 0.3);
}

.faq-section a[href*="/users/help"] {
    color: var(--primary-green) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-section a[href*="/users/help"]:hover {
    color: var(--dark-green) !important;
    text-decoration: underline;
}

/* Newsletter Subscription Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(61, 134, 68, 0.05) 0%, rgba(80, 132, 75, 0.05) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61, 134, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80, 132, 75, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(61, 134, 68, 0.1);
}

.newsletter-icon-wrapper {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.newsletter-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.newsletter-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.newsletter-benefit-item i {
    color: var(--primary-green);
    font-size: 1rem;
}

.newsletter-subscriber-count {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

.newsletter-form-wrapper {
    background: var(--section-gray);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid rgba(61, 134, 68, 0.1);
}

.newsletter-form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input-icon {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    z-index: 2;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(61, 134, 68, 0.1);
}

.newsletter-subscribe-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-green), var(--hero-green));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(61, 134, 68, 0.3);
}

.newsletter-subscribe-btn:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 134, 68, 0.4);
}

.newsletter-subscribe-btn:active {
    transform: translateY(0);
}

.newsletter-subscribe-btn i {
    transition: transform 0.3s ease;
}

.newsletter-subscribe-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
    }

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

    .newsletter-form-wrapper {
        padding: 20px;
    }

    .newsletter-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .newsletter-icon-wrapper i {
        font-size: 2rem;
    }
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.6;
}


/* Mobile App Promotion Section */
.mobile-app-section {
    background-color: var(--white);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.app-download-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.app-badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-badge-link:hover {
    transform: translateY(-3px);
}

.app-mockup-container {
    position: relative;
    padding: 20px;
}

.app-mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.app-mockup-image:hover {
    transform: scale(1.02);
}

/* Feature Highlights Section */
.features-section {
    background-color: var(--white);
}

.feature-card {
    padding: 30px 20px;
    background-color: var(--section-gray);
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stat-card {
        margin-bottom: 20px;
    }

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

    .stat-icon {
        font-size: 2rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card, .testimonial-card {
        width: 100%;
    }

    .exam-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-section {
        min-height: auto;
        padding: 110px 0 80px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-title,
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-lead {
        font-size: 1.08rem;
    }

    .hero-cta-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 64px;
    }

    .hero-stage {
        max-width: 420px;
    }

    .hero-float-ai {
        right: 0;
    }

    .hero-float-q {
        left: 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-stage {
        max-width: 320px;
    }

    .hero-float-ai {
        width: 200px;
        right: -10px;
    }

    .hero-float-q {
        left: -10px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-image-wrapper {
        height: 180px;
    }

    .course-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .course-content {
        padding: 20px;
    }

    .course-title {
        font-size: 1.3rem;
    }

    .app-download-badges {
        justify-content: center;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .mobile-app-section .row {
        text-align: center;
    }

    .mobile-app-section .text-start {
        text-align: center !important;
    }

    .results-stats {
        gap: 40px;
    }

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

    .preview-learning-title {
        font-size: 2rem;
    }

    .preview-learning-subtitle {
        font-size: 1.1rem;
    }

    .video-play-overlay i {
        font-size: 3.5rem;
    }

    .preview-cta-button {
        font-size: 1rem;
        padding: 14px 30px;
    }

    .stat-card {
        padding: 30px 20px;
    }

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

    .scholarship-banner-section {
        padding: 30px 15px;
    }
}

/* Dark Mode Styles for Index Page */
[data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .hero-section {
    background: radial-gradient(48% 55% at 8% 12%, rgba(61, 134, 68, 0.22), transparent 62%),
    radial-gradient(42% 50% at 92% 8%, rgba(26, 84, 186, 0.18), transparent 60%),
    radial-gradient(60% 65% at 78% 100%, rgba(34, 197, 94, 0.18), transparent 60%),
    linear-gradient(180deg, #0e1511 0%, #0b1410 100%);
    color: var(--text-primary);
}

[data-theme="dark"] .hero-grid-overlay {
    background-image: linear-gradient(rgba(120, 200, 130, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 200, 130, 0.06) 1px, transparent 1px);
}

[data-theme="dark"] .hero-chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(120, 200, 130, 0.25);
    color: #b9f2bd;
}

[data-theme="dark"] .hero-title {
    background: linear-gradient(135deg, #8fe6a3 0%, #e2ffe8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e2ffe8;
}

[data-theme="dark"] .hero-title .hero-accent {
    background: linear-gradient(110deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .hero-lead {
    color: #b6c4b8;
}

[data-theme="dark"] .hero-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #d8f3da;
    border-color: rgba(120, 200, 130, 0.3);
}

[data-theme="dark"] .hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

[data-theme="dark"] .hero-trust-stars strong,
[data-theme="dark"] .hero-trust-label span:first-child {
    color: var(--text-primary);
}

[data-theme="dark"] .hero-trust-label {
    color: #9fb1a2;
}

[data-theme="dark"] .hero-panel,
[data-theme="dark"] .hero-float {
    background: rgba(22, 32, 26, 0.85);
    border-color: rgba(120, 200, 130, 0.18);
}

[data-theme="dark"] .hero-panel-title,
[data-theme="dark"] .hero-ring-value,
[data-theme="dark"] .hero-float-name,
[data-theme="dark"] .hero-float-q-label,
[data-theme="dark"] .hero-float-streak {
    color: #f3fff4;
}

[data-theme="dark"] .hero-bar > span:first-child,
[data-theme="dark"] .hero-float-msg {
    color: #aebbb0;
}

[data-theme="dark"] .preview-learning-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

[data-theme="dark"] .preview-learning-title,
[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .preview-learning-subtitle,
[data-theme="dark"] .section-description {
    color: var(--text-secondary);
}

[data-theme="dark"] .video-wrapper {
    background: var(--card-bg);
}

[data-theme="dark"] .practice-section,
[data-theme="dark"] .trending-section {
    background-color: var(--bg-secondary);
}

[data-theme="dark"] .stat-card,
[data-theme="dark"] .course-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .exam-board-card,
[data-theme="dark"] .feature-card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .stat-card:hover,
[data-theme="dark"] .course-card:hover,
[data-theme="dark"] .testimonial-card:hover,
[data-theme="dark"] .exam-board-card:hover,
[data-theme="dark"] .feature-card:hover {
    border-color: var(--primary-green);
}

[data-theme="dark"] .stat-label,
[data-theme="dark"] .course-title,
[data-theme="dark"] .exam-board-title,
[data-theme="dark"] .feature-title {
    color: var(--text-primary);
}

[data-theme="dark"] .course-description,
[data-theme="dark"] .exam-board-description,
[data-theme="dark"] .feature-description,
[data-theme="dark"] .testimonial-text {
    color: var(--text-secondary);
}

[data-theme="dark"] .course-action-btn,
[data-theme="dark"] .exam-board-practice-btn,
[data-theme="dark"] .faq-see-all-btn,
[data-theme="dark"] .view-all-link {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .course-action-btn:hover,
[data-theme="dark"] .exam-board-practice-btn:hover,
[data-theme="dark"] .faq-see-all-btn:hover {
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

[data-theme="dark"] .course-badge-type {
    background: rgba(61, 134, 68, 0.2);
    color: var(--primary-green);
}

[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .results-section,
[data-theme="dark"] .exam-boards-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .mobile-app-section,
[data-theme="dark"] .features-section {
    background-color: var(--bg-primary);
}

[data-theme="dark"] .author-name {
    color: var(--text-primary);
}

[data-theme="dark"] .author-role {
    color: var(--text-secondary);
}

[data-theme="dark"] .newsletter-section {
    background: linear-gradient(135deg, rgba(61, 134, 68, 0.1) 0%, rgba(80, 132, 75, 0.1) 100%);
}

[data-theme="dark"] .newsletter-card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .newsletter-title {
    color: var(--text-primary);
}

[data-theme="dark"] .newsletter-description,
[data-theme="dark"] .newsletter-subscriber-count {
    color: var(--text-secondary);
}

[data-theme="dark"] .newsletter-benefit-item {
    color: var(--text-primary);
}

[data-theme="dark"] .newsletter-form-wrapper {
    background-color: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .newsletter-input {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .newsletter-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(61, 134, 68, 0.2);
}

[data-theme="dark"] .faq-question {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .faq-question:hover {
    background-color: var(--bg-tertiary);
}

[data-theme="dark"] .faq-answer {
    color: var(--text-secondary);
}

[data-theme="dark"] .app-feature-item {
    color: var(--text-primary);
}

/* Dark Mode - Fix navbar menu items on index page */
[data-theme="dark"] #app-default-nav-bar .navbar-nav .menu_btn,
[data-theme="dark"] #app-default-nav-bar .navbar-nav .nav-link {
    color: var(--text-primary) !important;
}

[data-theme="dark"] #app-default-nav-bar .navbar-nav .menu_btn:hover,
[data-theme="dark"] #app-default-nav-bar .navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

[data-theme="dark"] #app-default-nav-bar {
    background-color: var(--navbar-bg) !important;
}

/* ============================================
   Desktop App Promo Section
   ============================================ */
.desktop-app-promo-section {
    background-color: var(--bg-primary);
}

.desktop-app-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.desktop-app-promo-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.desktop-app-promo-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.desktop-app-promo-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.desktop-app-promo-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.desktop-app-promo-feature-item i {
    color: var(--primary-green);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.desktop-app-promo-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.desktop-app-promo-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-green), #2E7D32);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(61, 134, 68, 0.3);
    width: fit-content;
}

.desktop-app-promo-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(61, 134, 68, 0.4);
    color: #fff;
}

.desktop-app-promo-platforms {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.desktop-app-promo-platforms img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.desktop-app-promo-banner-wrapper {
    text-align: center;
}

.desktop-app-promo-banner-wrapper .desktop-app-banner-link {
    display: block;
    text-decoration: none !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.desktop-app-promo-banner-wrapper .desktop-app-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.desktop-app-promo-banner-wrapper .desktop-app-banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Dark Mode - Desktop App Promo */
[data-theme="dark"] .desktop-app-promo-badge {
    background: rgba(76, 175, 80, 0.15);
    color: #81C784;
}

[data-theme="dark"] .desktop-app-promo-title {
    color: var(--text-primary);
}

[data-theme="dark"] .desktop-app-promo-feature-item {
    color: var(--text-secondary);
}

[data-theme="dark"] .desktop-app-promo-feature-item i {
    color: #81C784;
}

[data-theme="dark"] .desktop-app-promo-banner-wrapper .desktop-app-banner-link {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .desktop-app-promo-banner-wrapper .desktop-app-banner-link:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .desktop-app-promo-title {
        font-size: 1.5rem;
    }

    .desktop-app-promo-content {
        text-align: center;
    }

    .desktop-app-promo-download-btn {
        width: 100%;
        justify-content: center;
    }

    .desktop-app-promo-platforms {
        justify-content: center;
    }

    .desktop-app-promo-features {
        align-items: center;
    }
}

/* Dark Mode - Override inline styles for sections */
[data-theme="dark"] section[style*="background-color: var(--white)"] {
    background-color: var(--bg-primary) !important;
}

/* Dark Mode - Fix inline text color styles */
[data-theme="dark"] h3[style*="color: var(--text-dark)"] {
    color: var(--text-primary) !important;
}

/* Dark Mode - Make section titles more prominent */
[data-theme="dark"] .section-title {
    color: var(--text-primary) !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}