/* ==========================================================================
   POSpro Premium Landing Page — Design System & Redesign
   Loaded after styles.css / responsive.css — cascades as an override layer.
   ========================================================================== */

:root {
    --primary: var(--clr-primary, #6D4AFF);
    --primary-dark: #4C2EDB;
    --secondary: var(--secondary-color, #8B5CF6);
    --lavender: #F3F0FF;
    --soft-purple: #E9E3FF;
    --sidebar-deep: var(--sidebar-color, #211B4B);
    --text-primary: #111827;
    --text-secondary: #667085;
    --surface: #FFFFFF;
    --border: #EAECF0;
    --success: #12B76A;
    --warning: #F79009;
    --danger: #F04438;
    --soft-blue: #EAF3FF;
    --soft-blue-ic: #2E90FA;
    --soft-mint: #E8FBF3;
    --soft-mint-ic: #12B76A;
    --soft-peach: #FFF1E7;
    --soft-peach-ic: #F79009;
    --soft-pink: #FFEEF5;
    --soft-pink-ic: #EE46BC;
    --shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.04);
    --shadow-md: 0 8px 24px -8px rgba(76, 46, 219, 0.14);
    --shadow-lg: 0 24px 60px -16px rgba(76, 46, 219, 0.22);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
}

/* ---------------------------------------------------------------------- */
/* Base / Typography                                                       */
/* ---------------------------------------------------------------------- */
body {
    font-family: "Inter", sans-serif;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.pp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--lavender);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.pp-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.section-title h2,
body .section-title h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.section-title .section-description,
body .section-title .section-description {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.pp-gradient-text {
    background: linear-gradient(100deg, var(--primary) 10%, var(--primary-dark) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.pp-reveal.pp-in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* Navbar                                                                  */
/* ---------------------------------------------------------------------- */
.header-section,
.header-section.home-header {
    position: sticky !important;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.86) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(234, 236, 240, 0.7) !important;
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header-section.home-header a:not(.get-app-btn),
.header-section a:not(.get-app-btn) {
    color: var(--text-primary) !important;
}

.header-section.pp-scrolled {
    box-shadow: 0 8px 24px -12px rgba(17, 24, 39, 0.12);
}

.header-section .navbar {
    padding: 14px 0 !important;
}

.header-section .header-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.header-section .navbar-nav {
    gap: 4px;
}

.header-section .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 16px !important;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-section .nav-link:hover,
.header-section .nav-link.active {
    background: var(--lavender);
    color: var(--primary) !important;
}

.header-section .menu-dropdown {
    position: relative;
}

.header-section .menu-dropdown .arrow {
    display: inline-block;
    transform: rotate(90deg);
    font-size: 11px;
    margin-left: 2px;
}

.header-section .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 10;
}

.header-section .menu-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-section .dropdown-content .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14.5px;
    font-weight: 500;
}

.header-section .dropdown-content .dropdown-item:hover {
    background: var(--lavender);
    color: var(--primary);
}

.header-section .home-page-language-change .language-btn {
    display: flex;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.header-section .home-page-language-change .language-btn:hover {
    border-color: var(--primary);
}

.header-section .flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.header-section .get-app-btn,
body .get-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 11px 24px !important;
    font-weight: 600;
    font-size: 14.5px;
    box-shadow: 0 10px 24px -8px rgba(76, 46, 219, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-section .get-app-btn:hover,
body .get-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -8px rgba(76, 46, 219, 0.55);
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .header-section .navbar-toggler {
        border: 1px solid var(--border);
        border-radius: 10px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-primary);
    }
}

@media (min-width: 992px) {
    .header-section .navbar-toggler {
        display: none !important;
    }
}

.home-offcanvas-header,
.offcanvas.mobile-menu {
    background: var(--surface);
}

.offcanvas.mobile-menu .accordion-button {
    font-weight: 600;
    color: var(--text-primary);
    padding: 14px 4px;
}

.offcanvas.mobile-menu .accordion-button:not(.collapsed),
.offcanvas.mobile-menu .accordion-button:hover {
    color: var(--primary);
}

.offcanvas.mobile-menu .get-app-btn {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.home-banner-section {
    position: relative;
    background: linear-gradient(180deg, var(--lavender) 0%, #FBFAFF 55%, #FFFFFF 100%) !important;
    padding: 44px 0 50px 0;
    overflow: hidden;
}

.home-banner-section::before,
.home-banner-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

.home-banner-section::before {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(109, 74, 255, 0.16), transparent 70%);
    top: -160px;
    right: -120px;
}

.home-banner-section::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.14), transparent 70%);
    bottom: -140px;
    left: -100px;
}

.home-banner-section .container {
    position: relative;
    z-index: 1;
}

.home-banner-section .banner-content h1 {
    font-size: 56px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.home-banner-section .banner-content h1 span[data-typer-targets] {
    display: block;
    font-size: 0.68em;
    white-space: nowrap;
    overflow: hidden;
    min-height: 1.2em;
}

.home-banner-section .banner-content h1 span[data-typer-targets] span {
    display: inline;
}

.home-banner-section .banner-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 32px;
}

.demo-btn-group {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.custom-btn.custom-primary-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border: none;
    border-radius: 999px;
    padding: 16px 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 14px 30px -10px rgba(76, 46, 219, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-btn.custom-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -10px rgba(76, 46, 219, 0.6);
    color: #fff !important;
}

.custom-btn.custom-outline-btn {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border) !important;
    color: var(--text-primary) !important;
    border-radius: 999px;
    padding: 15px 28px;
    font-weight: 600;
    background: var(--surface) !important;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.custom-btn.custom-outline-btn:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.video-button {
    color: var(--text-primary);
    font-weight: 600;
}

.video-button .text-white {
    color: var(--text-primary) !important;
    margin-left: 0 !important;
}

/* Hero product mockup */
.pp-hero-visual {
    position: relative;
    padding: 30px;
}

.pp-hero-visual-img {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-hero-shot {
    max-width: 108%;
    width: 108%;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(76, 46, 219, 0.22));
    position: relative;
    z-index: 1;
}

.pp-browser-mock {
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    animation: pp-float 5s ease-in-out infinite;
}

.pp-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #FAFAFC;
    border-bottom: 1px solid var(--border);
}

.pp-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E4E7EC;
    flex-shrink: 0;
}

.pp-browser-url {
    margin-left: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 11.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    max-width: 260px;
}

.pp-browser-url i {
    font-size: 9px;
    color: var(--success);
}

.pp-browser-body {
    display: flex;
    background: var(--sidebar-deep);
}

.pp-mock-sidebar {
    width: 60px;
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.pp-mock-logo {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 6px;
}

.pp-mock-sidebar .pp-dot {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.pp-mock-sidebar .pp-dot.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.pp-mock-main {
    flex: 1;
    background: #F7F7FB;
    padding: 18px 20px;
    min-width: 0;
}

.pp-mock-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pp-mock-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.pp-mock-sub {
    font-size: 10.5px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.pp-mock-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    flex-shrink: 0;
}

.pp-mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.pp-mock-kpi {
    border-radius: 12px;
    padding: 12px 10px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.pp-mock-kpi .pp-kpi-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
}

.pp-mock-kpi.mock-1 .pp-kpi-icon { background: linear-gradient(135deg, #8A8DF7, var(--primary)); }
.pp-mock-kpi.mock-2 .pp-kpi-icon { background: linear-gradient(135deg, #6EE7B7, var(--success)); }
.pp-mock-kpi.mock-3 .pp-kpi-icon { background: linear-gradient(135deg, #FDBA74, var(--warning)); }

.pp-mock-kpi .pp-kpi-label {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
    white-space: nowrap;
}

.pp-mock-kpi .pp-kpi-num {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.pp-mock-chart-card {
    background: var(--surface);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 14px 16px;
}

.pp-mock-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pp-mock-chip {
    background: #F2F2F7;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 999px;
}

.pp-mock-chart {
    height: 78px;
}

.pp-floating-card {
    position: absolute;
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pp-float 4.5s ease-in-out infinite;
}

.pp-floating-card.card-a {
    top: 8%;
    left: -6%;
    animation-delay: 0.4s;
}

.pp-floating-card.card-b {
    bottom: 6%;
    right: -6%;
    animation-delay: 1s;
}

.pp-floating-card .pp-fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lavender);
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.pp-floating-card.card-b .pp-fc-icon {
    background: var(--soft-mint);
    color: var(--soft-mint-ic);
}

.pp-floating-card .pp-fc-label {
    font-size: 11.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

.pp-floating-card .pp-fc-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
}

@keyframes pp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Legacy hero elements repurposed lower on the page (QR / app badges) */
.pp-app-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pp-app-links img {
    height: 44px;
    width: auto;
}

.pp-app-links .banner-scan {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}

.pp-app-links .banner-scan img {
    height: 40px;
}

.pp-app-links .banner-scan p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ---------------------------------------------------------------------- */
/* Trust strip                                                             */
/* ---------------------------------------------------------------------- */
.pp-trust {
    padding: 50px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.pp-trust-label {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.pp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 14px 10px;
    border-radius: var(--radius-md);
    background: var(--lavender);
}

.pp-trust-item .pp-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--surface);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.pp-trust-item span.pp-trust-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ---------------------------------------------------------------------- */
/* Features                                                                */
/* ---------------------------------------------------------------------- */
.service-section {
    padding: 90px 0;
    background: #FBFAFF;
}

.service-section .row {
    row-gap: 8px;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0;
}

.service-section .row > div {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0 !important;
}

.service-card,
body .service-card {
    background: var(--surface) !important;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 32px 22px !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--lavender);
    opacity: 0.6;
    filter: blur(2px);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--soft-purple);
}

.service-card:hover::before {
    transform: scale(1.25);
}

.service-card .image {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(155deg, #fff, var(--lavender)) !important;
    box-shadow: 0 10px 22px -10px rgba(109, 74, 255, 0.45);
    border: 1px solid rgba(109, 74, 255, 0.10);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.service-card:hover .image {
    transform: scale(1.08) rotate(-4deg);
}

.service-section .row > div:nth-child(5n+2) .service-card::before { background: var(--soft-blue); }
.service-section .row > div:nth-child(5n+2) .image { background: linear-gradient(155deg, #fff, var(--soft-blue)) !important; box-shadow: 0 10px 22px -10px rgba(46, 144, 250, 0.45); border-color: rgba(46, 144, 250, 0.12); }

.service-section .row > div:nth-child(5n+3) .service-card::before { background: var(--soft-mint); }
.service-section .row > div:nth-child(5n+3) .image { background: linear-gradient(155deg, #fff, var(--soft-mint)) !important; box-shadow: 0 10px 22px -10px rgba(18, 183, 106, 0.4); border-color: rgba(18, 183, 106, 0.12); }

.service-section .row > div:nth-child(5n+4) .service-card::before { background: var(--soft-peach); }
.service-section .row > div:nth-child(5n+4) .image { background: linear-gradient(155deg, #fff, var(--soft-peach)) !important; box-shadow: 0 10px 22px -10px rgba(247, 144, 9, 0.4); border-color: rgba(247, 144, 9, 0.12); }

.service-section .row > div:nth-child(5n+5) .service-card::before { background: var(--soft-pink); }
.service-section .row > div:nth-child(5n+5) .image { background: linear-gradient(155deg, #fff, var(--soft-pink)) !important; box-shadow: 0 10px 22px -10px rgba(238, 70, 188, 0.4); border-color: rgba(238, 70, 188, 0.12); }

.service-card .image img {
    position: relative;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.service-card .service-content {
    position: relative;
    z-index: 1;
}

.service-card .service-content h6 {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.005em;
    margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Product showcase (new)                                                  */
/* ---------------------------------------------------------------------- */
.pp-showcase {
    padding: 90px 0;
    background: var(--surface);
}

.pp-showcase-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pp-showcase-row.reverse {
    flex-direction: row-reverse;
}

.pp-showcase-text {
    flex: 0 0 42%;
    max-width: 42%;
}

.pp-showcase-visual {
    flex: 1;
}

.pp-showcase-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-showcase-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.pp-showcase-list li .pp-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--soft-mint);
    color: var(--soft-mint-ic);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */
.pricing-plan-section {
    padding: 90px 0;
    background: #FBFAFF;
}

.pricing-plan-section .card {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
    position: relative;
}

.pricing-plan-section .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6EE7B7, var(--success));
}

.pricing-plan-section .col-lg-4:nth-child(2) .card::after {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.pricing-plan-section .col-lg-4:nth-child(3) .card::after {
    background: linear-gradient(90deg, #FDBA74, var(--warning));
}

.pricing-plan-section .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md) !important;
}

.pricing-plan-section .col-lg-4:nth-child(2) .card {
    border: 1.5px solid var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
}

.pricing-plan-section .col-lg-4:nth-child(2) .card:hover {
    transform: translateY(-10px);
}

.pricing-plan-section .col-lg-4:nth-child(2) .card::before {
    content: "\2605  Most Popular";
    position: absolute;
    top: 22px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 16px -6px rgba(76, 46, 219, 0.5);
    z-index: 2;
}

.pricing-plan-section .card-header {
    background: transparent !important;
    padding: 40px 28px 0 28px !important;
    text-align: center;
}

.pp-plan-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(150deg, #6EE7B7, var(--success));
    box-shadow: 0 10px 22px -10px rgba(18, 183, 106, 0.55);
}

.pricing-plan-section .col-lg-4:nth-child(2) .pp-plan-icon {
    background: linear-gradient(150deg, var(--secondary), var(--primary-dark));
    box-shadow: 0 10px 22px -10px rgba(76, 46, 219, 0.55);
}

.pricing-plan-section .col-lg-4:nth-child(3) .pp-plan-icon {
    background: linear-gradient(150deg, #FDBA74, var(--warning));
    box-shadow: 0 10px 22px -10px rgba(247, 144, 9, 0.5);
}

.pricing-plan-section .card-header p {
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.pricing-plan-section .card-header h4 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.pricing-plan-section .price-span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-plan-section .card-body {
    padding: 24px 28px 28px 28px !important;
}

.pricing-plan-section .card-body ul {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 20px 0 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-plan-section .card-body ul li {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-plan-section .card-body ul li i.fa-check-circle {
    color: #fff !important;
    background: var(--success);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin: 0 !important;
}

.pricing-plan-section .subscribe-plan {
    background: #fff;
    color: var(--primary) !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    padding: 14px !important;
    text-align: center;
    border: 1.5px solid var(--soft-purple) !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pricing-plan-section .subscribe-plan:hover {
    background: var(--lavender);
    border-color: var(--primary) !important;
    transform: translateY(-2px);
}

.pricing-plan-section .col-lg-4:nth-child(2) .subscribe-plan {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 14px 28px -10px rgba(76, 46, 219, 0.5);
}

.pricing-plan-section .col-lg-4:nth-child(2) .subscribe-plan:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                            */
/* ---------------------------------------------------------------------- */
.customer-section {
    padding: 90px 0;
    background: var(--lavender) !important;
}

.customer-card,
body .customer-card {
    background: var(--surface) !important;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px 26px !important;
    position: relative;
    margin: 6px;
}

.customer-card::before {
    content: "\201C";
    position: absolute;
    top: 14px;
    right: 24px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--soft-purple);
    line-height: 1;
}

.customer-card img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.customer-card p {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.customer-card .border-top {
    border-top: 1px solid var(--border) !important;
    padding-top: 16px !important;
}

.customer-card h5 {
    font-size: 15.5px;
    font-weight: 700;
}

.customer-card small {
    color: var(--text-secondary);
    font-size: 13px;
}

.customer-card ul li i {
    color: var(--warning);
    font-size: 13px;
}

/* ---------------------------------------------------------------------- */
/* Blogs (light touch)                                                     */
/* ---------------------------------------------------------------------- */
.blogs-section {
    padding: 90px 0;
    background: var(--surface);
}

.blogs-section .custom-btn.custom-outline-btn {
    padding: 12px 22px;
}

/* ---------------------------------------------------------------------- */
/* Final CTA (new)                                                         */
/* ---------------------------------------------------------------------- */
.pp-final-cta {
    position: relative;
    margin: 0 auto 90px auto;
    max-width: 1240px;
    padding: 76px 40px;
    border-radius: 28px;
    background:
        radial-gradient(120% 160% at 15% 0%, rgba(255, 255, 255, 0.16), transparent 55%),
        linear-gradient(120deg, var(--primary-dark), var(--primary) 65%, var(--secondary));
    text-align: center;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(33, 27, 75, 0.55);
}

.pp-final-cta-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 30%, transparent 75%);
    pointer-events: none;
}

.pp-final-cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
    top: -180px;
    right: -100px;
}

.pp-final-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
    bottom: -140px;
    left: -80px;
}

.pp-final-cta-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    margin: 0 auto 22px auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.pp-final-cta h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.pp-final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 32px auto;
    position: relative;
    z-index: 1;
}

.pp-final-cta .pp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.pp-final-cta .custom-primary-btn,
.pp-final-cta .custom-primary-btn:hover {
    background: #fff;
    color: var(--primary-dark) !important;
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
}

.pp-final-cta .custom-outline-btn {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #fff !important;
    background: transparent !important;
}

.pp-final-cta .custom-outline-btn:hover {
    border-color: #fff !important;
    color: #fff !important;
}

.pp-final-cta-note {
    position: relative;
    z-index: 1;
    margin: 22px 0 0 0 !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.72) !important;
    max-width: none !important;
}

.pp-final-cta-note i {
    color: #B9FBC0;
    margin-right: 4px;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.footer-section {
    background: var(--sidebar-deep) !important;
    padding: 70px 0 30px 0 !important;
}

.footer-section .footer-logo {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.footer-section .footer-details {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 340px;
}

.footer-section h6 {
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section .banner-scan {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    width: fit-content;
}

.footer-section .banner-scan p {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.footer-section .footer-play-store img {
    height: 42px;
}

.footer-section .social-link {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.footer-section .social-link a {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.footer-section .social-link a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.footer-section .social-link a.pp-social-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    -webkit-mask-image: var(--pp-icon);
    mask-image: var(--pp-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color 0.2s ease;
}

.footer-section .social-link a.pp-social-icon:hover::before {
    background-color: #fff;
}

.footer-section hr.custom-clr-white {
    border-color: rgba(255, 255, 255, 0.12) !important;
    margin: 40px 0 24px 0;
}

.footer-section .text-center p {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13.5px;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .service-section .row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .home-banner-section .banner-content h1 { font-size: 42px; }
    .pp-hero-visual { margin-top: 40px; }
    .pp-hero-shot { max-width: 100%; width: 100%; }
    .service-section .row { grid-template-columns: repeat(2, 1fr); }
    .pp-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .pp-showcase-row,
    .pp-showcase-row.reverse {
        flex-direction: column;
    }
    .pp-showcase-text,
    .pp-showcase-visual {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .pp-showcase-text { margin-bottom: 32px; }
}

@media (max-width: 767px) {
    .home-banner-section { padding: 60px 0 40px 0; }
    .home-banner-section .banner-content h1 { font-size: 34px; }
    .home-banner-section .banner-content > p { font-size: 16px; }
    .section-title h2, body .section-title h2 { font-size: 28px; }
    .demo-btn-group { flex-direction: column; align-items: flex-start; gap: 16px; }
    .custom-btn.custom-primary-btn,
    .custom-btn.custom-outline-btn { width: 100%; justify-content: center; }
    .pp-trust-grid { grid-template-columns: 1fr; }
    .service-section .row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .pp-floating-card { display: none; }
    .pp-final-cta { padding: 48px 24px; border-radius: 20px; margin-bottom: 60px; }
    .pp-final-cta h2 { font-size: 28px; }
    .pp-final-cta .pp-cta-actions { flex-direction: column; }
    .pp-final-cta .pp-cta-actions a { width: 100%; }
    .footer-section .col-md-6 { margin-bottom: 28px; }
}

@media (max-width: 480px) {
    .service-section .row { grid-template-columns: 1fr; }
}
