:root {
    --dark-bg: #050B32;
    --dark-surface: #092052;
    --dark-card: #0b1a4a;
    --teal: #097CAC;
    --teal-light: #3ba8d4;
    --teal-glow: rgba(9, 124, 172, 0.3);
    --accent-gradient: linear-gradient(135deg, #097CAC, #3ba8d4, #06b6d4);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--dark-bg);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ===== Keyframes ===== */
@keyframes lineDrop {
    0% { top: -50%; }
    100% { top: 150%; }
}
@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
    25% { opacity: 0.6; }
    50% { opacity: 0.8; transform: translateY(-40px) scale(1.5); }
    75% { opacity: 0.4; }
}
@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(9, 124, 172, 0.4); }
    50% { box-shadow: 0 0 20px 10px rgba(9, 124, 172, 0.15); }
}
@keyframes drawLine {
    from { height: 0; }
    to { height: 100%; }
}
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes progressFill {
    from { width: 0; }
}
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ct-page {
    p { margin-bottom: 0; }

    /* ===== Background Lines ===== */
    .bg-lines {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }
    .bg-lines .line {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        background: linear-gradient(180deg, transparent, rgba(9,124,172,0.08), transparent);
    }
    .bg-lines .line::after {
        content: '';
        display: block;
        position: absolute;
        top: -50%;
        left: 0;
        width: 100%;
        height: 15vh;
        background: linear-gradient(180deg, transparent, var(--teal-glow), transparent);
        animation: lineDrop 6s ease-in-out infinite;
    }
    .bg-lines .line:nth-child(1) { left: 10%; }
    .bg-lines .line:nth-child(1)::after { animation-delay: 0s; animation-duration: 7s; }
    .bg-lines .line:nth-child(2) { left: 30%; }
    .bg-lines .line:nth-child(2)::after { animation-delay: 1.5s; animation-duration: 8s; }
    .bg-lines .line:nth-child(3) { left: 50%; }
    .bg-lines .line:nth-child(3)::after { animation-delay: 3s; animation-duration: 6s; }
    .bg-lines .line:nth-child(4) { left: 70%; }
    .bg-lines .line:nth-child(4)::after { animation-delay: 4.5s; animation-duration: 9s; }
    .bg-lines .line:nth-child(5) { left: 90%; }
    .bg-lines .line:nth-child(5)::after { animation-delay: 2s; animation-duration: 7.5s; }

    /* ===== Particles ===== */
    .particles {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
    }
    .particle {
        position: absolute;
        width: 4px; height: 4px;
        background: var(--teal);
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat 8s ease-in-out infinite;
    }
    .particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 45%; top: 60%; animation-delay: 2s; }
    .particle:nth-child(3) { left: 75%; top: 30%; animation-delay: 4s; }
    .particle:nth-child(4) { left: 25%; top: 80%; animation-delay: 1s; }
    .particle:nth-child(5) { left: 85%; top: 70%; animation-delay: 3s; }
    .particle:nth-child(6) { left: 55%; top: 10%; animation-delay: 5s; }
    .particle:nth-child(7) { left: 5%;  top: 50%; animation-delay: 1.5s; }
    .particle:nth-child(8) { left: 65%; top: 90%; animation-delay: 3.5s; }

    .z-1 { position: relative; z-index: 1; }

    .section-label {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--teal-light);
        margin-bottom: 12px;
        padding: 6px 16px;
        border: 1px solid rgba(9,124,172,0.3);
        border-radius: 50px;
    }
    .hero-highlight-gradient {
        background: linear-gradient(90deg, #097CAC 0%, #06b6d4 40%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-style: italic;
    }
    h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
        font-family: "poppins_700" !important;
    }

    /* ===== Hero Section ===== */
    .hero-section {
        padding: 100px 0 80px;
        position: relative;
        overflow: visible;
    }
    .hero-glow {
        position: absolute;
        width: 600px; height: 600px;
        border-radius: 50%;
        filter: blur(150px);
        opacity: 0.15;
        pointer-events: none;
    }
    .hero-glow-1 { background: var(--teal); top: -150px; left: -100px; }
    .hero-glow-2 { background: #6366f1; bottom: -200px; right: -100px; }
    .hero-title {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.2;
        padding-bottom: 4px;
    }
    .hero-desc {
        font-size: 1.1rem;
        color: #94a3b8;
        line-height: 1.7;
        max-width: 540px;
    }
    .btn-white {
        background: #fff;
        color: var(--dark-bg);
        font-weight: 600;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        border: none;
        transition: all 0.3s;
        font-size: 0.95rem;
    }
    .btn-white:hover {
        background: var(--teal-light);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(9,124,172,0.3);
    }
    .btn-outline-light {
        border: 1px solid rgba(255,255,255,0.3);
        color: #fff;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        background: transparent;
        font-weight: 500;
        transition: all 0.3s;
        font-size: 0.95rem;
    }
    .btn-outline-light:hover {
        border-color: var(--teal-light);
        color: var(--teal-light);
        background: rgba(9,124,172,0.08);
    }

    /* Hero Visual - orbit rings + floating cards */
    .hero-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-visual .orbit-ring {
        position: absolute;
        border: 1px solid rgba(9,124,172,0.15);
        border-radius: 50%;
        top: 50%; left: 50%;
        animation: orbitSpin 20s linear infinite;
    }
    .hero-visual .orbit-ring:nth-child(1) { width: 250px; height: 250px; transform: translate(-50%,-50%); animation-duration: 25s; }
    .hero-visual .orbit-ring:nth-child(2) { width: 350px; height: 350px; transform: translate(-50%,-50%); animation-duration: 35s; animation-direction: reverse; }
    .hero-visual .orbit-ring:nth-child(3) { width: 450px; height: 450px; transform: translate(-50%,-50%); animation-duration: 45s; }
    .hero-card-float {
        position: absolute;
        background: rgba(9,32,82,0.85);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(9,124,172,0.2);
        border-radius: 16px;
        padding: 18px 24px;
        animation: floatUpDown 4s ease-in-out infinite;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .hero-card-float:nth-child(4) { top: 15%; right: 5%; animation-delay: 0s; }
    .hero-card-float:nth-child(5) { bottom: 15%; left: 5%; animation-delay: 2s; }
    .hero-card-float:nth-child(6) { top: 50%; right: 25%; animation-delay: 1s; transform: translateY(-50%); }
    .feature-icon-circle-sm {
        width: 48px; height: 48px;
        border-radius: 50%;
        background: var(--accent-gradient);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.2rem;
        color: #fff;
        flex-shrink: 0;
    }
    .text-teal { color: var(--teal-light); }

    /* ===== Infographic Stats Bar ===== */
    .stats-bar {
        padding: 50px 0;
        background: linear-gradient(180deg, var(--dark-bg), var(--dark-surface));
        border-top: 1px solid rgba(9,124,172,0.1);
        border-bottom: 1px solid rgba(9,124,172,0.1);
    }
    .stat-item {
        text-align: center;
        padding: 20px 10px;
    }
    .stat-icon {
        width: 56px; height: 56px;
        border-radius: 50%;
        background: rgba(9,124,172,0.12);
        border: 1px solid rgba(9,124,172,0.25);
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 14px;
        font-size: 1.3rem;
        color: var(--teal-light);
        animation: pulseGlow 3s ease-in-out infinite;
    }
    .stat-number {
        font-size: 2.2rem;
        font-weight: 800;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1.2;
    }
    .stat-label {
        font-size: 0.8rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-top: 4px;
    }

    /* ===== Timeline Section ===== */
    .timeline-section {
        padding: 80px 0 100px;
        position: relative;
    }
    .section-header-dark {
        text-align: center;
        margin-bottom: 60px;
    }
    .section-header-dark h2 {
        font-size: 2.4rem;
        font-weight: 800;
    }
    .section-header-dark p {
        color: #94a3b8;
        font-size: 1rem;
        max-width: 500px;
        margin: 10px auto 0;
    }

    /* Timeline vertical line */
    .timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }
    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: rgba(9,124,172,0.15);
        transform: translateX(-50%);
        border-radius: 3px;
    }
    .timeline-progress {
        position: absolute;
        left: 50%;
        top: 0;
        width: 3px;
        height: 0;
        background: var(--accent-gradient);
        transform: translateX(-50%);
        border-radius: 3px;
        transition: height 0.8s ease;
    }

    /* Timeline item */
    .timeline-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 60px;
        position: relative;
    }
    .timeline-item:last-child { margin-bottom: 0; }

    .timeline-item .timeline-content {
        width: 45%;
        background: var(--dark-card);
        border: 1px solid rgba(9,124,172,0.15);
        border-radius: 16px;
        padding: 28px 28px;
        position: relative;
        transition: all 0.4s ease;
    }
    .timeline-item .timeline-content:hover {
        border-color: rgba(9,124,172,0.4);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(9,124,172,0.1);
    }
    /* Arrow on timeline card */
    .timeline-item .timeline-content::after {
        content: '';
        position: absolute;
        top: 28px;
        width: 12px; height: 12px;
        background: var(--dark-card);
        border: 1px solid rgba(9,124,172,0.15);
        transform: rotate(45deg);
    }
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: auto;
    }
    .timeline-item:nth-child(odd) .timeline-content::after {
        right: -7px;
        border-left: none;
        border-bottom: none;
    }
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: auto;
    }
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -7px;
        border-right: none;
        border-top: none;
    }

    /* Timeline node (circle on the line) */
    .timeline-node {
        position: absolute;
        left: 50%;
        top: 24px;
        transform: translateX(-50%);
        z-index: 2;
    }
    .timeline-node .node-circle {
        width: 52px; height: 52px;
        border-radius: 50%;
        background: var(--dark-bg);
        border: 3px solid var(--teal);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.2rem;
        color: var(--teal-light);
        position: relative;
    }
    .timeline-node .node-circle .ripple-ring {
        position: absolute;
        width: 100%; height: 100%;
        border-radius: 50%;
        border: 2px solid var(--teal);
        animation: ripple 2.5s ease-out infinite;
    }
    .timeline-node .node-circle .ripple-ring:nth-child(2) {
        animation-delay: 0.8s;
    }

    .timeline-step-num {
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--teal-light);
        margin-bottom: 6px;
    }
    .timeline-step-title {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .timeline-step-desc {
        font-size: 0.88rem;
        color: #94a3b8;
        line-height: 1.7;
    }
    .timeline-step-desc a {
        color: var(--teal-light);
        text-decoration: underline;
    }

    /* Timeline icon tags */
    .timeline-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 14px;
    }
    .timeline-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.72rem;
        color: var(--teal-light);
        background: rgba(9,124,172,0.1);
        border: 1px solid rgba(9,124,172,0.2);
        padding: 4px 12px;
        border-radius: 50px;
    }
    .timeline-tag i { font-size: 0.7rem; }

    /* Timeline CTA at bottom */
    .timeline-cta {
        text-align: center;
        margin-top: 50px;
    }

    /* ===== Pricing Section ===== */
    .pricing-section {
        padding: 80px 0 100px;
        background: #f0f7fb;
        border-top: 1px solid #d6e8f0;
    }
    .section-header-light {
        text-align: center;
        margin-bottom: 50px;
    }
    .section-label-light {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--teal);
        margin-bottom: 12px;
        padding: 6px 16px;
        border: 1px solid rgba(9,124,172,0.25);
        border-radius: 50px;
        background: rgba(9,124,172,0.06);
    }
    .section-header-light h2 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #050B32;
    }
    .section-header-light p {
        color: #64748b;
        font-size: 0.95rem;
        max-width: 560px;
        margin: 10px auto 0;
        line-height: 1.7;
    }

    .pricing-card {
        background: #ffffff;
        border: none;
        border-radius: 24px;
        padding: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 24px rgba(9,124,172,0.08);
        position: relative;
    }
    .pricing-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 24px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(9,124,172,0.2), rgba(59,168,212,0.1), rgba(9,124,172,0.2));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        transition: all 0.5s;
    }
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 24px 60px rgba(9,124,172,0.15);
    }
    .pricing-card:hover::before {
        background: linear-gradient(135deg, var(--teal), var(--teal-light), var(--teal));
    }
    .pricing-card-header {
        background: var(--dark-bg);
        padding: 36px 32px 28px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .pricing-card-header::after {
        content: '';
        position: absolute;
        width: 200px; height: 200px;
        border-radius: 50%;
        background: var(--teal);
        opacity: 0.06;
        top: -80px; right: -60px;
        pointer-events: none;
    }
    .pricing-card-header .pricing-icon {
        width: 68px; height: 68px;
        border-radius: 16px;
        background: var(--accent-gradient);
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 16px;
        font-size: 1.6rem;
        color: #fff;
        box-shadow: 0 8px 24px rgba(9,124,172,0.3);
        animation: iconBounce 3s ease-in-out infinite;
    }
    .pricing-card-header h3 {
        font-size: 1rem;
        font-weight: 600;
        color: rgba(255,255,255,0.7);
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .pricing-card-header .price {
        font-size: 2.8rem;
        font-weight: 900;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-top: 6px;
        line-height: 1.2;
    }
    .pricing-card-header .price-note {
        font-size: 0.72rem;
        color: rgba(255,255,255,0.45);
        margin-top: 6px;
    }
    .pricing-card-divider {
        height: 3px;
        background: var(--accent-gradient);
    }

    .pricing-card-body {
        padding: 28px 32px 20px;
        flex-grow: 1;
    }
    .pricing-feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .pricing-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px dashed rgba(9,124,172,0.1);
        color: #4b5563;
        font-size: 0.88rem;
        line-height: 1.5;
        transition: all 0.3s;
    }
    .pricing-feature-list li:hover {
        padding-left: 6px;
        color: #050B32;
    }
    .pricing-feature-list li:last-child { border-bottom: none; }
    .pricing-feature-list li i {
        width: 22px; height: 22px;
        border-radius: 50%;
        background: rgba(9,124,172,0.1);
        color: var(--teal);
        font-size: 0.65rem;
        display: flex; align-items: center; justify-content: center;
        margin-top: 1px;
        flex-shrink: 0;
    }

    .pricing-card-footer {
        padding: 0 32px 32px;
        text-align: center;
    }
    .btn-pricing {
        display: inline-block;
        width: 100%;
        padding: 15px 24px;
        background: var(--dark-bg);
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 14px;
        text-decoration: none;
        border: none;
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
    }
    .btn-pricing::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--accent-gradient);
        opacity: 0;
        transition: opacity 0.4s;
    }
    .btn-pricing:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(9,124,172,0.35);
        color: #fff;
    }
    .btn-pricing:hover::before {
        opacity: 1;
    }
    .btn-pricing span {
        position: relative;
        z-index: 1;
    }

    /* ===== FAQ Section ===== */
    .faq-section {
        padding: 80px 0 0 0;
    }
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: start;
    }
    .faq-item {
        background: var(--dark-card);
        border: 1px solid rgba(9,124,172,0.12);
        border-radius: 14px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .faq-item:hover {
        border-color: rgba(9,124,172,0.3);
    }
    .faq-question {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 18px 20px;
        cursor: pointer;
        user-select: none;
        transition: background 0.3s;
    } 
    .faq-question:hover {
        background: rgba(9,124,172,0.05);
    }
    .faq-question .faq-icon {
        width: 32px; height: 32px;
        border-radius: 8px;
        background: rgba(9,124,172,0.12);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        color: var(--teal-light);
        font-size: 0.75rem;
        transition: all 0.3s;
    }
    .faq-item.active .faq-question .faq-icon {
        background: var(--accent-gradient);
        color: #fff;
    }
    .faq-question h4 {
        font-size: 0.88rem;
        font-weight: 600;
        flex-grow: 1;
        line-height: 1.4;
        margin-bottom: 0;
    }
    .faq-question .faq-chevron {
        color: #64748b;
        font-size: 0.8rem;
        transition: transform 0.3s;
        flex-shrink: 0;
    }
    .faq-item.active .faq-question .faq-chevron {
        transform: rotate(180deg);
        color: var(--teal-light);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
        max-height: 500px;
    }
    .faq-answer-inner {
        padding: 0 20px 18px;
        font-size: 0.84rem;
        color: #94a3b8;
        line-height: 1.75;
    }
    .faq-answer-inner a {
        color: var(--teal-light);
        text-decoration: underline;
    }

    /* ===== CTA Banner ===== */
    .cta-section {
        padding: 80px 0;
    }
    .cta-card {
        background: linear-gradient(135deg, var(--dark-surface), var(--dark-card));
        border: 1px solid rgba(9,124,172,0.15);
        border-radius: 24px;
        padding: 56px 48px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cta-card::before {
        content: '';
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: var(--accent-gradient);
        border-radius: 0 0 3px 3px;
    }
    .cta-card::after {
        content: '';
        position: absolute;
        width: 300px; height: 300px;
        border-radius: 50%;
        background: var(--teal);
        opacity: 0.04;
        top: -100px; right: -100px;
        pointer-events: none;
    }
    .cta-card h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 14px;
    }
    .cta-card p {
        color: #94a3b8;
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto 28px;
        line-height: 1.7;
    }

    /* ===== Responsive: iPad (801-1320px) ===== */
    @media (min-width: 801px) and (max-width: 1320px) {
        .hero-section { padding: 80px 0 60px; }
        .hero-title { font-size: 2.8rem; }
        .hero-desc { font-size: 1rem; }

        .stat-number { font-size: 1.8rem; }
        .stat-icon { width: 48px; height: 48px; font-size: 1.1rem; }

        .timeline-section { padding: 60px 0 80px; }
        .section-header-dark h2 { font-size: 2rem; }
        .timeline-item .timeline-content { padding: 22px; }
        .timeline-node .node-circle { width: 44px; height: 44px; font-size: 1rem; }

        .pricing-section { padding: 60px 0 80px; }
        .section-header-light h2 { font-size: 1.8rem; }
        .pricing-card-header { padding: 28px 24px 22px; }
        .pricing-card-header .price { font-size: 2.4rem; }
        .pricing-card-body { padding: 24px 24px 16px; }
        .pricing-card-footer { padding: 0 24px 24px; }

        .faq-section { padding: 60px 0 80px; }
        .faq-question h4 { font-size: 0.85rem; }

        .cta-section { padding: 60px 0; }
        .cta-card { padding: 44px 36px; }
        .cta-card h2 { font-size: 1.7rem; }
    }

    /* ===== Responsive: Mobile (max-width: 800px) ===== */
    @media (max-width: 800px) {
        .container { padding-left: 15px !important; padding-right: 15px !important; }

        .hero-section { padding: 80px 0 50px; }
        .hero-title { font-size: 2.2rem; }
        .hero-desc { font-size: 0.95rem; }

        .stat-number { font-size: 1.6rem; }
        .stat-label { font-size: 0.7rem; }
        .stat-icon { width: 44px; height: 44px; font-size: 1rem; }

        .timeline-section { padding: 50px 0 60px; }
        .section-header-dark h2 { font-size: 1.8rem; }
        .section-header-dark p { font-size: 0.9rem; }

        /* Timeline to single column */
        .timeline::before { left: 24px; }
        .timeline-progress { left: 24px; }
        .timeline-node { left: 24px; }
        .timeline-node .node-circle { width: 40px; height: 40px; font-size: 0.9rem; }
        .timeline-item .timeline-content { width: calc(100% - 64px); margin-left: auto !important; margin-right: 0 !important; }
        .timeline-item:nth-child(odd) .timeline-content::after,
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -7px; right: auto;
            border-right: none; border-top: none;
            border-left: 1px solid rgba(9,124,172,0.15);
            border-bottom: 1px solid rgba(9,124,172,0.15);
        }
        .timeline-item .timeline-content { padding: 20px; }
        .timeline-step-title { font-size: 1.05rem; }
        .timeline-step-desc { font-size: 0.84rem; }

        .pricing-section { padding: 40px 0 60px; }
        .section-header-light h2 { font-size: 1.6rem; }
        .pricing-card { border-radius: 18px; }
        .pricing-card::before { border-radius: 18px; }
        .pricing-card-header { padding: 24px 20px 20px; }
        .pricing-card-header .price { font-size: 2rem; }
        .pricing-card-body { padding: 20px 20px 16px; }
        .pricing-card-footer { padding: 0 20px 22px; }
        .btn-pricing { border-radius: 10px; }

        .faq-grid { grid-template-columns: 1fr; }
        .faq-section { padding: 50px 0 60px; }
        .faq-question h4 { font-size: 0.84rem; }
        .faq-answer-inner { font-size: 0.82rem; }

        .cta-section { padding: 40px 0; }
        .cta-card { padding: 36px 24px; border-radius: 18px; }
        .cta-card h2 { font-size: 1.5rem; }
        .cta-card p { font-size: 0.9rem; }
    }

    /* ===== Responsive: Small Mobile (max-width: 576px) ===== */
    @media (max-width: 576px) {
        .hero-section { padding: 40px 0 30px; }
        .hero-title { font-size: 1.8rem; }
        .hero-desc { font-size: 0.9rem; }
        .section-label { font-size: 0.65rem; letter-spacing: 2px; padding: 4px 12px; }
        .btn-white, .btn-outline-light { padding: 12px 24px; font-size: 0.85rem; }

        .stats-bar { padding: 30px 0; }
        .stat-number { font-size: 1.4rem; }
        .stat-label { font-size: 0.65rem; letter-spacing: 1px; }
        .stat-icon { width: 38px; height: 38px; font-size: 0.9rem; margin-bottom: 10px; }

        .timeline-section { padding: 40px 0 50px; }
        .section-header-dark h2 { font-size: 1.5rem; }
        .section-header-dark p { font-size: 0.85rem; }
        .timeline::before { left: 18px; }
        .timeline-progress { left: 18px; }
        .timeline-node { left: 18px; }
        .timeline-node .node-circle { width: 36px; height: 36px; font-size: 0.8rem; }
        .timeline-item .timeline-content { width: calc(100% - 52px); padding: 16px; border-radius: 12px; }
        .timeline-step-num { font-size: 0.6rem; }
        .timeline-step-title { font-size: 0.95rem; }
        .timeline-step-desc { font-size: 0.8rem; }
        .timeline-tag { font-size: 0.65rem; padding: 3px 8px; }
        .timeline-item { margin-bottom: 40px; }

        .pricing-section { padding: 30px 0 50px; }
        .section-header-light h2 { font-size: 1.4rem; }
        .pricing-card { border-radius: 16px; }
        .pricing-card::before { border-radius: 16px; }
        .pricing-card-header { padding: 22px 18px 18px; }
        .pricing-card-header .pricing-icon { width: 54px; height: 54px; font-size: 1.3rem; border-radius: 12px; }
        .pricing-card-header h3 { font-size: 0.85rem; }
        .pricing-card-header .price { font-size: 1.8rem; }
        .pricing-card-body { padding: 18px 18px 14px; }
        .pricing-feature-list li { font-size: 0.82rem; padding: 8px 0; }
        .pricing-feature-list li i { width: 18px; height: 18px; font-size: 0.55rem; }
        .pricing-card-footer { padding: 0 18px 20px; }
        .btn-pricing { padding: 12px 20px; font-size: 0.85rem; border-radius: 10px; }

        .faq-section { padding: 40px 0 50px; }
        .faq-question { padding: 14px 16px; gap: 10px; }
        .faq-question .faq-icon { width: 28px; height: 28px; font-size: 0.65rem; }
        .faq-question h4 { font-size: 0.8rem; }
        .faq-answer-inner { padding: 0 16px 14px; font-size: 0.78rem; }

        .cta-section { padding: 30px 0; }
        .cta-card { padding: 28px 18px; border-radius: 14px; }
        .cta-card h2 { font-size: 1.3rem; }
        .cta-card p { font-size: 0.85rem; }
    }
}