:root {
    --bg-dark: #050b14;
    --bg-card: rgba(13, 22, 45, 0.6);
    --border-glass: rgba(0, 243, 255, 0.15);
    --neon-blue: #00f3ff;
    --brand-blue: #0051ff;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --gradient-primary: linear-gradient(135deg, var(--brand-blue), var(--neon-blue));
    --shadow-neon: 0 0 20px rgba(0, 243, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Background grid effect */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Glowing orbs background */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}
.orb-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: rgba(0, 81, 255, 0.15);
}
.orb-2 {
    bottom: 20%; right: -10%;
    width: 40vw; height: 40vw;
    background: rgba(0, 243, 255, 0.1);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Base Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Shield Badge */
.badge-glow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 50px;
    color: var(--neon-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    /* animation: pulseGlow 2s infinite; */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 81, 255, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}
.btn-outline {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}
.btn-outline:hover {
    background: rgba(0, 243, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-glass);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo i {
    color: var(--neon-blue);
    filter: drop-shadow(0 0 5px var(--neon-blue));
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}
.hamburger {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.hero-text h1 span {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}
.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-image-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}
.hero-image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.4));
    border-radius: 20px;
}

/* Glassmorphism Cards (Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-neon);
    border-color: rgba(0, 243, 255, 0.4);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.4));
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Privacy Cards special styling */
.privacy-card {
    text-align: center;
    background: rgba(0, 81, 255, 0.05);
}
.privacy-card:hover {
    box-shadow: 0 15px 35px rgba(0, 81, 255, 0.3);
    border-color: var(--brand-blue);
}
.privacy-card .service-icon {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 20px var(--neon-blue);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 81, 255, 0.2);
    position: relative;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}
.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-blue);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}
.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}
.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}
.plan-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.plan-features li i {
    color: var(--neon-blue);
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome */
}
.testimonial-card {
    min-width: 350px;
    scroll-snap-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}
.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}
.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(0, 243, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}
textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}
.floating-wa:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: rgba(5, 11, 20, 0.9);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #fff;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0,243,255,0.4);
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 81, 255, 0.3);
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(0, 243, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}
.faq-item.active {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-neon);
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.faq-question i {
    color: var(--neon-blue);
    transition: transform 0.4s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}
.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-left: 4px solid var(--neon-blue);
    padding: 1rem 1.5rem 1rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--border-glass);
}
.toast-content h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #fff;
}
.toast-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.toast-time {
    font-size: 0.75rem;
    color: var(--neon-blue);
    margin-top: 4px;
}
@media (max-width: 768px) {
    .toast-container {
        bottom: 100px; /* Above the floating WA icon */
        left: 20px;
        right: 20px;
    }
    .process-card {
        transform: translateY(0) !important;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 15px rgba(0,243,255,0.2)); }
    50% { filter: drop-shadow(0 0 35px rgba(0,243,255,0.6)); }
    100% { filter: drop-shadow(0 0 15px rgba(0,243,255,0.2)); }
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(5, 11, 20, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--border-glass);
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   FEATURES TRUST BAR
   ============================================ */
.features-trust-bar {
    padding: 2.5rem 0;
    background: rgba(0, 243, 255, 0.03);
    border-top: 1px solid rgba(0, 243, 255, 0.08);
    border-bottom: 1px solid rgba(0, 243, 255, 0.08);
}
.features-trust-bar .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.features-strip {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.2rem 2.5rem;
    text-align: center;
    border-right: 1px solid rgba(0, 243, 255, 0.12);
    flex: 1;
    min-width: 150px;
    transition: background 0.3s;
    cursor: default;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(0, 243, 255, 0.05); border-radius: 12px; }
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00f3ff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-item:hover .feature-icon {
    transform: scale(1.12);
    box-shadow: 0 0 18px rgba(0, 243, 255, 0.45);
}
.feature-check {
    font-size: 0.82rem;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 0.5px;
}
.feature-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.3px;
}
.feature-sub {
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 2px;
}

/* ============================================
   CURRICULUM ROADMAP
   ============================================ */
.curriculum-roadmap {
    padding: 2.5rem;
    background: rgba(0,0,0,0.35);
    border-radius: 20px;
    border: 1px solid rgba(0, 243, 255, 0.12);
    margin-bottom: 2rem;
}
.curriculum-roadmap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.curriculum-roadmap-header h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.curriculum-roadmap-header h3 i { color: #00f3ff; }
.curriculum-level-badge {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.clb {
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.clb-beginner  { background:rgba(34,197,94,0.14);  color:#22c55e; border:1px solid rgba(34,197,94,0.3); }
.clb-intermediate { background:rgba(251,191,36,0.14); color:#fbbf24; border:1px solid rgba(251,191,36,0.3); }
.clb-advanced  { background:rgba(239,68,68,0.14);  color:#ef4444; border:1px solid rgba(239,68,68,0.3); }

.roadmap-steps {
    display: flex;
    flex-direction: column;
}
.roadmap-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 1.2rem;
}
.roadmap-step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.15);
}
.step-connector {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(to bottom, rgba(0,243,255,0.35), rgba(0,243,255,0.04));
    margin: 0 auto;
}
.roadmap-step:last-child .step-connector { display: none; }
.step-content {
    padding-bottom: 1.8rem;
}
.step-phase {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
    margin-top: 0.3rem;
}
.step-phase-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: #fff;
}
.step-duration {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.18rem 0.65rem;
    background: rgba(0,243,255,0.1);
    color: #00f3ff;
    border-radius: 50px;
    border: 1px solid rgba(0,243,255,0.2);
}
.step-project-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.18rem 0.65rem;
    background: rgba(168,85,247,0.12);
    color: #a855f7;
    border-radius: 50px;
    border: 1px solid rgba(168,85,247,0.25);
}
.step-topics {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.step-topics li {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 6px;
    padding: 0.22rem 0.72rem;
    font-size: 0.77rem;
    color: #94a3b8;
    transition: all 0.2s;
}
.step-topics li:hover {
    background: rgba(0,243,255,0.08);
    color: #e2e8f0;
    border-color: rgba(0,243,255,0.2);
}

@media (max-width: 700px) {
    .features-strip { flex-direction: column; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(0,243,255,0.09); padding: 1rem 1.5rem; }
    .feature-item:last-child { border-bottom: none; }
    .curriculum-roadmap { padding: 1.4rem; }
    .curriculum-roadmap-header { flex-direction: column; align-items: flex-start; }
    .step-dot { width: 28px; height: 28px; font-size: 0.62rem; }
    .roadmap-step { grid-template-columns: 36px 1fr; }
}
