﻿/* ================= BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
body {
    background: #0b1220;
    color: #fff;
}


.features-section {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 30px 0;
    margin: 0;
}


/* ================= HERO ================= */
.hero {
    margin-top: 60px;
    padding: 20px 5%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-bottom: 18px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: #fca5a5;
    background: rgba(127, 29, 29, 0.35);
    border: 1px solid rgba(239, 68, 68, 0.25);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    width: fit-content;
    backdrop-filter: blur(6px);
}

    .badge i {
        color: #f87171;
        font-size: 12px;
    }

.hero h1 {
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.6px;
}

    .hero h1 span {
        color: #60a5fa;
    }

.hero p {
    margin-top: 14px;
    max-width: 520px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
    margin-bottom: 34px;
    align-items: center;
    flex-wrap: nowrap;
}

.btn-primary {
    padding: 12px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.btn-secondary {
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.trust {
    display: flex;
    gap: 18px;
    margin-top: 22px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.65);
}

.monitor {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    padding: 0;
    background: transparent;
}

.monitor-frame {
    width: 100%;
    height: 100%;
    display: block;
}

.screen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
}

    .slide.active {
        opacity: 1;
    }

.arrow {
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 22px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .arrow.left {
        left: -85px;
    }

    .arrow.right {
        right: -85px;
    }

    .arrow:hover {
        background: rgba(37,99,235,0.9);
        transform: translateY(-50%) scale(1.08);
        border-color: rgba(96,165,250,0.6);
    }

.dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    pointer-events: all;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
}

    .dot.active {
        background: #60a5fa;
    }

.screen-wrap {
    position: absolute;
    top: 3%;
    left: 2.5%;
    right: 3%;
    bottom: 30%;
    overflow: visible;
}

/* ================= FEATURES BAR ================= */


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

    .feature-item .text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    flex-shrink: 0;
    margin-top: 2px;
}

    .icon-wrap i {
        font-size: 16px;
        color: #2563eb;
    }

.feature-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.4;
}

.feature-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

/* ================= PROBLEMS STRIP ================= */
.problems-section {
    background: #f5f7fb;
}

.problems-section {
    padding: 30px 0;
    margin: 0;
}

.container-5 {
    max-width: 1500px;
    margin: 0 auto;
}


.feature-item,
.problem-block {
    padding: 10px 18px;
}


.feature-item,
.problem-block {
    align-items: flex-start;
}

.problems-heading {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 10px 0;
}


.problems-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: transparent;
}

.problem-block {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

    .problem-block:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 48%;
        height: 30%;
        width: 1px;
        background: #d1d5db;
    }

.problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
}

    .problem-icon i {
        font-size: 16px;
        color: #ef4444;
    }

.problem-block h4 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 2px 0;
}

.problem-block p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* ================= TRUSTED BRANDS SECTION ================= */
.trusted-section {
    background: #ffffff;
    padding: 30px 0 40px;
}

.trusted-container {
    max-width: 1500px;
    margin: 0 auto;
}

.trusted-heading {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 40px;
}

.trusted-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px 80px;
    padding: 0;
}

.trusted-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .trusted-brand i {
        font-size: 18px;
        color: #6b7280;
        width: 22px;
        text-align: center;
        flex-shrink: 0;
    }

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}

.brand-sub {
    font-size: 11px;
    font-weight: 400;
    color: #9ca3af;
    letter-spacing: 0.2px;
}

/* ================= FINAL CTA SECTION ================= */
.final-cta-section {
    background: #ffffff;
    padding: 0;
}

.cta-gradient-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 4px 4px 0 0;
    padding: 44px 60px; /* Reduced from 64px to 44px */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
    margin: 0 auto;
    max-width: 1500px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .cta-icon i {
        font-size: 36px;
        color: #fff;
    }

.cta-text h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta-primary {
    padding: 14px 32px;
    border-radius: 10px;
    background: #ffffff;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .btn-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

.btn-cta-secondary {
    padding: 14px 32px;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.2s;
    white-space: nowrap;
}

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.7);
    }

/* ================= RESPONSIVE ================= */
@@media (max-width: 1024px) {
    .features-bar {
        padding: 30px 40px;
    }

    .problems-row {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 40px;
    }

    .problem-block:not(:last-child)::after {
        top: 45%;
        height: 30%;
    }

    .trusted-container {
        padding: 0 40px;
    }

    .trusted-row {
        gap: 20px 30px;
    }

    .cta-gradient-box {
        padding: 38px 40px;
        flex-direction: column;
        text-align: center;
        border-radius: 24px 24px 0 0;
        margin: 0 12px;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
    }
}

@@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero p {
        max-width: 100%;
    }

    .stats, .trust, .actions {
        justify-content: center;
    }

    .badge {
        margin: 0 auto 20px;
    }

    .features-bar {
        grid-template-columns: 1fr 1fr;
        padding: 20px 24px;
    }



    .feature-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .problems-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px;
    }



    .problem-block:not(:last-child)::after {
        display: none;
    }

    .arrow.left {
        left: -30px;
    }

    .arrow.right {
        right: -30px;
    }

    .trusted-container {
        padding: 0 24px;
    }

    .trusted-row {
        gap: 16px 20px;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-sub {
        font-size: 10px;
    }

    .trusted-brand i {
        font-size: 16px;
        width: 20px;
    }

    .cta-gradient-box {
        padding: 32px 24px;
        border-radius: 20px 20px 0 0;
        margin: 0 8px;
    }

    .cta-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        white-space: normal;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.features-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: start;
}

@@media (max-width: 480px) {
    .features-bar {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 16px;
    }

    .feature-item {
        border-bottom: 1px solid #e5e7eb;
        padding: 12px 0;
    }

        .feature-item:last-child {
            border-bottom: none;
        }

    .problems-row {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .problem-block {
        padding: 8px 0;
    }

        .problem-block:not(:last-child)::after {
            display: none;
        }

    .problems-heading {
        font-size: 20px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

        .arrow.left {
            left: -16px;
        }

        .arrow.right {
            right: -16px;
        }

    .hero h1 {
        font-size: 32px;
    }

    .trusted-heading {
        font-size: 20px;
    }

    .trusted-container {
        padding: 0 16px;
    }

    .trusted-row {
        gap: 12px 16px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-sub {
        font-size: 9px;
    }

    .trusted-brand i {
        font-size: 14px;
        width: 18px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
    }

        .cta-icon i {
            font-size: 28px;
        }

    .cta-text h2 {
        font-size: 22px;
    }

    .cta-text p {
        font-size: 15px;
    }

    .cta-gradient-box {
        padding: 28px 16px;
        border-radius: 16px 16px 0 0;
        margin: 0 4px;
    }
}

.problems-wrapper {
    max-width: 1500px;
    margin: 0 auto;
}

.pricing-card.active {
    border: 2px solid #2563eb !important;
    box-shadow: 0 10px 30px rgba(37,99,235,0.15);
    background: #ffffff;
    transform: translateY(-4px);
}

.tools-section {
    background: #ffffff;
    padding: 70px 0;
}

    .tools-section .container {
        max-width: 1500px;
        margin: 0 auto;
    }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.6;
    }

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tool-card {
    background: #f8fafc;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 18px;
    text-align: left;
    transition: 0.2s ease;
}

    .tool-card:hover {
        transform: translateY(-3px);
        background: #ffffff;
    }

    .tool-card .icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #eaf1ff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2563eb;
        margin-bottom: 12px;
    }

    .tool-card h4 {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #0f172a;
    }

    .tool-card p {
        font-size: 13px;
        color: #64748b;
        line-height: 1.5;
    }

.stats-section {
    background: #ffffff;
}

.stats-grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
    align-items: center;
}

.stat-item {
    padding: 10px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.stat-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0;
    color: #0f172a;
}

.stat-item p {
    font-size: 13px;
    color: #64748b;
}

.stats-header {
    text-align: center;
    margin-bottom: 25px;
}

    .stats-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: #0f172a;
    }

.pricing-section {
    background: #ffffff;
    padding: 80px 0;
}

.pricing-grid {
    max-width: 1500px;
    margin: 40px auto 0;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 25px;
    text-align: left;
    background: #f9fafb;
    transition: 0.2s ease;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        background: #ffffff;
    }


    .pricing-card.featured {
        border: 1px solid rgba(0,0,0,0.08);
    }

        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: 12px;
            right: 12px;
            background: #2563eb;
            color: white;
            font-size: 11px;
            padding: 4px 8px;
            border-radius: 6px;
        }

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

    .price span {
        font-size: 14px;
        font-weight: 500;
        color: #64748b;
    }

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .pricing-card ul li {
        font-size: 13px;
        color: #475569;
        margin-bottom: 8px;
    }

.pricing-card button {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: #2563eb;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.25s ease;
    text-decoration: none;
}

    /* WhatsApp */
    .float-btn.whatsapp {
        background: #25D366;
    }

    /* Call */
    .float-btn.call {
        background: #2563eb;
    }

    .float-btn:hover {
        transform: scale(1.08);
    }

@media (max-width: 1024px) {
    /* tablet layout adjustments will go here */
}
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #ffffff; /* FIX: make visible on dark header */
        border-radius: 2px;
        box-shadow: 0 0 6px rgba(255,255,255,0.4);
    }
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        max-width: 100%;
    }

    .actions {
        flex-wrap: wrap;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .pricing-card {
        width: 100%;
    }

        .pricing-card.active {
            transform: none; /* remove hover lift on mobile */
        }
    .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

        .actions a,
        .actions button {
            width: 100%;
            text-align: center;
        }

    .cta-btn,
    .btn-primary,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    .section {
        padding: 40px 15px;
    }


    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .features-bar,
    .problems-row,
    .problems-strip {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px;
    }

        .features-bar > *,
        .problems-row > *,
        .problems-strip > * {
            flex: 0 0 100% !important;
            max-width: 100% !important;
        }

    .cta-gradient-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        text-align: left;
    }

    .cta-left {
        width: 100%;
    }

    .cta-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

        .cta-actions a {
            width: 100%;
            text-align: center;
        }
    .tools-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tool-card {
        width: 100%;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

    .section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .tool-card,
    .stat-item,
    .pricing-card {
        margin-bottom: 12px;
    }

    .hero {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

        .nav.active {
            display: flex;
        }

        .nav a {
            padding: 10px;
            display: block;
        }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
    }

    .actions a,
    .actions button {
        font-size: 14px;
        padding: 10px 12px;
    }

    .pricing-card {
        padding: 16px;
    }

    .tool-card,
    .stat-item {
        padding: 14px;
    }

    .section {
        padding: 30px 12px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    /* prevent any accidental horizontal scroll */
    body {
        overflow-x: hidden;
    }
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

* {
    box-sizing: border-box;
    min-width: 0;
}

img, video {
    max-width: 100%;
    height: auto;
}

.tool-card,
.stat-item,
.pricing-card {
    border-radius: 14px;
}

.pos-video-section {
    padding: 50px 20px;
    background: #f6f9ff;
}

.pos-video-container {
    max-width: 1490px;
    margin: auto;
}

.pos-video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-badge {
    background: #2563eb;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
}
.pos-video-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .pos-video-grid {
        grid-template-columns: 1fr;
    }
}
.pos-video-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
}

.pos-video-box {
    display: flex;
    justify-content: flex-end;
}

.pos-video-text,
.pos-video-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pos-video-box {
    justify-content: center;
    align-items: stretch;
}

    .pos-video-box video {
        width: 100%;
        height: 100%; /* CRITICAL */
        max-height: 420px; /* adjust if needed */
        object-fit: cover;
        border-radius: 14px;
    }
.pos-video-text {
    text-align: left;
    justify-content: flex-start;
}
.step {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.pos-video-box {
    display: flex;
    align-items: center;
}

.pos-video-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pos-video-grid {
    padding: 20px 0;
}

.pos-video-header,
.pos-video-text h2,
.pos-video-text p,
.step {
    text-align: left;
}
.pos-video-header {
    text-align: left;
    margin-bottom: 25px;
}

    .pos-video-header h2 {
        margin: 8px 0 6px 0;
        line-height: 1.2;
    }

    .pos-video-header p {
        margin: 0;
        opacity: 0.8;
    }
.pos-video-text {
    display: flex;
    flex-direction: column;
}
.step-no {
    width: 28px;
    height: 28px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* RIGHT */
.pos-video-box {
    flex: 1.5;
}

    .pos-video-box video {
        width: 100%;
        max-width: 750px;
        border-radius: 14px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pos-video-section {
    background: #f8fafc !important;
    color: #0f172a !important;
}

    .pos-video-section h2,
    .pos-video-section p,
    .pos-video-section h3,
    .pos-video-section h4,
    .pos-video-section li {
        color: #0f172a !important;
    }