/* ==============================================
   MODERN LANDING PAGE ENHANCEMENTS
   ============================================== */

/* ===== STICKY NAVBAR ===== */
.navbar.sticky-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.navbar.sticky-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
}

/* Keep fixed navbar from overlapping page content */
body.landing-page {
    padding-top: 82px;
}

/* Ensure anchor-scrolled sections appear below fixed navbar.
   Sections already have padding-top:100px, so a small scroll-margin-top
   is enough — the internal padding provides the visual breathing room. */
body.landing-page section[id],
body.landing-page header[id] {
    scroll-margin-top: 0px;
}

@media (max-width: 768px) {

    body.landing-page section[id],
    body.landing-page header[id] {
        scroll-margin-top: 20px;
    }
}

/* Prevent horizontal overflow on small screens */
html, body {
    overflow-x: hidden;
}

/* Enhanced Navigation Links */
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: #6366f1 !important;
    transform: translateY(-2px);
}

/* ===== ANIMATED GRADIENT HERO ===== */
header {
    background: linear-gradient(-45deg, #5264b6, #1275df, #2d9dff, #8bb3f2);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Add particles effect overlay */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    animation: waveMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-20px) translateY(-20px);
    }
}

/* ===== FLOATING CTA BUTTON ===== */
.floating-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #667eea 0%, #000 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-cta-btn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
}

.floating-cta-btn i {
    font-size: 20px;
    animation: rocket 1s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1 0%, #0b0220 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 998;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
}

/* Position back-to-top above floating CTA */
.floating-cta-btn.show~.back-to-top.show {
    bottom: 95px;
}

/* ===== EXIT INTENT POPUP ===== */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

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

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: all 0.2s;
}

.exit-popup-close:hover {
    color: #333;
    transform: rotate(90deg);
}

.exit-popup-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.exit-popup-body p {
    font-size: 16px;
    margin-bottom: 10px;
}

.exit-popup-body p strong {
    color: #6366f1;
    font-weight: 600;
}

.exit-popup-benefits {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
}

.exit-popup-body .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

/* ===== SMOOTH SCROLL ANIMATIONS ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CARD ANIMATIONS ===== */
.card, .feature-box, .pricing-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.card.animate-in, .feature-box.animate-in, .pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ENHANCED CARD HOVER EFFECTS ===== */
.card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ===== MODERN BUTTON EFFECTS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== SECTION TRANSITIONS ===== */
section {
    opacity: 1;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ===== PRICING CARDS ENHANCEMENT ===== */
.pricing-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

/* ===== SOCIAL PROOF SECTION ===== */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px;
}

.trust-badge {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.trust-badge:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Keep only "Reason to Choose US" section green (do not affect footer) */
.landing-page .choose-section.bg-dark {
    background-color: #0f7a53 !important;
    background-image: linear-gradient(135deg, #0f7a53 0%, #169866 55%, #21b374 100%) !important;
}

.landing-page .choose-section .flex-shrink-0>h2 {
    color: #111111 !important;
}

.landing-page .choose-section .choose-slider h2 {
    color: rgba(255, 255, 255, 0.72);
}

.landing-page .choose-section .choose-slider .swiper-slide-active h2 {
    color: #ffffff;
}

/* Hero: only the two requested texts in white (desktop + mobile) */
.landing-page #home h1,
.landing-page #home .d-inline-flex h5 {
    color: #ffffff !important;
}

/* Hero subtitle (h4) desktop font size — overrides style.css:280 (1rem) */
.landing-page #home h4 {
    font-size: 1.25rem;
    /* ← change this value to adjust */
    line-height: 1.5;
}

/* Enlarge hero image area on desktop to better balance with left text block */
@media (min-width: 992px) {
    .landing-page #home .hero-image {
        display: flex;
        justify-content: center;
    }

    .landing-page #home .hero-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* Remove extra space under trust badges for desktop + mobile */
.landing-page .trust-proof-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.landing-page .trust-proof-section .container,
.landing-page .trust-proof-section .row,
.landing-page .trust-proof-section .col-12 {
    margin-bottom: 0 !important;
}

.landing-page .trust-proof-section .trust-badges {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.landing-page .trust-proof-section+section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Keep equal top/bottom spacing for first cards block */
.landing-page .overview-cards-section {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
}

/* ===== ANIMATED STATS COUNTER ===== */
.stats-counter {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .landing-page {
        font-size: 15px;
        line-height: 1.55;
    }

    .landing-page .container,
    .landing-page .container-fluid {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .landing-page h1,
    .landing-page .h1 {
        font-size: clamp(1.35rem, 5.6vw, 1.75rem);
        line-height: 1.2;
    }

    .landing-page h2,
    .landing-page .h2 {
        font-size: clamp(1.15rem, 4.8vw, 1.5rem);
        line-height: 1.25;
    }

    .landing-page h3,
    .landing-page .h3 {
        font-size: clamp(1.04rem, 4vw, 1.2rem);
        line-height: 1.3;
    }

    .landing-page h4,
    .landing-page .h4 {
        font-size: clamp(0.96rem, 3.5vw, 1.08rem);
        line-height: 1.38;
    }

    .landing-page header h1,
    .landing-page header h2,
    .landing-page header h3,
    .landing-page header h4,
    .landing-page section h1,
    .landing-page section h2,
    .landing-page section h3,
    .landing-page section h4 {
        text-align: center !important;
    }

    .landing-page header h4,
    .landing-page header .h4,
    .landing-page section h5,
    .landing-page section .h5,
    .landing-page section h6,
    .landing-page section .h6,
    .landing-page section .text-lg,
    .landing-page section .text-muted {
        font-weight: 600 !important;
        text-align: center !important;
    }

    .landing-page h5,
    .landing-page .h5,
    .landing-page h6,
    .landing-page .h6 {
        font-size: 0.98rem;
        line-height: 1.45;
    }

    .landing-page p,
    .landing-page li,

    /* Section 3: ensure paragraph/list are truly centered on mobile */
    .landing-page .text-lg.w-75 {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }

    .landing-page .customize-list {
        padding-left: 0 !important;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .landing-page .customize-list li {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .landing-page .text-lg,
    .landing-page .text-muted,
    .landing-page .accordion-button,
    .landing-page .accordion-body {
        font-size: 0.97rem;
        line-height: 1.6;
    }

    .landing-page ul,
    .landing-page ol {
        padding-left: 1.05rem;
    }

    .landing-page .row.g-4,
    .landing-page .row.g-5 {
        --bs-gutter-y: 1rem;
    }

    .landing-page section .row>[class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    header {
        min-height: 80vh;
        padding: 80px 0 60px;
    }

    body.landing-page {
        padding-top: 72px;
    }

    .landing-page .container,
    .landing-page .container-fluid {
        max-width: 100%;
    }

    .navbar.sticky-navbar {
        padding: 6px 0 !important;
    }

    .landing-page .navbar .navbar-brand {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .landing-page .navbar .navbar-brand img,
    .landing-page .navbar .navbar-brand img.img-fluid {
        height: 45px !important;
        max-height: 45px !important;
        width: auto !important;
        max-width: none !important;
        display: block;
    }

    .navbar .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.97);
    }

    [data-pc-theme="dark"] .navbar .navbar-collapse {
        background: rgba(30, 41, 59, 0.97);
    }

    .navbar .navbar-nav {
        align-items: flex-start !important;
        gap: 2px;
    }

    .navbar .navbar-nav .nav-link,
    .navbar .navbar-nav .btn {
        width: 100%;
        text-align: left;
        margin-right: 0 !important;
    }

    #home h1 {
        font-size: clamp(1.55rem, 7vw, 2rem);
        line-height: 1.2;
        margin-top: 8px !important;
        margin-bottom: 14px !important;
        word-break: break-word;
    }

    #home h4 {
        font-size: clamp(0.95rem, 4vw, 1.08rem);
        line-height: 1.55;
        margin-bottom: 14px !important;
    }

    #home .my-3.my-xl-5 {
        margin-top: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    #home .d-inline-flex.align-items-center {
        display: flex !important;
        width: 100%;
        align-items: flex-start !important;
        gap: 10px;
        flex-wrap: wrap;
    }

    #home .d-inline-flex .flex-grow-1 {
        min-width: 0;
    }

    #home .d-inline-flex h5 {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    #home .hero-image {
        margin-top: 1rem;
        text-align: center;
    }

    #home .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .trust-badges {
        padding: 10px 12px;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 18px;
        overflow-x: visible;
    }

    .trust-badge {
        width: auto;
        flex: 0 0 auto;
        opacity: 1;
        filter: none;
    }

    .floating-cta-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 12px;
    }

    .floating-cta-btn span {
        display: none;
    }

    .floating-cta-btn i {
        margin: 0;
        font-size: 24px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .floating-cta-btn.show~.back-to-top.show {
        bottom: 75px;
    }

    .exit-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .exit-popup-body h2 {
        font-size: 22px;
    }

    .stat-number {
        font-size: 36px;
    }

    .trust-badges {
        gap: 18px;
        justify-content: center;
    }

    .trust-badge {
        font-size: 14px;
    }

    section {
        padding: 40px 0;
    }

    .trust-proof-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .trust-proof-section .col-12.text-center.mb-4 {
        margin-bottom: 0 !important;
    }

    .trust-proof-section .col-12.text-center.mb-4 p {
        margin-bottom: 0;
    }

    .trust-proof-section .container {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .landing-page .overview-cards-section {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .navbar.sticky-navbar.scrolled {
        padding: 10px 0;
    }

    /* Mobile-only image centering across landing sections */
    .landing-page section img,
    .landing-page header img,
    .landing-page footer img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-page #home .hero-image,
    .landing-page .trust-badge,
    .landing-page .feature-card .avtar,
    .landing-page .feature-card .avtar-l,
    .landing-page .landing-logo {
        text-align: center;
    }

    .landing-page #home .d-inline-flex.align-items-center {
        justify-content: center;
        text-align: center;
    }

    .landing-page #home .d-inline-flex .ms-3 {
        margin-left: 0 !important;
    }

    .landing-page #home .d-inline-flex .text-start,
    .landing-page .trust-badge .text-start,
    .landing-page .feature-card .text-end {
        text-align: center !important;
    }

    .landing-page .feature-card .d-flex,
    .landing-page .trust-badge .d-flex {
        justify-content: center;
        text-align: center;
    }

    .landing-page .trust-badge .d-flex {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
    }

    .landing-page .trust-badge .text-start {
        display: flex;
        align-items: baseline;
        gap: 4px;
        text-align: left !important;
    }

    .landing-page .trust-badge .fw-bold,
    .landing-page .trust-badge small {
        white-space: nowrap;
        margin: 0;
    }

    .landing-page .trust-badge i,
    .landing-page .trust-badge .fa {
        font-size: 24px !important;
    }

    .landing-page .trust-badge .fw-bold {
        font-size: 20px !important;
    }

    .landing-page .trust-badge small {
        display: none;
    }

    .landing-page .feature-card .flex-grow-1,
    .landing-page .trust-badge .text-start {
        margin-left: 0 !important;
    }

    /* Footer (mobile only): keep logo at 60px and center About title */
    .landing-page .footer {
        padding-top: 30px !important;
        margin-top: 0 !important;
    }

    .landing-page footer .row>.col-md-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
    }

    .landing-page footer .landing-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .landing-page footer .landing-logo img,
    .landing-page footer .landing-logo img.img-fluid {
        height: 60px !important;
        max-height: 60px !important;
        width: auto !important;
        max-width: none !important;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-page footer .col-md-4>h4 {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .landing-page {
        font-size: 14px;
    }

    .landing-page .container,
    .landing-page .container-fluid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .landing-page h1,
    .landing-page .h1 {
        font-size: clamp(1.26rem, 6.5vw, 1.56rem);
    }

    .landing-page h2,
    .landing-page .h2 {
        font-size: clamp(1.08rem, 5.2vw, 1.32rem);
    }

    .landing-page h3,
    .landing-page .h3 {
        font-size: 0.98rem;
    }

    .landing-page h4,
    .landing-page .h4 {
        font-size: 0.92rem;
    }

    .landing-page p,
    .landing-page li,
    .landing-page .accordion-button,
    .landing-page .accordion-body {
        font-size: 0.94rem;
        line-height: 1.58;
    }

    .landing-page .text-lg.w-75 {
        width: 100% !important;
    }

    .landing-page .customize-list li {
        gap: 8px;
    }

    .landing-page header h4,
    .landing-page header .h4,
    .landing-page section h5,
    .landing-page section .h5,
    .landing-page section h6,
    .landing-page section .h6,
    .landing-page section .text-lg,
    .landing-page section .text-muted {
        font-weight: 600 !important;
        text-align: center !important;
    }

    header {
        min-height: auto;
        padding: 72px 0 36px;
    }

    #home .btn {
        width: auto;
        min-width: 160px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding-left: 22px;
        padding-right: 22px;
    }

    #home .avtar {
        width: 56px;
        height: 56px;
    }

    .exit-popup-content {
        width: calc(100% - 24px);
        margin: 12px;
        padding: 20px 14px;
    }

    .exit-popup-body h2 {
        font-size: 1.15rem;
    }

    .floating-cta-btn {
        bottom: 16px;
        right: 14px;
        padding: 11px;
    }

    .back-to-top {
        right: 14px;
        bottom: 68px;
    }

    .landing-page .trust-badge .d-flex {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .trust-badges {
        gap: 14px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .trust-proof-section {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .landing-page .overview-cards-section {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }

    .trust-proof-section .row:first-child {
        display: none;
    }

    .landing-page .trust-badge i,
    .landing-page .trust-badge .fa {
        font-size: 22px !important;
    }

    .landing-page .trust-badge .fw-bold {
        font-size: 18px !important;
    }
}

/* ===== DARK MODE SUPPORT ===== */
[data-pc-theme="dark"] .exit-popup-content {
    background: #1e293b;
    color: #e2e8f0;
}

[data-pc-theme="dark"] .exit-popup-body h2 {
    color: #f1f5f9;
}

[data-pc-theme="dark"] .exit-popup-benefits {
    background: #0f172a;
}

[data-pc-theme="dark"] .benefit-item {
    color: #cbd5e1;
}

[data-pc-theme="dark"] .navbar.sticky-navbar.scrolled {
    background: rgba(30, 41, 59, 0.95) !important;
}

/* ===== LOADING ANIMATION ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

[data-pc-theme="dark"] .glass-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== MICROINTERACTIONS ===== */
.interactive-element {
    transition: all 0.2s ease;
}

.interactive-element:active {
    transform: scale(0.95);
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    z-index: 10001;
    transition: width 0.1s ease;
}

/* ===== BUTTON RIPPLE EFFECT ===== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* FAQ-only guard: keep answer/body text readable regardless of global text-muted overrides */
.landing-page #faqs .accordion-body,
.landing-page #faqs .accordion-body.text-muted,
.landing-page #faqs .accordion-body p,
.landing-page #faqs .accordion-body li,
.landing-page #faqs .accordion-body span,
.landing-page #faqs .accordion-body div {
    color: #495057 !important;
}

/* FAQ-only guard: keep question/header text dark */
.landing-page #faqs .accordion-button,
.landing-page #faqs .accordion-button.text-muted,
.landing-page #faqs .accordion-button b,
.landing-page #faqs .accordion-button:not(.collapsed),
.landing-page #faqs .accordion-button:not(.collapsed) b {
    color: #212529 !important;
}

/* Testimonials smart marquee (Section 7 only) */
.landing-page .testaments-cards.smart-marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    column-count: unset;
    column-gap: 0;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
}

.landing-page .testaments-cards.smart-marquee::-webkit-scrollbar {
    display: none;
}

.landing-page .testaments-cards.smart-marquee::after {
    display: none;
}

.landing-page .testaments-cards.smart-marquee .card {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing: border-box;
    width: auto;
    margin: 0 20px 0 0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.landing-page .testaments-cards.smart-marquee.is-paused .card {
    transition: transform 0.2s ease;
}

.landing-page .testaments-cards.smart-marquee.is-paused .card:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .landing-page .testaments-cards.smart-marquee .card {
        flex-basis: 86vw;
        min-width: 86vw;
    }
}