/* ==========================================================================
   INTELLECTIR ENTERPRISE AI CONSULTING - GLOBAL DESIGN SYSTEM & STYLESHEET
   Unified CSS Architecture, Design Tokens, WCAG 2.1 AA Compliance & Responsiveness
   ========================================================================== */

/* ==========================================================================
   0. DESIGN TOKENS & SYSTEM VARIABLES (:root)
   ========================================================================== */
:root {
    /* Brand Theme Color Palette */
    --bg-main: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #090d16;
    --bg-dark-surface: #0f172a;
    --bg-card: #ffffff;
    --bg-card-glass: rgba(255, 255, 255, 0.92);

    /* Text & Foreground Colors (WCAG 2.1 AA Compliant) */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    --text-inverse-muted: #cbd5e1;

    /* Accent & Brand Primary Colors */
    --accent-primary: #2563eb;
    --accent-primary-hover: #1d4ed8;
    --accent-secondary: #4f46e5;
    --accent-cyan: #0284c7;
    --accent-teal: #0d9488;
    --accent-pink: #d946ef;
    --accent-emerald: #059669;
    --accent-emerald-dark: #047857;
    --accent-amber: #d97706;
    --accent-rose: #e11d48;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --gradient-primary-hover: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(79, 70, 229, 0.08) 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --gradient-dark-card: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --accent-glow: rgba(37, 99, 235, 0.15);

    /* Borders & Outlines */
    --border-subtle: #e2e8f0;
    --border-card: rgba(226, 232, 240, 0.8);
    --border-hover: rgba(37, 99, 235, 0.4);
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Shadows & Elevation */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.03);
    --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.12), 0 0 20px rgba(37, 99, 235, 0.08);
    --shadow-glow: 0 10px 30px rgba(37, 99, 235, 0.2);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Outfit', var(--font-sans);
    --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;

    /* Layout & Radii */
    --container-width: 1240px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. RESET, BASE STYLES & LAYOUT WRAPPERS
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dark-theme,
body.dark-theme {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
}

.light-theme,
body.light-theme {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

.site-main {
    flex: 1 0 auto;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

.center-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.is-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.active {
    /* Base active utility state */
    font-weight: 600;
}

/* ==========================================================================
   2. TYPOGRAPHY, BADGES & HEADINGS
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: var(--text-inverse);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyan {
    color: var(--accent-cyan);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.65;
}

.center .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* Badges & Tags */
.subhead-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-primary-hover);
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 1.25rem;
}

.shimmer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(37, 99, 235, 0.25);
    letter-spacing: 0.02em;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-mono);
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ==========================================================================
   3. HEADER NAVIGATION, BRAND & MOBILE DRAWER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: var(--container-width);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.dark-nav .main-header {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-inverse);
}

.light-nav .main-header {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: inherit;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    letter-spacing: 0.05em;
}

.site-navigation,
.nav-drawer {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.4rem 0.2rem;
    transition: color var(--transition-fast);
    position: relative;
}

.dark-nav .nav-link {
    color: var(--text-inverse-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.dark-nav .nav-link:hover,
.dark-nav .nav-link.active {
    color: #60a5fa;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Hamburger Toggle Button */
.nav-toggle,
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dark-nav .nav-toggle,
.dark-nav .mobile-menu-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-inverse);
}

.nav-toggle:hover,
.mobile-menu-btn:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-primary);
}

/* ==========================================================================
   4. BUTTONS & INTERACTIVE CONTROLS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.925rem;
    font-weight: 600;
    line-height: 1;
    transition: all var(--transition-normal);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

/* WCAG 2.1 AA: White text on blue/indigo gradient (>5.2:1 contrast ratio) */
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    border-color: transparent;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1.5px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.dark-nav .btn-outline {
    border-color: #60a5fa;
    color: #ffffff;
}

.dark-nav .btn-outline:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-large {
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
}

.btn-nav-cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    background: var(--gradient-primary);
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

.btn-nav-cta:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-full {
    width: 100%;
}

.open-modal-btn {
    cursor: pointer;
}

/* ==========================================================================
   5. CARDS, SURFACES & GLASSMORPHISM
   ========================================================================== */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-elevated);
}

body.dark-theme .glass-card {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   6. HERO SECTIONS (Landing Hero & Inner Page Hero)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 10rem 0 5rem;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 450px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(79, 70, 229, 0.05) 50%, transparent 80%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Inner Page Hero (Company, Discover, Solutions, Industries) */
.ind-hero-section {
    padding: 9rem 0 4rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.ind-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.ind-hero-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.ind-hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   7. TECH MARQUEE TICKER & PARTNER ICONS
   ========================================================================== */
.tech-marquee-section {
    padding: 3.5rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.tech-marquee-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tech-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.tech-marquee-track-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.tech-marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.tech-marquee-track:hover {
    animation-play-state: paused;
}

.tech-marquee-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.tech-logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.tech-logo-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.brand-svg,
.brand-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Brand specific icon styling */
.brand-openai {
    color: #10a37f;
}

.brand-meta {
    color: #0668e1;
}

.brand-anthropic {
    color: #d97706;
}

.brand-aws {
    color: #ff9900;
}

.brand-deepmind {
    color: #4285f4;
}

.brand-microsoft {
    color: #00a4ef;
}

.brand-mistral {
    color: #f59e0b;
}

.brand-n8n {
    color: #ea580c;
}

.brand-supabase {
    color: #3ecf8e;
}

.brand-vapi {
    color: #06b6d4;
}

.brand-vercel {
    color: #000000;
}

.brand-lindy {
    color: #818cf8;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   8. CINEMATIC SERVICES & HUD TELEMETRY PANELS
   ========================================================================== */
.cinematic-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
}

.cinematic-service-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem;
}

.service-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-primary);
    border: 1px solid rgba(37, 99, 235, 0.2);
    width: fit-content;
}

.service-title-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

.service-desc-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.service-feature-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.service-feature-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-feature-bullets li i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

/* Dark Telemetry HUD Panel */
.hud-panel {
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    font-family: var(--font-mono);
    color: #94a3b8;
    box-shadow: var(--shadow-elevated);
}

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #38bdf8;
}

.hud-log-stream {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.825rem;
    line-height: 1.5;
    max-height: 280px;
    overflow-y: auto;
}

.hud-log-stream p {
    display: flex;
    gap: 0.5rem;
}

/* ==========================================================================
   9. NEW ERA CINEMATIC BANNER & VIDEO PLAYER
   ========================================================================== */
.new-era-section {
    position: relative;
    padding: 4rem 0;
    margin: 5rem 0;
}

.new-era-card {
    position: relative;
    width: 100%;
    min-height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-elevated);
}

.new-era-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.new-era-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    max-width: 780px;
    text-align: center;
    margin: 0 auto;
}

.new-era-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.new-era-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ==========================================================================
   10. MINIMALIST ACCORDIONS (Target Industries)
   ========================================================================== */
.minimal-industries-container {
    margin: 3rem auto;
    max-width: var(--container-width);
}

.minimal-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.minimal-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.minimal-accordion-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.minimal-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    transition: background-color var(--transition-fast);
}

.minimal-accordion-header:hover {
    background: var(--bg-secondary);
}

.minimal-ind-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.minimal-ind-num {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.minimal-ind-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.minimal-ind-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.minimal-roi-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-emerald-dark);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.minimal-accordion-icon {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.minimal-accordion-item.active .minimal-accordion-icon,
.minimal-accordion-header[aria-expanded="true"] .minimal-accordion-icon {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.minimal-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 1.75rem;
}

.minimal-accordion-item.active .minimal-accordion-body {
    max-height: 600px;
    padding: 0 1.75rem 1.75rem;
}

.minimal-body-inner {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ==========================================================================
   11. ENTERPRISE SOLUTIONS & PILLARS (3-Column Grid)
   ========================================================================== */
.capabilities-section,
.pillars-section {
    padding: 4rem 0 6rem;
}

.pillars-grid,
.ind-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-elevated);
}

.featured-pillar {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, var(--bg-card) 100%);
    position: relative;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.85rem;
}

.pillar-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-list li i {
    color: var(--accent-emerald-dark);
    font-size: 0.8rem;
}

/* Stat Counter Boxes */
.stat-counter-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.925rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   12. TARGET INDUSTRIES BLUEPRINTS & SALES MATRIX
   ========================================================================== */
.ind-fullscreen-video-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.ind-fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    border: none;
    outline: none;
}


.executive-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-card);
}

.summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.summary-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ind-details-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.ind-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
}

.ind-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 1rem;
}

.ind-badge-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ind-num-tag {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
}

.ind-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.ind-subsegment {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ind-block {
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
}

.problem-block {
    border-left: 4px solid var(--accent-rose);
}

.solution-block {
    border-left: 4px solid var(--accent-primary);
}

.roi-block {
    border-left: 4px solid var(--accent-emerald);
}

.block-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.block-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.block-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.red-label {
    color: var(--accent-rose);
}

.blue-label {
    color: var(--accent-primary);
}

.green-label {
    color: var(--accent-emerald-dark);
}

.agent-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.agent-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.agent-feature-list li i {
    color: var(--accent-primary);
    font-size: 0.8rem;
}

.roi-stat-highlight {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-emerald-dark);
    margin: 0.5rem 0;
}

.roi-desc {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.roi-stat-sub,
.roi-big-num {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Sales Matrix & Cheat Sheet Table */
.sales-matrix-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    margin-top: 3.5rem;
    box-shadow: var(--shadow-card);
}

.matrix-header {
    margin-bottom: 1.5rem;
}

.matrix-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.matrix-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.matrix-table,
.cheat-sheet-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.matrix-table th,
.cheat-sheet-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.85rem 1rem;
    border-bottom: 2px solid var(--border-subtle);
    white-space: nowrap;
}

.matrix-table td,
.cheat-sheet-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.matrix-table tr:hover td,
.cheat-sheet-table tr:hover td {
    background: var(--bg-secondary);
}

/* ==========================================================================
   13. DISCOVER PAGE: SEARCH, FILTER PILLS, SPEED GRAPH & ARTICLE CARDS
   ========================================================================== */
.discover-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Discover search styles managed in Discover Page section below */


.category-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filter-pill {
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-pill:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.filter-pill.active {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.discover-article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.85rem;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.discover-article-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-card);
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.card-desc {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* Speed-to-Lead Graph Card */
.speed-graph-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    margin: 2.5rem 0;
}

/* ==========================================================================
   14. VALUE PROPOSITION & INTERACTIVE ROI CALCULATOR
   ========================================================================== */
.proposition-section {
    padding: 4rem 0 6rem;
}

.roi-calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-card);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.calc-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.calc-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.calc-controls {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-header label,
.calc-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* WCAG 2.1 AA Compliant Badge: Pure white text on high-contrast blue gradient */
.slider-val-badge {
    background: var(--gradient-primary);
    color: #ffffff !important;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

input[type="range"],
.calc-slider {
    width: 100%;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb,
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.4);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover,
.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.dept-selector-group {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.dept-selector-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dept-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.dept-btn {
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dept-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-main);
}

.dept-btn.active {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Results Card (Dark High-Contrast Card) */
.calc-results-card {
    background: var(--gradient-dark-card);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-elevated);
}

.results-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.85rem;
}

.results-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.res-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.res-box.highlight-res {
    grid-column: span 2;
    background: rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.4);
}

.res-lbl {
    font-size: 0.775rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.res-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-mono);
}

.highlight-res .res-num {
    font-size: 2.25rem;
    color: #38bdf8;
}

/* Simulator Log Styles */
.completed {
    color: var(--accent-emerald-dark);
}

.sim-log-line {
    font-family: var(--font-mono);
    font-size: 0.825rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   15. GLOBAL FOOTER (Unified & Multi-Variant Support)
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-inverse-muted);
    padding: 4.5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

/* Standardized 4-Column Layout */
.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

/* Simplified 2-Element Layout (Non-Homepage Pages) */
.footer-simple-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
}

.footer-tagline {
    font-size: 0.925rem;
    color: #94a3b8;
    line-height: 1.65;
    max-width: 340px;
}

.footer-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.01em;
}

.footer-social-links {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social-links a:hover {
    background: var(--accent-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-heading,
.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav-list,
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a,
.footer-links a {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color var(--transition-fast);
}

.footer-nav-list a:hover,
.footer-links a:hover {
    color: #ffffff;
}

.footer-col-cta {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-cta-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-email-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.footer-email-form input {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-email-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.footer-bottom-bar,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom.center {
    justify-content: center;
    text-align: center;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
}

/* Legacy/Inner Footer Variant Classes Support */
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inner-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 2rem;
}

.inner-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.inner-footer-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.inner-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #64748b;
}

/* ==========================================================================
   16. ACCESSIBLE MODALS, DIALOGS & TOAST NOTIFICATIONS
   ========================================================================== */
.modal-backdrop,
.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 1.5rem;
}

.modal-backdrop.is-open,
.modal-backdrop.open,
.modal-backdrop.active,
.modal.is-open,
.modal.open,
.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-card,
.modal-dialog {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-elevated);
    transform: translateY(20px) scale(0.98);
    transition: transform var(--transition-normal);
}

.modal-backdrop.is-open .modal-card,
.modal-backdrop.open .modal-card,
.modal.is-open .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.35rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: var(--bg-main);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0f172a;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3000;
    font-size: 0.925rem;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.show,
.toast.is-visible,
.toast.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast i {
    color: var(--accent-emerald-dark);
    font-size: 1.15rem;
}

/* ==========================================================================
   17. SCROLL-DRIVEN REVEAL ANIMATIONS & UTILITIES
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.in-view,
.reveal-on-scroll.active,
.reveal-on-scroll.is-revealed,
.in-view,
.is-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Custom cursor tracker */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(37, 99, 235, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.25s, height 0.25s;
}

/* ==========================================================================
   18. CONSOLIDATED RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* --------------------------------------------------------------------------
   A. Tablet Landscape / Large Tablet Breakpoint (max-width: 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .wrapper {
        padding: 0 20px;
    }

    .footer-top-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-col-cta {
        grid-column: span 3;
        margin-top: 1rem;
    }
}

/* --------------------------------------------------------------------------
   B. Desktop to Tablet Transition Breakpoint (max-width: 992px)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .site-header {
        top: 12px;
        width: calc(100% - 32px);
    }

    .nav-toggle,
    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Navigation Slide-out Drawer */
    .site-navigation,
    .nav-drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-elevated);
        z-index: 1500;
        padding: 5.5rem 2rem 2.5rem;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .dark-nav .site-navigation,
    .dark-nav .nav-drawer {
        background: #0f172a;
        border-left-color: rgba(255, 255, 255, 0.15);
    }

    .site-navigation.is-open,
    .site-navigation.active,
    .nav-drawer.is-open,
    .nav-drawer.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 1.15rem;
        padding: 0.6rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--border-subtle);
    }

    .dark-nav .nav-link {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    /* Grids to 2-column or stacked */
    .cinematic-grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pillars-grid,
    .ind-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-col-cta {
        grid-column: span 2;
    }
}

/* --------------------------------------------------------------------------
   C. Tablet to Mobile Transition Breakpoint (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .site-header {
        top: 8px;
        width: calc(100% - 24px);
    }

    .main-header {
        padding: 0.6rem 1rem;
    }

    .hero-section {
        padding: 7.5rem 0 3.5rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    /* Stack All Grids to 1-Column */
    .pillars-grid,
    .ind-grid-3 {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-metric-grid {
        grid-template-columns: 1fr;
    }

    .res-box.highlight-res {
        grid-column: span 1;
    }

    .ind-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col-cta {
        grid-column: span 1;
    }

    .footer-email-form {
        flex-direction: column;
    }

    .footer-bottom-bar,
    .footer-bottom,
    .inner-footer-main,
    .inner-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .minimal-accordion-header {
        padding: 1rem 1.25rem;
    }

    .minimal-accordion-body {
        padding: 0 1.25rem;
    }

    .minimal-accordion-item.active .minimal-accordion-body {
        padding: 0 1.25rem 1.25rem;
    }

    .minimal-ind-title-wrap {
        gap: 0.5rem;
    }

    .modal-card,
    .modal-dialog {
        padding: 1.75rem 1.25rem;
        margin: 1rem;
    }

    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
    }

    .cursor-dot,
    .cursor-circle {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   D. Small Mobile Devices Breakpoint (max-width: 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .wrapper {
        padding: 0 16px;
    }

    .brand-logo .logo-text {
        font-size: 1rem;
    }

    .header-actions .btn-nav-cta span {
        display: none;
    }

    .header-actions .btn-nav-cta {
        padding: 0.5rem 0.75rem;
    }

    .new-era-card {
        min-height: 380px;
    }

    .new-era-overlay {
        padding: 2rem 1rem;
    }

    .new-era-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .service-title-large {
        font-size: 1.75rem;
    }

    .cinematic-service-card {
        padding: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   E. Accessibility: Prefers Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .tech-marquee-track {
        animation: none !important;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   HOMEPAGE TRANSFORMATION STYLES (HOMEPAGE.MD & PROPOSITION.MD)
   ========================================================================== */

/* Metallic Electric Orange Gradient */
.metallic-orange {
    background: linear-gradient(135deg, #ff7700 0%, #ffaa00 50%, #e65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* 1. HERO FULLSCREEN SECTION */
.hero-fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #090d16;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.4) 0%, rgba(9, 13, 22, 0.8) 100%);
    z-index: 2;
}

.hero-fullscreen-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 4rem 6rem 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.hero-bottom-left-box {
    max-width: 840px;
    text-align: left;
}

.hero-main-title {
    font-size: clamp(2.25rem, 4.5vw, 3.85rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-main-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-foot-marquee {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 0;
}

/* Tech Marquee Loop */
.tech-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.tech-marquee-header {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.tech-marquee-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.tech-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.tech-marquee-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
}

.tech-logo-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.tech-logo-item:hover {
    opacity: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 2. AWARENESS FULLSCREEN SECTION */
.awareness-fullscreen-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #000000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.awareness-fullscreen-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.awareness-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.awareness-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awareness-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.awareness-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.c-shaped-card {
    width: 100%;
    max-width: 580px;
    padding: 3.25rem 2.75rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px 0px 36px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    text-align: left;
}

.awareness-tag {
    background: rgba(255, 119, 0, 0.15) !important;
    color: #ffaa00 !important;
    border-color: rgba(255, 119, 0, 0.3) !important;
    margin-bottom: 1rem;
}

.awareness-title {
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.awareness-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* 3. PITCH BLACK DOMAIN & BUSINESS PROPOSITION */
.pitch-black-domain {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    padding-top: 5rem;
}

.text-white {
    color: #ffffff !important;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

.proposition-main-section {
    padding-bottom: 4rem;
}

.prop-sub-block {
    margin-bottom: 6rem;
}

.prop-header-group {
    margin-bottom: 2rem;
}

.prop-sub-title {
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.prop-sub-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    line-height: 1.6;
}

/* Interactive White Tabs */
.prop-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.prop-tab-btn {
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.prop-tab-btn i {
    color: #2563eb;
    font-size: 1rem;
}

.prop-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.prop-tab-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ff7700;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.45);
}

.prop-tab-btn.active i {
    color: #e65100;
}

/* Contained White Cards */
.prop-cards-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.prop-card-panel {
    display: none;
    background: #ffffff;
    color: #1f2937;
    border-radius: 24px;
    padding: 1.75rem 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.prop-card-panel.active {
    display: block;
}

/* Unique Section Animations */
[data-anim-type="slide-fade"] .prop-card-panel.active {
    animation: slideFadeAnim 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-anim-type="scale-up"] .prop-card-panel.active {
    animation: scaleUpAnim 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

[data-anim-type="flip-in"] .prop-card-panel.active {
    animation: flipInAnim 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeAnim {
    from {
        opacity: 0;
        transform: translateX(25px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUpAnim {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipInAnim {
    from {
        opacity: 0;
        transform: perspective(500px) rotateX(12deg);
    }

    to {
        opacity: 1;
        transform: perspective(500px) rotateX(0deg);
    }
}

.prop-card-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.prop-card-main-title,
body.dark-theme .prop-card-main-title,
.prop-card-panel .prop-card-main-title {
    font-family: 'Outfit', 'Inter', var(--font-heading), sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 800;
    color: #0f172a !important;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: left;
}

.prop-card-main-subtitle {
    font-family: 'Outfit', 'Inter', var(--font-sans), sans-serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 600;
    color: #000000;
    line-height: 1.45;
    margin-top: 0.4rem;
    text-align: left;
}

.prop-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.prop-card-left {
    color: #374151;
    text-align: left;
}

.prop-card-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 1.1rem;
}

.prop-card-heading {
    display: none;
}

.prop-card-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 1rem;
}

.prop-card-text {
    font-size: 1.025rem;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.prop-research-callout {
    background: #f0f9ff;
    border-left: 4px solid #0284c7;
    padding: 1rem 1.25rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1.25rem;
}

.callout-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: #0369a1;
    margin-bottom: 0.35rem;
}

.prop-solution-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.1rem 1.35rem;
    border-radius: 14px;
    font-size: 0.975rem;
    color: #334155;
}

.sol-title {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sol-title i {
    color: #e65100;
}

/* Visual Interactive Graphics Right Panel */
.visual-interactive-box {
    background: #0f172a;
    color: #ffffff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid #1e293b;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    text-align: left;
}

.vis-header {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 0.5rem;
}

.timer-row {
    margin-bottom: 1rem;
}

.timer-row .t-label {
    font-size: 0.85rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 0.35rem;
}

.t-bar-wrap {
    background: #1e293b;
    border-radius: 8px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.t-bar {
    height: 100%;
    border-radius: 8px;
}

.timer-row.slow .t-bar {
    background: #ef4444;
}

.timer-row.fast .t-bar {
    background: linear-gradient(90deg, #10b981, #059669);
}

.t-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
}

.timer-row.fast .t-val {
    color: #34d399;
}

.stat-highlight-box {
    margin-top: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1;
}

.stat-lbl {
    font-size: 0.8rem;
    color: #a7f3d0;
}

/* Flow steps visual */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.flow-step {
    background: #1e293b;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #334155;
}

.flow-step.success {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    color: #34d399;
}

.flow-arrow {
    color: #64748b;
    font-size: 0.8rem;
}

/* CRM visual */
.crm-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.crm-item {
    padding: 0.75rem 1rem;
    background: #1e293b;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.c-tag {
    background: #334155;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: #94a3b8;
}

.active-tag {
    background: #0284c7;
    color: #ffffff;
}

.won-tag {
    background: #059669;
    color: #ffffff;
}

/* Clock visual */
.clock-radar {
    text-align: center;
    padding: 1.5rem 0;
}

.time-display {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 0.75rem;
}

.status-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-live-pill i {
    font-size: 0.6rem;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Scaling visual */
.chart-comparison {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 140px;
    padding-top: 1rem;
}

.chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    justify-content: flex-end;
}

.col-bar {
    width: 45px;
    border-radius: 6px 6px 0 0;
    transition: height 0.5s ease;
}

.col-bar.hl {
    background: linear-gradient(180deg, #ff7700, #e65100);
}

.col-bar.low {
    background: #334155;
}

/* Document OCR visual */
.doc-pipeline-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.doc-file,
.doc-parsed {
    background: #1e293b;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.doc-parsed {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid #10b981;
}

.doc-arrow {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
}

/* BI visual */
.bi-preview {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    height: 100px;
    margin-bottom: 1rem;
}

.bi-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
}

.bi-bar.b1 {
    height: 40%;
    background: #3b82f6;
}

.bi-bar.b2 {
    height: 75%;
    background: #0284c7;
}

.bi-bar.b3 {
    height: 95%;
    background: #10b981;
}

.bi-text-tag {
    font-size: 0.85rem;
    color: #34d399;
    font-weight: 600;
    text-align: center;
}

/* Onboarding visual */
.stepper-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.step-item {
    background: #1e293b;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.step-item.done {
    color: #34d399;
    font-weight: 600;
    border-left: 3px solid #10b981;
}

/* Inbox visual */
.inbox-tag-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tag-row {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tag-row.urgent {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

.tag-row.billing {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.tag-row.support {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
}

/* Chat preview visual */
.chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    max-width: 90%;
}

.chat-bubble.user {
    background: #334155;
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.agent {
    background: #2563eb;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* Guidance & Post-purchase visual */
.guide-card {
    background: #1e293b;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
}

.guide-title {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.guide-match {
    color: #34d399;
    font-weight: 800;
    font-size: 1.1rem;
}

.track-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.t-node {
    background: #1e293b;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.t-node.active {
    color: #34d399;
    font-weight: 600;
}

.t-node.pending {
    color: #64748b;
}

/* ==========================================================================
   LIVE MINIMALISTIC ANIMATIONS FOR ALL PROPOSITION VISUAL PANELS
   ========================================================================== */

/* --- REV TAB 1: Speed-to-Lead Timer Bars --- */
.visual-speed-timer .timer-row.slow .t-bar {
    animation: barGrowSlow 2s ease-out forwards;
}

.visual-speed-timer .timer-row.fast .t-bar {
    animation: barGrowFast 2s 0.6s ease-out forwards;
}

.visual-speed-timer .stat-num {
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes barGrowSlow {
    from {
        width: 0%;
    }

    to {
        width: 85%;
    }
}

@keyframes barGrowFast {
    from {
        width: 0%;
    }

    to {
        width: 8%;
    }
}

@keyframes statPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

/* --- REV TAB 2: Follow-Up Flow Steps Cascade --- */
.visual-pipeline .flow-step:nth-child(1) {
    animation: fadeSlideIn 0.5s 0.2s ease-out both;
}

.visual-pipeline .flow-arrow:nth-child(2) {
    animation: fadeSlideIn 0.5s 0.5s ease-out both;
}

.visual-pipeline .flow-step:nth-child(3) {
    animation: fadeSlideIn 0.5s 0.8s ease-out both;
}

.visual-pipeline .flow-arrow:nth-child(4) {
    animation: fadeSlideIn 0.5s 1.1s ease-out both;
}

.visual-pipeline .flow-step:nth-child(5) {
    animation: fadeSlideIn 0.5s 1.4s ease-out both;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- REV TAB 3: CRM Cold Lead Cascade --- */
.visual-reactivation .crm-item:nth-child(1) {
    animation: crmSlideIn 0.5s 0.3s ease-out both;
}

.visual-reactivation .crm-item:nth-child(2) {
    animation: crmSlideIn 0.5s 0.9s ease-out both;
}

.visual-reactivation .crm-item:nth-child(3) {
    animation: crmSlideIn 0.5s 1.5s ease-out both;
}

@keyframes crmSlideIn {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- REV TAB 4: 24/7 Radar Pulse --- */
.radar-pulse {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    border: 2px solid rgba(56, 189, 248, 0.3);
    animation: radarPing 2.5s ease-out infinite;
    position: relative;
}

.radar-pulse::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(56, 189, 248, 0.15);
    animation: radarRing 2.5s 0.4s ease-out infinite;
}

@keyframes radarPing {
    0% {
        transform: scale(0.85);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.35);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(56, 189, 248, 0);
    }

    100% {
        transform: scale(0.85);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

@keyframes radarRing {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.visual-clock .time-display {
    animation: timeFlicker 4s ease-in-out infinite;
}

@keyframes timeFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* --- REV TAB 5: Scale Chart Bar Growth --- */
.visual-scaling .col-bar.hl {
    animation: chartGrowHigh 1.2s 0.3s ease-out both;
}

.visual-scaling .col-bar.low {
    animation: chartGrowLow 1.2s 0.6s ease-out both;
}

@keyframes chartGrowHigh {
    from {
        height: 0%;
    }

    to {
        height: 90%;
    }
}

@keyframes chartGrowLow {
    from {
        height: 0%;
    }

    to {
        height: 15%;
    }
}

/* --- PROD TAB 1: Document Pipeline Slide-In --- */
.visual-ocr .doc-file {
    animation: docSlideRight 0.6s 0.2s ease-out both;
}

.visual-ocr .doc-arrow {
    animation: docSlideRight 0.6s 0.6s ease-out both;
}

.visual-ocr .doc-parsed {
    animation: docSlideRight 0.6s 1.0s ease-out both;
}

.visual-ocr .doc-arrow i {
    animation: gearSpin 3s linear infinite;
}

@keyframes docSlideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gearSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- PROD TAB 2: BI Bar Chart Stagger --- */
.visual-bi .bi-bar.b1 {
    animation: biBarGrow 0.8s 0.2s ease-out both;
}

.visual-bi .bi-bar.b2 {
    animation: biBarGrow 0.8s 0.5s ease-out both;
}

.visual-bi .bi-bar.b3 {
    animation: biBarGrow 0.8s 0.8s ease-out both;
}

.visual-bi .bi-text-tag {
    animation: fadeSlideIn 0.5s 1.3s ease-out both;
}

@keyframes biBarGrow {
    from {
        height: 0%;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- PROD TAB 3: Onboarding Stepper Check-Off --- */
.visual-onboarding .step-item:nth-child(1) {
    animation: stepCheckIn 0.5s 0.3s ease-out both;
}

.visual-onboarding .step-item:nth-child(2) {
    animation: stepCheckIn 0.5s 0.8s ease-out both;
}

.visual-onboarding .step-item:nth-child(3) {
    animation: stepCheckIn 0.5s 1.3s ease-out both;
}

@keyframes stepCheckIn {
    from {
        opacity: 0;
        transform: translateX(15px);
        border-left-color: transparent;
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- PROD TAB 4: Email Inbox Cascade --- */
.visual-inbox .tag-row:nth-child(1) {
    animation: inboxSlide 0.5s 0.2s ease-out both;
}

.visual-inbox .tag-row:nth-child(2) {
    animation: inboxSlide 0.5s 0.6s ease-out both;
}

.visual-inbox .tag-row:nth-child(3) {
    animation: inboxSlide 0.5s 1.0s ease-out both;
}

@keyframes inboxSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- CX TAB 1: Chat Bubble Type-In --- */
.visual-chat-preview .chat-bubble.user {
    animation: chatBubbleIn 0.5s 0.3s ease-out both;
}

.visual-chat-preview .chat-bubble.agent {
    animation: chatBubbleIn 0.5s 1.0s ease-out both;
}

@keyframes chatBubbleIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- CX TAB 2: Guidance Match Glow --- */
.visual-guidance .guide-card {
    animation: guideBreathe 3.5s ease-in-out infinite;
}

.visual-guidance .guide-match {
    animation: matchCountUp 1.5s 0.5s ease-out both;
}

@keyframes guideBreathe {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(52, 211, 153, 0.12);
    }
}

@keyframes matchCountUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- CX TAB 3: Post-Purchase Timeline Nodes --- */
.visual-postpurchase .t-node:nth-child(1) {
    animation: nodeActivate 0.5s 0.3s ease-out both;
}

.visual-postpurchase .t-node:nth-child(2) {
    animation: nodeActivate 0.5s 0.9s ease-out both;
}

.visual-postpurchase .t-node:nth-child(3) {
    animation: nodeActivate 0.5s 1.5s ease-out both;
}

.visual-postpurchase .t-node.active i {
    animation: nodeCheck 0.3s 0.5s ease-out both;
}

@keyframes nodeActivate {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nodeCheck {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}


/* ==========================================================================
   5. HOW WE WORK: SPATIAL ZOOM CANVAS & 4-PHASE LIFECYCLE
   ========================================================================== */

/* Design Tokens & Scoped Variables */
#how-we-work-section,
.how-we-work-section {
    --hww-bg-canvas: #000000;
    --hww-card-bg: #080a11;
    --hww-card-inner: #0f121d;
    --hww-border-wireframe: rgba(255, 255, 255, 0.15);
    --hww-border-subtle: rgba(255, 255, 255, 0.08);
    --hww-text-white: #ffffff;
    --hww-text-heading: #f8fafc;
    --hww-text-body: #94a3b8;
    --hww-text-muted: #64748b;

    /* Phase Accent Colors */
    --hww-accent-green: #10b981;
    --hww-accent-purple: #a855f7;
    --hww-accent-coral: #f43f5e;
    --hww-accent-yellow: #f59e0b;

    position: relative;
    width: 100%;
    background-color: var(--hww-bg-canvas);
    color: var(--hww-text-white);
    padding: 0;
    overflow: visible;
}

/* Scroll Track — 600vh scroll depth for smooth pacing */
#how-we-work-section .hww-track {
    position: relative;
    height: 600vh;
    background-color: var(--hww-bg-canvas);
}

/* Sticky Viewport */
#how-we-work-section .hww-sticky-viewport,
#how-we-work-section .hww-viewport {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hww-bg-canvas);
}

/* Background Grid */
#how-we-work-section .hww-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px, 120px 120px, 120px 120px;
    pointer-events: none;
    opacity: 0.6;
}

/* Spatial Virtual Canvas (1200px x 700px fixed coordinate space) */
#how-we-work-section .hww-spatial-canvas,
#how-we-work-section .hww-canvas {
    position: absolute;
    width: 1200px;
    height: 700px;
    top: 50%;
    left: 50%;
    margin-left: -600px;
    margin-top: -350px;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
}

/* Wireframe Rectangle */
#how-we-work-section .hww-wireframe {
    position: absolute;
    inset: 0;
    border: 1px solid var(--hww-border-wireframe);
    pointer-events: none;
    box-sizing: border-box;
    border-radius: 4px;
}

/* Wireframe Corner Crosshairs */
#how-we-work-section .hww-crosshair {
    position: absolute;
    width: 16px;
    height: 16px;
    pointer-events: none;
}

#how-we-work-section .hww-crosshair::before,
#how-we-work-section .hww-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
}

#how-we-work-section .hww-crosshair::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 1px;
}

#how-we-work-section .hww-crosshair::after {
    top: 0;
    left: 7px;
    width: 1px;
    height: 16px;
}

#how-we-work-section .hww-crosshair-tl {
    top: -8px;
    left: -8px;
}

#how-we-work-section .hww-crosshair-tr {
    top: -8px;
    right: -8px;
}

#how-we-work-section .hww-crosshair-bl {
    bottom: -8px;
    left: -8px;
}

#how-we-work-section .hww-crosshair-br {
    bottom: -8px;
    right: -8px;
}

/* Subtle Center Crosshair */
#how-we-work-section .hww-center-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    opacity: 0.3;
}

#how-we-work-section .hww-center-crosshair::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 20px;
    height: 1px;
    background: #ffffff;
}

#how-we-work-section .hww-center-crosshair::after {
    content: '';
    position: absolute;
    top: 0;
    left: 9px;
    width: 1px;
    height: 20px;
    background: #ffffff;
}

/* ==========================================================================
   CENTRAL HERO TYPOGRAPHY & OUTRO
   ========================================================================== */
#how-we-work-section .hww-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
    width: 90%;
    max-width: 800px;
}

#how-we-work-section .hww-title-init,
#how-we-work-section .hww-title-outro {
    font-family: var(--font-accent, 'Instrument Serif', 'Bodoni Moda', Georgia, serif);
    font-size: 5rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
    text-align: center;
}

#how-we-work-section .hww-title-init {
    transition: opacity 0.25s ease;
}

#how-we-work-section .hww-title-outro {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: opacity 0.25s ease;
}

text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

#how-we-work-section .hww-outro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    color: #e2e8f0;
    margin-bottom: 1.2rem;
    font-family: var(--font-body, 'Inter', sans-serif);
    letter-spacing: normal;
}

/* ==========================================================================
   FOUR CORNER BOUNDARY TAGS
   ========================================================================== */
#how-we-work-section .hww-corner-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.65rem;
    background: rgba(8, 10, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #e2e8f0;
    z-index: 25;
    user-select: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

#how-we-work-section .hww-corner-node:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.04);
}

#how-we-work-section .hww-node-square {
    width: 7px;
    height: 7px;
    border-radius: 1px;
    flex-shrink: 0;
}

/* Exact placement along inner corners of wireframe */
/* Top-Left: Step 2 Building Phase */
#how-we-work-section .hww-node-tl {
    top: 14px;
    left: 14px;
}

#how-we-work-section .hww-node-tl .hww-node-square {
    background-color: var(--hww-accent-purple);
    box-shadow: 0 0 8px var(--hww-accent-purple);
}

/* Top-Right: Step 1 Discovery Call */
#how-we-work-section .hww-node-tr {
    top: 14px;
    right: 14px;
}

#how-we-work-section .hww-node-tr .hww-node-square {
    background-color: var(--hww-accent-green);
    box-shadow: 0 0 8px var(--hww-accent-green);
}

/* Bottom-Left: Step 3 Integration Phase */
#how-we-work-section .hww-node-bl {
    bottom: 14px;
    left: 14px;
}

#how-we-work-section .hww-node-bl .hww-node-square {
    background-color: var(--hww-accent-coral);
    box-shadow: 0 0 8px var(--hww-accent-coral);
}

/* Bottom-Right: Step 4 Maintenance */
#how-we-work-section .hww-node-br {
    bottom: 14px;
    right: 14px;
}

#how-we-work-section .hww-node-br .hww-node-square {
    background-color: var(--hww-accent-yellow);
    box-shadow: 0 0 8px var(--hww-accent-yellow);
}

/* ==========================================================================
   QUADRANT CONTAINERS (540px width - Positioned in each corner)
   ========================================================================== */
#how-we-work-section .hww-quadrant {
    position: absolute;
    width: 540px;
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 0.9rem;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transform: translate(-50%, -50%);
}

/* Symmetrical Center Coordinates in 1200x700 Virtual Canvas */
#how-we-work-section .hww-quad-tr {
    /* Top-Right: Step 1 */
    top: 195px;
    left: 890px;
}

#how-we-work-section .hww-quad-tl {
    /* Top-Left: Step 2 */
    top: 195px;
    left: 310px;
}

#how-we-work-section .hww-quad-bl {
    /* Bottom-Left: Step 3 */
    top: 515px;
    left: 310px;
}

#how-we-work-section .hww-quad-br {
    /* Bottom-Right: Step 4 */
    top: 515px;
    left: 890px;
}

/* ==========================================================================
   RIGHT BOX: CONTENT CARD
   ========================================================================== */
#how-we-work-section .hww-card-content {
    background: var(--hww-card-bg);
    border: 1px solid var(--hww-border-subtle);
    border-radius: 12px;
    padding: 1.15rem 1.05rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
}

#how-we-work-section .hww-step-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#how-we-work-section .hww-step-badge-square {
    width: 6px;
    height: 6px;
    border-radius: 1px;
    flex-shrink: 0;
}

#how-we-work-section .hww-content-heading {
    font-family: var(--font-accent, 'Instrument Serif', 'Bodoni Moda', Georgia, serif);
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--hww-text-heading);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0.05rem 0;
}

#how-we-work-section .hww-content-desc {
    font-size: 0.74rem;
    color: var(--hww-text-body);
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

#how-we-work-section .hww-content-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0;
    margin: 0;
}

#how-we-work-section .hww-content-item {
    font-size: 0.73rem;
    color: #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    line-height: 1.35;
    font-weight: 400;
}

#how-we-work-section .hww-chevron {
    color: var(--hww-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0px;
    flex-shrink: 0;
    user-select: none;
}

/* ==========================================================================
   LEFT BOX: VISUAL ILLUSTRATION CARDS
   ========================================================================== */
#how-we-work-section .hww-card-visual {
    background: var(--hww-card-bg);
    border-radius: 12px;
    padding: 1.1rem 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.6rem;
    box-sizing: border-box;
}

/* Step-Specific Border Glows */
#how-we-work-section .hww-visual-step1 {
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.07), 0 15px 35px rgba(0, 0, 0, 0.7);
}

#how-we-work-section .hww-visual-step2 {
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.07), 0 15px 35px rgba(0, 0, 0, 0.7);
}

#how-we-work-section .hww-visual-step3 {
    border: 1px solid rgba(244, 63, 94, 0.3);
    box-shadow: 0 0 25px rgba(244, 63, 94, 0.07), 0 15px 35px rgba(0, 0, 0, 0.7);
}

#how-we-work-section .hww-visual-step4 {
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.07), 0 15px 35px rgba(0, 0, 0, 0.7);
}

/* Card Header Title */
#how-we-work-section .hww-visual-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

#how-we-work-section .hww-visual-title svg {
    flex-shrink: 0;
}

/* Header Highlight Pills */
#how-we-work-section .hww-visual-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
}

#how-we-work-section .hww-pill-green {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

#how-we-work-section .hww-pill-purple {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #d8b4fe;
}

#how-we-work-section .hww-pill-coral {
    background: rgba(244, 63, 94, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #fda4af;
    width: 100%;
    justify-content: center;
}

/* Item Rows */
#how-we-work-section .hww-visual-row {
    background: var(--hww-card-inner);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
}

#how-we-work-section .hww-row-left {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #e2e8f0;
    font-weight: 500;
}

#how-we-work-section .hww-row-right {
    font-weight: 600;
    font-size: 0.68rem;
}

#how-we-work-section .hww-status-green {
    color: #34d399;
}

#how-we-work-section .hww-status-purple {
    color: #c084fc;
}

#how-we-work-section .hww-status-blue {
    color: #38bdf8;
}

/* Step 2 Progress Bar */
#how-we-work-section .hww-prog-track {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 0.1rem;
}

#how-we-work-section .hww-prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    border-radius: 9999px;
    width: 85%;
}

/* Live Status Banners */
#how-we-work-section .hww-live-banner {
    border-radius: 6px;
    padding: 0.4rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 500;
}

#how-we-work-section .hww-dot-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: hww-pulse-dot 1.8s infinite ease-in-out;
}

@keyframes hww-pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

#how-we-work-section .hww-dot-green {
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}

#how-we-work-section .hww-dot-red {
    background: #f43f5e;
    box-shadow: 0 0 6px #f43f5e;
}

/* Step 4 Stats Grid */
#how-we-work-section .hww-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

#how-we-work-section .hww-stat-box {
    background: var(--hww-card-inner);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 6px;
    padding: 0.5rem 0.35rem;
    text-align: center;
}

#how-we-work-section .hww-stat-number {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hww-accent-yellow);
    line-height: 1.1;
    margin-bottom: 0.15rem;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

#how-we-work-section .hww-stat-label {
    font-size: 0.64rem;
    color: var(--hww-text-body);
}

#how-we-work-section .hww-check-icon {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--hww-accent-yellow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 900;
    flex-shrink: 0;
}



/* 5. WATERMARK SECTION */
.watermark-section {
    padding: 7rem 0 4rem 0;
    text-align: center;
    background: #000000;
}

.watermark-brand {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: 0.15em;
    line-height: 0.9;
    user-select: none;
    text-transform: uppercase;
}

.watermark-slogan {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: -0.75rem;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: #ff7700;
}

/* Media Queries for Responsive Card & Fullscreen Layouts */
@media (max-width: 992px) {
    .prop-card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-fullscreen-content {
        padding: 0 2rem 5rem 2rem;
    }

    .c-shaped-card {
        border-radius: 24px;
        max-width: 100%;
    }
}


/* ==========================================================================
   HOMEPAGE CUSTOMIZATIONS (SEMI-TRANSPARENT NAV, BODONI MT FONT, DIRECT LOGOS, STANDALONE MARQUEE)
   ========================================================================== */

/* 1. Semi-Transparent Navigation Header */
.dark-nav .main-header,
.site-header .main-header {
    background: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* 2. Bodoni MT font on 'Agentic Engineering.' */
.metallic-orange {
    font-family: 'Bodoni MT', 'Bodoni Moda', Didot, 'Bodoni 72', 'Times New Roman', serif !important;
    font-weight: 700 !important;
    font-style: italic;
    background: linear-gradient(135deg, #ff7700 0%, #ffaa00 50%, #e65100 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* 3. Hero Section - Fullscreen & Further Bottom-Left Text Positioning */
.hero-fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #090d16;
}

.hero-fullscreen-content {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 10;
    padding: 0;
    max-width: 840px;
    width: calc(100% - 6rem);
    margin: 0;
}

.hero-bottom-left-box {
    max-width: 820px;
    text-align: left;
}

.hero-main-title {
    font-size: clamp(2.35rem, 4.8vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-main-subtitle {
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    font-weight: 400;
    line-height: 1.6;
}

/* 4. Standalone Marquee Slideshow Section (Appears on One Scroll) */
.tech-marquee-between-section {
    position: relative;
    z-index: 10;
    width: 100%;
    background: #090d16;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.25rem 0;
}

/* 5. Company Logo + Name DIRECT PRINT (NO WHITE CAPSULE PILLS/CARDS) */
.tech-logo-item,
.tech-marquee-group .tech-logo-item {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 0.35rem !important;
    color: #ffffff !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    white-space: nowrap !important;
    opacity: 0.9 !important;
    transition: opacity 0.3s ease !important;
}

.tech-logo-item img,
.tech-marquee-group .tech-logo-item img {
    background: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
    max-height: 28px;
    width: auto;
}

.tech-logo-item:hover {
    opacity: 1 !important;
}

/* 6. Awareness Section - Also Full Screen */
.awareness-fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #000000;
}


/* ==========================================================================
   HOMEPAGE REFINEMENTS (COMPRESSED HEADLINE, MARQUEE SPACING, CENTERED PROPS, WATERMARK FOOTER)
   ========================================================================== */

/* 1. Hero Headline - Matches Reference Image Style (Clean Sans-Serif, Regular Weight 400, Crisp White, Tight 2-Line Height) */
.hero-main-title {
    font-family: 'Outfit', 'Inter', 'Plus Jakarta Sans', var(--font-sans) !important;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem) !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.05 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 1.1rem !important;
}

.hero-main-title .hero-title-gradient-reset,
.hero-main-title .metallic-orange {
    font-family: inherit !important;
    font-weight: inherit !important;
    font-style: normal !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}

.hero-main-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    color: rgba(255, 255, 255, 0.88) !important;
    max-width: 680px !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
}

/* 2. Marquee Ticker (Perfectly Equidistant Space Between Separate Companies, Minimal Gap Between Logo Icon & Name) */
.tech-marquee-group {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 3.5rem !important;
    /* Equidistant 3.5rem spacing between every company */
    padding-right: 3.5rem !important;
}

.tech-logo-item,
.tech-marquee-group .tech-logo-item {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    gap: 0.35rem !important;
    /* Logo icon and company name close together */
}

.tech-marquee-track {
    animation: marqueeScroll 45s linear infinite !important;
    /* Smooth, non-stop roll */
}

/* 3. Global Digital Shift (Fullscreen Right C-Shaped Semi-Transparent Glass Panel, Top-to-Bottom Layout & Soft Fade Animation) */
.awareness-fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #000000;
}

.c-shaped-card {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 50vw !important;
    height: 100vh !important;
    max-width: 50vw !important;
    padding: 5rem 4rem 5rem 4.5rem !important;
    background: rgba(9, 13, 22, 0.12) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-radius: 70px 0 0 70px !important;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    text-align: left !important;
    z-index: 10 !important;

    /* Slow, smooth, soft scroll fade-in animation */
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.awareness-fullscreen-section.in-view .c-shaped-card,
.awareness-fullscreen-section.is-visible .c-shaped-card,
.c-shaped-card.in-view,
.c-shaped-card.is-revealed {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.c-card-body {
    margin-top: auto;
    margin-bottom: auto;
}

.awareness-title {
    font-size: clamp(2.1rem, 3.5vw, 3.4rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 2rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
}

.awareness-text {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem) !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 400 !important;
}

@media (max-width: 991px) {
    .c-shaped-card {
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 40px 40px 0 0 !important;
        padding: 3.5rem 2rem !important;
    }
}

/* 4. Business Proposition Centered Section Headers & Centered Tabs */
.prop-header-group.center {
    text-align: center !important;
    margin-bottom: 2.25rem !important;
}

.prop-sub-subtitle.center {
    margin-left: auto !important;
    margin-right: auto !important;
}

.prop-tabs-nav.center-tabs {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    flex-wrap: wrap !important;
    gap: 0.85rem !important;
    margin-bottom: 2.5rem !important;
}

/* 5. Watermark & Replaced Footer Theme */
.watermark-section {
    padding: 7rem 0 0 0 !important;
    text-align: center !important;
    background: #000000 !important;
}

.watermark-brand-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 0.25rem;
}

.watermark-logo-img {
    height: clamp(3.2rem, 7vw, 6rem);
    width: auto;
    opacity: 0.08;
    filter: brightness(0) invert(1);
}

.watermark-brand {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    letter-spacing: 0.15em;
    line-height: 0.9;
    user-select: none;
    text-transform: uppercase;
}

.watermark-slogan-text {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.35rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    text-decoration: none !important;
    /* NO UNDERLINE */
}

.watermark-bottom-bar {
    margin-top: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    background: #000000;
}

.watermark-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-location i {
    color: #ff7700;
}

@media (max-width: 768px) {
    .watermark-bar-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}


/* ==========================================================================
   WATERMARK & LOGO MATCH (ROUNDED BOX IR LOGO & EXACT SLOGAN WATERMARK THEME)
   ========================================================================== */

.watermark-section {
    padding: 7rem 0 0 0 !important;
    text-align: center !important;
    background: #000000 !important;
}

.watermark-brand-row {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

.watermark-logo-img {
    height: clamp(3.5rem, 8.5vw, 7.5rem) !important;
    width: auto !important;
    border-radius: 12px !important;
    opacity: 0.85 !important;
    object-fit: contain !important;
}

.watermark-brand {
    font-family: var(--font-heading) !important;
    font-size: clamp(3.5rem, 9.5vw, 8.5rem) !important;
    font-weight: 900 !important;
    color: rgba(255, 255, 255, 0.12) !important;
    letter-spacing: 0.08em !important;
    line-height: 0.9 !important;
    user-select: none;
    text-transform: uppercase !important;
}

/* Slogan matching the exact watermark typography theme */
.watermark-slogan-text {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.25rem, 3.2vw, 2.5rem) !important;
    font-weight: 900 !important;
    color: rgba(255, 255, 255, 0.12) !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    margin-top: 1rem !important;
    line-height: 1 !important;
    text-decoration: none !important;
}


/* ==========================================================================
   WATERMARK PERFECTION (TRANSPARENT WATERMARK LOGO, TINY DIVIDER LINE, EXACT SLOGAN SPAN)
   ========================================================================== */

.watermark-section {
    padding: 7rem 0 0 0 !important;
    text-align: center !important;
    background: #000000 !important;
}

.watermark-flex-container {
    display: inline-flex !important;
    align-items: stretch !important;
    /* Stretches logo vertically to align top of INTELLECTIR to bottom of slogan */
    justify-content: center !important;
    gap: 2rem !important;
    max-width: 100% !important;
}

.watermark-logo-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.watermark-svg-icon {
    height: 100% !important;
    min-height: 100px !important;
    max-height: 155px !important;
    width: auto !important;
    object-fit: contain !important;
}

.watermark-text-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    justify-content: space-between !important;
}

.watermark-brand {
    font-family: var(--font-heading) !important;
    font-size: clamp(3.2rem, 8.5vw, 6.5rem) !important;
    font-weight: 900 !important;
    color: rgba(255, 255, 255, 0.14) !important;
    letter-spacing: 0.1em !important;
    line-height: 0.88 !important;
    user-select: none;
    text-transform: uppercase !important;
    margin: 0 !important;
}

/* Very tiny line between INTELLECTIR and slogan */
.watermark-divider-line {
    width: 100% !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.14) !important;
    margin: 0.45rem 0 !important;
}

/* Slogan exactly underlining company name from first letter to last letter */
.watermark-slogan-text {
    font-family: var(--font-heading) !important;
    font-size: clamp(0.72rem, 1.62vw, 1.28rem) !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.14) !important;
    letter-spacing: 0.125em !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    text-decoration: none !important;
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .watermark-flex-container {
        flex-direction: column;
        align-items: center !important;
        gap: 1.5rem !important;
    }

    .watermark-text-col {
        align-items: center !important;
        text-align: center !important;
    }

    .watermark-svg-icon {
        height: 80px !important;
    }
}

/* ==========================================================================
   SERVICES CARDS & FAQ ACCORDION STYLES
   ========================================================================== */

/* Services Cards Section */
.services-section {
    padding: 3rem 0 5rem;
}

.services-cards-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-scroll-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12);
    border-color: var(--border-hover);
}

.service-scroll-card::before {
    display: none;
}

.service-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.service-card-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.25;
}

.service-pitch-quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--accent-primary);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.service-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-lead-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.service-steps-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.service-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.1rem 1.4rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.service-step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.service-step-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-practice-box {
    background: var(--bg-secondary);
    border-left: 4px solid var(--text-muted);
    padding: 1.35rem 1.65rem;
    border-radius: 0 14px 14px 0;
    margin-top: 0.5rem;
}

.service-practice-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-primary);
    margin-bottom: 0.4rem;
}

.service-practice-content {
    font-size: 0.98rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.service-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

/* Services Call-To-Action Banner */
.services-cta-banner {
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.services-cta-desc {
    font-size: 1.1rem;
    color: var(--text-inverse-muted);
    max-width: 650px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0 7rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1.5rem 2rem;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    transition: background-color var(--transition-fast);
}

.faq-header:hover {
    background: var(--bg-secondary);
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    text-align: center;
}

.faq-q-num {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
}

.faq-question {
    font-size: 1.35rem;
    font-weight: 800;
    color: #000000 !important;
    line-height: 1.4;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #000000;
}

.faq-icon {
    font-size: 1.1rem;
    color: #000000;
    transition: transform var(--transition-normal), color var(--transition-fast);
    flex-shrink: 0;
    margin-left: 0.75rem;
}

.faq-item.active .faq-icon,
.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer,
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 2rem;
}

.faq-item.active .faq-answer,
.faq-item.active .faq-body {
    max-height: 800px;
    padding: 0 2rem 1.85rem;
}

.faq-answer-inner {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 768px) {
    .service-scroll-card {
        padding: 2rem 1.5rem;
    }

    .service-card-title {
        font-size: 1.6rem;
    }

    .service-step-item {
        padding: 0.9rem 1.1rem;
    }

    .services-cta-banner {
        padding: 2rem 1.5rem;
    }

    .services-cta-title {
        font-size: 1.6rem;
    }

    .faq-header {
        padding: 1.1rem 1.25rem;
    }

    .faq-answer,
    .faq-body {
        padding: 0 1.25rem;
    }

    .faq-item.active .faq-answer,
    .faq-item.active .faq-body {
        padding: 0 1.25rem 1.5rem;
    }
}

/* Specialized 5 Industries Streamlined Section */
.ind-streamlined-section {
    padding: 5rem 0 7rem;
    background: var(--bg-primary);
}

.ind-streamlined-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.ind-streamlined-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.02em;
}

.ind-streamlined-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ind-streamlined-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.ind-streamlined-card {
    padding: 2.25rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
    position: relative;
}

.ind-streamlined-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
}

.ind-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ind-num-badge {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.ind-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.2) 100%);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.ind-streamlined-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.ind-streamlined-focus {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ind-agent-tag {
    font-size: 0.85rem;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
    border-left: 3px solid var(--accent-primary);
    padding: 0.75rem 1rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

body.dark-theme .ind-agent-tag {
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 768px) {
    .ind-streamlined-grid {
        grid-template-columns: 1fr;
    }

    .ind-streamlined-card {
        padding: 1.75rem;
    }
}

/* ==========================================================================
   DISCOVER PAGE — ROBOT HERO SECTION
   ========================================================================== */

.discover-robot-hero {
    position: relative;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 7rem 2rem 4rem;
    cursor: none;
}

/* White cloudy mouse-following glow */
.discover-hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.02) 60%, transparent 80%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    will-change: transform;
}

.discover-robot-hero:hover .discover-hero-glow {
    opacity: 1;
}

/* Inner layout: title left, robot right */
.discover-hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    width: 100%;
    gap: 3rem;
}

/* ---- Title Side ---- */
.discover-hero-text {
    flex: 1;
    max-width: 580px;
}

.discover-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
    padding: 0;
}

.discover-hero-title em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
}

/* Each line animates in */
.title-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: titleLineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.title-line-1 {
    animation-delay: 0.15s;
}

.title-line-2 {
    animation-delay: 0.35s;
}

.title-line-3 {
    animation-delay: 0.55s;
}

.title-line-4 {
    animation-delay: 0.75s;
}

@keyframes titleLineReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Robot Side: Synchronized Entrance with Title Animation ---- */
.discover-hero-robot {
    flex: 1 1 500px;
    width: 100%;
    max-width: 580px;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: titleLineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

#spline-robot-viewer,
.discover-hero-robot spline-viewer {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    border-radius: 20px;
    pointer-events: auto;
    transform: none !important;
}

/* Hide 'Built with Spline' watermark */
spline-viewer::shadow #logo,
spline-viewer::shadow a#logo,
spline-viewer::shadow a[href*="spline.design"],
spline-viewer::shadow .watermark,
spline-viewer::shadow #spline-logo,
spline-viewer #logo,
spline-viewer a#logo,
spline-viewer a[href*="spline.design"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Embodied / Pasted White 'ir' Insignia on Robot Chest Armor */
.robot-chest-letters {
    position: absolute;
    top: 46.8%;
    left: 50.2%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 20;
    opacity: 0.96;
    /* Clean surface-embossed depth: micro bevel shadow below, subtle specular highlight above */
    filter: drop-shadow(0 1.5px 2px rgba(0, 0, 0, 0.9)) drop-shadow(0 -0.5px 0.8px rgba(255, 255, 255, 0.4));
}

.chest-ir-letters-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 968px) {
    .discover-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .discover-hero-text {
        max-width: 100%;
        order: 1;
    }

    .discover-hero-robot {
        width: 100%;
        max-width: 480px;
        height: 420px;
        order: 2;
    }

    .discover-hero-title {
        font-size: clamp(2.4rem, 8vw, 4rem);
    }
}

@media (max-width: 480px) {
    .discover-robot-hero {
        padding: 6rem 1.25rem 3rem;
        min-height: auto;
    }

    .discover-hero-robot {
        width: 100%;
        height: 340px;
    }

    .discover-hero-glow {
        width: 250px;
        height: 250px;
    }
}

/* ==========================================================================
   WATERMARK SECTION — INNER BACKGROUND DARKER FIX
   ========================================================================== */

.watermark-section {
    background: #000000 !important;
    position: relative !important;
}

/* Make the inner watermark area slightly darker with a subtle inset effect */
.watermark-section .wrapper.center {
    position: relative !important;
}

.watermark-section .wrapper.center::before {
    content: '' !important;
    position: absolute !important;
    inset: -2rem -4rem !important;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.watermark-flex-container {
    position: relative !important;
    z-index: 1 !important;
}

/* ==========================================================================
   DISCOVER PAGE — MINIMALIST SEARCH & CATEGORY NAVIGATION
   ========================================================================== */

.discover-filter-bar {
    margin: 2.5rem auto 3rem;
    max-width: 900px;
    width: 100%;
}

.discover-search-box-wrap {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.discover-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(203, 213, 225, 0.85);
    border-radius: 9999px;
    padding: 0.45rem 1.1rem 0.45rem 1.35rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.discover-search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 8px 20px -4px rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

.discover-search-icon {
    color: #94a3b8;
    font-size: 1rem;
    margin-right: 0.85rem;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.discover-search-box:focus-within .discover-search-icon {
    color: var(--accent-primary);
}

.discover-search-input,
.discover-search-box input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.5rem 0 !important;
    line-height: 1.4;
    border-radius: 0 !important;
}

.discover-search-input::placeholder,
.discover-search-box input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.discover-search-clear {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    margin-right: 0.25rem;
}

.discover-search-clear:hover {
    color: #0f172a;
    background: #f1f5f9;
}


/* Category Pills Navigation */
.category-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #ffffff;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    outline: none;
}

.filter-pill:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    background: #f8fafc;
    transform: translateY(-1px);
}

.filter-pill.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.pill-count {
    font-size: 0.725rem;
    padding: 1px 6px;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.2s ease;
}

.filter-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

/* Live Search Results Status */
.discover-search-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.25rem 0.75rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    font-size: 0.85rem;
    color: #64748b;
}

.discover-results-count {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.discover-active-query {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Article Card Meta & Publisher Badges */
.card-meta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    gap: 0.5rem;
}

.publisher-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.725rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 3px 8px;
    border-radius: 6px;
}

.publisher-deloitte {
    background: rgba(134, 188, 37, 0.12);
    color: #3b610c;
    border: 1px solid rgba(134, 188, 37, 0.35);
}

.publisher-mckinsey {
    background: rgba(5, 51, 92, 0.09);
    color: #05335c;
    border: 1px solid rgba(5, 51, 92, 0.22);
}

.publisher-shopify {
    background: rgba(0, 128, 96, 0.1);
    color: #008060;
    border: 1px solid rgba(0, 128, 96, 0.25);
}

.publisher-shiftmate {
    background: rgba(124, 58, 237, 0.1);
    color: #6d28d9;
    border: 1px solid rgba(124, 58, 237, 0.25);
}

.publisher-ibm {
    background: rgba(15, 98, 254, 0.1);
    color: #0f62fe;
    border: 1px solid rgba(15, 98, 254, 0.25);
}

.publisher-intellectir {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.25);
}

.discover-article-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.discover-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.35);
}

.discover-article-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.article-title-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.article-title-link:hover {
    color: var(--accent-primary);
}

.discover-article-card .card-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #475569;
    flex: 1;
    margin-bottom: 1.25rem;
}

.discover-article-card .article-footer {
    margin-top: auto;
    font-size: 0.825rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(226, 232, 240, 0.65);
}

.article-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
}

.article-link-action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.825rem;
    padding: 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.article-link-action:hover {
    color: var(--accent-primary-hover);
    transform: translateX(2px);
}

/* Matched Term Highlight */
mark.search-highlight {
    background: rgba(254, 240, 138, 0.85);
    color: #0f172a;
    padding: 0 3px;
    border-radius: 3px;
    font-weight: inherit;
}

/* Empty State */
.discover-empty-state {
    text-align: center;
    padding: 4.5rem 2rem;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: var(--radius-lg);
    max-width: 580px;
    margin: 2rem auto;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.empty-state-icon {
    font-size: 2.25rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.empty-state-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.empty-state-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.empty-state-desc em {
    color: var(--text-primary);
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 768px) {
    .category-pills-row {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-pills-row::-webkit-scrollbar {
        display: none;
    }

    .search-key-hint {
        display: none;
    }

    .discover-search-input {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   INDUSTRY VIDEO MARQUEE
   ========================================================================== */

.industry-video-marquee-container {
    width: 100vw;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    cursor: grab;
}

.industry-video-marquee-container:active {
    cursor: grabbing;
}

.industry-video-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

.industry-video-marquee-group {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.industry-video-marquee-card {
    position: relative;
    height: 85vh;
    width: auto;
    border-radius: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.industry-video-marquee-card video {
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    border-radius: 1.5rem;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .industry-video-marquee-card {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .industry-video-marquee-card {
        height: 50vh;
    }
}

/* ==========================================================================
   OUR PARTNERS PAGE — 3-SCREEN LAYOUT
   ========================================================================== */

/* Screen 1: Logo Hero Section */
.partner-screen-logo {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
}

.partner-logo-container {
    max-width: 580px;
    width: 90%;
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(12px);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

body.dark-theme .partner-logo-container {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.partner-logo-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(37, 99, 235, 0.15);
}

.partner-logo-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.partner-scroll-hint {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Screen 2: Text Section */
.partner-screen-text {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.partner-text-wrapper {
    max-width: 880px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.partner-text-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

body.dark-theme .partner-text-title {
    color: #ffffff;
}

.partner-text-body {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
    text-align: center;
}

/* Screen 3: Interactive Window to Partner Website */
.partner-screen-window {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 7rem;
    background: radial-gradient(ellipse at bottom, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.partner-window-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.partner-window-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.partner-window-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
}

.partner-browser-window {
    max-width: 1080px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    display: block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.partner-browser-window:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 80px rgba(37, 99, 235, 0.25);
    border-color: var(--accent-primary);
}

.partner-browser-bar {
    height: 44px;
    background: #1e293b;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    gap: 1.25rem;
    border-bottom: 1px solid #334155;
}

.partner-browser-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.partner-browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.partner-browser-dot.red { background: #ff5f56; }
.partner-browser-dot.yellow { background: #ffbd2e; }
.partner-browser-dot.green { background: #27c93f; }

.partner-browser-url {
    flex-grow: 1;
    background: #0f172a;
    border-radius: 6px;
    padding: 0.35rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid #334155;
}

.partner-browser-url i {
    font-size: 0.75rem;
    color: #22c55e;
}

.partner-browser-content {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partner-browser-preview-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.partner-browser-window:hover .partner-browser-preview-img {
    transform: scale(1.02);
}

.partner-browser-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.partner-browser-window:hover .partner-browser-overlay {
    opacity: 1;
}

.partner-browser-overlay-btn {
    background: var(--accent-primary);
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.partner-browser-window:hover .partner-browser-overlay-btn {
    transform: translateY(0);
}

/* ==========================================================================
   MULTI-STEP BOOKING WIZARD & CALENDAR MODAL STYLES
   ========================================================================== */

.booking-modal-card {
    max-width: 880px !important;
    width: 95% !important;
    padding: 2.25rem 2rem !important;
    position: relative;
    border-radius: 20px !important;
    background: #0a0a0a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    max-height: 90vh;
    overflow-y: auto;
}

/* --- Modal Black Theme: Text & Headers --- */
.booking-modal-card .modal-header {
    margin-bottom: 1.25rem;
}

.booking-modal-card .modal-title {
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.booking-modal-card .modal-desc {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* --- Modal Black Theme: Close Button --- */
.booking-modal-card .modal-close-btn {
    color: rgba(255, 255, 255, 0.5) !important;
}

.booking-modal-card .modal-close-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* --- Modal Black Theme: Form Inputs --- */
.booking-modal-card .form-group label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.825rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.booking-modal-card .form-group input,
.booking-modal-card .form-group select,
.booking-modal-card .form-group textarea {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-size: 0.925rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-modal-card .form-group input::placeholder,
.booking-modal-card .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3) !important;
}

.booking-modal-card .form-group input:focus,
.booking-modal-card .form-group select:focus,
.booking-modal-card .form-group textarea:focus {
    border-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08) !important;
    outline: none;
}

/* --- Modal Black Theme: Step Indicator --- */
.booking-modal-card .step-item {
    color: rgba(255, 255, 255, 0.35) !important;
}

.booking-modal-card .step-item.active {
    color: #ffffff !important;
}

.booking-modal-card .step-item.completed {
    color: #22c55e !important;
}

.booking-modal-card .step-number {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.booking-modal-card .step-item.active .step-number {
    background: #ffffff !important;
    color: #0a0a0a !important;
    border-color: #ffffff !important;
}

.booking-modal-card .step-item.completed .step-number {
    background: #22c55e !important;
    color: #ffffff !important;
    border-color: #22c55e !important;
}

.booking-modal-card .step-connector {
    background: rgba(255, 255, 255, 0.12) !important;
}

.booking-modal-card .step-connector.active {
    background: #ffffff !important;
}

/* --- Modal Black Theme: Required Star --- */
.booking-modal-card .required-star {
    color: #f87171 !important;
}

/* --- Modal Black Theme: Buttons --- */
.booking-modal-card .btn-primary {
    background: #ffffff !important;
    color: #0a0a0a !important;
    border: none !important;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: none !important;
}

.booking-modal-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.88) !important;
    transform: translateY(-1px);
}

.booking-modal-card .btn-primary:disabled {
    background: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.35) !important;
    cursor: not-allowed;
    transform: none;
}

.booking-modal-card .btn-primary i {
    color: inherit !important;
}

.booking-modal-card .btn-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 10px;
}

.booking-modal-card .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

/* --- Modal Black Theme: Calendar --- */
.booking-modal-card .booking-calendar-wrapper {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
}

.booking-modal-card .calendar-month-year {
    color: #ffffff !important;
}

.booking-modal-card .calendar-nav-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: none;
}

.booking-modal-card .calendar-nav-btn:hover {
    background: #ffffff !important;
    color: #0a0a0a !important;
}

.booking-modal-card .calendar-weekdays span {
    color: rgba(255, 255, 255, 0.4) !important;
}

.booking-modal-card .cal-day-btn {
    color: rgba(255, 255, 255, 0.75) !important;
}

.booking-modal-card .cal-day-btn:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.booking-modal-card .cal-day-btn.disabled {
    color: rgba(255, 255, 255, 0.15) !important;
}

.booking-modal-card .cal-day-btn.today {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.booking-modal-card .cal-day-btn.selected {
    background: #ffffff !important;
    color: #0a0a0a !important;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15) !important;
}

/* --- Modal Black Theme: Time Slots --- */
.booking-modal-card .time-selector-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

.booking-modal-card .time-slot-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.booking-modal-card .time-slot-btn:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.booking-modal-card .time-slot-btn.selected {
    background: #ffffff !important;
    color: #0a0a0a !important;
    border-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15) !important;
}

/* --- Modal Black Theme: Summary Badge --- */
.booking-modal-card .selected-booking-summary {
    background: rgba(34, 197, 94, 0.1) !important;
    border: 1px solid rgba(34, 197, 94, 0.25) !important;
    color: #4ade80 !important;
}

/* --- Modal Black Theme: Input Error --- */
.booking-modal-card .input-error {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15) !important;
}

/* Step Indicator */
.booking-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.step-item.active {
    color: var(--accent-primary);
}

.step-item.completed {
    color: #22c55e;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-item.active .step-number {
    background: var(--accent-primary);
    color: #ffffff;
    border-color: var(--accent-primary);
}

.step-item.completed .step-number {
    background: #22c55e;
    color: #ffffff;
    border-color: #22c55e;
}

.step-connector {
    height: 2px;
    width: 40px;
    background: rgba(148, 163, 184, 0.25);
    border-radius: 2px;
}

.step-connector.active {
    background: var(--accent-primary);
}

.required-star {
    color: #ef4444;
    font-weight: bold;
}

.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Calendar Component */
.booking-calendar-wrapper {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

body.dark-theme .booking-calendar-wrapper {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    padding: 0 0.25rem;
}

.calendar-month-year {
    font-weight: 700;
    font-size: 0.975rem;
    color: var(--text-primary);
}

.calendar-nav-btn {
    background: rgba(148, 163, 184, 0.12);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.calendar-nav-btn:hover {
    background: var(--accent-primary);
    color: #ffffff;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-btn {
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cal-day-btn:hover:not(.disabled) {
    background: rgba(37, 99, 235, 0.15);
    color: var(--accent-primary);
}

.cal-day-btn.disabled {
    color: rgba(148, 163, 184, 0.35);
    cursor: not-allowed;
    text-decoration: line-through;
}

.cal-day-btn.today {
    border: 1px solid var(--accent-primary);
}

.cal-day-btn.selected {
    background: var(--accent-primary) !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Time Selector */
.booking-time-wrapper {
    margin-bottom: 1.25rem;
}

.time-selector-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
}

.time-slot-btn {
    padding: 0.6rem 0.5rem;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

body.dark-theme .time-slot-btn {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.time-slot-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(37, 99, 235, 0.08);
}

.time-slot-btn.selected {
    background: var(--accent-primary) !important;
    color: #ffffff !important;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Summary Badge */
.selected-booking-summary {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #16a34a;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

body.dark-theme .selected-booking-summary {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.booking-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-step-actions button {
    flex: 1;
}

html {
    scroll-behavior: smooth;
}
