/* ==========================================================================
   M4K COMPUTER SOLUTIONS - 4MSOFT DESIGN SYSTEM & STYLES (LIGHT THEME)
   ========================================================================== */

:root {
    /* Main Backgrounds - Crisp Light Palette */
    --primary-bg: #f8fafc;
    --secondary-bg: #ffffff;
    --card-bg: #ffffff;
    --section-alt-bg: #f1f5f9;
    
    /* Colors extracted directly from the M4K Logo */
    --brand-navy: #1B365D;
    --brand-navy-light: #2A4D80;
    --brand-navy-dark: #0D1C33;
    --brand-teal: #00A896;
    --brand-teal-light: #02C39A;
    --brand-gold: #D4AF37;
    --brand-gold-light: #E5BA42;
    --brand-gold-dark: #B89225;
    
    --brand-blue: #00A896;
    --brand-cyan: #00A896;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    
    /* Typography - High Contrast Dark Text for Light Theme */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #ffffff;
    
    --border-light: #e2e8f0;
    --border-glow: rgba(0, 168, 150, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(27, 54, 93, 0.05);
    --shadow-md: 0 10px 25px rgba(27, 54, 93, 0.08);
    --shadow-lg: 0 20px 40px rgba(27, 54, 93, 0.12);
    --shadow-glow: 0 10px 30px -10px rgba(0, 168, 150, 0.3);
    --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-navy);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-teal) 60%, var(--brand-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--brand-navy);
}

.teal-text {
    color: var(--brand-teal);
}

.gold-text {
    color: var(--brand-gold-dark);
}

.text-center { text-align: center; }
.text-green { color: var(--accent-green) !important; }
.text-blue { color: var(--brand-teal) !important; }
.text-teal { color: var(--brand-teal) !important; }
.text-orange { color: var(--accent-orange) !important; }
.text-white { color: #ffffff !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-teal) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 168, 150, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: var(--brand-navy-dark);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: #ffffff;
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

.btn-outline:hover {
    background: var(--brand-navy);
    color: #ffffff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background-color: #1eb956;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.btn-sm { padding: 8px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }
.btn-block { width: 100%; }

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.75s ease;
}

.shine-effect:hover::after {
    left: 140%;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
    background: var(--brand-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    margin-right: 25px;
}

.top-bar-info i {
    color: var(--brand-teal-light);
    margin-right: 6px;
}

.top-bar-tagline span {
    color: var(--brand-gold-light);
    font-weight: 600;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 168, 150, 0.25));
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
    border: 2px solid var(--brand-teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.2px;
    color: var(--brand-navy);
    white-space: nowrap;
    line-height: 1.2;
}

.brand-subtext {
    font-size: 0.72rem;
    color: var(--brand-teal);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin-left: 40px;
    margin-right: 20px;
    flex-shrink: 0;
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-navy);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-teal);
    border-radius: var(--radius-full);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--brand-navy);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION - LIGHT THEME */
.hero-section {
    position: relative;
    padding: 80px 0 100px 0;
    background: linear-gradient(180deg, #edf4f8 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg-shapes .glow-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: rgba(0, 168, 150, 0.12);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.12);
    bottom: -150px;
    right: -100px;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(27, 54, 93, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 168, 150, 0.08);
    border: 1px solid rgba(0, 168, 150, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--brand-teal);
    font-weight: 700;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-teal);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-banner {
    display: inline-flex;
    flex-direction: column;
    background: #ffffff;
    border-left: 4px solid var(--brand-gold);
    padding: 12px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: -0.5px;
}

.product-tag {
    font-size: 0.95rem;
    color: var(--brand-teal);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-quick-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.quick-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.q-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(0, 168, 150, 0.1);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.quick-feat-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--brand-navy);
}

.quick-feat-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* HERO GRAPHIC / SOFTWARE LAPTOP FRAME (LIGHT THEME ERP) */
.hero-graphic {
    position: relative;
}

.device-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 12px;
}

.device-btn {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.device-btn.active, .device-btn:hover {
    background: var(--brand-navy);
    color: #ffffff;
    border-color: var(--brand-navy);
}

/* REAL USER SOFTWARE DASHBOARD MOCKUP */
.soft-header-real {
    background: #eef2f6;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d1d5db;
    font-size: 0.78rem;
    font-weight: 700;
}

.soft-brand-real {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-icon {
    font-size: 1.2rem;
}

.dash-tab {
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 4px 4px 0 0;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-bottom: none;
    font-size: 0.75rem;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.win-btn {
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 1px solid #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    cursor: pointer;
    border-radius: 2px;
    color: #374151;
}

.win-close:hover {
    background: #ef4444;
    color: #ffffff;
}

.soft-body-real {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 380px;
}

/* Purple Sidebar matching user screenshot */
.soft-sidebar-purple {
    background: #8e0597;
    padding: 10px 0;
    color: #ffffff;
}

.purple-menu-item {
    padding: 9px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    position: relative;
}

.purple-menu-item.active, .purple-menu-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.arrow-right {
    margin-left: auto;
    font-size: 0.65rem;
    opacity: 0.8;
}

.soft-content-real {
    padding: 12px;
    background: #eef2f6;
}

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

.real-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.real-card-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.coral-bg { background: #ff7052; }
.pink-bg { background: #e91e63; }
.green-bg { background: #2e7d32; }
.red-bg { background: #f44336; }
.bright-green-bg { background: #4caf50; }

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.card-num-val {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    margin: 1px 0;
}

.card-sub-text {
    font-size: 0.65rem;
    color: #9ca3af;
}

.reorder-widget {
    background: #ffffff;
}

.reorder-head {
    margin-bottom: 6px;
}

.purple-badge {
    background: #8e0597;
    color: #ffffff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 700;
}

.reorder-list {
    font-size: 0.7rem;
}

.reorder-item {
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 4px;
    font-weight: 600;
    color: #374151;
}

.yellow-highlight {
    background: #fef08a;
    color: #854d0e;
}

.soft-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.soft-logo-badge {
    background: var(--brand-teal);
    color: #ffffff;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.soft-search {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    width: 200px;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-right: 4px;
}

.soft-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 380px;
}

.soft-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--border-light);
    padding: 12px 8px;
}

.soft-menu-item {
    padding: 8px 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    border-radius: 6px;
    margin-bottom: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.soft-menu-item.active, .soft-menu-item:hover {
    background: rgba(0, 168, 150, 0.1);
    color: var(--brand-teal);
}

.soft-content {
    padding: 12px;
    background: #f1f5f9;
}

.dashboard-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dashboard-header-row h3 {
    font-size: 0.95rem;
    color: var(--brand-navy);
}

.date-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 8px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.metric-head {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.metric-sub {
    font-size: 0.65rem;
    margin-top: 2px;
    font-weight: 600;
}

.soft-rows {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.soft-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px;
    box-shadow: var(--shadow-sm);
}

.box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 6px;
}

.dot-legend {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--brand-teal);
    border-radius: 50%;
}

.simulated-chart {
    width: 100%;
}

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

.chart-days {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: var(--text-muted);
    padding: 0 4px;
}

.mini-table {
    font-size: 0.68rem;
}

.mini-table .row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed var(--border-light);
}

.mini-table .row.header {
    color: var(--text-muted);
    font-weight: 700;
}

.recent-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.68rem;
    text-align: left;
}

.recent-table th {
    color: var(--text-muted);
    padding: 4px 6px;
    border-bottom: 1px solid var(--border-light);
}

.recent-table td {
    padding: 5px 6px;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-primary);
}

.pill {
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
}

.pill-sale { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.pill-pur { background: rgba(0, 168, 150, 0.15); color: var(--brand-teal); }
.pill-rcpt { background: rgba(212, 175, 55, 0.2); color: var(--brand-gold-dark); }

.laptop-base {
    background: #475569;
    height: 12px;
    border-radius: 0 0 10px 10px;
    position: relative;
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.notch {
    width: 60px;
    height: 4px;
    background: #1e293b;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

/* Floating Mobile Card Companion */
.mobile-companion-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 180px;
    background: #ffffff;
    border: 2px solid var(--brand-teal);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--brand-teal);
    font-weight: 700;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 4px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
}

.m-card-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.m-quick-actions {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.m-btn {
    flex: 1;
    background: var(--brand-navy);
    border: none;
    color: #ffffff;
    font-size: 0.6rem;
    padding: 4px 0;
    border-radius: 4px;
    cursor: pointer;
}

/* ACHIEVEMENT STATS COUNTER BAR */
.stats-bar-section {
    background: var(--brand-navy);
    color: #ffffff;
    padding: 35px 0;
    box-shadow: 0 10px 30px rgba(27, 54, 93, 0.2);
    position: relative;
    z-index: 10;
}

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

.stat-card {
    text-align: center;
    padding: 10px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-gold-light);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.stat-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* OUR SERVICES SECTION */
.services-section {
    background: #ffffff;
}

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

.service-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 30px 22px;
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-md);
}

.s-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 168, 150, 0.1);
    color: var(--brand-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--brand-navy);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-badge {
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(27, 54, 93, 0.08);
    color: var(--brand-navy);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.section-header {
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.sub-heading {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--brand-teal);
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.sub-heading.light {
    color: var(--brand-gold-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--brand-navy);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* FEATURES SECTION & CARDS */
.features-section {
    background: #ffffff;
}

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

.feature-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: var(--brand-teal);
    box-shadow: var(--shadow-md);
}

.feature-card.highlight-card {
    border-color: var(--brand-gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, #ffffff 100%);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--brand-gold);
    color: var(--brand-navy-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.icon-cyan { background: rgba(0, 168, 150, 0.1); color: var(--brand-teal); }
.icon-blue { background: rgba(27, 54, 93, 0.1); color: var(--brand-navy); }
.icon-teal { background: rgba(2, 195, 154, 0.15); color: var(--brand-teal); }
.icon-gold { background: rgba(212, 175, 55, 0.15); color: var(--brand-gold-dark); }
.icon-dark { background: rgba(15, 23, 42, 0.08); color: var(--brand-navy); }

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--brand-navy);
}

.feature-tagline {
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-bullets li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* DEMO SIMULATOR SECTION */
.demo-section {
    background: var(--section-alt-bg);
}

.demo-tabs-container {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.demo-tabs {
    display: flex;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-btn:hover {
    color: var(--brand-navy);
    background: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
    color: var(--brand-teal);
    background: #ffffff;
    border-bottom: 3px solid var(--brand-teal);
}

.demo-display-screen {
    padding: 30px;
}

.sim-content {
    display: none;
}

.sim-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.sim-header h4 {
    font-size: 1.3rem;
    color: var(--brand-navy);
}

.sim-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.badge-status-green, .badge-status-blue, .badge-status-gold {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-status-green { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.badge-status-blue { background: rgba(0, 168, 150, 0.15); color: var(--brand-teal); }
.badge-status-gold { background: rgba(212, 175, 55, 0.2); color: var(--brand-gold-dark); }

/* Billing Simulator Grid */
.billing-sim-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 25px;
}

.sim-item-picker h5 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--brand-navy);
}

.item-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.add-item-btn {
    background: #f8fafc;
    border: 1px solid var(--border-light);
    color: var(--brand-navy);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s;
}

.add-item-btn:hover {
    background: var(--brand-teal);
    color: #ffffff;
    border-color: var(--brand-teal);
    transform: translateX(4px);
}

.sim-invoice-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.invoice-mini-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
    color: var(--brand-navy);
}

.sim-invoice-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.sim-invoice-table th {
    text-align: left;
    color: var(--text-muted);
    padding: 8px 4px;
    border-bottom: 1px solid var(--border-light);
}

.sim-invoice-table td {
    padding: 8px 4px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
}

.invoice-summary {
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
    font-size: 0.9rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    color: var(--text-secondary);
}

.summary-line.grand-total {
    font-size: 1.1rem;
    color: var(--brand-navy);
    font-weight: 800;
    border-top: 1px dashed var(--border-light);
    padding-top: 6px;
    margin-top: 6px;
}

.sim-invoice-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Inventory Simulator Table */
.table-responsive {
    overflow-x: auto;
}

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

.inventory-table th {
    background: #f8fafc;
    padding: 12px 16px;
    color: var(--brand-navy);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.inventory-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.stock-badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}

.stock-badge.in-stock { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.stock-badge.low-stock { background: rgba(212, 175, 55, 0.2); color: var(--brand-gold-dark); }
.stock-badge.out-stock { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* GST Cards */
.gst-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gst-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.gst-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--brand-navy);
}

.gst-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-teal);
    margin-bottom: 6px;
}

.gst-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Analytics Row */
.analytics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.analytics-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.analytics-box h5 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--brand-navy);
}

.progress-bar-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pg-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 4px;
    color: var(--text-secondary);
    font-weight: 600;
}

.pg-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.pg-fill {
    height: 100%;
    background: var(--brand-navy);
    border-radius: var(--radius-full);
}

.pg-fill.bg-teal { background: var(--brand-teal); }
.pg-fill.bg-gold { background: var(--brand-gold); }

.flex-center-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trophy-icon {
    font-size: 3rem;
    color: var(--brand-gold-dark);
    margin-bottom: 15px;
}

/* BENEFITS & WHY US SECTION */
.benefits-banner {
    background: var(--brand-navy);
    color: #ffffff;
    padding: 80px 0;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-teal-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.why-us-card.feature-span-wide {
    grid-column: span 3;
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-color: var(--brand-gold-light);
}

.w-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 168, 150, 0.2);
    color: var(--brand-teal-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.why-us-card.feature-span-wide .w-icon {
    margin-bottom: 0;
    color: var(--brand-gold-light);
    background: rgba(212, 175, 55, 0.2);
}

.why-us-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.why-us-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.margin-top-40 {
    margin-top: 40px;
}

.banner-bottom-tagline {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.gold-sparkle {
    color: var(--brand-gold-light);
    margin: 0 10px;
}

/* INDUSTRIES SECTION */
.industries-section {
    background: #ffffff;
}

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

.ind-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s;
}

.ind-card:hover {
    border-color: var(--brand-teal);
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.ind-card i {
    font-size: 2.2rem;
    color: var(--brand-teal);
    margin-bottom: 15px;
}

.ind-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--brand-navy);
}

.ind-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* CONTACT & DEMO REQUEST FORM */
.contact-section {
    background: var(--section-alt-bg);
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-info-col h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--brand-navy);
}

.contact-info-col p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.c-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.c-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 168, 150, 0.1);
    color: var(--brand-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.c-detail-item strong {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.c-detail-item p, .phone-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.phone-link:hover {
    color: var(--brand-teal);
}

.demo-form {
    background: var(--primary-bg);
    border: 1px solid var(--border-light);
    padding: 35px;
    border-radius: var(--radius-md);
}

.demo-form h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--brand-navy);
}

.demo-form p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-teal);
    box-shadow: 0 0 10px rgba(0, 168, 150, 0.2);
}

.form-input option {
    background: #ffffff;
    color: var(--text-primary);
}

.form-feedback {
    margin-top: 15px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

/* FOOTER - RICH DARK NAVY FOR CONTRAST */
.site-footer {
    background: var(--brand-navy-dark);
    border-top: 1px solid var(--border-light);
    padding: 70px 0 30px 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-tagline {
    color: var(--brand-gold-light);
    font-weight: 600;
    margin: 10px 0;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-links-col h4, .footer-contact-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links-col a:hover {
    color: var(--brand-teal-light);
}

.footer-contact-col p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-col i {
    color: var(--brand-teal-light);
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.social-icons a:hover {
    background: var(--brand-teal);
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

/* FLOATING QUICK CALL BUTTONS FOR MOBILE */
.floating-quick-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.call-float { background: var(--brand-gold); color: var(--brand-navy-dark); }
.wa-float { background: #25D366; color: #ffffff; }

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .why-us-grid, .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-card.feature-span-wide {
        grid-column: span 2;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-card-wrapper {
        grid-template-columns: 1fr;
    }

    .real-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .top-bar-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }

    .top-bar-info span {
        margin-right: 0;
    }

    .top-bar-tagline { display: none; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        z-index: 1001;
    }

    .nav-links.show { display: flex; }

    .mobile-toggle { display: block; }
    
    /* Navbar CTA adjustment */
    .nav-cta .btn {
        display: none;
    }

    .brand-logo-img {
        height: 50px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtext {
        font-size: 0.65rem;
    }

    /* Hero section responsive tweaks */
    .hero-section {
        padding: 40px 0 60px 0;
    }

    .hero-title { 
        font-size: 2.2rem; 
    }

    .product-name { 
        font-size: 1.6rem; 
    }

    .product-tag {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-quick-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 15px; }
    .stat-card:last-child { border-bottom: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-card.feature-span-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
    .industries-grid { grid-template-columns: 1fr; }
    .gst-cards-row { grid-template-columns: 1fr; }
    .analytics-row { grid-template-columns: 1fr; }
    .billing-sim-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; }
    .soft-body { grid-template-columns: 1fr; }
    .soft-sidebar { display: none; }

    /* Software Laptop Mockup Mobile scaling (preserve full desktop dashboard look, scaled down) */
    .laptop-frame {
        transform: scale(0.85);
        transform-origin: top center;
        margin-bottom: -40px;
    }
    
    .soft-content-real {
        overflow-x: auto;
    }
    
    /* Interactive Simulator Table Responsiveness */
    .table-wrapper, .sim-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .demo-form {
        padding: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .floating-quick-call { display: flex; }
}

@media (max-width: 480px) {
    .laptop-frame {
        transform: scale(0.68);
        transform-origin: top center;
        margin-bottom: -110px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .badge-pill {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    .btn-lg {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .floating-quick-call {
        bottom: 15px;
        right: 15px;
        left: 15px;
        flex-direction: row;
    }

    .float-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}
