/* ═══════════════════════════════════════════════════════════
   LOGISTICS & BEYOND — LANDING PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── Hero Section ── */
.hero-section {
    background: linear-gradient(160deg, #0a0e27 0%, #12153a 30%, #0d1b3e 60%, #0a0e27 100%);
    color: #fff;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}
.hero-glow-1 { width: 500px; height: 500px; background: rgba(78,115,223,0.3); top: -100px; right: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: rgba(28,200,138,0.2); bottom: -50px; left: -50px; }
.hero-glow-3 { width: 300px; height: 300px; background: rgba(246,194,62,0.15); top: 50%; left: 30%; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(78,115,223,0.15); border: 1px solid rgba(78,115,223,0.3);
    color: #8fadff; padding: 6px 16px; border-radius: 30px;
    font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background: #40ff00;
    border-radius: 50%;
    animation: alertPulse 1s infinite;
    box-shadow: 0 0 0 0 rgba(68, 239, 136, 0.4);
}

@keyframes alertPulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(128, 239, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.hero-title { font-size: 54px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.text-gradient { background: linear-gradient(135deg, #5287f1, #0400a3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-description { font-size: 17px; color: #a0aec0; line-height: 1.7; max-width: 500px; margin-bottom: 32px; }

.hero-cta { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.btn-hero-primary {
    background: linear-gradient(135deg, #02060e, #030e24); color: #fff;
    padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 16px;
    border: none; transition: all 0.3s; display: inline-flex; align-items: center;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(78,115,223,0.4); color: #fff; }
.btn-hero-secondary {
    background: transparent; color: #8fadff; padding: 14px 28px; border-radius: 12px;
    font-weight: 600; font-size: 16px; border: 1px solid rgba(143,173,255,0.3); transition: all 0.3s;
}
.btn-hero-secondary:hover { background: rgba(143,173,255,0.1); color: #fff; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-item { text-align: center; }
.stat-number { font-size: 28px; font-weight: 800; color: #fff; }
.stat-label { font-size: 11px; color: #8fadff; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ── Dashboard Preview ── */
.dashboard-preview-wrapper { position: relative; display: flex; justify-content: center; }
.dashboard-preview {
    background: #1a1a2e; border-radius: 16px; overflow: hidden;
    width: 100%; max-width: 480px; box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}
.preview-header { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: #15152a; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-dot.red { background: #e74c3c; }
.preview-dot.yellow { background: #f6c23e; }
.preview-dot.green { background: #1cc88a; }
.preview-title { color: #a0aec0; font-size: 12px; margin-left: 8px; }
.preview-body { padding: 16px; }
.preview-stats { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.preview-stat { text-align: center; }
.preview-stat-label { font-size: 10px; color: #8fadff; text-transform: uppercase; display: block; }
.preview-stat-value { font-size: 20px; font-weight: 700; color: #fff; display: block; }
.preview-table { margin-bottom: 12px; }
.preview-table-header { color: #a0aec0; font-size: 11px; text-transform: uppercase; margin-bottom: 8px; }
.preview-table-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 11px; color: #a0aec0; }
.preview-badge { padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.status-transit { background: rgba(78,115,223,0.2); color: #02060e; }
.status-port { background: rgba(246,194,62,0.2); color: #f6c23e; }
.status-delivered { background: rgba(28,200,138,0.2); color: #1cc88a; }
.preview-date { margin-left: auto; color: #666; }
.preview-progress-bar { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preview-progress-fill { width: 65%; height: 100%; background: linear-gradient(90deg, #02060e, #1cc88a); border-radius: 2px; animation: progress 3s ease-in-out infinite; }
@keyframes progress { 0% { width: 40%; } 50% { width: 80%; } 100% { width: 40%; } }

.floating-card {
    position: absolute; background: #1a1a2e; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 10px 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite; font-size: 12px; color: #a0aec0;
}
.floating-card-1 { top: 20px; right: -40px; animation-delay: 0s; }
.floating-card-2 { bottom: 40px; left: -30px; animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── Trusted Section ── */
.trusted-section {
    padding: 40px 0;
    background: #f8f9fc;
    overflow: hidden;
}
.trusted-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.trusted-scroll-wrapper::before,
.trusted-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.trusted-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fc 0%, transparent 100%);
}
.trusted-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fc 0%, transparent 100%);
}
.trusted-scroll-track {
    display: flex;
    gap: 50px;
    animation: scrollLogos 20s linear infinite;
    width: max-content;
}
.trusted-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}
.trusted-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.trusted-logo span {
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.trusted-scroll-wrapper:hover .trusted-scroll-track {
    animation-play-state: paused;
}

/* ── Sections ── */
.section-padding { padding: 80px 0; }
.section-header .section-tag {
    display: inline-block; background: rgba(78,115,223,0.08); color: #02060e;
    padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px;
}
.section-header h2 { font-size: 36px; font-weight: 800; color: #1a1a2e; margin-bottom: 10px; }
.section-header p { color: #02060e; font-size: 17px; }

/* ── Role Cards ── */
.role-card {
    background: #fff; border-radius: 16px; padding: 35px 25px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: all 0.3s; height: 100%;
    border: 1px solid #f1f3f5;
}
.role-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); border-color: #02060e; }
.role-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.role-icon.shipper { background: #eef2ff; color: #02060e; }
.role-icon.forwarder { background: #e8f8f0; color: #1cc88a; }
.role-icon.transporter { background: #fff8e6; color: #f6c23e; }
.role-icon.warehouse { background: #e8f4fd; color: #2980b9; }
.role-card h4 { font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.role-card p { color: #6c757d; font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.role-link { font-weight: 600; font-size: 14px; color: #02060e; text-decoration: none; }
.role-link:hover { text-decoration: underline; }

/* ── Step Cards ── */
.step-card {
    background: #fff; border-radius: 16px; padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); border: 1px solid #f1f3f5;
    position: relative; transition: all 0.3s;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.step-number { font-size: 56px; font-weight: 800; color: rgba(78,115,223,0.06); position: absolute; top: 10px; right: 20px; line-height: 1; }
.step-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step-card h4 { font-weight: 700; margin-bottom: 8px; }
.step-card p { color: #6c757d; font-size: 14px; line-height: 1.6; }

/* ── Feature Cards ── */
.feature-card {
    background: #fff; border-radius: 16px; padding: 24px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05); border: 1px solid #f1f3f5;
    transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 20px; }
.feature-icon.blue { background: #eef2ff; color: #02060e; }
.feature-icon.green { background: #e8f8f0; color: #1cc88a; }
.feature-icon.orange { background: #fff8e6; color: #f6c23e; }
.feature-icon.purple { background: #f3eefc; color: #6c5ce7; }
.feature-icon.teal { background: #e8f4fd; color: #2980b9; }
.feature-icon.red { background: #fde8e8; color: #e74c3c; }
.feature-card h4 { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.feature-card p { color: #6c757d; font-size: 14px; line-height: 1.6; margin-bottom: 0; }

/* ── Pricing Cards ── */
.pricing-card {
    background: #fff; border-radius: 16px; padding: 36px 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06); border: 1px solid #f1f3f5;
    position: relative; transition: all 0.3s; height: 100%;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.pricing-card.featured { border: 2px solid #02060e; }
.pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #02060e; color: #fff; padding: 5px 18px; border-radius: 20px;
    font-size: 12px; font-weight: 700;
}
.pricing-header { text-align: center; margin-bottom: 20px; }
.pricing-header h5 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #95a5a6; margin-bottom: 8px; }
.pricing-amount { font-size: 44px; font-weight: 800; color: #1a1a2e; }
.pricing-amount span { font-size: 15px; color: #95a5a6; font-weight: 400; }
.pricing-header p { color: #95a5a6; font-size: 13px; margin-top: 4px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 20px; }
.pricing-features li { padding: 7px 0; color: #6c757d; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pricing-features li i { font-size: 15px; }
.pricing-card .btn, .pricing-card .badge { padding: 12px 20px; font-size: 14px; font-weight: 600; border-radius: 10px; }

/* ── Contact Form ── */
.contact-form-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.contact-form-card .form-control { padding: 12px 16px; border: 1px solid #e9ecef; border-radius: 10px; font-size: 15px; }
.contact-form-card .form-control:focus { border-color: #02060e; box-shadow: 0 0 0 3px rgba(78,115,223,0.1); }

/* ── Navbar ── */
.navbar { padding: 10px 0; transition: all 0.3s; }
.nav-link { padding: 8px 16px !important; font-size: 14px; transition: color 0.2s; position: relative; }
.nav-link:hover { color: #02060e !important; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 16px; right: 16px; height: 2px; background: #02060e; transform: scaleX(0); transition: transform 0.2s; }
.nav-link:hover::after { transform: scaleX(1); }

/* ── Toggle Switch ── */
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .3s; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: .3s; }
input:checked + .slider { background-color: #02060e; }
input:checked + .slider:before { transform: translateX(24px); }
.slider.round { border-radius: 26px; }
.slider.round:before { border-radius: 50%; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-title { font-size: 36px; }
    .hero-description { font-size: 16px; max-width: 100%; }
    .hero-stats { flex-wrap: wrap; gap: 15px; }
    .stat-divider { display: none; }
    .dashboard-preview-wrapper { margin-top: 40px; }
    .floating-card { display: none; }
    .navbar-collapse { background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); margin-top: 10px; }
    .nav-link { padding: 12px 16px !important; }
    .navbar .d-flex { flex-direction: column; gap: 10px; margin-top: 10px; }
    .navbar .d-flex .btn { width: 100%; text-align: center; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 28px; }
    .section-padding { padding: 50px 0; }
    .section-header h2 { font-size: 28px; }
    .pricing-amount { font-size: 36px; }
    .trusted-logos { gap: 20px; }
    .preview-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Navbar Buttons ── */
.navbar .btn {
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.navbar .btn + .btn {
    margin-left: 12px;
}
.navbar .btn-outline-primary {
    border-width: 2px;
}
.navbar .btn-outline-primary:hover {
    background: #02060e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(78,115,223,0.25);
}
.navbar .btn-primary {
    background: linear-gradient(135deg, #02060e, #02060e);
    border: none;
}
.navbar .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(78,115,223,0.4);
}



/* ── Hero Buttons ── */
.btn-hero-primary {
    background: linear-gradient(135deg, #02060e, #02060e);
    color: #fff;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78,115,223,0.4);
    color: #fff;
}
.btn-hero-secondary {
    background: transparent;
    color: #c5d1eb;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(197,209,235,0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-hero-secondary:hover {
    background: rgba(197,209,235,0.08);
    color: #fff;
    border-color: rgba(197,209,235,0.4);
    transform: translateY(-2px);
}

/* ── Pricing Buttons ── */
.pricing-card .btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.pricing-card .btn-primary {
    background: linear-gradient(135deg, #02060e, #02060e);
    border: none;
    box-shadow: 0 4px 15px rgba(78,115,223,0.2);
}
.pricing-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78,115,223,0.35);
}
.pricing-card .btn-outline-primary {
    border-width: 2px;
}
.pricing-card .btn-outline-primary:hover {
    background: #02060e;
    color: #fff;
    transform: translateY(-2px);
}

/* ── Contact Button ── */
.contact-form-card .btn-primary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #02060e, #02060e);
    border: none;
    transition: all 0.3s ease;
}
.contact-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78,115,223,0.35);
}

/* ── All Buttons — Consistent Hover ── */
.btn {
    position: relative;
    overflow: hidden;
}
.btn:active {
    transform: translateY(0) !important;
}

/* ── Scroll Animations ── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll.from-left {
    transform: translateX(-40px);
}
.animate-on-scroll.from-left.visible {
    transform: translateX(0);
}
.animate-on-scroll.from-right {
    transform: translateX(40px);
}
.animate-on-scroll.from-right.visible {
    transform: translateX(0);
}

/* Stagger delays for cards */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── CTA Strips ── */
.cta-strip { padding: 60px 0; }
.cta-strip-dark { background: #1a1a2e; }
.cta-strip-gradient { background: linear-gradient(135deg, #02060e, #1cc88a); }
.cta-strip .btn-hero-primary,
.cta-strip .btn-hero-secondary { font-size: 15px; padding: 14px 28px; }

/* ── Animated Stats Counter ── */
.stats-counter-section {
    padding: 70px 0;
    background: #fff;
    position: relative;
}
.stats-counter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
}
.counter-card {
    padding: 24px 16px;
    transition: all 0.3s ease;
    border-radius: 16px;
}
.counter-card:hover {
    background: #f8f9fc;
    transform: translateY(-3px);
}
.counter-number {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.counter-label {
    color: #6c757d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* ── Payment Features Section ── */
.payment-features-section {
    background: #fff;
    overflow: hidden;
}
.payment-visual {
    background: linear-gradient(160deg, #f0f4ff 0%, #e8f0fe 50%, #f5f0ff 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.payment-visual-inner {
    position: relative;
    padding: 40px;
}
.payment-mockup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    width: 300px;
    overflow: hidden;
}
.payment-mockup-header {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: #f8f9fc;
    border-bottom: 1px solid #f1f3f5;
}
.payment-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #dee2e6;
}
.payment-mockup-body {
    padding: 24px 20px;
}
.payment-logo {
    font-size: 20px;
}
.payment-amount-display small {
    text-transform: uppercase; letter-spacing: 1px; font-size: 11px;
}
.payment-methods {
    display: flex; gap: 8px; flex-direction: column;
}
.payment-method {
    padding: 10px 14px; border: 2px solid #f1f3f5; border-radius: 10px;
    font-size: 13px; color: #6c757d; display: flex; align-items: center; gap: 8px;
}
.payment-method.active {
    border-color: #1cc88a; background: #e8f8f0; color: #1cc88a; font-weight: 600;
}
.payment-float {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}
.payment-float-1 { top: 60px; right: -20px; animation-delay: 0s; }
.payment-float-2 { bottom: 80px; left: -30px; animation-delay: 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.payment-content {
    display: flex; align-items: center;
}
.payment-content-inner {
    padding: 60px 80px 60px 40px;
    max-width: 600px;
}
.payment-features-list {
    display: flex; flex-direction: column; gap: 16px;
}
.payment-feature-item {
    display: flex; gap: 14px; align-items: flex-start;
}
.payment-feature-icon {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 18px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .payment-content-inner {
        padding: 40px 20px;
    }
    .payment-mockup {
        width: 260px;
    }
    .payment-visual {
        min-height: 400px;
    }
    .payment-float { display: none; }
}

/* ── Dashboard Preview Section ── */
.dashboard-preview-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
    overflow: hidden;
}
.dashboard-video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.dashboard-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(78,115,223,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ── Browser Frame ── */
.browser-frame {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 1px solid #f1f3f5;
}
.browser-frame-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #f1f3f5;
    border-bottom: 1px solid #e9ecef;
}
.browser-dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.browser-dot.red { background: #e74c3c; }
.browser-dot.yellow { background: #f6c23e; }
.browser-dot.green { background: #1cc88a; }
.browser-url {
    margin-left: 12px;
    font-size: 12px;
    color: #95a5a6;
    background: #fff;
    padding: 4px 14px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
}
.browser-frame-body {
    background: #f8f9fc;
    line-height: 0;
}
.dashboard-video {
    width: 100%;
    display: block;
    border-radius: 0 0 16px 16px;
}
.dashboard-fallback-img {
    width: 100%;
    display: block;
    border-radius: 0 0 16px 16px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .dashboard-preview-section {
        padding: 50px 0;
    }
    .browser-frame-header {
        padding: 10px 12px;
    }
    .browser-url {
        font-size: 10px;
        padding: 3px 10px;
    }
    .dashboard-glow {
        width: 300px; height: 200px;
    }
}

/* ── Footer ── */
.site-footer {
    background: #0d1117;
    color: #8b949e;
    padding: 60px 0 30px;
    font-size: 14px;
}
.footer-brand {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 12px;
}
.footer-brand span {
    color: #02060e;
}
.footer-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #6e7681;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    color: #6e7681;
    font-size: 18px;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #fff;
}
.footer-heading {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #6e7681;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #c5d1eb;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #484f58;
}

/* ── Demo Form Card ── */
.demo-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #f1f3f5;
}
.demo-form-card .form-control {
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
}
.demo-form-card .form-control:focus {
    border-color: #02060e;
    box-shadow: 0 0 0 3px rgba(78,115,223,0.1);
}
.demo-benefits {
    color: #2c3e50;
    font-size: 14px;
}

/* ── Testimonial Strip ── */
.testimonial-strip {
    padding: 70px 0;
    background: linear-gradient(160deg, #0a0e27 0%, #12153a 40%, #0d1b3e 70%, #0a0e27 100%);
    overflow: hidden;
    position: relative;
}
.testimonial-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(78,115,223,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.testimonial-strip::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28,200,138,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.testimonial-strip .section-header h2 {
    color: #fff;
}
.testimonial-strip .section-tag {
    background: rgba(78,115,223,0.15);
    color: #8fadff;
}

.testimonial-track-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 24px;
    animation: scrollLeft 40s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    transition: all 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.testimonial-quote {
    font-size: 60px;
    font-weight: 800;
    color: #02060e;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-size: 14px;
    color: #e2e8f0;
}
.testimonial-author span {
    color: #a0aec0;
}

.testimonial-strip .text-muted {
    color: #718096 !important;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
    .testimonial-text {
        font-size: 13px;
    }
}

/* ── Dropdown Styles ── */
.lb-dropdown {
    position: relative;
}

.lb-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

.lb-dropdown:hover .lb-dropdown-menu,
.lb-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    margin-top: 4px;
}

.lb-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #1a1f2e;
    text-decoration: none;
    transition: all 0.15s ease;
}

.lb-dropdown-item:hover {
    background: #f5f6f9;
    color: #02060e;
    text-decoration: none;
}

.lb-dropdown-item i {
    font-size: 1.25rem;
    width: 24px;
    color: #02060e;
}

.lb-dropdown-item div {
    flex: 1;
}

.lb-dropdown-item strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.lb-dropdown-item small {
    font-size: 0.7rem;
    color: #6c757d;
}

.lb-dropdown-item:hover small {
    color: #02060e;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .lb-dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .lb-dropdown.active .lb-dropdown-menu {
        display: block;
    }
}

/* Mobile Drawer Role Section Styles */
.lb-drawer-section-header {
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 8px 16px 4px;
}

.lb-drawer-section-header span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

.lb-drawer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e5ec, transparent);
    margin: 12px 16px;
}

.lb-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #1a1f2e;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lb-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    color: #4e73df;
}

.lb-nav-link-hint {
    font-size: 0.65rem;
    color: #6c757d;
    margin-left: auto;
    display: none;
}

@media (min-width: 768px) {
    .lb-nav-link-hint {
        display: inline;
    }
}

/* For mobile, put hint on new line */
@media (max-width: 768px) {
    .lb-nav-link {
        flex-wrap: wrap;
    }

    .lb-nav-link-hint {
        display: block;
        width: 100%;
        margin-left: 36px;
        margin-top: -4px;
        margin-bottom: 4px;
    }
}

.lb-nav-link:hover {
    background: #f5f6f9;
    color: #4e73df;
}

.lb-nav-link:hover i {
    color: #4e73df;
}

.lb-nav-link--demo {
    background: linear-gradient(135deg, #4e73df10, #1cc88a10);
    border: 1px solid #4e73df20;
}

.lb-nav-link--demo i {
    color: #1cc88a;
}

/* Recent Orders Scrolling Animation */
.preview-table-scroll {
    max-height: 280px;
    overflow-y: auto;
    position: relative;
}

.preview-table-scroll::-webkit-scrollbar {
    width: 4px;
}

.preview-table-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.preview-table-scroll::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.preview-table-scroll::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Auto-scroll animation */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.scrolling-orders {
    animation: scrollUp 20s linear infinite;
}

.scrolling-orders:hover {
    animation-play-state: paused;
}

/* Stop animation at bottom */
.preview-table-scroll {
    scroll-behavior: smooth;
}

/* Ensure smooth infinite scroll */
.preview-order-list {
    display: flex;
    flex-direction: column;
}

/* Additional status badges */
.preview-badge.status-processing {
    background: #e74a3b;
    color: white;
}

.preview-badge.status-customs {
    background: #36b9cc;
    color: white;
}

.preview-badge.status-dispatched {
    background: #858796;
    color: white;
}

        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

        :root {
            --lb-teal: #02060e;
            --lb-teal-dark: #157A5A;
            --lb-teal-light: #E8F7F2;
            --lb-ink: #0D1B2A;
            --lb-muted: #5A6B7B;
            --lb-border: rgba(0, 0, 0, 0.07);
            --lb-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
            --nav-height: 68px;
            --font-nav: 'Plus Jakarta Sans', sans-serif;
            --radius-pill: 999px;
            --radius-sm: 8px;
            --transition: 0.18s ease;
        }

        /* ── Base nav ─────────────────────────────────────────────── */
        .lb-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            height: var(--nav-height);
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--lb-border);
            box-shadow: var(--lb-shadow);
            font-family: var(--font-nav);
            transition: box-shadow var(--transition), background var(--transition);
        }

        .lb-navbar.scrolled {
            background: rgba(255, 255, 255, 0.99);
            box-shadow: 0 1px 0 var(--lb-border), 0 8px 32px rgba(0, 0, 0, 0.07);
        }

        .lb-navbar .container {
            height: 100%;
            display: flex;

            align-items: center;
            gap: 0;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        /* ── Logo ─────────────────────────────────────────────────── */
        .lb-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
            margin-right: 36px;
        }

        .lb-brand img {
            height: 36px;
            width: auto;
            display: block;
        }

        /* Fallback wordmark if logo image missing */
        .lb-brand-wordmark {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .lb-brand-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--lb-ink);
            letter-spacing: -0.3px;
        }

        .lb-brand-tag {
            font-size: 9.5px;
            font-weight: 500;
            color: #02060e;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-top: 1px;
        }

        /* ── Center nav links ─────────────────────────────────────── */
        .lb-nav {
            display: flex;
            align-items: center;
            gap: 2px;
            list-style: none;
            margin: 0;
            padding: 0;
            flex: 1;
        }

        .lb-nav-link {
            display: flex;
            align-items: center;
            gap: 2px;
            padding: 5px 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--lb-muted);
            text-decoration: none;
            border-radius: 6px;
            transition: color var(--transition), background var(--transition);
            white-space: nowrap;
            position: relative;
        }

        .lb-nav-link:hover,
        .lb-nav-link.active {
            color: var(--lb-ink);
            background: rgba(0, 0, 0, 0.04);
            text-decoration: none;
        }

        .lb-nav-link i {
            font-size: 14px;
            opacity: 0.75;
            color: #02060e;
        }

        /* Demo link — distinct teal accent */
        .lb-nav-link--demo {
            color: #02060e;
            font-weight: 600;
        }

        .lb-nav-link--demo i {
            color: #02060e;
            font-weight: 600;
        }

        .lb-nav-link--demo:hover {
            color: #001235;
            background: #ffffff;
            text-decoration: none;
        }

        .lb-nav-link--demo:hover a {
            color: #ffffff;

        }

        /* ── Action buttons ───────────────────────────────────────── */
        .lb-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .lb-btn {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-family: var(--font-nav);
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            border-radius: var(--radius-pill);
            transition: all var(--transition);
            white-space: nowrap;
            line-height: 1;
        }

        .lb-btn--ghost {
            padding: 6px 14px;
            background: transparent;
            color: var(--lb-ink);
        }

        .lb-btn--ghost:hover {
            background: rgba(2, 2, 6, 0.05);
            color: #02060e;
            text-decoration: none;
        }

        .lb-btn--outline {
            padding: 7px 16px;
            background: transparent;
            color: #02060e;
            border: 1.5px solid rgba(29, 158, 117, 0.35);
        }

        .lb-btn--outline:hover {
            background: #02060e;
            border-color: #02060e;
            color: #001235;
            text-decoration: none;
        }

        .lb-btn--primary {
            padding: 9px 20px;
            background: #02060e;
            color: #fff;
            box-shadow: 0 1px 3px #001235, 0 4px 12px rgba(29, 158, 117, 0.18);
        }

        .lb-btn--primary:hover {
            background: #001235;
            color: #fff;
            box-shadow: 0 2px 6px rgba(29, 158, 117, 0.35), 0 6px 20px rgba(29, 158, 117, 0.25);
            transform: translateY(-1px);
            text-decoration: none;
        }

        .lb-btn--primary:active {
            transform: translateY(0);
        }

        .lb-btn--icon {
            padding: 8px;
            width: 36px;
            height: 36px;
            justify-content: center;
            border-radius: var(--radius-sm);
            background: rgba(0, 0, 0, 0.04);
            color: var(--lb-ink);
            font-size: 16px;
            position: relative;
        }

        .lb-btn--icon:hover {
            background: rgba(0, 0, 0, 0.08);
            color: var(--lb-ink);
        }

        /* Notification badge */
        .lb-badge {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 8px;
            height: 8px;
            background: #E53E3E;
            border-radius: 50%;
            border: 1.5px solid white;
        }

        /* ── Divider between nav and actions ──────────────────────── */
        .lb-divider {
            width: 1px;
            height: 22px;
            background: var(--lb-border);
            margin: 0 8px;
        }

        /* ── Mobile toggle ────────────────────────────────────────── */
        .lb-toggle {
            display: none;
            padding: 7px;
            background: transparent;
            border: none;
            cursor: pointer;
            border-radius: var(--radius-sm);
            color: var(--lb-ink);
            font-size: 22px;
            transition: background var(--transition);
        }

        .lb-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        /* ── Mobile drawer ────────────────────────────────────────── */
        .lb-mobile-cta {
            display: none;
        }

        @media (max-width: 991px) {

            .lb-nav,
            .lb-actions,
            .lb-divider {
                display: none;
            }
            .lb-navbar .container {
            display: flex;
            justify-content: space-between;  /* This pushes logo left, CTA right */
            align-items: center;
        }

            .lb-mobile-cta {
                display: flex;
                align-items: center;
                gap: 8px;
                flex-shrink: 0;
            }

            .lb-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .lb-brand {
                margin-right: 0;
            }
        }

        /* Mobile menu panel */
        .lb-drawer {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: #fff;
            border-bottom: 1px solid var(--lb-border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 16px;
            z-index: 1029;
            animation: drawerSlide 0.2s ease forwards;
        }

        .lb-drawer.open {
            display: block;
        }

        @keyframes drawerSlide {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lb-drawer-nav {
            list-style: none;
            margin: 0 0 16px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .lb-drawer-nav .lb-nav-link {
            padding: 10px 12px;
            font-size: 14px;
        }

        .lb-drawer-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding-top: 16px;
            border-top: 1px solid var(--lb-border);
        }

        .lb-drawer-actions .lb-btn {
            justify-content: center;
            padding: 11px 20px;
            font-size: 14px;
            border-radius: 10px;
        }

        /* Push page content below fixed nav */
        body {
            padding-top: var(--nav-height);
        }

         .header-btn {
            background: #1cc88a;
            color: #fff;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
        }

        .header-btn:hover {
            background: #02060e;
            color: #fff;
        }

        .header-btn-outline {
            border: 2px solid #02060e;
            color: #02060e;
            padding: 10px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-left: 10px;
        }

        .header-btn-outline:hover {
            background: #010c2f;
            color: #fff;
        }

        .hero-txt h1 {
            font-size: 48px;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .hero-txt p {
            font-size: 18px;
            color: #7f8c8d;
            margin-bottom: 30px;
        }

        .role-card {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .role-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .role-card .role-icon {
            font-size: 48px;
            color: #02060e;
            margin-bottom: 15px;
        }

        .role-card h4 {
            font-weight: 700;
            margin-bottom: 10px;
        }

        .role-card p {
            color: #7f8c8d;
            font-size: 14px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            color: #2c3e50;
        }

        .section-title p {
            color: #7f8c8d;
            font-size: 16px;
        }

        .single-pricing {
            background: #fff;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .single-pricing:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .single-pricing.featured {
            border: 2px solid #1cc88a;
        }

        .single-pricing h5 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #7f8c8d;
        }

        .single-pricing h4 {
            font-size: 48px;
            font-weight: 800;
            color: #2c3e50;
            margin: 15px 0;
        }

        .single-pricing h4 span {
            font-size: 16px;
            color: #7f8c8d;
        }

        .single-pricing ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .single-pricing ul li {
            padding: 8px 0;
            color: #7f8c8d;
            border-bottom: 1px solid #f1f3f5;
        }

        .single-pricing ul li:last-child {
            border-bottom: none;
        }

        .price-btn {
            background: #02060e;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            display: inline-block;
            text-decoration: none;
            font-weight: 600;
        }

        .price-btn:hover {
            background: #3658c5;
            color: #fff;
        }

        .price-btn.featured {
            background: #1cc88a;
        }

        .price-btn.featured:hover {
            background: #17a673;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
        }

        .contact-form input[type="submit"] {
            background: #02060e;
            color: #fff;
            border: none;
            font-weight: 600;
            cursor: pointer;
        }

        .contact-form input[type="submit"]:hover {
            background: #3658c5;
        }

        /* Navbar */
        .navbar {
            padding: 10px 0;
            transition: all 0.3s;
        }

        .nav-link {
            padding: 8px 16px !important;
            font-size: 14px;
            transition: color 0.2s;
            position: relative;
        }

        .nav-link:hover {
            color: #02060e !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: #02060e;
            transform: scaleX(0);
            transition: transform 0.2s;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
        }



        /* Responsive Hero */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
                max-width: 100%;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 15px;
            }

            .stat-divider {
                display: none;
            }

            .hero-dashboard-preview {
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 28px;
            }

            .section-padding {
                padding: 50px 0;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .pricing-amount {
                font-size: 36px;
            }

            .step-number {
                font-size: 40px;
                top: 5px;
                right: 12px;
            }
        }

        /* Sections */
        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            margin-bottom: 30px;
        }

        .section-header .section-tag {
            display: inline-block;
            background: #02060e(78, 115, 223, 0.08);
            color: #02060e;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .section-header p {
            color: #6c757d;
            font-size: 17px;
        }

        .section-header h3 {
            font-size: 28px;
            font-weight: 800;
            color: #1a1a2e;
        }

        /* Pricing Cards */
        .pricing-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #f1f3f5;
            position: relative;
            transition: all 0.3s;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
        }

        .pricing-card.featured {
            border: 2px solid #02060e;
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #02060e;
            color: #fff;
            padding: 5px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .pricing-header h5 {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #95a5a6;
            margin-bottom: 10px;
        }

        .pricing-amount {
            font-size: 48px;
            font-weight: 800;
            color: #1a1a2e;
        }

        .pricing-amount span {
            font-size: 16px;
            color: #95a5a6;
            font-weight: 400;
        }

        .pricing-header p {
            color: #95a5a6;
            font-size: 13px;
            margin-top: 5px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px;
        }

        .pricing-features li {
            padding: 8px 0;
            color: #6c757d;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pricing-features li i {
            font-size: 16px;
        }

        /* Accordion */
        .accordion-button {
            font-weight: 600;
            font-size: 15px;
        }

        .accordion-button:not(.collapsed) {
            background: #eef2ff;
            color: #02060e;
        }

        .accordion-body {
            font-size: 14px;
            line-height: 1.7;
        }

        /* Toggle Switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .3s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .3s;
        }

        input:checked+.slider {
            background-color: #02060e;
        }

        input:checked+.slider:before {
            transform: translateX(24px);
        }

        .slider.round {
            border-radius: 26px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        /* Uniform Pricing Buttons */
        .pricing-card .btn,
        .pricing-card .badge {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
        }

        /* Current plan badge styling */
        .pricing-card .badge {
            font-size: 13px;
            letter-spacing: 0.3px;
        }

        /* Free Trial plan - no badge needed, button works */
        .pricing-card .btn {
            transition: all 0.2s ease;
        }

         /* Chat styles (same as previous) */
        .chat-button {
            position: fixed;
            bottom: 50px;
            right: 24px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #02060e 0%, #000737 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            border: none;
            color: white;
        }

        .chat-button:hover {
            transform: scale(1.05);
        }

        .chat-window {
            position: fixed;
            bottom: 100px;
            right: 24px;
            width: 380px;
            height: 500px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: none;
            flex-direction: column;
            overflow: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .chat-window.open {
            display: flex;
        }

        .chat-header {
            background: linear-gradient(135deg, #02060e 0%, #000737 100%);
            color: white;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
        }

        .close-chat {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

        .chat-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #f8f9fa;
        }

        .message {
            max-width: 85%;
            padding: 10px 14px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
        }

        .message.bot {
            background: white;
            color: #1a1f2e;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .message.user {
            background: #02060e;
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .quick-replies {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 8px;
        }

        .quick-reply-btn {
            background: #e8f7f2;
            border: 1px solid #02060e;
            color: #02060e;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .quick-reply-btn:hover {
            background: #02060e;
            color: white;
        }

        .typing-indicator {
            background: white;
            padding: 10px 14px;
            border-radius: 18px;
            align-self: flex-start;
            display: flex;
            gap: 4px;
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: #adb5bd;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {

            0%,
            60%,
            100% {
                transform: translateY(0);
                opacity: 0.4;
            }

            30% {
                transform: translateY(-6px);
                opacity: 1;
            }
        }

        .chat-input-area {
            border-top: 1px solid #e2e5ec;
            padding: 12px;
            background: white;
            display: flex;
            gap: 8px;
        }

        .chat-input-area input {
            flex: 1;
            border: 1px solid #e2e5ec;
            border-radius: 24px;
            padding: 10px 16px;
            font-size: 14px;
            outline: none;
        }

        .chat-input-area input:focus {
            border-color: #02060e;
        }

        .chat-input-area button {
            background: #02060e;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 480px) {
            .chat-window {
                width: calc(100vw - 48px);
                right: 24px;
                height: 70vh;
            }
        }

