/* css/landing-page.css - SaaS Marketing Landing Page styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}

:root {
    --bg-landing: #060913;
    --card-bg-landing: rgba(15, 23, 42, 0.45);
    --primary-landing: #7c4dff;
    --primary-hover-landing: #6200ea;
    --accent-landing: #00e676;
    --text-muted-landing: #94a3b8;
    --bg-glow: rgba(124, 77, 255, 0.12);
}

/* Responsive Helper Spans */
.logo-text-mobile, .btn-text-mobile {
    display: none !important;
}
.logo-text-desktop, .btn-text-desktop {
    display: inline !important;
}

/* Dynamic Sector Themes */
body.landing-page.theme-cafe {
    --primary-landing: #b08968;
    --primary-hover-landing: #8f6a4e;
    --accent-landing: #ffc400;
    --bg-glow: rgba(176, 137, 104, 0.15);
}

body.landing-page.theme-pharmacy {
    --primary-landing: #10b981;
    --primary-hover-landing: #059669;
    --accent-landing: #f43f5e;
    --bg-glow: rgba(16, 185, 129, 0.15);
}

body.landing-page.theme-brand {
    --primary-landing: #7c4dff;
    --primary-hover-landing: #6200ea;
    --accent-landing: #00b0ff;
    --bg-glow: rgba(124, 77, 255, 0.15);
}

body.landing-page.theme-auto {
    --primary-landing: #3b82f6;
    --primary-hover-landing: #2563eb;
    --accent-landing: #10b981;
    --bg-glow: rgba(59, 130, 246, 0.15);
}

body.landing-page {
    background-color: var(--bg-landing);
    color: #f8fafc;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.landing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(6, 9, 19, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}

.landing-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-landing);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
}

.landing-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.landing-nav a {
    color: var(--text-muted-landing);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.landing-nav a:hover {
    color: #fff;
}

.landing-btn {
    background: var(--primary-landing);
    color: #fff;
    border: 1px solid var(--primary-landing);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-btn:hover {
    background: var(--primary-hover-landing);
    box-shadow: 0 0 15px rgba(124, 77, 255, 0.3);
    transform: translateY(-1px);
}

.landing-btn.secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.15);
    color: #fff;
}

.landing-btn.secondary:hover {
    background: rgba(255,255,255,0.05);
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    padding: 100px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--bg-glow) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    transition: background 0.4s ease;
}

.hero-tag {
    background: var(--bg-glow);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--primary-landing);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    max-width: 800px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary-landing), var(--accent-landing));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

.hero-subtitle {
    color: var(--text-muted-landing);
    font-size: 15px;
    max-width: 600px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 80px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-muted-landing);
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-bg-landing);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    border-color: rgba(124, 77, 255, 0.25);
    transform: translateY(-3px);
    background: rgba(15, 23, 42, 0.6);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #a78bfa;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted-landing);
    font-size: 12px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 8%;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg-landing);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
}

.pricing-card.popular {
    border-color: var(--primary-landing);
    box-shadow: 0 10px 30px rgba(124, 77, 255, 0.15);
}

.pricing-card.popular::after {
    content: 'الأكثر شعبية';
    position: absolute;
    top: 15px;
    left: 20px;
    background: var(--primary-landing);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: bold;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.pricing-price span {
    font-size: 12px;
    color: var(--text-muted-landing);
    font-weight: normal;
    font-family: 'Tajawal', sans-serif;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted-landing);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--accent-emerald, #00e676);
}

/* Contact / Request Demo Section */
.contact-section {
    padding: 80px 8%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--card-bg-landing);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 13px;
    outline: none;
    width: 100%;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--primary-landing);
}

.landing-footer {
    padding: 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted-landing);
    font-size: 11px;
}

/* Comparison Section Styles */
.comparison-section {
    padding: 80px 8%;
    background: radial-gradient(circle at center, rgba(124, 77, 255, 0.02) 0%, transparent 80%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 77, 255, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 18px 20px;
    text-align: right;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(124, 77, 255, 0.08);
    font-weight: 800;
    font-size: 13px;
    color: #fff;
}

.comparison-table th:not(:first-child), .comparison-table td:not(:first-child) {
    text-align: center;
}

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

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.comparison-table td.growthos-col {
    background: rgba(0, 230, 118, 0.03);
    color: #fff;
    font-weight: bold;
    border-right: 1px solid rgba(0, 230, 118, 0.1);
    border-left: 1px solid rgba(0, 230, 118, 0.1);
}

.comparison-table th.growthos-col {
    background: rgba(0, 230, 118, 0.1);
    color: #00e676;
    border-right: 1px solid rgba(0, 230, 118, 0.1);
    border-left: 1px solid rgba(0, 230, 118, 0.1);
    font-size: 13.5px;
}

.comparison-icon-yes {
    color: #00e676;
    margin-left: 8px;
    font-size: 14px;
    vertical-align: middle;
}

.comparison-icon-no {
    color: #ff1744;
    margin-left: 8px;
    font-size: 14px;
    vertical-align: middle;
}

/* Industries Section */
.industries-section {
    padding: 80px 8% 40px 8%;
    position: relative;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.industry-card {
    background: var(--card-bg-landing);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.industry-card:hover {
    border-color: var(--primary-landing);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(124, 77, 255, 0.05);
}
.industry-card i {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
}
.industry-card.cafe i { color: var(--accent-amber); }
.industry-card.pharmacy i { color: var(--accent-rose); }
.industry-card.brand i { color: var(--accent-cyan); }
.industry-card.auto i { color: var(--accent-emerald); }

.industry-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.industry-card p {
    color: var(--text-muted-landing);
    font-size: 11.5px;
    line-height: 1.5;
}

/* ==========================================================================
   Interactive Product & Customer Live Simulator Styles
   ========================================================================== */

/* 1. Sector Switcher Tabs */
.sector-tabs-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 30px auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.sector-tab {
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted-landing);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}

.sector-tab i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.sector-tab:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.sector-tab.active {
    background: var(--primary-landing);
    color: #060913;
    border-color: var(--primary-landing);
    box-shadow: 0 0 20px var(--bg-glow);
    font-weight: 800;
}

.sector-tab.active i {
    transform: scale(1.15);
}

/* 2. Simulator Main Container */
.interactive-simulator-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px var(--bg-glow);
    position: relative;
    z-index: 5;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.simulator-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 30px;
    align-items: start;
}

/* 3. Right Column: Controls Panel & Steps */
.simulator-controls-panel {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.simulator-badge {
    align-self: flex-start;
    background: var(--bg-glow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--primary-landing);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.4s ease;
}

.simulator-heading {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.simulator-description {
    color: var(--text-muted-landing);
    font-size: 13px;
    line-height: 1.6;
}

.workflow-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.workflow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-step-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.workflow-step-item.active {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
    border-right: 4px solid var(--primary-landing);
}

.step-badge-num {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.workflow-step-item.active .step-badge-num {
    background: var(--primary-landing);
    color: #060913;
}

.step-text-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-text-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.workflow-step-item.active .step-text-content h4 {
    color: var(--primary-landing);
}

.step-text-content p {
    color: var(--text-muted-landing);
    font-size: 11.5px;
    line-height: 1.5;
}

/* 4. Left Column: Screen Previews Panel */
.simulator-screens-panel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px;
    overflow: hidden;
}

/* Web Dashboard Mockup Style */
.dash-browser-mockup {
    width: 90%;
    margin-left: 5%;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.mockup-header-bar {
    background: #1e293b;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }

.mockup-address-bar {
    flex-grow: 1;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    color: #94a3b8;
    font-size: 10.5px;
    text-align: center;
    padding: 3px 0;
    font-family: monospace;
    max-width: 300px;
    margin: 0 auto;
}

.mockup-body-area {
    display: flex;
    height: 310px;
    font-size: 12px;
    color: #f8fafc;
}

.mockup-sidebar {
    width: 60px;
    background: #0b0f19;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.mockup-logo-symbol {
    width: 28px;
    height: 28px;
    background: var(--primary-landing);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    transition: background 0.4s ease;
}

.mockup-menu-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.mockup-menu-list li {
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    padding: 4px 0;
}

.mockup-menu-list li.active {
    color: var(--primary-landing);
    border-right: 2px solid var(--primary-landing);
}

.mockup-main-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #0f172a;
    padding: 15px;
    overflow-y: auto;
    text-align: right;
}

.mockup-sub-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.mockup-breadcrumb {
    color: #94a3b8;
    font-size: 10.5px;
}

.mockup-sync-status {
    color: #10b981;
    font-size: 10px;
    font-weight: bold;
}

.mockup-inner-view {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Smartphone Overlay Style */
.phone-frame-mockup {
    position: absolute;
    bottom: 15px;
    left: 20px;
    width: 190px;
    height: 330px;
    background: #090d16;
    border: 6px solid #2d3748;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(124, 77, 255, 0.1);
    z-index: 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-top-notch {
    width: 80px;
    height: 14px;
    background: #2d3748;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
}

.phone-screen-content {
    flex-grow: 1;
    padding: 24px 10px 10px 10px;
    overflow-y: auto;
    font-size: 11px;
    color: #f8fafc;
    background: #060913;
    display: flex;
    flex-direction: column;
    text-align: right;
}

/* Inner Simulated Screens Styling */

/* A. POS / Cart Views */
.mock-pos-view {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.mock-pos-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
}
.mock-pos-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10px;
}
.mock-pos-cart {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cart-title {
    font-weight: bold;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 4px;
}
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
}
.cart-total {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 6px;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: var(--accent-landing);
}
.cart-actions-mock {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.pos-pay-btn {
    width: 100%;
    padding: 6px;
    border: none;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.primary-btn-mock {
    background: var(--primary-landing);
    color: #060913;
}
.primary-btn-mock:hover {
    background: var(--primary-hover-landing);
}
.secondary-btn-mock {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}
.mock-pos-products {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-item-mock {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}
.product-item-mock.selected {
    border-color: var(--primary-landing);
    background: rgba(255, 255, 255, 0.03);
}
.prod-badge {
    align-self: flex-start;
    font-size: 8px;
    background: rgba(255,255,255,0.08);
    padding: 1px 4px;
    border-radius: 4px;
    color: #94a3b8;
}

/* B. Mobile QR Menu View */
.phone-qr-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}
.qr-shop-header {
    text-align: center;
    margin-bottom: 8px;
}
.shop-logo {
    font-size: 18px;
}
.qr-shop-header h4 {
    margin: 2px 0;
    font-size: 11px;
}
.qr-shop-header span {
    font-size: 9px;
    color: #94a3b8;
}
.qr-menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex-grow: 1;
}
.qr-menu-item {
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-info h5 {
    font-size: 10px;
    margin: 0;
}
.item-info p {
    font-size: 8px;
    color: #64748b;
    margin: 1px 0;
    line-height: 1.2;
}
.item-info strong {
    font-size: 9px;
    color: var(--primary-landing);
}
.item-counter {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2px 6px;
    font-size: 9px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.counter-btn {
    cursor: pointer;
    font-weight: bold;
}
.qr-submit-btn {
    width: 100%;
    background: var(--primary-landing);
    color: #060913;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
}

/* C. Inventory Views */
.mock-inventory-view {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.section-subtext {
    font-size: 10px;
    color: #64748b;
    margin-top: -4px;
}
.inventory-table-mock {
    width: 100%;
    border-collapse: collapse;
    font-size: 10.5px;
}
.inventory-table-mock th, .inventory-table-mock td {
    padding: 6px 8px;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.inventory-table-mock th {
    color: #64748b;
    font-weight: normal;
}
.badge-mock {
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
}
.badge-mock.warning {
    background: rgba(217, 119, 6, 0.15);
    color: #f59e0b;
}
.badge-mock.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.badge-mock.danger {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}
.inventory-action-cards {
    margin-top: 10px;
}
.action-card-mock {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.action-card-mock i {
    font-size: 16px;
    color: var(--primary-landing);
}
.action-card-mock h5 {
    margin: 0;
    font-size: 11px;
}
.action-card-mock p {
    margin: 2px 0 0 0;
    font-size: 9px;
    color: #64748b;
}
.small-btn-mock {
    margin-right: auto;
    background: var(--primary-landing);
    color: #060913;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
    cursor: pointer;
}

/* D. Phone Notification Views */
.phone-notifications-center {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.phone-status-time {
    text-align: center;
    font-size: 9px;
    color: #64748b;
}
.notif-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(10px);
}
.notif-header {
    display: flex;
    justify-content: space-between;
    font-size: 8.5px;
    color: #94a3b8;
    margin-bottom: 4px;
}
.notif-body strong {
    font-size: 10px;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}
.notif-body p {
    font-size: 9px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.3;
}

/* E. Marketing Analytics Views */
.marketing-header-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.metric-card-mock {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
}
.metric-card-mock span {
    font-size: 8px;
    color: #64748b;
    display: block;
    margin-bottom: 2px;
}
.metric-card-mock strong {
    font-size: 11px;
    color: #fff;
}
.campaign-log-box h5 {
    margin: 0 0 6px 0;
    font-size: 11px;
}
.log-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.log-row {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
}

/* F. Phone WhatsApp Chat Views */
.phone-whatsapp-view {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.whatsapp-header-chat {
    background: #075e54;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.back-arrow {
    font-size: 12px;
}
.chat-contact-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.chat-contact-name h5 {
    margin: 0;
    font-size: 10px;
}
.chat-contact-name span {
    font-size: 7.5px;
    color: #a3e635;
}
.whatsapp-chat-body {
    flex-grow: 1;
    background: #ece5dd;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.chat-bubble {
    background: #fff;
    color: #000;
    padding: 6px 8px;
    border-radius: 8px;
    max-width: 85%;
    font-size: 9.5px;
    line-height: 1.3;
    position: relative;
}
.chat-bubble.received {
    align-self: flex-start;
    border-top-left-radius: 0;
}
.chat-bubble p {
    margin: 0 0 4px 0;
}
.chat-bubble p:last-child {
    margin: 0;
}
.chat-time {
    font-size: 7.5px;
    color: #94a3b8;
    float: left;
    margin-top: 2px;
}
.whatsapp-chat-footer {
    background: #f0f0f0;
    padding: 6px;
}
.whatsapp-input-sim {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 4px 10px;
    color: #888;
    font-size: 9px;
    text-align: right;
}

/* G. Pharmacy / Medical Views Specific */
.rx-info-box {
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}
.rx-info-box h5 {
    margin: 0;
    color: #10b981;
}
.rx-info-box p {
    margin: 0;
    font-size: 10.5px;
    color: #cbd5e1;
}
.copay-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 9.5px;
    color: #94a3b8;
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 6px;
}
.copay-row {
    display: flex;
    justify-content: space-between;
}
.copay-mobile-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px;
    font-size: 9px;
    line-height: 1.3;
}
.copay-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 8px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 6px;
}
.copay-mobile-grid span {
    font-size: 7.5px;
    color: #64748b;
    display: block;
}

/* H. Perfumes / Brand Views Specific */
.tester-stats-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 10.5px;
}
.tester-stat-row {
    display: flex;
    justify-content: space-between;
}
.tester-products-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tester-item-mock {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 8px;
}
.tester-item-mock span {
    display: block;
}
.tester-item-mock .level {
    font-size: 9px;
    color: #94a3b8;
    margin-top: 2px;
}
.progress-bar-mock {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}
.progress-bar-mock .fill {
    height: 100%;
}
.progress-bar-mock .fill.red { background: #ef4444; }
.progress-bar-mock .fill.yellow { background: #f59e0b; }
.progress-bar-mock .fill.green { background: #10b981; }

.tester-confirm-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px;
    font-size: 9px;
    line-height: 1.3;
}
.formulation-summary {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 6px;
    padding: 6px 10px;
}
.formula-item {
    font-size: 10px;
}

/* I. Auto / Services Views Specific */
.auto-bays-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.auto-bay-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 8px;
    text-align: right;
}
.auto-bay-card.active {
    border-color: #00b0ff;
    background: rgba(0, 176, 255, 0.03);
}
.bay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10.5px;
    font-weight: bold;
    margin-bottom: 4px;
}
.auto-bay-card p {
    margin: 0;
    font-size: 9px;
    color: #64748b;
}
.auto-tracking-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px;
}
.tracking-steps-auto {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.t-step {
    font-size: 9px;
    color: #64748b;
}
.t-step.done {
    color: #10b981;
    font-weight: bold;
}
.t-step.active {
    color: #00b0ff;
    font-weight: bold;
    animation: pulse-effect 1.5s infinite;
}

/* 5. General Simulator Animations */
@keyframes pulse-effect {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.flashing-effect {
    animation: flash-animation-mock 1s infinite alternate;
}
@keyframes flash-animation-mock {
    from { opacity: 0.7; box-shadow: 0 0 2px rgba(239, 68, 68, 0.3); }
    to { opacity: 1; box-shadow: 0 0 10px rgba(239, 68, 68, 0.6); }
}

/* 6. Simulator Responsive Styles */
@media (max-width: 900px) {
    .simulator-layout {
        grid-template-columns: 1fr;
    }
    .phone-frame-mockup {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 250px;
        height: 360px;
        margin-top: 20px;
    }
    .simulator-screens-panel {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }
    .dash-browser-mockup {
        width: 100%;
        margin-left: 0;
    }
}

/* ==========================================================================
   Mobile & iPhone Responsiveness Styles (< 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Header styling and layout */
    .landing-header {
        padding: 12px 4%;
    }
    .landing-logo {
        font-size: 16px;
        gap: 6px;
    }
    .landing-logo-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .landing-nav {
        display: none !important; /* Hide navigation links on mobile to prevent squishing */
    }
    .landing-btn {
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 6px;
    }

    /* Hero Section padding & typography */
    .hero-section {
        padding: 50px 4% 30px 4%;
    }
    .hero-tag {
        font-size: 10px;
        padding: 3px 10px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    .hero-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 0 10px;
        line-height: 1.6;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-actions .landing-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 13px;
    }

    /* Sector tabs horizontal swipe/scroll on mobile */
    .sector-tabs-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        padding: 5px 4%;
        margin: 25px 0 15px 0;
        gap: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    .sector-tabs-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    .sector-tab {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 12.5px;
    }

    /* Simulator Container glassmorphism */
    .interactive-simulator-container {
        padding: 15px;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }
    .simulator-layout {
        gap: 20px;
    }
    .simulator-heading {
        font-size: 18px;
        text-align: center;
    }
    .simulator-description {
        font-size: 12px;
        text-align: center;
    }
    .workflow-steps-list {
        gap: 8px;
    }
    .workflow-step-item {
        padding: 12px;
        gap: 10px;
    }
    .step-badge-num {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    
    /* Display ONLY the smartphone simulator mockup on mobile */
    .simulator-screens-panel {
        min-height: auto;
        padding: 15px;
        background: transparent;
        border: none;
    }
    .dash-browser-mockup {
        display: none !important; /* Hide dashboard mockup */
    }
    .phone-frame-mockup {
        position: relative;
        left: auto;
        bottom: auto;
        width: 220px;
        height: 380px;
        margin: 10px auto;
        border-width: 5px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    }
    .phone-screen-content {
        padding: 20px 8px 8px 8px;
    }

    /* Sectors grid stacking */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .industry-card {
        padding: 20px;
    }

    /* Features grid stacking */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .feature-card {
        padding: 20px;
    }

    /* Pricing grid stacking */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-card {
        padding: 24px;
    }

    /* Contact form styling */
    .contact-section {
        padding: 40px 4%;
    }
    .contact-form {
        padding: 20px;
        gap: 12px;
    }

    /* Comparison Table mobile sizing */
    .comparison-table-wrapper {
        border-radius: 12px;
        margin-top: 25px;
    }
    .comparison-table {
        font-size: 11px;
    }
    .comparison-table th, .comparison-table td {
        padding: 12px 10px;
    }
    
    /* Footer */
    .landing-footer {
        padding: 30px 4%;
    }
}
