:root {
    --bg-main: #0B0F19;
    --bg-card: rgba(20, 26, 46, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --primary: #3B82F6;
    --primary-hover: #2563EB;
    --secondary: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --font-family: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.04), transparent 35%);
    background-attachment: fixed;
}

/* Glassmorphism Styles */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Login Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 18, 0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.login-card {
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-radius: 24px;
    padding: 40px 32px;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.qr-container {
    background: white;
    width: 220px;
    height: 220px;
    margin: 0 auto 24px auto;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.qr-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.instructions p {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.instructions i {
    color: var(--primary);
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 24px;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.status-badge.ok {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--secondary);
}

/* App Main Layout */
#app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.top-nav {
    height: 70px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tenant-tag {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-profile img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

.user-profile span {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.icon-btn:hover {
    color: var(--danger);
}

.main-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar Styles */
.sidebar {
    width: 240px;
    background: rgba(15, 22, 42, 0.5);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 0;
}

.side-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.menu-item:hover, .menu-item.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--text-main);
}

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

.sidebar-footer {
    padding: 0 24px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--danger);
}

.status-indicator .dot.active {
    background: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
}

/* Content Area */
.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
}

.app-section {
    display: none;
}

.app-section.active-section {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.stat-icon.income { background: rgba(16, 185, 129, 0.1); color: var(--secondary); }
.stat-icon.tx { background: rgba(59, 130, 246, 0.1); color: var(--primary); }
.stat-icon.premium { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.stat-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-info .stat-val {
    font-size: 22px;
    font-weight: 700;
    margin-top: 4px;
}

/* Middle Grid on Dashboard */
.middle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

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

/* Custom Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.custom-table th {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-main);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.text-center {
    text-align: center;
}

/* Device List */
.device-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
}

.device-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
}

.device-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.device-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* POS Screen Styles */
.pos-layout {
    display: grid;
    grid-template-columns: 2.2fr 1.3fr;
    gap: 24px;
    height: calc(100vh - 134px);
}

.pos-products {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pos-search-bar {
    position: relative;
    margin-bottom: 16px;
}

.pos-search-bar i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.pos-search-bar input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    outline: none;
    font-size: 14px;
    transition: border-color var(--transition-speed);
}

.pos-search-bar input:focus {
    border-color: var(--primary);
}

.category-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    overflow-y: auto;
    padding-right: 8px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.product-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}

.product-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.product-card .stock {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.pos-cart-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.pos-cart-panel h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 12px;
}

.empty-cart-message i {
    font-size: 32px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cart-item-info h4 {
    font-size: 13px;
    font-weight: 600;
}

.cart-item-info p {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qty-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.cart-summary {
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.summary-row.discount input {
    width: 70px;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    text-align: right;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 8px;
}

.payment-method-selector {
    margin-bottom: 24px;
}

.payment-method-selector label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

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

.pay-method-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.pay-method-btn:hover, .pay-method-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-checkout-action {
    width: 100%;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    transition: background var(--transition-speed);
}

.btn-checkout-action:hover {
    background: #0D9488;
}

.btn-checkout-action:disabled {
    background: rgba(16, 185, 129, 0.3);
    color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    cursor: not-allowed;
}

/* Buttons and Badge Elements */
.btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.btn-outline:hover, .btn-outline.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active-tab-content {
    display: block;
}

/* Badge Alert AI */
.ai-badge {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: #A855F7;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.ai-badge.warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--danger);
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.badge {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.badge.success { background: rgba(16, 185, 129, 0.15); color: var(--secondary); }
.badge.danger { background: rgba(239, 68, 68, 0.15); color: var(--danger); }
.badge.warning { background: rgba(245, 158, 11, 0.15); color: var(--warning); }

/* Table and catalog styling */
.catalog-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
}

/* Printing styles designed for Continuous Form Groziie (9.5" x 11") */
@media print {
    /* Hide all layout wrapper elements completely */
    body {
        background: white !important;
        color: black !important;
    }
    
    #app-container, .top-nav, .sidebar, .content-area, .overlay, #login-overlay, #invoice-detail-overlay, .modal-overlay, #landing-page {
        display: none !important;
    }

    #print-area {
        display: block !important;
        position: absolute;
        left: 0;
        top: 0;
        width: 9.5in;
        height: 11in;
        margin: 0;
        padding: 0.6in 0.8in;
        box-sizing: border-box;
        font-family: monospace;
        font-size: 14px;
        line-height: 1.5;
        color: black;
    }

    /* Standard continuous form invoice layout styles */
    .print-invoice-title {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .print-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .print-table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 24px;
    }

    .print-table th {
        border-bottom: 2px solid black;
        border-top: 2px solid black;
        padding: 8px;
        text-align: left;
    }

    .print-table td {
        padding: 8px;
        border-bottom: 1px dashed #777;
    }

    .print-total-section {
        float: right;
        width: 250px;
        margin-top: 10px;
    }

    .print-total-row {
        display: flex;
        justify-content: space-between;
        padding: 4px 0;
    }

    .print-total-row.grand {
        font-weight: bold;
        border-top: 1px solid black;
        padding-top: 8px;
    }

    .print-signatures-row {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        page-break-inside: avoid;
    }

    .print-signature-box {
        text-align: center;
        width: 200px;
    }

    .print-signature-box img {
        max-height: 60px;
        max-width: 150px;
        display: block;
        margin: 4px auto;
        background: white;
        padding: 2px;
        border-radius: 4px;
    }

    .print-footer {
        clear: both;
        text-align: center;
        margin-top: 50px;
        border-top: 1px dashed black;
        padding-top: 20px;
    }

    @page {
        size: 9.5in 11in;
        margin: 0;
    }
}

/* Invoice Detail Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 18, 0.85);
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: #10162D;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--danger);
}

.invoice-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.invoice-meta-col p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.invoice-meta-col span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.invoice-total-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    margin-top: 20px;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    width: 240px;
    font-size: 14px;
    color: var(--text-muted);
}

.invoice-total-row.grand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
    margin-top: 4px;
}

.signature-container {
    margin-top: 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    padding: 16px;
    border-radius: 12px;
    border: 1px dashed var(--border-color);
}

.signature-img {
    max-width: 200px;
    max-height: 100px;
    margin-top: 8px;
    background: white;
    padding: 4px;
    border-radius: 8px;
}

/* Landing Page Styles */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}
.landing-nav .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.landing-nav .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-speed);
}
.landing-nav .nav-links a:hover {
    color: var(--text-main);
}
.landing-hero {
    padding: 100px 8% 80px 8%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.landing-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #F8FAFC 20%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}
.landing-hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.landing-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.btn-premium-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    transition: all var(--transition-speed);
}
.btn-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.45);
}
.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    text-decoration: none;
}
.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.landing-section {
    padding: 80px 8%;
    max-width: 1200px;
    margin: 0 auto;
}
.landing-section-title {
    text-align: center;
    margin-bottom: 60px;
}
.landing-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}
.landing-section-title p {
    color: var(--text-muted);
    font-size: 15px;
}
.features-grid-landing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.feature-landing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-speed);
}
.feature-landing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.feature-landing-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
}
.feature-landing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.feature-landing-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}
.pricing-grid-landing {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.pricing-landing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    width: 350px;
    position: relative;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-landing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(59,130,246,0.15);
}
.pricing-tag-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}
.pricing-landing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-landing-card .desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.pricing-landing-card .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 24px;
}
.pricing-landing-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.pricing-landing-card ul {
    list-style: none;
    margin-bottom: 32px;
    padding-left: 0;
}
.pricing-landing-card ul li {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-landing-card ul li i {
    color: var(--secondary);
}
.pricing-landing-card .btn-pricing-cta {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-speed);
}
.pricing-landing-card.popular .btn-pricing-cta {
    background: var(--primary);
    border: none;
}
.pricing-landing-card .btn-pricing-cta:hover {
    background: var(--primary-hover);
    color: white;
    border-color: var(--primary-hover);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-info-landing {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-info-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 4px;
}
.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 14px;
    color: var(--text-muted);
}
.landing-footer {
    background: rgba(7, 10, 18, 0.95);
    padding: 48px 8% 24px 8%;
    border-top: 1px solid var(--border-color);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-speed);
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    width: 100%;
}
@media (max-width: 768px) {
    .landing-nav {
        padding: 16px 20px;
        flex-direction: column;
        gap: 16px;
    }
    .landing-hero h1 {
        font-size: 36px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid-landing {
        flex-direction: column;
        align-items: center;
    }
    .pricing-landing-card {
        width: 100%;
        max-width: 380px;
    }
}
