/* LeadOne Custom CRM - Design System & Stylesheet */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables & Theme Definitions */
:root {
    /* Color Palette — Premium Slate Lavender Theme matching logo */
    --bg-main: #fbfaff;          /* Premium cool lavender-white background */
    --bg-card: #ffffff;          /* Pure white cards */
    --bg-card-hover: #f6f5fa;    /* Subtle cool hover */
    --text-primary: #0f0a1c;     /* Deep dark slate-indigo for main text/headings */
    --text-secondary: #565069;   /* Professional slate-purple for secondary text */
    --text-muted: #8e88a5;       /* Muted violet-gray for tags/subtexts */
    
    /* Branding Core Accents (matched to Logo colors) */
    --accent: #240385;           /* Logo primary deep purple */
    --accent-light: #4c15e9;     /* Logo light purple accent */
    --accent-secondary: #fe8d23;  /* Logo vibrant orange accent */
    --accent-glow: rgba(76, 21, 233, 0.12);
    --accent-gradient: linear-gradient(135deg, #4c15e9 0%, #240385 100%);
    --accent-secondary-gradient: linear-gradient(135deg, #f6aa32 0%, #fe8d23 100%);
    --emerald: #059669;          /* Deeper green for light bg */
    
    /* Live Demo Brand Accent Customizer default */
    --brand-primary: #4c15e9;
    --brand-gradient: linear-gradient(135deg, #4c15e9 0%, #240385 100%);
    --brand-bg: #0f0a1c;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Borders */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-glass: 1px solid rgba(0, 0, 0, 0.08);          /* Subtle border */
    --border-glass-hover: 1px solid rgba(76, 21, 233, 0.3); /* Violet accent border */
}

/* ==========================================================================
   CENTERED HERO (LeadSquared-style) — index.php
   ========================================================================== */

/* Animated background glow orbs */
.hero-centered {
    padding: 140px 0 0 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-glow-left {
    position: absolute;
    top: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 21, 233, 0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: float-glow 8s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-glow-right {
    position: absolute;
    top: -80px;
    right: -200px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: float-glow 10s ease-in-out infinite alternate-reverse;
    z-index: 0;
}

@keyframes float-glow {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 40px) scale(1.08); }
}

.hero-centered-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Big centered H1 — reduced to avoid oversized look */
.hero-centered-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    margin-bottom: 1.25rem;
    max-width: 760px;
}

.hero-accent-word {
    background: linear-gradient(120deg, var(--accent-secondary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    display: inline-block;
    padding-bottom: 0.12em;
    margin-bottom: -0.1em;
    padding-right: 0.3em;
    margin-right: -0.1em;
}

.hero-centered-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

/* CTA buttons row */
.hero-centered-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    background: var(--accent-secondary-gradient);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(254, 141, 35, 0.35);
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(254, 141, 35, 0.55);
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(76, 21, 233, 0.06);
}

/* Star rating trust row */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 4rem;
}

.hero-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-trust-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-trust-label strong {
    color: var(--text-primary);
}

/* ── Floating Mockup Wrapper — dark CRM preview on warm light page ── */
.hero-mockup-wrapper {
    background: #110e1f;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    box-shadow: 0 -4px 40px rgba(76, 21, 233, 0.1), 0 20px 60px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}

/* Browser chrome bar */
.hero-mockup-chrome {
    background: #110e1f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.65rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chrome-theme-pills {
    display: flex;
    gap: 0.4rem;
    margin-left: auto;
}

.chrome-pill {
    padding: 0.22rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    background: #231d36;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.chrome-pill:hover {
    background: #2d2445;
    border-color: rgba(76, 21, 233, 0.25);
    color: #e5e7eb;
}

.chrome-pill.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
}

/* Dashboard body inside mockup */
.hero-mockup-body {
    transition: var(--transition-smooth);
}

/* Responsive: centered hero */
@media (max-width: 768px) {
    .hero-centered {
        padding: 120px 0 0 0;
    }
    .hero-centered-h1 {
        font-size: 2.4rem;
    }
    .hero-trust-row {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
    .hero-mockup-wrapper {
        border-radius: 12px 12px 0 0;
    }
    .chrome-theme-pills {
        display: none;
    }
}

/* Theme Presets for Custom UI/UX Switcher (Mockup Container Theme Override) */
[data-demo-theme="default"] {
    --brand-primary: #4c15e9;
    --brand-gradient: linear-gradient(135deg, #4c15e9 0%, #240385 100%);
    --brand-bg: #0f0a1c;
}

[data-demo-theme="eduquest"] {
    --brand-primary: #f59e0b; /* Golden Amber */
    --brand-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --brand-bg: #0a0d14;      /* Dark Slate */
}

[data-demo-theme="apex"] {
    --brand-primary: #10b981; /* Emerald Green */
    --brand-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --brand-bg: #06100d;      /* Dark Forest */
}

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: -1;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 15% 10%, rgba(124, 58, 237, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(76, 21, 233, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Utility Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-primary);
}

h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--text-primary);
}

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

/* Header & Sticky Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: var(--border-glass);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-gradient);
    box-shadow: 0 2px 8px var(--accent-glow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: var(--accent-secondary-gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(254, 141, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 141, 35, 0.5);
}

.btn-secondary {
    background: rgba(76, 21, 233, 0.04);
    color: var(--accent-light);
    border: 1px solid rgba(76, 21, 233, 0.15);
}

.btn-secondary:hover {
    background: rgba(76, 21, 233, 0.08);
    border-color: rgba(76, 21, 233, 0.3);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: rgba(76, 21, 233, 0.07);
    border: 1px solid rgba(76, 21, 233, 0.18);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Live Customizer Showcase Container */
.showcase-container {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(76, 21, 233, 0.05), 0 10px 30px rgba(0, 0, 0, 0.04);
}

.customizer-header {
    margin-bottom: 1rem;
}

.customizer-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.customizer-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.customizer-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background: #f5f0ff;
    border: 1px solid rgba(76, 21, 233, 0.12);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.customizer-btn:hover {
    background: #ede9fe;
    border-color: rgba(76, 21, 233, 0.25);
}

.customizer-btn.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: var(--brand-primary);
    box-shadow: 0 4px 12px rgba(76, 21, 233, 0.2);
}

/* Mockup Browser Window wrapper */
.mockup-window {
    background: var(--brand-bg);
    border: var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Pure CSS Interactive Dashboard Mockup Layout */
.mockup-dashboard {
    display: flex;
    height: 360px;
    background: #1a1625;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #cbd5e1;
    transition: var(--transition-smooth);
}

.mockup-sidebar {
    width: 115px;
    background: #110e1f;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-sidebar-logo {
    font-weight: 800;
    color: var(--brand-primary);
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.mockup-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mockup-menu-item {
    padding: 0.4rem 0.5rem;
    border-radius: 6px;
    color: #71717a;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-menu-item.active {
    background: rgba(76, 21, 233, 0.08);
    color: var(--brand-primary);
    font-weight: 600;
}

.mockup-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #1a1625;
}

.mockup-header-bar {
    height: 48px;
    background: #110e1f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.mockup-header-title {
    font-weight: 700;
    color: #f4f4f5;
    font-family: var(--font-heading);
    font-size: 0.85rem;
}

.mockup-badge-active {
    background: rgba(52, 211, 153, 0.08);
    color: #34d399;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Dashboard Mockup Widgets */
.mockup-search-container {
    display: flex;
    align-items: center;
    background: #231d36;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    width: 130px;
    gap: 0.25rem;
}

.mockup-search-input {
    border: none;
    background: transparent;
    font-size: 0.65rem;
    color: #cbd5e1;
    outline: none;
    width: 100%;
}

.mockup-header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-bell-container {
    position: relative;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717a;
}

.mockup-bell-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
}

.mockup-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3b2f6e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.65rem;
    color: #f4f4f5;
}

/* Mockup Performance Chart */
.mockup-chart-card {
    background: #231d36;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #a1a1aa;
    text-transform: uppercase;
}

.mockup-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 28px;
    padding-top: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-chart-bar {
    width: 10px;
    background: #14141d;
    border-radius: 2px 2px 0 0;
    height: 100%;
    position: relative;
}

.mockup-chart-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brand-gradient);
    border-radius: 2px 2px 0 0;
    transition: height 0.6s ease;
}

.mockup-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mockup-stat-card {
    background: #231d36;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
}

.mockup-stat-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f4f4f5;
    font-family: var(--font-heading);
}

.mockup-stat-lbl {
    font-size: 0.6rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mockup-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    flex-grow: 1;
}

.mockup-column {
    background: #231d36;
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mockup-column-header {
    font-size: 0.65rem;
    font-weight: 700;
    color: #a1a1aa;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.mockup-lead-card {
    background: #2d2445;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 0.5rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mockup-lead-name {
    font-weight: 600;
    color: #f4f4f5;
}

.mockup-lead-tag {
    font-size: 0.55rem;
    padding: 0.05rem 0.3rem;
    border-radius: 4px;
    width: max-content;
    font-weight: 600;
}

.mockup-tag-hot { background: rgba(239, 68, 68, 0.1); color: #fca5a5; }
.mockup-tag-warm { background: rgba(217, 119, 6, 0.1); color: #fcd34d; }
.mockup-tag-cold { background: rgba(37, 99, 235, 0.1); color: #93c5fd; }

.browser-header {
    background: #110e1f;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }

.browser-address {
    flex-grow: 1;
    background: #1a1625;
    border: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0 1.25rem;
    border-radius: 4px;
    font-size: 0.72rem;
    padding: 0.2rem 0.75rem;
    color: #9ca3af;
    text-align: center;
    font-family: monospace;
}

.mockup-content {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity; /* Merges nicely into customizer colors */
    opacity: 0.85;
}

.mockup-overlay-theme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(var(--brand-primary), 0.15), transparent 70%);
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06),
                0 8px 20px rgba(0, 0, 0, 0.04);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 21, 233, 0.2);
    box-shadow: 0 12px 30px rgba(76, 21, 233, 0.08),
                0 4px 8px rgba(0, 0, 0, 0.06);
}

.card:hover::before {
    background: var(--accent-gradient);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(76, 21, 233, 0.07);
    border: 1px solid rgba(76, 21, 233, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.card-icon svg {
    stroke: var(--accent);
    transition: stroke var(--transition-smooth);
}

.card:hover .card-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px var(--accent-glow);
}

.card:hover .card-icon svg {
    stroke: #fff;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

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

/* The Solution Panel */
.solution-section {
    padding: 80px 0;
    background: rgba(76, 21, 233, 0.02);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-left h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.solution-left p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.solution-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-bullet {
    display: flex;
    gap: 1rem;
}

.bullet-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bullet-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.bullet-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Call To Action Cards */
.cta-banner {
    background: linear-gradient(135deg, rgba(76, 21, 233, 0.06) 0%, rgba(79, 70, 229, 0.06) 100%);
    border: 1px solid rgba(76, 21, 233, 0.18);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.875rem;
}

.cta-banner p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-hero {
    padding: 160px 0 80px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-right p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.pillars-section {
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
}

.pillar-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

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

/* Services Page layouts */
.services-hero {
    padding: 160px 0 80px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.service-block {
    padding: 80px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-grid.reverse {
    direction: rtl;
}

.service-grid.reverse .service-info {
    direction: ltr;
}

.service-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-bullets-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-bullets-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.service-bullets-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-media {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    aspect-ratio: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Interactive custom timeline step */
.timeline-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.timeline-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(76, 21, 233, 0.1) 100%);
    z-index: 0;
    transform: translateY(-50%);
}

.timeline-step {
    position: relative;
    background: var(--bg-card);
    border: var(--border-glass);
    padding: 2rem;
    border-radius: 12px;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 10px 15px -3px rgba(76, 21, 233, 0.03);
}

.timeline-step:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 20px 25px -5px rgba(76, 21, 233, 0.08);
}

.step-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.timeline-step h4 {
    font-size: 1.15rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

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

/* Contact Page Layout */
.contact-hero {
    padding: 160px 0 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.contact-info-panel h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(76, 21, 233, 0.08);
    border: 1px solid rgba(76, 21, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Contact Form styling */
.form-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.04);
}

.form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: #fdfbf8;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(76, 21, 233, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23a1a1aa' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

/* Toast/Alert Modal styling */
.toast-msg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.success {
    background: #064e3b;
    color: #34d399;
    border: 1px solid #065f46;
}

.toast-msg.error {
    background: #7f1d1d;
    color: #fca5a5;
    border: 1px solid #991b1b;
}

/* Footer Section */
.site-footer {
    background: #f4f0ea;
    border-top: var(--border-glass);
    padding: 70px 0 36px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: var(--border-glass);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Keyframes */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .problem-grid, .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
    .solution-grid, .about-intro-grid, .service-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-grid.reverse {
        direction: ltr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* JS will handle this */
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.75rem;
    }
    .problem-grid, .pillars-grid, .timeline-flow {
        grid-template-columns: 1fr;
    }
    .timeline-flow::before {
        display: none;
    }
    .cta-banner {
        padding: 3rem 1.5rem;
    }
    .cta-banner h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Partners & Stats Bar Styles
   ========================================================================== */
.partners-section {
    padding: 3rem 0;
    background: #f4f0ea;
    border-bottom: var(--border-glass);
    border-top: var(--border-glass);
}

.partners-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
}

.partners-grid-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.partner-logo {
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

.partner-logo:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
}

.stats-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(76, 21, 233, 0.03) 100%);
    border-bottom: var(--border-glass);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-counter-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 6px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: var(--transition-smooth);
}

.stat-counter-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 21, 233, 0.35);
    box-shadow: 0 15px 30px rgba(76, 21, 233, 0.08);
}

.stat-counter-card:hover::before {
    background: var(--accent-gradient);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Overrides for Partners & Stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .partners-grid-logos {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .partners-section {
        padding: 2.5rem 0;
    }
    .stats-section {
        padding: 3.5rem 0;
    }
}

/* ==========================================================================
   Industry Solutions Sub-section Styles
   ========================================================================== */
.industries-section {
    padding: 5rem 0;
    background: #f4f0ea;
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 21, 233, 0.2);
    background: var(--bg-card-hover);
    box-shadow: 0 8px 24px rgba(76, 21, 233, 0.08);
}

.industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(76, 21, 233, 0.08);
    border: 1px solid rgba(76, 21, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.industry-card:hover .industry-icon {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

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

.industry-features-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    list-style: none;
}

.industry-features-list li {
    font-size: 0.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
    text-align: left;
}

.industry-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* Responsive Overrides for Industry Solutions */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industries-section {
        padding: 4rem 0;
    }
}


/* ==========================================================================
   PAGE HERO — Reusable centered header for inner pages (About / Contact)
   ========================================================================== */

.page-hero {
    padding: 160px 0 90px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: var(--border-glass);
}

.page-hero--compact {
    padding: 150px 0 70px 0;
}

.page-hero-glow-left {
    position: absolute;
    top: -120px;
    left: -250px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 21, 233, 0.12) 0%, transparent 65%);
    pointer-events: none;
    animation: float-glow 9s ease-in-out infinite alternate;
    z-index: 0;
}

.page-hero-glow-right {
    position: absolute;
    top: -60px;
    right: -220px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 65%);
    pointer-events: none;
    animation: float-glow 11s ease-in-out infinite alternate-reverse;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: var(--text-primary);
    margin-bottom: 1rem;
    max-width: 720px;
}

.page-hero-accent {
    background: linear-gradient(120deg, var(--accent-secondary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.page-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section eyebrow label */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 1rem;
}


/* ==========================================================================
   ABOUT NARRATIVE SECTION
   ========================================================================== */

.about-narrative {
    padding: 90px 0;
    border-bottom: var(--border-glass);
}

.about-narrative-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: start;
}

.about-narrative-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.about-narrative-right p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-micro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: var(--border-glass);
}

.about-micro-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-micro-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.about-micro-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* ==========================================================================
   CONTACT MAIN SECTION
   ========================================================================== */

.contact-main-section {
    padding: 80px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

/* SLA promise card */
.contact-sla-card {
    background: linear-gradient(135deg, rgba(76, 21, 233, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
    border: 1px solid rgba(76, 21, 233, 0.2);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 2.5rem;
}

/* Trust badge row */
.contact-trust-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: var(--border-glass);
    border-radius: 9999px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 2-column form row */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}


/* ==========================================================================
   RESPONSIVE — New page-hero & sections
   ========================================================================== */

@media (max-width: 1024px) {
    .about-narrative-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 70px 0;
    }
    .page-hero-h1 {
        font-size: 2.2rem;
    }
    .about-micro-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .contact-trust-row {
        gap: 0.6rem;
    }
    .page-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}

/* Use Case Cards styling */
.usecase-card {
    transition: var(--transition-smooth);
}
.usecase-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}
.usecase-card.active-agent {
    border-color: #10b981 !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08) !important;
    background: rgba(16, 185, 129, 0.01) !important;
}
.usecase-card.active-admin {
    border-color: #4c15e9 !important;
    box-shadow: 0 8px 24px rgba(76, 21, 233, 0.08) !important;
    background: rgba(76, 21, 233, 0.01) !important;
}

@media (max-width: 768px) {
    .hero-mockup-body {
        height: 340px !important;
    }
    #mockup-login-container {
        height: 100% !important;
        padding: 1rem !important;
    }
    .usecase-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Quick Demo Session Hero Button */
.btn-hero-quick-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 9999px;
    background: var(--accent-gradient);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(76, 21, 233, 0.35);
    text-decoration: none;
}

.btn-hero-quick-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(76, 21, 233, 0.55);
}

/* Modal Overlay & Transitions */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.demo-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 7, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.3s ease;
}

.demo-modal-container {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px -12px rgba(15, 10, 28, 0.25), 0 0 40px rgba(76, 21, 233, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    z-index: 1;
    overflow-y: auto;
    max-height: 90vh;
    animation: modal-appear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@keyframes modal-appear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.demo-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.demo-modal-close:hover {
    background: rgba(0,0,0,0.08);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.demo-modal-header {
    text-align: center;
}

.demo-modal-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-secondary);
    background: rgba(254, 141, 35, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.demo-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.demo-modal-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.demo-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .demo-modal-grid {
        grid-template-columns: 1fr;
    }
    .demo-modal-container {
        padding: 1.5rem;
    }
}

.demo-role-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.demo-role-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(15, 10, 28, 0.15);
}

.demo-role-card.admin-card {
    border-top: 4px solid var(--accent-light);
}

.demo-role-card.agent-card {
    border-top: 4px solid var(--emerald);
}

.role-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-card .role-icon-wrapper {
    background: rgba(76, 21, 233, 0.08);
}

.agent-card .role-icon-wrapper {
    background: rgba(5, 150, 105, 0.08);
}

.demo-role-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.role-purpose {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0;
}

.role-access-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.role-access-section h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0;
}

.role-access-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.role-access-list li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.role-access-list li .check-icon {
    flex-shrink: 0;
    margin-top: 0.05em;
}

.role-access-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.check-icon {
    font-weight: 800;
    font-size: 0.85rem;
}

.admin-card .check-icon {
    color: var(--accent-light);
}

.agent-card .check-icon {
    color: var(--emerald);
}

.btn-launch-demo {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-launch-demo span {
    transition: transform 0.3s ease;
}

.btn-launch-demo:hover span {
    transform: translateX(4px);
}

.admin-btn {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 21, 233, 0.2);
}

.admin-btn:hover {
    box-shadow: 0 6px 20px rgba(76, 21, 233, 0.35);
}

.agent-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.agent-btn:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.demo-modal-footer-banner {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}
