

/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #f0753d;
    --primary-hover: #2f3d95;
    --primary-light: #FFF0F2;
    --primary-rgb: 237, 26, 59;
    --icon-color: #2f3d95;
    --heading: #1A1A1A;
    --body: #555555;
    --bg-light: #F7F7F7;
    --bg-white: #FFFFFF;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1350px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    line-height: 1.3;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary { color: var(--primary); }
.text-icon { color: #1A2B4A; }
.bg-light { background: var(--bg-light); }
.pb-0 { padding-bottom: 0 !important; }

/* Remove all hover transform effects globally */
.feature-card:hover,
.benefit-card:hover,
.industry-card:hover,
.detail-feature-block:hover,
.pricing-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.about-stat:hover,
.about-mv-card:hover,
.about-value-card:hover,
.about-why-card:hover,
.tl-content:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-white:hover,
.btn-ghost:hover,
.back-to-top:hover {
    transform: none !important;
}

/* ===== HEADER / NAVBAR ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 65px;
}

.logo-svg {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #555;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
    font-weight: 800;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    li{
        width: 100%;
    }
}

.offcanvas-header-li {
    display: none;
}

.offcanvas-overlay {
    display: none;
    pointer-events: none;
}

.offcanvas-overlay.active {
    pointer-events: auto;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link i {
    font-size: 14px;
}

.nav-login {
    background: var(--primary) !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: var(--radius-sm);
    padding: 5px 24px !important;
}

.nav-login:hover {
    background: var(--primary-hover) !important;
    color: #fff !important;
}

/* Solution Dropdown */
.nav-dropdown {
    position: static;
}

/* Small dropdown (Try mobile app) */
.nav-dropdown-small {
    position: relative;
}

.dropdown-toggle-small {
    cursor: pointer;
}

.dropdown-arrow-small {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown-small:hover .dropdown-arrow-small {
    transform: rotate(180deg);
}

.small-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.25s ease;
    z-index: 200;
}

.nav-dropdown-small:hover .small-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.small-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading);
    border-radius: 7px;
    transition: all 0.2s ease;
}

.small-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.small-dropdown a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.small-dropdown .fa-android { color: #3DDC84; }
.small-dropdown .fa-apple { color: #333; }

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.solution-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    padding: 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    z-index: 200;
}

.solution-dropdown.open,
.nav-dropdown:hover .solution-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.dropdown-close:hover {
    background: #f5f5f5;
    color: var(--heading);
}

.solution-dropdown-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.solution-col {
    flex: 1;
}

.solution-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 24px;
    padding-bottom: 0;
}

.solution-divider {
    width: 1px;
    background: #eee;
    align-self: stretch;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.solution-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--heading);
    transition: var(--transition);
}

.solution-grid a:hover {
    background: #f8f8f8;
    color: var(--primary);
}

.sol-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 15px;
    flex-shrink: 0;
}

.sol-icon.sol-pink   { background: #FFEEF0; color: #E8485C; }
.sol-icon.sol-green  { background: #E8F5E9; color: #43A047; }
.sol-icon.sol-yellow { background: #FFF8E1; color: #F9A825; }
.sol-icon.sol-blue   { background: #E3F2FD; color: #1E88E5; }
.sol-icon.sol-orange { background: #FFF3E0; color: #EF6C00; }
.sol-icon.sol-purple { background: #F3E5F5; color: #8E24AA; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--heading);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-hover);

    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
    color: #fff;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: #fff;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #1A2B4A;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-btn {
    display: inline-flex;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(237,26,59,0.3);
}

.hero-btn:hover {
    box-shadow: 0 8px 32px rgba(237,26,59,0.4);
}

/* ===== HERO IMAGE MOCKUPS ===== */
.hero-image {
    position: relative;
    min-height: 460px;
}

/* --- Monitor Mockup --- */
.monitor-mockup {
    position: relative;
    width: 92%;
    margin-left: auto;
}

.monitor-screen {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.monitor-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.monitor-neck {
    width: 60px;
    height: 24px;
    background: linear-gradient(to bottom, #ccc, #b0b0b0);
    border-radius: 0 0 4px 4px;
}

.monitor-base {
    width: 120px;
    height: 8px;
    background: linear-gradient(to bottom, #bbb, #999);
    border-radius: 0 0 8px 8px;
    margin-top: -1px;
}

/* Dashboard UI inside monitor */
.dash-ui {
    display: flex;
    min-height: 260px;
}

.dash-ui-sidebar {
    width: 42px;
    background: #1A2B4A;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 2px;
    flex-shrink: 0;
}

.dus-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 9px;
    color: #fff;
    background: var(--primary);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 8px;
}

.dus-item {
    width: 30px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7A8BA8;
    font-size: 11px;
    border-radius: 5px;
    cursor: pointer;
}

.dus-item.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.dash-ui-main {
    flex: 1;
    padding: 10px 12px;
    background: #FAFAFA;
    overflow: hidden;
}

.dum-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.dum-topbar > span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: var(--heading);
}

.dum-actions {
    display: flex;
    gap: 4px;
}

.dum-btn {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dum-btn.red {
    background: var(--primary);
    color: #fff;
}

.dum-btn.outline {
    border: 1px solid #ddd;
    color: var(--body);
    background: #fff;
}

.dum-cards {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.dum-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.dum-card-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 10px;
}

.dum-card-icon.red-bg { background: #FFEEF0; color: var(--primary); }
.dum-card-icon.green-bg { background: #E8F5E9; color: #16A34A; }

.dum-card-val {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: var(--heading);
    line-height: 1.2;
}

.dum-card-val sup { font-size: 7px; }

.dum-card-label {
    font-size: 7px;
    color: var(--body);
}

.dum-card-change {
    font-size: 8px;
    font-weight: 700;
    margin-left: auto;
}

.dum-card-change.green { color: #16A34A; }

.dum-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.dum-chart-section {
    flex: 1.3;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    padding: 8px;
}

.dum-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.dum-chart-header > span {
    font-size: 8px;
    font-weight: 700;
    color: var(--heading);
}

.dum-chart-tabs {
    display: flex;
    gap: 4px;
}

.dum-chart-tabs span {
    font-size: 7px;
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--body);
}

.dum-chart-tabs span.active {
    background: #E8F5E9;
    color: #16A34A;
    font-weight: 600;
}

.dum-chart svg {
    width: 100%;
    height: 45px;
}

.dum-collect {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    padding: 8px;
}

.dum-upi {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.upi-logo {
    background: #5F259F;
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
}

.dum-upi span {
    font-size: 8px;
    font-weight: 600;
    color: var(--heading);
}

.dum-totals {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dum-total-item {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    padding: 4px 6px;
    background: #FAFAFA;
    border-radius: 3px;
}

.dum-total-item span { color: var(--body); }
.dum-total-item strong { color: var(--heading); font-size: 8px; }

.dum-bottom-row {
    display: flex;
    gap: 8px;
}

.dum-purchase {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 8px;
}

.dum-p-label {
    font-size: 8px;
    font-weight: 600;
    color: var(--heading);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.red-dot {
    font-size: 6px;
    color: var(--primary);
}

.dum-p-bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 4px;
}

.dum-p-bar {
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.dum-p-bar.orange { background: #F59E0B; }
.dum-p-bar.yellow { background: #FCD34D; }

.dum-p-val {
    font-size: 9px;
    font-weight: 700;
    color: var(--heading);
}

.dum-invoice-mini {
    flex: 0.8;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 8px;
}

.dim-header {
    font-size: 8px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 6px;
}

.dim-red {
    color: var(--primary);
    float: right;
}

.dim-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.dim-line {
    height: 3px;
    background: #eee;
    border-radius: 2px;
    width: 100%;
}

.dim-line.short { width: 60%; }
.dim-line.medium { width: 80%; }

.dim-amount {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* --- Phone Mockup --- */
.phone-mockup {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 150px;
    background: #fff;
    border-radius: 20px;
    border: 3px solid #222;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 10;
}

.phone-notch {
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

.phone-screen {
    padding: 0;
}

.ps-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: var(--primary);
    color: #fff;
}

.ps-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 10px;
    background: rgba(255,255,255,0.2);
    padding: 2px 5px;
    border-radius: 4px;
}

.ps-title {
    font-size: 10px;
    font-weight: 600;
}

.ps-invoice {
    padding: 10px;
}

.psi-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary);
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    border-radius: 3px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.psi-to {
    margin-bottom: 8px;
}

.psi-to small {
    display: block;
    font-size: 7px;
    color: var(--body);
}

.psi-to strong {
    font-size: 9px;
    color: var(--heading);
}

.psi-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.psi-item {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: var(--body);
}

.psi-total {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    margin-bottom: 8px;
}

.psi-total span { color: var(--body); }
.psi-total strong { color: var(--primary); font-size: 11px; }

.psi-actions {
    display: flex;
    gap: 4px;
}

.psi-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 5px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 600;
    border: 1px solid #ddd;
    color: var(--body);
}

.psi-btn.primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.psi-btn .fa-whatsapp { color: #25D366; }

/* --- Floating UPI Card --- */
.hero-float-card {
    position: absolute;
    z-index: 15;
    animation: heroFloat 3s ease-in-out infinite;
}

.upi-card {
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    font-size: 12px;
    font-weight: 600;
    color: var(--heading);
    line-height: 1.3;
}

.upi-tag {
    background: #5F259F;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 5px;
}

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

/* ===== HERO STATS BAR ===== */
.hero-stats-bar {
    background: var(--bg-light);
    padding: 50px 0;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stat-icon {
    font-size: 42px;
    color: var(--icon-color);
    margin-bottom: 16px;
    line-height: 1;
}

.stat-text h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 4px;
}

.stat-text p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.4;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--body);
}

/* ===== FEATURE SECTIONS (Alternating) ===== */
.feature-section {
    padding: 120px 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

/* Image on left, text on right — but text first in HTML for mobile */
.feature-row.img-left .feature-content {
    order: 2;
}

.feature-row.img-left .feature-visual {
    order: 1;
}

.feature-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-content > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--body);
}

.feature-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-checks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--body);
}

.feature-checks li i {
    color: var(--icon-color);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ===== FEATURE SCENE (Laptop + Circle + Floats) ===== */
.feature-scene {
    position: relative;
    padding: 40px 20px 20px;
}

/* Pink circle background */
.scene-circle {
    position: absolute;
    width: 85%;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.scene-circle.pink { background: #FDDDE3; }
.scene-circle.blue { background: #DBEAFE; }
.scene-circle.green { background: #D1FAE5; }
.scene-circle.orange { background: #FED7AA; }
.scene-circle.purple { background: #E9D5FF; }

/* Floating icons */
.scene-float {
    position: absolute;
    z-index: 15;
    animation: sceneFloat 4s ease-in-out infinite;
}

.whatsapp-float {
    top: 5%;
    left: 8%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    animation-delay: 0s;
}

.plane-float {
    top: 0%;
    right: 20%;
    color: #8B5CF6;
    font-size: 28px;
    animation-delay: 0.8s;
    transform-origin: center;
}

.plane-float i {
    transform: rotate(-20deg);
}

.envelope-float {
    bottom: 2%;
    right: 25%;
    font-size: 36px;
    color: #F59E0B;
    animation-delay: 1.5s;
}

.plane-float-small {
    bottom: 5%;
    left: 2%;
    color: #22C55E;
    font-size: 22px;
    animation-delay: 2s;
}

.plane-float-small i {
    transform: rotate(-30deg);
}

/* Dashed line decoration */
.feature-scene::before {
    content: '';
    position: absolute;
    top: 12%;
    right: 28%;
    width: 60px;
    height: 60px;
    border: 2px dashed #ccc;
    border-radius: 0;
    border-left: none;
    border-bottom: none;
    z-index: 5;
    transform: rotate(15deg);
}

@keyframes sceneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Laptop Mockup */
.laptop-mockup {
    position: relative;
    z-index: 5;
    max-width: 500px;
    margin: 0 auto;
}

.laptop-screen {
    background: #1E293B;
    border-radius: 10px 10px 0 0;
    padding: 6px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
}

.ls-ui {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    min-height: 240px;
}

/* Laptop sidebar */
.ls-sidebar {
    width: 110px;
    background: #1A2B4A;
    padding: 10px 0;
    flex-shrink: 0;
}

.ls-brand {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    margin-bottom: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
}

.ls-brand i {
    color: var(--primary);
    font-size: 11px;
}

.ls-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 8px;
    color: #8899B0;
    cursor: pointer;
    border-left: 2px solid transparent;
}

.ls-nav-item.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-left-color: var(--primary);
}

.ls-nav-item i {
    width: 14px;
    text-align: center;
    font-size: 8px;
}

.ls-nav-item.active i {
    color: var(--primary);
}

/* Laptop main content */
.ls-main {
    flex: 1;
    background: #F9FAFB;
    overflow: hidden;
}

.ls-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.ls-search {
    font-size: 7px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #F3F4F6;
    border-radius: 4px;
}

.ls-topbtns {
    display: flex;
    gap: 3px;
}

.ls-tbtn {
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
}

.ls-tbtn.red { background: var(--primary); color: #fff; }
.ls-tbtn.blue { background: #3B82F6; color: #fff; }
.ls-tbtn.outline { border: 1px solid #ddd; color: #666; background: #fff; }

.ls-content-area {
    display: flex;
    padding: 8px;
    gap: 8px;
}

/* Invoice view inside laptop */
.ls-invoice-view {
    flex: 1.4;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
}

.lsiv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.lsiv-header strong {
    display: block;
    font-size: 8px;
    color: var(--heading);
}

.lsiv-header small {
    font-size: 6px;
    color: #999;
}

.lsiv-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    color: var(--primary);
}

.lsiv-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    color: var(--primary);
    margin-bottom: 6px;
}

.lsiv-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.lsiv-line {
    height: 3px;
    background: #F3F4F6;
    border-radius: 2px;
    width: 100%;
}

.lsiv-line.short { width: 55%; }

.lsiv-table {
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
}

.lsiv-row {
    display: grid;
    grid-template-columns: 0.3fr 1.5fr 0.5fr 0.8fr 0.8fr;
    padding: 4px 6px;
    font-size: 7px;
    color: var(--heading);
    border-top: 1px solid #f0f0f0;
}

.lsiv-row.head {
    background: #FEF3C7;
    font-weight: 600;
    color: var(--body);
    border-top: none;
}

/* Share panel inside laptop */
.ls-share-panel {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lsp-upi {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 600;
    color: var(--heading);
}

.upi-badge {
    background: #5F259F;
    color: #fff;
    font-size: 6px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
}

.lsp-title {
    font-size: 7px;
    font-weight: 600;
    color: var(--body);
    padding: 2px 0;
}

.lsp-method {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 500;
    color: var(--heading);
}

.lsp-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 8px;
}

.lsp-icon.gmail { background: #FEE2E2; color: #DC2626; }
.lsp-icon.sms { background: #FEF3C7; color: #D97706; }
.lsp-icon.whatsapp { background: #D1FAE5; color: #16A34A; }
.lsp-icon.print { background: #DBEAFE; color: #2563EB; }
.lsp-icon.pdf { background: #FEE2E2; color: #DC2626; }

/* Laptop base */
.laptop-base {
    height: 14px;
    background: linear-gradient(to bottom, #B0B8C4, #9CA3AF);
    border-radius: 0 0 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    right: -5%;
    height: 5px;
    background: linear-gradient(to bottom, #9CA3AF, #7B8494);
    border-radius: 0 0 12px 12px;
}

.laptop-notch {
    width: 60px;
    height: 4px;
    background: #9CA3AF;
    border-radius: 0 0 4px 4px;
}

/* Read more link */
.read-more-link {
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
    transition: var(--transition);
}

.read-more-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Inventory Dashboard */
.inv-dashboard { }

.inv-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.inv-stat-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.isc-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.isc-icon.green { background: #EAECF5; color: var(--icon-color); }
.isc-icon.yellow { background: #EAECF5; color: var(--icon-color); }
.isc-icon.red { background: #EAECF5; color: var(--icon-color); }

.isc-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--heading);
    line-height: 1.2;
}

.isc-label {
    font-size: 11px;
    color: var(--body);
}

.inv-item-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inv-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.inv-item-name {
    font-weight: 600;
    color: var(--heading);
    flex: 1;
}

.inv-item-batch {
    color: var(--body);
    font-size: 12px;
    flex: 1;
    text-align: center;
}

.inv-item-qty {
    font-weight: 700;
    text-align: right;
    min-width: 70px;
}

.green-text { color: #16A34A; }
.yellow-text { color: #D97706; }
.red-text { color: #DC2626; }

/* Inventory Scene (inside laptop) */
.inv-scene-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.inv-ss-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 9px;
    flex-shrink: 0;
}

.inv-ss-icon.blue { background: #DBEAFE; color: #2563EB; }
.inv-ss-icon.yellow { background: #FEF3C7; color: #D97706; }
.inv-ss-icon.red { background: #FEE2E2; color: #DC2626; }

.inv-ss-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    color: var(--heading);
    line-height: 1.2;
}

.inv-ss-label {
    display: block;
    font-size: 6px;
    color: var(--body);
}

.inv-scene-table {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.inv-st-header {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    padding: 5px 8px;
    font-size: 7px;
    font-weight: 600;
    color: var(--body);
    background: #F9FAFB;
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.inv-st-row {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    padding: 5px 8px;
    font-size: 8px;
    color: var(--heading);
    border-bottom: 1px solid #f5f5f5;
}

.inv-st-batch {
    color: var(--body);
    font-size: 7px;
}

.inv-st-qty {
    font-weight: 700;
    text-align: right;
    font-size: 8px;
}

/* Payment Scene (inside laptop) */
.pay-scene-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 5px;
}

.pay-scene-card.received { background: #F0FDF4; }
.pay-scene-card.pending { background: #FFF7ED; }
.pay-scene-card.received i { color: #16A34A; }
.pay-scene-card.pending i { color: #F59E0B; }

.pay-scene-reminder {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 8px;
}

.pay-rm {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 5px 4px;
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 500;
    color: var(--heading);
}

.pay-bulk-btn {
    width: 100%;
    padding: 5px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 600;
    text-align: center;
}

.pay-scene-modes {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 8px;
}

.pay-mode-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 5px 2px;
    background: #F9FAFB;
    border-radius: 4px;
}

.pay-mode-icon i {
    font-size: 10px;
    color: var(--heading);
}

.pay-mode-icon span {
    font-size: 6px;
    color: var(--body);
}

/* Payment Dashboard (legacy) */
.payment-dash { }

.pd-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.pd-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-sm);
}

.pd-received { background: #F0FDF4; }
.pd-pending { background: #FFF7ED; }

.pd-card i {
    font-size: 22px;
}

.pd-received i { color: var(--icon-color); }
.pd-pending i { color: var(--icon-color); }

.pd-card span {
    display: block;
    font-size: 12px;
    color: var(--body);
}

.pd-card strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--heading);
}

.pd-reminder {
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.pd-reminder-header {
    font-weight: 600;
    font-size: 13px;
    color: var(--heading);
    margin-bottom: 10px;
}

.pd-reminder-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.pd-method {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--heading);
}

.pd-method .fa-whatsapp { color: #25D366; }
.pd-method .fa-envelope { color: #3B82F6; }
.pd-method .fa-message { color: #8B5CF6; }

.pd-bulk-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pd-bulk-btn:hover {
    background: var(--primary-hover);
}

.pd-payments { }

.pd-pay-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.pd-pay-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.pd-pay-icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 10px;
    color: var(--body);
}

.pd-pay-icons > div i {
    font-size: 18px;
    color: var(--heading);
}

/* GST Scene (inside laptop) */
.gst-scene-card {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.gst-sc-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 4px;
    font-size: 9px;
    flex-shrink: 0;
}

.gst-sc-name {
    font-size: 8px;
    font-weight: 600;
    color: var(--heading);
}

.gst-sc-badge {
    margin-left: auto;
    padding: 1px 6px;
    border-radius: 50px;
    font-size: 6px;
    font-weight: 600;
}

.gst-sc-badge.done { background: #DCFCE7; color: #16A34A; }
.gst-sc-badge.pending { background: #FEF3C7; color: #D97706; }

.gst-scene-summary {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 6px 8px;
}

.gst-sum-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 7px;
    color: var(--body);
    border-bottom: 1px solid #f5f5f5;
}

.gst-sum-row:last-child { border-bottom: none; }

.gst-sum-row strong {
    color: var(--heading);
    font-size: 7px;
}

.gst-scene-backup {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 8px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 5px;
}

.gst-scene-backup strong {
    display: block;
    font-size: 7px;
    color: var(--heading);
}

.gst-scene-backup span {
    display: block;
    font-size: 6px;
    color: var(--body);
}

/* GST Reports Dashboard (legacy) */
.gst-reports-dash { }

.gst-report-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.gst-rcard {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
}

.gst-rc-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.gst-rc-status {
    margin-left: auto;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.gst-rc-status.done {
    background: #DCFCE7;
    color: #16A34A;
}

.gst-rc-status.pending {
    background: #FEF3C7;
    color: #D97706;
}

.gst-backup {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-sm);
}

.gst-backup > i:first-child {
    font-size: 22px;
    color: var(--icon-color);
}

.gst-backup strong {
    display: block;
    font-size: 13px;
    color: var(--heading);
}

.gst-backup span {
    font-size: 12px;
    color: var(--body);
}

.gst-backup-check {
    margin-left: auto;
    color: #16A34A !important;
    font-size: 18px !important;
}

/* ===== DETAILED FEATURES (8 Blocks) ===== */
.detailed-features {
    padding: 120px 0;
    background: var(--bg-light);
}

.detail-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-feature-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.detail-feature-block:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateX(4px);
}

.dfb-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 22px;
    flex-shrink: 0;
}

.dfb-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--heading);
}

.dfb-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
}

/* ===== HIGHLIGHT SECTIONS ===== */
.highlight-section {
    padding: 120px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-grid.reverse {
    direction: rtl;
}

.highlight-grid.reverse > * {
    direction: ltr;
}

.highlight-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.highlight-content > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Speed Billing Scene */
.scene-circle.purple { background: #EDE9FE; }

.speed-timer-new {
    margin-bottom: 12px;
}

.stn-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stn-unit {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--heading);
    margin-top: 2px;
}

.stn-label {
    display: block;
    font-size: 11px;
    color: var(--body);
    margin-top: 4px;
}

.speed-progress {
    width: 80%;
    height: 5px;
    background: #eee;
    border-radius: 5px;
    margin: 10px auto 16px;
    overflow: hidden;
}

.speed-bar {
    width: 85%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #F59E0B);
    border-radius: 5px;
    animation: speedFill 2s ease-in-out infinite;
}

@keyframes speedFill {
    0% { width: 0%; }
    70% { width: 85%; }
    100% { width: 85%; }
}

.speed-features-new {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sfn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 8px;
    color: var(--body);
    line-height: 1.3;
    text-align: center;
}

.sfn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 8px;
    font-size: 13px;
}

.speed-invoice-preview {
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
    text-align: left;
}

.sip-row {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr 0.8fr 0.8fr;
    padding: 5px 10px;
    font-size: 8px;
    color: var(--heading);
    border-bottom: 1px solid #f0f0f0;
}

.sip-row.head {
    background: #fff;
    font-weight: 600;
    color: var(--body);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sip-total {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 9px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.sip-total span { color: var(--body); }
.sip-total strong { color: var(--primary); font-family: var(--font-heading); }

.speed-features {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.speed-features > div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading);
}

.speed-features > div i {
    color: var(--icon-color);
}

/* Backup Scene (inside laptop) */
.backup-scene-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.bss-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.backup-scene-secure strong {
    display: block;
    font-size: 9px;
    color: var(--heading);
}

.backup-scene-secure span {
    font-size: 7px;
    color: var(--body);
}

.backup-scene-method {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 500;
    color: var(--heading);
}

.backup-scene-method i {
    font-size: 10px;
}

.backup-scene-log {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.bsl-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    font-size: 7px;
    color: var(--heading);
    border-bottom: 1px solid #f5f5f5;
}

.bsl-row:last-child { border-bottom: none; }

.bsl-row i { font-size: 8px; flex-shrink: 0; }

.bsl-size {
    margin-left: auto;
    color: var(--body);
    font-size: 7px;
}

.backup-scene-auto {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 500;
    color: #16A34A;
}

/* Backup Card (legacy) */
.backup-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.backup-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 50%;
    font-size: 28px;
    margin: 0 auto 16px;
}

.backup-card > h3 {
    font-size: 20px;
    margin-bottom: 24px;
}

.backup-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.backup-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--heading);
    font-weight: 500;
}

.backup-method i {
    color: var(--icon-color);
    font-size: 16px;
}

.backup-status {
    padding: 12px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: #16A34A;
    font-weight: 500;
}

.backup-status i {
    margin-right: 6px;
}

/* Printer Scene (inside laptop) */
.print-scene-type {
    position: relative;
    text-align: center;
    padding: 14px 10px;
    background: #F9FAFB;
    border: 1.5px solid #eee;
    border-radius: 8px;
    transition: var(--transition);
}

.print-scene-type:first-child {
    border-color: var(--primary);
    background: var(--primary-light);
}

.pst-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 8px;
    font-size: 16px;
    margin: 0 auto 6px;
}

.print-scene-type strong {
    display: block;
    font-size: 9px;
    color: var(--heading);
}

.print-scene-type span {
    font-size: 7px;
    color: var(--body);
}

.pst-selected {
    position: absolute;
    top: 6px;
    right: 6px;
    color: var(--primary);
    font-size: 10px;
}

.print-scene-size {
    flex: 1;
    text-align: center;
    padding: 6px 8px;
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 600;
    color: var(--body);
}

.print-scene-size.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.print-scene-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 6px;
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 500;
    color: var(--heading);
}

.print-scene-share i { font-size: 10px; }

.print-scene-export {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 6px;
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 8px;
    font-weight: 500;
    color: var(--heading);
}

.print-scene-export i { font-size: 10px; }

/* Printer Card (legacy) */
.printer-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
}

.printer-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.printer-type {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.printer-type i {
    font-size: 32px;
    color: var(--icon-color);
    margin-bottom: 8px;
}

.printer-type span {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--heading);
}

.printer-type small {
    font-size: 12px;
    color: var(--body);
}

.share-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.share-methods-grid > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--heading);
}

.share-methods-grid > div i {
    color: var(--icon-color);
}

/* Store Scene (inside laptop) */
.store-scene-url {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #F9FAFB;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 7px;
    color: var(--body);
}

.store-copy-btn {
    margin-left: auto;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 4px;
    font-size: 8px;
    cursor: pointer;
}

.store-scene-product {
    text-align: center;
    padding: 10px 6px 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

.ssp-img {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 6px;
    font-size: 14px;
    margin: 0 auto 5px;
}

.ssp-name {
    display: block;
    font-size: 7px;
    color: var(--heading);
    font-weight: 500;
    margin-bottom: 2px;
}

.ssp-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 9px;
    color: var(--heading);
    margin-bottom: 2px;
}

.ssp-stock {
    font-size: 6px;
    font-weight: 600;
}

.store-scene-stat {
    flex: 1;
    text-align: center;
    padding: 6px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.store-scene-stat span {
    display: block;
    font-size: 6px;
    color: var(--body);
}

.store-scene-stat strong {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--heading);
}

.store-scene-share {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 5px;
    font-size: 7px;
    color: var(--heading);
    font-weight: 500;
}

.store-share-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    font-size: 8px;
}

/* Store Card (legacy) */
.store-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.store-mockup { }

.store-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.store-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
}

.store-product {
    text-align: center;
    padding: 16px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.sp-img {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-sm);
    font-size: 20px;
    margin: 0 auto 8px;
}

.store-product span {
    display: block;
    font-size: 12px;
    color: var(--body);
    margin-bottom: 4px;
}

.store-product strong {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--heading);
}

.store-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--icon-color);
    font-weight: 500;
}

.online-store-section {
    padding: 120px 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 120px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.bc-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.05;
    line-height: 1;
}

.bc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 20px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: 120px 0;
}

.industries-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.industry-card:hover .ic-icon {
    background: var(--icon-color);
    color: #fff;
}

.ic-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.industry-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #C91432 50%, #9B0D24 100%);
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.85;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(var(--primary-rgb), 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--heading);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    color: var(--icon-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
}

/* ===== FOOTER ===== */
.footer {
    background: #1A1A1A;
    color: #999;
    padding-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 13px;
    color: #999;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

/* Footer Contact */
.footer-contact { }

.fc-address,
.fc-phones,
.fc-hours,
.fc-email {
    margin-bottom: 14px;
}

.fc-address {
    display: flex;
    
    gap: 10px;
}

.fc-address i,
.fc-hours i {
    color: var(--icon-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.fc-address p,
.fc-hours p {
    font-size: 13px;
    line-height: 1.6;
}

.fc-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-phones a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.fc-phones a i {
    color: var(--icon-color);
    font-size: 12px;
}

.fc-phones a:hover {
    color: var(--primary);
}

.fc-hours {
    display: flex;
    gap: 10px;
}

.fc-email a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.fc-email a i { color: var(--icon-color); }
.fc-email a:hover { color: var(--primary); }

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: #999;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-compliance {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
    padding: 6px 14px;
    background: #252525;
    border-radius: 50px;
}

.compliance-badge i {
    color: var(--icon-color);
}

.footer-registration {
    margin-bottom: 12px;
}

.footer-registration p {
    font-size: 12px;
    color: #666;
}

.footer-copyright p {
    font-size: 13px;
    color: #777;
}

/* ===== ABOUT PAGE ===== */

/* About Hero */
.about-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(170deg, #fff 0%, #FFF8F9 50%, #FFF0F2 100%);
}

.about-hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-hero p {
    font-size: 17px;
    color: #777;
    line-height: 1.8;
}

/* About Story */
.about-story {
    padding: 100px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A2B4A;
}

.about-story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 16px;
}

/* Story Visual Modern Card */
.story-visual-wrapper {
    position: relative;
}

.sv-accent-bar {
    position: absolute;
    top: -10px;
    left: 20px;
    right: 20px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #F59E0B, var(--icon-color));
    border-radius: 6px;
    z-index: 2;
}

.sv-main-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.sv-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.sv-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.sv-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.sv-stat-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-sm);
    font-size: 18px;
    flex-shrink: 0;
}

.sv-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #1A2B4A;
    line-height: 1.2;
}

.sv-stat span {
    font-size: 12px;
    color: var(--body);
}

.sv-highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #FFF8F5, #FFF0F2);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
}

.sv-highlight-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 18px;
    flex-shrink: 0;
}

.sv-highlight h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1A2B4A;
}

.sv-highlight p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body);
}

.sv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sv-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--heading);
}

.sv-tag i {
    color: #16A34A;
    font-size: 12px;
}

/* Floating elements */
.sv-float {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    font-size: 18px;
    z-index: 3;
    animation: sceneFloat 3s ease-in-out infinite;
}

.sv-float-1 {
    top: 20px;
    right: -16px;
    color: #16A34A;
    animation-delay: 0s;
}

.sv-float-2 {
    bottom: 20px;
    left: -16px;
    color: var(--icon-color);
    animation-delay: 1.5s;
}

/* About Stats */
.about-stats {
    padding: 60px 0;
    background: var(--bg-light);
}

.about-stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.about-stat {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.as-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 22px;
    margin: 0 auto 14px;
}

.about-stat h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 4px;
}

.about-stat p {
    font-size: 14px;
    color: var(--body);
}

/* Mission & Vision */
.about-mv {
    padding: 100px 0;
}

.about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-mv-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.amv-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 24px;
    margin-bottom: 20px;
}

.about-mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A2B4A;
}

.about-mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
}

/* About Values */
.about-values {
    padding: 100px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.avc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 22px;
    margin: 0 auto 16px;
}

.about-value-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A2B4A;
}

.about-value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Modern Timeline */
.about-timeline {
    padding: 100px 0;
}

.timeline-modern {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), #EAECF5 80%, transparent);
    transform: translateX(-50%);
}

.tlm-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    margin-bottom: 20px;
    align-items: center;
}

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

.tlm-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.tlm-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tlm-dot.active {
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(237, 26, 59, 0.15);
}

.tlm-year {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 12px;
    border-radius: 50px;
    white-space: nowrap;
}

.tlm-year.active {
    background: var(--primary);
    color: #fff;
}

.tlm-left,
.tlm-right {
    padding: 0 20px;
}

.tlm-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.tlm-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tlm-card.highlight {
    background: linear-gradient(135deg, #FFF8F5, #FFF0F2);
    border-color: var(--primary);
    border-width: 2px;
}

.tlm-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.tlm-icon.green { background: #DCFCE7; color: #16A34A; }
.tlm-icon.blue { background: #DBEAFE; color: #2563EB; }
.tlm-icon.purple { background: #EDE9FE; color: #7C3AED; }
.tlm-icon.yellow { background: #FEF3C7; color: #D97706; }

.tlm-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 4px;
}

.tlm-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline-modern::before {
        left: 20px;
    }

    .tlm-item {
        grid-template-columns: 40px 1fr;
        gap: 0;
    }

    .tlm-left { display: none; }

    .tlm-center {
        grid-row: 1;
        grid-column: 1;
        align-items: center;
    }

    .tlm-right,
    .tlm-left:has(.tlm-card) {
        grid-column: 2;
        padding: 0 0 0 16px;
    }

    /* Show left cards on mobile */
    .tlm-item:nth-child(odd) .tlm-left { display: block; grid-column: 2; padding: 0 0 0 16px; }
    .tlm-item:nth-child(odd) .tlm-right { display: none; }

    .tlm-year { font-size: 11px; padding: 2px 8px; }
    .tlm-card { padding: 16px; gap: 12px; }
    .tlm-icon { width: 38px; height: 38px; font-size: 16px; }
    .tlm-info h4 { font-size: 15px; }
    .tlm-info p { font-size: 13px; }
}

/* Why Choose Us (About) */
.about-why {
    padding: 100px 0;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-why-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.awc-num {
    position: absolute;
    top: -10px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.06;
    line-height: 1;
}

.about-why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A2B4A;
}

.about-why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 30px; }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-stats-grid { flex-wrap: wrap; }
    .about-stat { flex: 0 0 calc(50% - 10px); }
    .about-mv-grid { grid-template-columns: 1fr; }
    .about-values-grid { grid-template-columns: 1fr; }
    .about-why-grid { grid-template-columns: 1fr; }
    .about-story, .about-mv, .about-values, .about-timeline, .about-why { padding: 60px 0; }
}

@media (max-width: 480px) {
    .about-hero h1 { font-size: 26px; }
    .about-stat { flex: 0 0 100%; }
    .about-stat h3 { font-size: 24px; }
}

/* ===== LEGAL PAGES (Privacy Policy, Terms) ===== */

.legal-hero {
    padding: 60px 0 40px;
    text-align: center;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 8px;
}

.legal-hero p {
    font-size: 15px;
    color: var(--body);
}

.legal-content {
    padding: 60px 0 100px;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.legal-toc h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.legal-toc ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal-toc a {
    display: block;
    font-size: 13px;
    color: var(--body);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.legal-toc a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* Legal Body */
.legal-body {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A2B4A;
    margin: 20px 0 10px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 12px;
}

.legal-section ul {
    padding-left: 0;
    margin-bottom: 16px;
}

.legal-section ul li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 6px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.legal-section a {
    color: var(--primary);
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-contact-info {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 12px;
}

.legal-contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.legal-contact-info i {
    color: var(--icon-color);
    width: 18px;
    margin-right: 6px;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-hero h1 { font-size: 30px; }

    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .legal-toc {
        position: static;
    }

    .legal-section h2 { font-size: 20px; }
}

/* ===== PARTNER PAGE ===== */

/* Partner Hero */
.partner-hero {
    padding: 80px 0;
    background: linear-gradient(170deg, #fff 0%, #FFF8F9 50%, #FFF0F2 100%);
}

.partner-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.partner-hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.partner-hero-content > p {
    font-size: 17px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 28px;
}

.partner-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.phs {
    text-align: center;
    padding: 14px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex: 1;
}

.phs strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.phs span {
    font-size: 12px;
    color: var(--body);
}

.partner-login-link {
    margin-top: 12px;
    font-size: 14px;
    color: var(--body);
}

.partner-login-link a {
    color: var(--primary);
    font-weight: 600;
}

.partner-login-link a:hover {
    text-decoration: underline;
}

/* Partner Form */
.phf-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.phf-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 4px;
}

.phf-card > p {
    font-size: 14px;
    color: var(--body);
    margin-bottom: 24px;
}

.phf-group {
    margin-bottom: 16px;
}

.phf-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 6px;
}

.phf-group input,
.phf-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--heading);
    background: #fff;
    transition: var(--transition);
}

.phf-group input:focus,
.phf-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(237, 26, 59, 0.08);
}

/* Partner Benefits */
.partner-benefits {
    padding: 100px 0;
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pb-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.pb-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pb-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 24px;
    margin: 0 auto 16px;
}

.pb-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1A2B4A;
    margin-bottom: 8px;
}

.pb-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Earnings Calculator */
.partner-earnings {
    padding: 100px 0;
}

.earnings-calculator {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.ec-slider-section {
    margin-bottom: 28px;
}

.ec-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 16px;
}

.ec-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #eee;
    border-radius: 6px;
    outline: none;
}

.ec-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(237, 26, 59, 0.3);
}

.ec-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.ec-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    color: var(--body);
}

.ec-current {
    font-weight: 600;
    color: var(--primary);
}

.ec-result {
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.ec-amount {
    text-align: center;
    margin-bottom: 20px;
}

.ec-label-small {
    display: block;
    font-size: 13px;
    color: var(--body);
    margin-bottom: 4px;
}

.ec-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.ec-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ec-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 12px;
    background: #fff;
    border-radius: var(--radius-sm);
}

.ec-row span { color: var(--body); }
.ec-row strong { color: var(--heading); }

.ec-perks h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.ec-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ec-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--body);
}

.ec-perk i {
    color: #16A34A;
    font-size: 14px;
    flex-shrink: 0;
}

/* Success Stories */
.partner-stories {
    padding: 100px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.story-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.sc-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sc-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sc-top strong {
    display: block;
    font-size: 15px;
    color: var(--heading);
}

.sc-top > div:nth-child(2) span {
    font-size: 12px;
    color: var(--body);
}

.sc-earnings {
    margin-left: auto;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #16A34A;
    text-align: right;
}

.sc-earnings small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--body);
}

.story-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    font-style: italic;
}

/* How It Works (Partner) */
.partner-how {
    padding: 100px 0;
}

.partner-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ps-step {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
}

.ps-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.ps-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto 14px;
}

.ps-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1A2B4A;
    margin-bottom: 6px;
}

.ps-step p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--body);
}

.ps-arrow {
    padding: 0 14px;
    color: #ccc;
    font-size: 18px;
    flex-shrink: 0;
}

/* Partner Page Responsive */
@media (max-width: 768px) {
    .partner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .partner-hero-content h1 { font-size: 30px; }
    .partner-hero-stats { flex-direction: column; gap: 12px; }
    .partner-benefits-grid { grid-template-columns: 1fr; }
    .stories-grid { grid-template-columns: 1fr; }
    .partner-steps { flex-direction: column; gap: 20px; }
    .ps-arrow { transform: rotate(90deg); padding: 8px 0; }
    .ec-perks-grid { grid-template-columns: 1fr; }
    .partner-benefits, .partner-earnings, .partner-stories, .partner-how { padding: 60px 0; }
}

@media (max-width: 480px) {
    .partner-hero-content h1 { font-size: 26px; }
    .ec-value { font-size: 32px; }
    .sc-earnings { font-size: 16px; }
}

/* ===== DESKTOP PAGE ===== */

/* Desktop Hero */
.desktop-hero {
    padding: 80px 0;
    background: linear-gradient(170deg, #fff 0%, #FFF8F9 50%, #FFF0F2 100%);
}

.desktop-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.desktop-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.desktop-hero-content > p {
    font-size: 17px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 32px;
}

.desktop-hero-btns {
    margin-bottom: 24px;
}

.desktop-hero-info {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #16A34A;
    font-weight: 500;
}

.desktop-hero-info i {
    margin-right: 4px;
}

.desktop-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dhb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading);
}

.dhb i { color: var(--icon-color); }

/* Desktop Monitor Mockup */
.desktop-monitor {
    max-width: 560px;
    margin: 0 auto;
}

.dm-screen {
    background: #1E293B;
    border-radius: 10px 10px 0 0;
    padding: 5px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.dm-ui {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    min-height: 280px;
}

.dm-sidebar {
    width: 120px;
    background: #1A2B4A;
    padding: 12px 0;
    flex-shrink: 0;
}

.dm-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    padding: 4px 14px 12px;
}

.dm-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 10px;
    color: #8899B0;
    border-left: 2px solid transparent;
}

.dm-nav.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-left-color: var(--primary);
}

.dm-nav.active i { color: var(--primary); }
.dm-nav i { font-size: 10px; width: 14px; text-align: center; }

.dm-main {
    flex: 1;
    background: #F9FAFB;
    overflow: hidden;
}

.dm-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    color: var(--heading);
}

.dm-topbtns { display: flex; gap: 4px; }

.dm-tb {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dm-tb.red { background: var(--primary); color: #fff; }
.dm-tb.blue { background: #3B82F6; color: #fff; }

.dm-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
}

.dm-card {
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #eee;
    background: #fff;
}

.dm-card span { display: block; font-size: 7px; color: var(--body); }
.dm-card strong { font-family: var(--font-heading); font-size: 11px; color: var(--heading); }

.dm-card.c1 { border-left: 3px solid var(--primary); }
.dm-card.c2 { border-left: 3px solid #3B82F6; }
.dm-card.c3 { border-left: 3px solid #16A34A; }
.dm-card.c4 { border-left: 3px solid #F59E0B; }

.dm-chart-area {
    padding: 8px 10px;
}

.dm-chart-svg {
    width: 100%;
    height: 60px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
}

.dm-stand { display: flex; flex-direction: column; align-items: center; }
.dm-neck { width: 60px; height: 20px; background: linear-gradient(to bottom, #ccc, #aaa); border-radius: 0 0 4px 4px; }
.dm-base { width: 140px; height: 8px; background: linear-gradient(to bottom, #bbb, #999); border-radius: 0 0 10px 10px; margin-top: -1px; }

/* Desktop Features */
.desktop-features {
    padding: 100px 0;
}

.desktop-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.df-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.df-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.df-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 22px;
    margin: 0 auto 16px;
}

.df-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A2B4A;
}

.df-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
}

/* Desktop vs Mobile Compare */
.desktop-compare {
    padding: 100px 0;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.compare-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
}

.cc-header {
    padding: 28px 28px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.cc-header i {
    font-size: 36px;
    color: var(--icon-color);
    margin-bottom: 12px;
    display: block;
}

.cc-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 4px;
}

.cc-header span {
    font-size: 14px;
    color: var(--body);
}

.desktop-card { border-color: var(--primary); }
.desktop-card .cc-header { background: linear-gradient(135deg, #FFF8F5, #FFF0F2); }
.desktop-card .cc-header i { color: var(--primary); }

.cc-list {
    list-style: none;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.cc-list li i {
    color: #16A34A;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.compare-card .pc-btn {
    margin: 0 28px 28px;
}

/* System Requirements */
.desktop-sysreq {
    padding: 100px 0;
}

.sysreq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sysreq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.sysreq-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.sr-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: var(--radius-md);
    font-size: 20px;
    margin: 0 auto 14px;
}

.sysreq-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1A2B4A;
}

.sysreq-card p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

/* Install Steps */
.desktop-install {
    padding: 100px 0;
}

.install-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.install-step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
}

.is-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
}

.is-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAECF5;
    color: var(--icon-color);
    border-radius: 50%;
    font-size: 22px;
    margin: 0 auto 16px;
}

.install-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1A2B4A;
}

.install-step p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

.install-arrow {
    padding: 0 16px;
    color: #ccc;
    font-size: 20px;
    flex-shrink: 0;
}

/* Desktop Page Responsive */
@media (max-width: 768px) {
    .desktop-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .desktop-hero-content h1 { font-size: 30px; }
    .desktop-features-grid { grid-template-columns: 1fr; }
    .compare-grid { grid-template-columns: 1fr; max-width: 400px; }
    .sysreq-grid { grid-template-columns: 1fr; }
    .install-steps { flex-direction: column; gap: 20px; }
    .install-arrow { transform: rotate(90deg); padding: 8px 0; }
    .desktop-features, .desktop-compare, .desktop-sysreq, .desktop-install { padding: 60px 0; }
}

@media (max-width: 480px) {
    .desktop-hero-content h1 { font-size: 26px; }
    .desktop-hero-badges { flex-direction: column; }
    .dm-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .benefits-grid,
    .industries-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 { font-size: 36px; }
    .section-header h2 { font-size: 30px; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 767px) {
    .scene-circle { display: none; }
}

@media (max-width: 768px) {
    .container-full { padding: 0 20px; }

    .mobile-toggle { display: flex; }

    /* ===== DRAWER / OFFCANVAS ===== */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 300px !important;
        height: 100% !important;
        background: #fff !important;
        z-index: 9999 !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        overflow-y: auto !important;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .offcanvas-overlay.active {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0,0,0,0.5) !important;
        z-index: 9998 !important;
    }

    /* Drawer header */
    .offcanvas-header-li {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
       padding: 5px 13px;
        border-bottom: 1px solid #eee;
        flex-shrink: 0;
        background: #fff;
        width: 100%;
    }

    .offcanvas-title {
        font-family: var(--font-heading);
        font-size: 20px;
        font-weight: 700;
        color: var(--heading);
    }

    .offcanvas-close {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f5f5f5;
        border: none;
        border-radius: 50%;
        font-size: 18px;
        color: #333;
        cursor: pointer;
    }

    .offcanvas-close:hover {
        background: #eee;
    }

    /* Drawer nav links */
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #f5f5f5;
        font-size: 15px;
        color: var(--heading);
        text-align: left;
        justify-content: flex-start;
    }

    .nav-link:hover {
        background: #f9f9f9;
    }

    .nav-login {
        margin: 20px !important;
        text-align: center !important;
        justify-content: center !important;
        width: calc(100% - 40px) !important;
        border-radius: var(--radius-sm) !important;
        order: 99;
    }

    /* Drawer accordion dropdowns */
    .nav-dropdown,
    .nav-dropdown-small { position: relative; }

    /* Small dropdown (Try mobile app) - mobile accordion */
    .nav-dropdown-small:hover .small-dropdown {
        opacity: 0;
        visibility: hidden;
    }

    .small-dropdown {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        min-width: unset !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #FAFAFA;
    }

    .small-dropdown.open {
        max-height: 200px;
        border-top: 1px solid #f0f0f0 !important;
        padding: 6px 0 !important;
    }

    .small-dropdown a {
        padding: 12px 20px 12px 36px;
        font-size: 14px;
        border-radius: 0;
    }

    .dropdown-toggle-small {
        justify-content: space-between !important;
    }

    .dropdown-arrow-small {
        margin-left: auto;
        color: #999;
    }

    .nav-dropdown-small.open .dropdown-arrow-small {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .dropdown-toggle {
        justify-content: space-between !important;
    }

    .dropdown-arrow {
        font-size: 11px;
        color: #999;
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--primary);
    }

    /* Reset all desktop dropdown styles */
    .solution-dropdown,
    .nav-dropdown:hover .solution-dropdown,
    .solution-dropdown.open {
        position: static !important;
        box-shadow: none !important;
        border-top: none !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        min-width: unset !important;
    }

    /* Hidden by default */
    .solution-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: #FAFAFA;
    }

    /* Visible when open */
    .solution-dropdown.open {
        max-height: 800px;
        border-top: 1px solid #f0f0f0 !important;
        padding: 8px 0 12px !important;
    }

    .solution-dropdown-inner {
        flex-direction: column;
        gap: 12px;
        padding: 4px 12px;
    }

    .solution-divider { display: none; }

    .solution-col h4 {
        font-size: 12px;
        margin-bottom: 8px;
        padding: 6px 10px;
        color: var(--body);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
        background: #f0f0f0;
        border-radius: 6px;
    }

    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px 6px;
    }

    .solution-grid a {
        padding: 10px 8px;
        font-size: 13px;
        border-radius: 6px;
    }

    .solution-grid a:hover {
        background: #eee;
    }

    .sol-icon { width: 30px; height: 30px; font-size: 13px; }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero { padding: 40px 0 60px; }
    .hero h1 { font-size: 32px; }
    .hero-desc { font-size: 15px; }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 32px 20px;
    }

    .stat-item {
        flex: 0 0 calc(33.33% - 20px);
    }

    .stat-icon { font-size: 34px; margin-bottom: 12px; }
    .stat-text h3 { font-size: 18px; }

    .feature-scene { padding: 20px 10px; }
    .laptop-mockup { max-width: 100%; }
    .ls-sidebar { width: 80px; }
    .ls-nav-item { font-size: 7px; padding: 4px 8px; }
    .whatsapp-float { width: 40px; height: 40px; font-size: 20px; }
    .plane-float { font-size: 22px; }
    .envelope-float { font-size: 28px; }

    .hero-image { min-height: 360px; }
    .monitor-mockup { width: 100%; }
    .phone-mockup { width: 120px; left: -10px; }
    .upi-card { top: 10px; left: 0; padding: 8px 12px; font-size: 10px; }
    .hero-btn { padding: 16px 36px; font-size: 16px; width: 100%; justify-content: center; }

    .feature-row,
    .feature-row.reverse,
    .feature-row.img-left,
    .highlight-grid,
    .highlight-grid.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .feature-row.img-left .feature-content,
    .feature-row.img-left .feature-visual {
        order: unset;
    }

    .detail-features-grid { grid-template-columns: 1fr; }

    .feature-section,
    .highlight-section,
    .online-store-section,
    .detailed-features,
    .benefits-section,
    .industries-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .feature-content h2,
    .highlight-content h2 {
        font-size: 26px;
    }

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

    .benefits-grid,
    .industries-carousel {
        grid-template-columns: 1fr;
    }

    .detail-feature-block {
        flex-direction: column;
        padding: 20px;
    }

    .cta-content h2 { font-size: 28px; }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-compliance { gap: 12px; }

    .inv-stats-row { grid-template-columns: 1fr; }
    .pd-overview { grid-template-columns: 1fr; }
    .gst-report-cards { grid-template-columns: 1fr; }
    .store-products { grid-template-columns: repeat(3, 1fr); }
    .pd-pay-icons { grid-template-columns: repeat(3, 1fr); }

    .speed-features {
        flex-direction: column;
        align-items: center;
    }

    .speed-number { font-size: 56px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .stat-item { flex: 0 0 calc(50% - 20px); }
    .stat-icon { font-size: 30px; }
    .stat-text h3 { font-size: 16px; }
    .hero-image { min-height: 300px; }
    .phone-mockup { width: 100px; left: -5px; }
    .btn-lg { padding: 14px 28px; font-size: 15px; }

    .footer-main { grid-template-columns: 1fr; }

    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-white, .btn-ghost { width: 100%; justify-content: center; }

    .cta-trust { flex-direction: column; align-items: center; }
    .footer-compliance { flex-direction: column; align-items: center; }

    .store-products { grid-template-columns: 1fr; }
    .printer-types { grid-template-columns: 1fr; }
    .backup-methods { grid-template-columns: 1fr; }
    .share-methods-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-pay-icons { grid-template-columns: repeat(3, 1fr); }
    .pd-reminder-methods { flex-direction: column; }

    .mi-thead, .mi-trow {
        grid-template-columns: 2fr 0.5fr 1fr 1fr;
        font-size: 11px;
    }
}


/* pricing Page */


/* ===== PRICING PAGE STYLES ===== */

/* Pricing Hero */
.pricing-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(170deg, #fff 0%, #FFF8F9 50%, #FFF0F2 100%);
}

.pricing-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1A2B4A;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pricing-hero > .container > p {
    font-size: 17px;
    color: #777;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: #999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.toggle-label.active {
    color: #1A2B4A;
    font-weight: 600;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: #ddd;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-knob {
    left: 27px;
}

.save-tag {
    padding: 3px 8px;
    background: #DCFCE7;
    color: #16A34A;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    margin-left: 4px;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 40px 0 0px;
    background: #fff;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 40px rgba(237,26,59,0.12);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-6px);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.pricing-card.popular .pc-head {
    padding-top: 48px;
}

/* Card Head */
.pc-head {
    padding: 32px 28px 0;
    text-align: center;
}

.pc-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    margin: 0 auto 14px;
}

.pc-icon.silver { background: #F3F4F6; color: #6B7280; }
.pc-icon.gold { background: #FEF3C7; color: #D97706; }
.pc-icon.diamond { background: #EDE9FE; color: #7C3AED; }

.pc-head h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A2B4A;
    margin-bottom: 4px;
}

.pc-head p {
    font-size: 14px;
    color: #999;
}

/* Card Price */
.pc-price {
    text-align: center;
    padding: 20px 28px 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.pc-currency {
    font-size: 22px;
    font-weight: 700;
    color: #1A2B4A;
    margin-top: 8px;
}

.pc-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #1A2B4A;
    line-height: 1;
}

.pc-period {
    font-size: 15px;
    color: #999;
    align-self: flex-end;
    margin-bottom: 8px;
}

.pc-tagline {
    text-align: center;
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
}

/* Card Buttons */
.pc-btn {
    display: block;
    margin: 0 28px 24px;
    padding: 14px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pc-btn.filled {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.pc-btn.filled:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(237,26,59,0.3);
}

.pc-btn.outline {
    background: transparent;
    color: #1A2B4A;
    border: 2px solid #ddd;
}

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

/* Card Divider */
.pc-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0 28px 20px;
}

/* Card Features */
.pc-features {
    list-style: none;
    padding: 0 28px 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.pc-features li i {
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pc-features li.included {
    color: #444;
}

.pc-features li.included i {
    color: #16A34A;
}

.pc-features li.excluded {
    color: #ccc;
}

.pc-features li.excluded i {
    color: #ddd;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table thead th {
    padding: 18px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1A2B4A;
    text-align: center;
    background: #FAFAFA;
    border-bottom: 2px solid #eee;
}

.comparison-table thead th:first-child {
    text-align: left;
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.comparison-table thead th.highlight {
    background: #FFF5F6;
    color: var(--primary);
}

.comparison-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: #555;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.comparison-table tbody td.highlight {
    background: #FFFBFC;
}

.comparison-table tbody td .fa-check {
    color: #16A34A;
    font-size: 15px;
}

.comparison-table tbody td .fa-xmark.no {
    color: #ddd;
    font-size: 15px;
}

.category-row td {
    font-family: 'Poppins', sans-serif;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #FAFAFA;
    padding: 12px 20px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 30px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }

    .comparison-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 26px;
    }

    .pricing-toggle {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Pricing Page End */