/* ==========================================================================
   E-Office Landing Page Style - Premium Glassmorphism & Light Mode CSS
   ========================================================================== */

/* --- CSS Variables & Color Tokens --- */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.75);
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(0, 163, 144, 0.35);

    /* Accents (optimized for light theme contrast) */
    --accent-teal: #00a390;
    --accent-teal-glow: rgba(0, 163, 144, 0.1);
    --accent-gold: #d97706;
    --accent-gold-glow: rgba(217, 119, 6, 0.1);
    --accent-green: #059669;
    --accent-green-glow: rgba(5, 150, 105, 0.1);
    --accent-purple: #7c3aed;
    --accent-purple-glow: rgba(124, 58, 237, 0.1);

    /* Fonts & Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
    z-index: 9999;
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-dark-secondary {
    background-color: var(--bg-secondary);
}

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

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

.grid {
    display: grid;
    gap: 30px;
}

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

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

.grid-2-equal {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {

    .grid-2,
    .grid-3,
    .grid-2-equal {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}

/* --- Scroll Trigger Animation (Reveal on Scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* --- Section Headers --- */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-teal);
    background-color: var(--accent-teal-glow);
    border-radius: 30px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 163, 144, 0.15);
}

.bg-teal-tag {
    color: var(--accent-teal);
    background-color: var(--accent-teal-glow);
    border: 1px solid rgba(0, 163, 144, 0.15);
}

.bg-green-tag {
    color: var(--accent-green);
    background-color: var(--accent-green-glow);
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.bg-purple-tag {
    color: var(--accent-purple);
    background-color: var(--accent-purple-glow);
    border: 1px solid rgba(124, 58, 237, 0.15);
}

.bg-gold-tag {
    color: var(--accent-gold);
    background-color: var(--accent-gold-glow);
    border: 1px solid rgba(217, 119, 6, 0.15);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, #00a390 0%, #00d2c4 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 163, 144, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 144, 0.35);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.15);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Glassmorphism Card Style --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 163, 144, 0.08);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* --- Sticky Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo-text span {
    color: var(--accent-teal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn-contact {
    background: var(--accent-teal-glow);
    border: 1px solid rgba(0, 163, 144, 0.2);
    padding: 8px 18px;
    border-radius: 8px;
    color: var(--accent-teal) !important;
}

.nav-btn-contact:hover {
    background: var(--accent-teal);
    color: #ffffff !important;
}

.nav-btn-contact::after {
    display: none;
}

.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .hamburger-menu {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 163, 144, 0.05);
    border: 1px solid rgba(0, 163, 144, 0.15);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-teal);
    margin-bottom: 24px;
}

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

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.shape-1 {
    top: -10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: rgba(0, 163, 144, 0.08);
}

.shape-2 {
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(124, 58, 237, 0.05);
}

/* --- Mockups & Graphical UI --- */
.hero-visual {
    position: relative;
    z-index: 2;
}

.mockup-frame {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mockup-header {
    background: #f8fafc;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--border-color);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot-red {
    background-color: #ef4444;
}

.dot-yellow {
    background-color: #f59e0b;
}

.dot-green {
    background-color: #10b981;
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 12px;
    font-weight: 500;
}

.mockup-body {
    background: var(--bg-secondary);
    padding: 24px;
    min-height: 280px;
}

.padding-none {
    padding: 0;
}

/* --- Dashboard Preview Mockup CSS --- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: 280px;
}

@media (max-width: 576px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }
}

.dashboard-sidebar {
    background: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.sidebar-item {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 8px 0;
    border-radius: 8px;
}

.sidebar-item i {
    font-size: 1.2rem;
}

.sidebar-item.active {
    color: var(--accent-teal);
    background: rgba(0, 163, 144, 0.08);
}

.dashboard-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header h3 {
    font-size: 0.95rem;
    font-weight: 600;
}

.avatar {
    font-size: 1.2rem;
    color: var(--accent-teal);
}

.card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-card {
    border-radius: 8px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

.mini-card span {
    font-size: 0.65rem;
    color: rgba(15, 23, 42, 0.7);
    display: block;
}

.mini-card i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.bg-gradient-teal {
    background: #e6f7f4;
    border: 1px solid rgba(0, 163, 144, 0.2);
    color: var(--accent-teal);
}

.bg-gradient-gold {
    background: #fef8ec;
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--accent-gold);
}

.bg-gradient-purple {
    background: #f5f0ff;
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-purple);
}

.dashboard-chart-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legend {
    display: flex;
    align-items: center;
    gap: 4px;
}

.legend-color {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.font-teal {
    background-color: var(--accent-teal);
}

.mock-chart-svg {
    width: 100%;
    height: auto;
    display: block;
}

.pulse-point {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        r: 5px;
        stroke-width: 2px;
        stroke-opacity: 1;
    }

    50% {
        r: 8px;
        stroke-width: 6px;
        stroke-opacity: 0.4;
    }

    100% {
        r: 5px;
        stroke-width: 2px;
        stroke-opacity: 1;
    }
}

/* --- Ecosystem Card Specific Styles --- */
.card-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.card-icon-wrap.bg-teal {
    background: var(--accent-teal-glow);
    color: var(--accent-teal);
}

.card-icon-wrap.bg-gold {
    background: var(--accent-gold-glow);
    color: var(--accent-gold);
}

.card-icon-wrap.bg-purple {
    background: var(--accent-purple-glow);
    color: var(--accent-purple);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 10px;
}

/* --- OCR Section Styles --- */
.scan-visual-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.cccd-card {
    width: 260px;
    height: 160px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 1px solid rgba(0, 163, 144, 0.2);
    border-radius: 10px;
    position: relative;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.cccd-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cccd-emblem {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-gold);
}

.cccd-text-group {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.line {
    height: 6px;
    background: rgba(15, 23, 42, 0.1);
    border-radius: 3px;
}

.line.short {
    width: 40px;
}

.line.medium {
    width: 80px;
}

.line.long {
    width: 120px;
}

.cccd-body {
    display: flex;
    gap: 16px;
}

.cccd-photo {
    width: 60px;
    height: 75px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
}

.cccd-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    box-shadow: 0 0 15px var(--accent-teal);
    animation: scanAnim 3s infinite ease-in-out;
}

@keyframes scanAnim {
    0% {
        top: 10%;
    }

    50% {
        top: 90%;
    }

    100% {
        top: 10%;
    }
}

.data-extraction-flow {
    margin-top: 20px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 280px;
    padding: 10px 16px;
}

.data-field {
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.data-field .label {
    color: var(--text-muted);
}

.data-field .val {
    color: var(--accent-teal);
    font-weight: 600;
}

.benefit-indicators {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.indicator {
    display: flex;
    gap: 16px;
}

.indicator i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.indicator h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.indicator p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Attendance & Payroll Steps Flow --- */
.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-arrow {
        transform: rotate(90deg);
    }
}

.step {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-teal);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 30px;
}

.step-icon {
    font-size: 2.2rem;
    color: var(--accent-teal);
    margin-bottom: 16px;
    margin-top: 10px;
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

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

.step-arrow {
    font-size: 1.8rem;
    color: var(--text-muted);
}

/* --- Custom Custom Table --- */
.table-wrap {
    margin-bottom: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.table-header-title {
    margin-bottom: 24px;
    font-size: 1.35rem;
}

.custom-table-container {
    overflow-x: auto;
}

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

.custom-table th,
.custom-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.custom-table th {
    font-weight: 600;
    color: var(--accent-teal);
}

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

.badge-role {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- Metrics Counters Section --- */
.metrics-counter {
    text-align: center;
}

.metric-card {
    padding: 30px;
}

.metric-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-teal);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Feature Tab selectors --- */
.tab-selectors {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.tab-btn {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--accent-teal);
    background: var(--accent-teal-glow);
}

.tab-contents {
    position: relative;
    min-height: 120px;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.tab-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- Employee Detail Card Mockup --- */
.employee-card-demo {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.employee-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.employee-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-teal-glow);
    border: 2px solid var(--accent-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-teal);
}

.employee-meta h4 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.employee-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.employee-meta .badge-active {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    background: var(--accent-green-glow);
    color: var(--accent-green);
    margin-top: 4px;
}

.employee-details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.detail-row .lbl {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-row .val {
    color: var(--text-primary);
    font-weight: 500;
}

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

/* --- AI Face Recognition UI Layout --- */
.ai-face-recognition-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.camera-lens {
    position: absolute;
    top: 16px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lens-glow {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
}

.face-target {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.face-target-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scanner-icon {
    font-size: 5rem;
    color: var(--accent-teal);
    animation: scannerPulse 1.5s infinite alternate ease-in-out;
}

@keyframes scannerPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.scan-status-indicator {
    margin-top: 20px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid var(--accent-green);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    display: inline-block;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.icon-list-item {
    display: flex;
    gap: 20px;
}

.item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.item-icon.bg-teal {
    background: var(--accent-teal-glow);
    color: var(--accent-teal);
}

.item-icon.bg-gold {
    background: var(--accent-gold-glow);
    color: var(--accent-gold);
}

.item-icon.bg-purple {
    background: var(--accent-purple-glow);
    color: var(--accent-purple);
}

.icon-list-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.icon-list-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Kanban Pipeline Columns Styles --- */
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 992px) {
    .pipeline-grid {
        grid-template-columns: 1fr;
    }
}

.pipeline-col {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 240px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.col-header {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.col-header .badge {
    margin-bottom: 0;
    padding: 2px 8px;
    font-size: 0.7rem;
    border-radius: 4px;
    color: #fff;
}

.bg-blue {
    background-color: #3b82f6;
}

.bg-orange {
    background-color: #f97316;
}

.bg-red {
    background-color: #ef4444;
}

.bg-green {
    background-color: #10b981;
}

.task-cards-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
}

.task-card h5 {
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.task-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.task-tag {
    display: inline-block;
    padding: 2px 6px;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 6px;
}

.tag-blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.tag-gold {
    background: rgba(217, 119, 6, 0.08);
    color: var(--accent-gold);
}

.tag-orange {
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
}

.tag-green {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.task-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.due-date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.assignee {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--accent-teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.card-completed {
    border-color: rgba(5, 150, 105, 0.3);
}

.empty-placeholder {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    padding: 24px 0;
    border: 1px dashed var(--border-color);
    border-radius: 8px;
}

.sub-feature {
    padding: 24px;
    display: flex;
    gap: 16px;
}

.sub-feature i {
    font-size: 2rem;
    flex-shrink: 0;
}

.sub-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

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

/* --- AI Chatbot Simulator Widget --- */
.chat-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 420px;
    position: relative;
}

.chat-header {
    background: #f8fafc;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.bot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-gold-glow);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.25rem;
    position: relative;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    position: absolute;
    bottom: -1px;
    right: -1px;
    border: 2px solid #f8fafc;
}

.bot-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.bot-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-action-btn {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.chat-action-btn:hover {
    color: var(--accent-teal);
}

.chat-body {
    flex-grow: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #f8fafc;
    scroll-behavior: smooth;
}

.msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
}

.bot-msg {
    background: #ffffff;
    color: var(--text-primary);
    align-self: flex-start;
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.user-msg {
    background: var(--accent-teal);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

.typing-indicator {
    align-self: flex-start;
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 12px;
    display: flex;
    gap: 4px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBlink 1.4s infinite both;
}

.typing-dot:nth-child(2) {
    animation-delay: .2s;
}

.typing-dot:nth-child(3) {
    animation-delay: .4s;
}

@keyframes typingBlink {
    0% {
        opacity: .2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

.chat-suggestions {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
    scrollbar-width: none;
}

.chat-suggestions::-webkit-scrollbar {
    display: none;
}

.suggest-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.suggest-btn:hover {
    border-color: var(--accent-teal);
    color: var(--accent-teal);
    background: rgba(0, 163, 144, 0.03);
}

.chat-input-wrap {
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--border-color);
    background: #ffffff;
}

.chat-input-wrap input {
    flex-grow: 1;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.chat-input-wrap input:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.send-btn {
    background: var(--accent-teal);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.send-btn:hover {
    background: #008f7e;
}

/* --- Report Preview Graph Box --- */
.report-preview-graph {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.report-preview-graph h5 {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.bar-chart-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.bar-row {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bar-track {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.fill-teal {
    background: var(--accent-teal);
}

.fill-purple {
    background: var(--accent-purple);
}

.fill-gold {
    background: var(--accent-gold);
}

.bar-val {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: right;
}

.donut-chart-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

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

.stat-highlight h4 {
    font-size: 1.5rem;
    color: var(--accent-teal);
}

.stat-highlight span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.legend-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.leg-item {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.leg-item i {
    font-size: 0.5rem;
}

/* --- Accordion Platform Style --- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 20px 20px;
}

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

/* --- Devices Mockup (Laptop & Phone) --- */
.devices-mockup {
    position: relative;
    width: 100%;
    height: 260px;
    max-width: 400px;
    margin: 0 auto;
}

.laptop-visual {
    width: 280px;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.laptop-visual .screen {
    height: 150px;
    background: #ffffff;
    border: 6px solid #475569;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 10px;
    position: relative;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.laptop-visual .keyboard {
    height: 10px;
    background: #cbd5e1;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
}

.laptop-visual .keyboard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #94a3b8;
    border-radius: 2px;
}

.app-ui {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot-brand {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-teal);
}

.lines-group {
    display: flex;
    gap: 8px;
}

.phone-visual {
    width: 90px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.phone-screen {
    height: 160px;
    background: #ffffff;
    border: 4px solid #475569;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.app-ui-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.logo-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: block;
}

/* --- Security & Padlock visual styles --- */
.security-lock-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 163, 144, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
}

.padlock {
    width: 80px;
    height: 90px;
    position: relative;
    z-index: 2;
}

.lock-shackle {
    width: 60px;
    height: 50px;
    border: 8px solid #cbd5e1;
    border-bottom: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.lock-body {
    width: 100%;
    height: 65px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #f1f5f9 100%);
    border: 2px solid var(--accent-teal);
    box-shadow: 0 4px 15px rgba(0, 163, 144, 0.15);
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-teal);
}

.encryption-keys {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.key-tag {
    position: absolute;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02);
}

.key-tag.tag-1 {
    top: 40px;
    left: 30px;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.key-tag.tag-2 {
    bottom: 40px;
    right: 30px;
    background: rgba(0, 163, 144, 0.08);
    color: var(--accent-teal);
}

.key-tag.tag-3 {
    top: 60px;
    right: 40px;
    background: rgba(217, 119, 6, 0.08);
    color: var(--accent-gold);
}

.security-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
}

.sec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
}

.sec-card i {
    font-size: 1.5rem;
    color: var(--accent-purple);
}

.sec-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.sec-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    grid-column: 2;
}

/* --- Consolidated Unified List Specific Styles --- */
.unified-features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.unify-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    width: 290px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}

.unify-item .num {
    background: var(--accent-teal);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.unify-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.unify-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* --- Contact & Lead Form --- */
.contact-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.office-visual {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    border: 1px solid var(--border-color);
}

.building-svg {
    width: 100%;
    max-width: 240px;
    height: auto;
}

.info-details h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-details a:hover {
    color: var(--accent-teal);
}

.lead-form-card h3 {
    margin-bottom: 24px;
    font-size: 1.35rem;
}

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

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

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 10px rgba(0, 163, 144, 0.1);
}

.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.form-success-message h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success-message p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-note {
    font-size: 0.75rem !important;
    margin-top: 8px;
}