/* -------------------------------------------------------------
   VEXORA - Premium B2B Video Security Design System (Cyan Slate)
   ------------------------------------------------------------- */

:root {
    --bg-primary: #080c10;
    --bg-secondary: #0c121a;
    --text-primary: #f5f5f7;
    --text-secondary: #8e8e93;
    --accent-color: #22d3ee; /* Glowing Cyan */
    --accent-hover: #0891b2;
    --border-color: rgba(34, 211, 238, 0.12);
    --glass-bg: rgba(8, 12, 16, 0.85);
    --card-bg: rgba(12, 18, 26, 0.7);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Alexandria', 'Cairo', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.max-w-600 { max-width: 600px; margin: 0 auto; }

/* Sticky Header */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 72px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e5ea;
    padding: 6px 14px;
    border-radius: 99px;
    cursor: pointer;
    font-size: 12.5px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.lang-selector:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--accent-color);
}

.nav-link.link-external {
    color: #f59e0b; /* Amber link back to smart home */
}

.header-right {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Alexandria', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.header-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-icon-container {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-home-svg {
    width: 28px; height: 28px;
}

/* Menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 22px; height: 2px;
    background-color: var(--text-primary);
}

/* Custom Hero Section */
.mockup-hero {
    position: relative;
    padding: 140px 0 80px;
    background-image: linear-gradient(rgba(8, 12, 16, 0.85), rgba(8, 12, 16, 0.95)), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-glowing-frame {
    position: relative;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 60%);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.1);
    max-width: 420px;
    overflow: hidden;
}

.switch-mock-img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.live-indicator {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 69, 58, 0.2);
    border: 1px solid #ff453a;
    color: #ff453a;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-main-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-sub-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--accent-color);
    color: #000000;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.2);
}

.hero-cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 211, 238, 0.35);
}

/* Sectors Grid Styling */
.packages-section-wrapper {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.package-card:hover {
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow: 0 10px 40px rgba(34, 211, 238, 0.08);
    transform: translateY(-4px);
}

.card-icon-header {
    display: flex;
    justify-content: center;
    margin-top: -44px;
    margin-bottom: 16px;
    z-index: 10;
}

.circular-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #0c121a;
    border: 1px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.package-img-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.package-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.package-card:hover .package-card-img {
    transform: scale(1.05);
}

.package-header {
    margin-bottom: 20px;
    text-align: center;
}

.package-header h3 {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.pkg-card-desc {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.package-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.package-features li {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li::before {
    content: "●";
    color: var(--accent-color);
    font-size: 10px;
}

.package-cta {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Alexandria', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    width: 100%;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.package-cta:hover {
    background: var(--accent-color);
    color: #000000;
}

/* Sandbox Simulator (Vexora) */
.simulator-sandbox {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header { margin-bottom: 50px; }
.section-subtitle {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    margin: 12px 0 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

.sandbox-container {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.sandbox-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Video Feed Sandbox visual */
.camera-stream-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    margin-bottom: 16px;
}

.camera-feed-img {
    width: 100%;
    display: block;
    max-height: 320px;
    object-fit: cover;
}

.camera-detection-box {
    position: absolute;
    border: 3px solid #ffd60a;
    box-shadow: 0 0 15px rgba(255, 214, 10, 0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}

.camera-detection-box.warning-box {
    border-color: #ffd60a;
    box-shadow: 0 0 15px rgba(255, 214, 10, 0.4);
}

.camera-detection-box.danger-box {
    border-color: #ff453a;
    box-shadow: 0 0 15px rgba(255, 69, 58, 0.4);
}

.ai-target-circle {
    position: absolute;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid #ff453a;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #ff453a;
    pointer-events: none;
    animation: targetPulse 1.2s infinite;
}

@keyframes targetPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.alert-log-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
}

.alert-log-panel h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.alert-logs {
    max-height: 120px;
    overflow-y: auto;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-entry {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    display: flex;
    gap: 12px;
}

.log-entry.info {
    background: rgba(255, 255, 255, 0.03);
    border-right: 3px solid #3b82f6;
}

.log-entry.warning {
    background: rgba(255, 214, 10, 0.05);
    border-right: 3px solid #ffd60a;
}

.log-entry.danger {
    background: rgba(255, 69, 58, 0.05);
    border-right: 3px solid #ff453a;
}

.log-entry .time {
    color: var(--text-secondary);
}

.log-entry .msg {
    color: #ffffff;
}

.simulator-controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Alexandria', sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.mock-btn.active {
    background: var(--accent-color);
    color: #000000;
    border-color: var(--accent-color);
}

.sim-feedback-msg {
    padding: 16px;
    background: rgba(255, 255, 255, 0.01);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    border-right: 3px solid var(--accent-color);
}

/* Booking Form */
.demo-booking-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.form-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.form-subtitle { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 32px; }

.form-progress {
    position: relative;
    margin-bottom: 40px;
}

.progress-bar {
    position: absolute;
    top: 14px;
    left: 12.5%;
    height: 3px;
    background: var(--accent-color);
    width: 12.5%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.progress-steps {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
}

.step-node {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #1c1c1e;
    border: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.step-node.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: #000000;
}

.step-node.completed {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000000;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.progress-labels span {
    font-size: 11px;
    color: var(--text-secondary);
    width: 25%;
    text-align: center;
}

.form-step { display: none; }
.form-step.active { display: block; }

.step-section-title { font-size: 17px; font-weight: 700; margin-bottom: 24px; }

.cards-select-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.select-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.select-card.selected {
    border-color: var(--accent-color);
    background: rgba(34, 211, 238, 0.02);
}

.select-card-logo {
    margin-bottom: 12px;
}

.select-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.select-card p { color: var(--text-secondary); font-size: 13px; }

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.span-2 { grid-column: span 2; }

.input-group label { font-size: 12.5px; font-weight: 600; color: #d1d1d6; }
.input-group input, .input-group select, .input-group textarea {
    background: #1c1c1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
    color: #ffffff;
    font-family: 'Alexandria', sans-serif;
    font-size: 13.5px;
    width: 100%;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.required { color: #ff453a; margin-right: 4px; }

.form-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-next, .btn-submit {
    background: var(--accent-color);
    color: #000000;
    border: none;
    padding: 10px 24px;
    border-radius: 99px;
    cursor: pointer;
    font-family: 'Alexandria', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.btn-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 99px;
    cursor: pointer;
    font-family: 'Alexandria', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

/* Success Card */
.success-card { padding: 20px 0; }
.success-animation-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: rgba(48, 209, 88, 0.1);
}

.checkmark {
    width: 40px; height: 40px;
    stroke: #30d158;
    stroke-width: 5;
    fill: none;
}

.success-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
    text-align: right;
}

.success-summary p { font-size: 13.5px; margin-bottom: 8px; }

.btn-reset {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 99px;
    cursor: pointer;
    font-family: 'Alexandria', sans-serif;
}

/* Footer */
.main-footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 13.5px;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4, .footer-social h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover { color: var(--accent-color); }

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--accent-color);
    color: #000000;
    border-color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-col {
        align-items: center;
    }
    
    .packages-grid, .sandbox-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mockup-hero {
        padding-top: 120px;
    }
    
    .hero-main-title {
        font-size: 32px;
    }
    
    .menu-toggle { display: flex; }
    
    .nav-links {
        display: flex;
        position: absolute;
        top: 72px; left: 0; width: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        gap: 16px;
        
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .form-fields-grid { grid-template-columns: 1fr; }
    .input-group.span-2 { grid-column: span 1; }
}

/* -------------------------------------------------------------
   VEXORA - B2B Security Dashboard Mockup Styles
   ------------------------------------------------------------- */
.dashboard-mockup {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #080c10;
    overflow: hidden;
}
.dashboard-layout {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(8, 12, 16, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.dashboard-sidebar {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 16px;
}
html[dir="rtl"] .dashboard-sidebar {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 0;
    padding-right: 16px;
}
.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sidebar-section h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cam-channels-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.channel-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}
.channel-item.active {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.2);
    color: #ffffff;
}
.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.status-indicator.online {
    background: #34c759;
    box-shadow: 0 0 6px #34c759;
}
.status-indicator.offline {
    background: #8e8e93;
}
.dash-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.dash-stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-stat-box .stat-lbl {
    font-size: 9px;
    color: var(--text-secondary);
}
.dash-stat-box .stat-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
}



/* 5 Alert Categories & Restructuring Styles */
.alerts-grid-5 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
}

.alert-cat-card {
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.alert-cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.4) !important;
}

.cat-badge {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

/* Trusted Clients Styles */
.trusted-clients-wrapper {
    padding: 70px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.client-logo-card {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    background: rgba(34, 211, 238, 0.03);
    border-color: rgba(34, 211, 238, 0.3);
}

.client-flag {
    font-size: 28px;
}

.client-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #ffffff;
}

.client-info p {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
}

.client-tag {
    margin-right: auto;
    font-size: 11px;
    color: #ffd60a;
    background: rgba(255, 214, 10, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

/* Success Stories Styles */
.success-stories-wrapper {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.story-icon {
    font-size: 32px;
}

.story-location-badge {
    font-size: 12px;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.story-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #ffffff;
}

.story-challenge, .story-solution {
    font-size: 13.5px;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.story-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.metric-pill {
    text-align: center;
    background: rgba(34, 211, 238, 0.04);
    padding: 8px 4px;
    border-radius: 10px;
}

.metric-pill .num {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #ffd60a;
}

.metric-pill .lbl {
    display: block;
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}



/* Visual AI Detection Overlay Styles for Category Cards */
.visual-ai-container {
    position: relative;
    overflow: hidden;
}

.ai-box-overlay {
    position: absolute;
    border: 2px solid #22d3ee;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
    pointer-events: none;
}

.warning-box-ai {
    border-color: #ffd60a !important;
    box-shadow: 0 0 10px rgba(255, 214, 10, 0.4) !important;
}

.danger-box-ai {
    border-color: #ff453a !important;
    box-shadow: 0 0 12px rgba(255, 69, 58, 0.5) !important;
}

.success-box-ai {
    border-color: #34c759 !important;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.4) !important;
}

.ai-tag-badge {
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    white-space: nowrap;
}

.danger-tag { background: #ff453a; color: #fff; }
.warning-tag { background: #ffd60a; color: #000; }
.success-tag { background: #34c759; color: #fff; }

.live-ai-pill {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(8, 12, 16, 0.85);
    color: #22d3ee;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.ai-perimeter-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #ff453a, #ff453a 8px, transparent 8px, transparent 16px);
    box-shadow: 0 0 8px #ff453a;
}



/* -------------------------------------------------------------
   Full Vertical Stacked Alert Categories & 26 Detailed Alert Cards
   ------------------------------------------------------------- */
.categories-stacked-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    align-items: stretch;
    padding-bottom: 20px;
}
.categories-stacked-wrapper::-webkit-scrollbar {
    height: 8px;
}
.categories-stacked-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.categories-stacked-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.category-block-vertical {
    width: max-content;
    max-width: none;
    flex: 0 0 auto;
    scroll-snap-align: none;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-block-header {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    
    position: sticky;
    right: 32px;
    left: 32px;
    width: max-content;
    max-width: 85vw;
    z-index: 10;
    background: #080b12;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.cat-num-pill {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    margin-bottom: 10px;
}

.cat-block-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.cat-block-header p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

.alerts-items-grid {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
}
.alerts-items-grid::-webkit-scrollbar {
    height: 6px;
}
.alerts-items-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.alerts-items-grid::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.3);
    border-radius: 10px;
}

.alert-item-card {
    width: 260px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.alert-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.3);
}

.alert-img-frame {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.alert-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert-item-info h4 {
    margin: 0 0 6px 0;
    font-size: 15px;
    color: #22d3ee;
    font-weight: 700;
}

.alert-item-info p {
    margin: 0;
    font-size: 12.5px;
    color: #d1d5db;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .category-block-vertical {
        min-width: auto;
        width: max-content;
        max-width: none;
        padding: 20px;
    }
    .alert-item-card {
        width: 220px;
    }
    .alert-img-frame {
        height: 150px;
    }
    .cat-block-header {
        right: 20px;
        left: 20px;
    }
}

/* Implementation Steps Horizontal Scroll */
.steps-scroll-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 5vw;
}
.steps-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}
.steps-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}
.steps-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.3);
    border-radius: 10px;
}

.step-card {
    width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-img-frame {
    width: 100%;
    height: 200px;
}

.step-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    padding: 24px;
    text-align: right;
    flex: 1;
}

.step-content h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .step-card {
        width: 250px;
    }
}
