@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;600;700;800&display=swap');

:root {
    /* Brand Palette */
    --bg-dark: #050814;
    --bg-darker: #020409;
    --bg-card: rgba(14, 21, 42, 0.85);
    --bg-card-hover: rgba(22, 33, 64, 0.95);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 102, 255, 0.35);

    /* Text Palette */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Vibrant Accents */
    --brand-blue: #0066ff;
    --brand-cyan: #00d2ff;
    --brand-orange: #ff9f1c;
    --brand-gold: #fbbf24;
    --brand-green: #10b981;
    --brand-red: #ef4444;
    --brand-purple: #8b5cf6;

    /* Gradients */
    --gradient-brand-blue: linear-gradient(135deg, #0066ff 0%, #0284c7 50%, #00d2ff 100%);
    --gradient-surge-orange: linear-gradient(135deg, #ff9f1c 0%, #f59e0b 50%, #ea580c 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-card: linear-gradient(180deg, rgba(17, 26, 51, 0.88) 0%, rgba(10, 16, 32, 0.96) 100%);
    --gradient-header-text: linear-gradient(90deg, #ffffff 0%, #93c5fd 50%, #38bdf8 100%);
    --gradient-gold-text: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);

    /* Shadows */
    --shadow-blue: 0 0 25px rgba(0, 102, 255, 0.25);
    --shadow-gold: 0 0 25px rgba(251, 191, 36, 0.25);
    --shadow-green: 0 0 25px rgba(16, 185, 129, 0.25);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 26px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
    padding-bottom: 40px;
    touch-action: manipulation;
}

/* Ambient Neon Lights Background */
body::before {
    content: '';
    position: fixed;
    top: -15%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.16) 0%, rgba(0, 210, 255, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
}

body::after {
    content: '';
    position: fixed;
    bottom: 5%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 159, 28, 0.10) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 clamp(14px, 2.5vw, 28px);
    position: relative;
    z-index: 1;
}

/* 🌟 Top Live Announcement & Notification Ticker Strip - FULL WIDTH */
.top-ticker-strip {
    background: linear-gradient(90deg, #090e1f 0%, #0d1836 50%, #090e1f 100%);
    border-bottom: 1px solid rgba(0, 102, 255, 0.25);
    padding: 6px clamp(12px, 2vw, 36px);
    font-size: 0.76rem;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.ticker-inner-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

.ticker-left {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--brand-green);
    animation: pulse 1.5s infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.ticker-marquee-text {
    display: inline-block;
    color: #e2e8f0;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ticker-badge-live {
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--brand-green);
    font-size: 0.66rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.ticker-right-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    color: var(--text-dim);
    white-space: nowrap;
}

.ticker-stat-item strong {
    color: var(--brand-cyan);
    font-family: 'JetBrains Mono', monospace;
}

/* 🌟 Luxury Master Header - FULL WIDTH 1-LINE BAR */
.master-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 8, 20, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px clamp(12px, 2vw, 36px);
    width: 100%;
    transition: all 0.3s ease;
}

.master-header.scrolled {
    background: rgba(4, 7, 18, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(0, 102, 255, 0.3);
}

.nav-wrapper-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1.5px solid rgba(0, 102, 255, 0.45);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.35);
    background: #000;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.brand-box:hover .brand-logo-img { transform: scale(1.06); }

.brand-title {
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: -0.2px;
    background: var(--gradient-header-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    white-space: nowrap;
}

.brand-sub {
    font-size: 0.60rem;
    color: var(--brand-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* 🌟 Navigation Links - ONE CLEAN LINE */
.header-links {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 18px);
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.header-links::-webkit-scrollbar { display: none; }

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.80rem;
    font-weight: 700;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-cyan);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: #ffffff;
}

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

.header-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-online-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    font-size: 0.70rem;
    font-weight: 800;
    color: var(--brand-green);
    white-space: nowrap;
}

.cta-btn-sm {
    background: var(--gradient-surge-orange);
    color: #fff;
    text-decoration: none;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 0.76rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    white-space: nowrap;
    flex-shrink: 0;
}
.cta-btn-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255, 159, 28, 0.5); }
.cta-btn-sm:active { transform: scale(0.96); }

/* Hamburger Menu Button */
.mobile-hamburger-btn {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 9px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* 🌟 Mobile Slide-out Drawer */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-drawer-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, #090e1f 0%, #050814 100%);
    border-left: 1px solid rgba(0, 102, 255, 0.35);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 10002;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.mobile-drawer-overlay.open .mobile-drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.drawer-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.90rem;
    font-weight: 700;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.drawer-link:hover, .drawer-link.active {
    background: rgba(0, 102, 255, 0.2);
    border-color: var(--brand-cyan);
    color: #fff;
}

/* Glassmorphic Surfaces */
.glass-card {
    background: var(--gradient-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 14px 45px rgba(0, 102, 255, 0.18);
}

/* Hero Section */
.hero-section {
    padding: 30px 0 20px 0;
    text-align: center;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 102, 255, 0.4);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-cyan);
    margin-bottom: 14px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.hero-title {
    font-size: clamp(1.6rem, 3.8vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.hero-title .grad {
    background: var(--gradient-header-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .gold {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(0.82rem, 1.3vw, 1.02rem);
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto 20px auto;
    line-height: 1.55;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-primary-glow {
    background: var(--gradient-brand-blue);
    color: #fff;
    text-decoration: none;
    padding: 11px 20px;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.45);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}
.btn-primary-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 102, 255, 0.65); }
.btn-primary-glow:active { transform: scale(0.97); }

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
    cursor: pointer;
}
.btn-secondary-glass:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }

/* 🌟 Hero Live Search & Instant Demo Box */
.hero-search-container {
    max-width: 900px;
    margin: 20px auto 0 auto;
    background: rgba(14, 21, 42, 0.92);
    border: 1.5px solid rgba(0, 102, 255, 0.4);
    border-radius: var(--radius-xl);
    padding: 14px;
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.25);
    text-align: left;
    position: relative;
}

.hero-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(5, 8, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 14px;
    border-radius: var(--radius-full);
}

.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    min-width: 0;
}

.hero-search-input::placeholder {
    color: var(--text-dim);
    font-size: 0.82rem;
}

/* Horizontal Scrollable Tabs with Swipe Indicator */
.search-filter-pills-wrap {
    position: relative;
    overflow: hidden;
}

.search-filter-pills-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    background: linear-gradient(90deg, transparent, rgba(14, 21, 42, 0.95));
    pointer-events: none;
}

.search-filter-pills {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 4px 4px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.search-filter-pills::-webkit-scrollbar { display: none; }

.search-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.search-pill.active, .search-pill:hover {
    background: rgba(0, 102, 255, 0.3);
    border-color: var(--brand-cyan);
    color: #fff;
}

/* Live Lead Cards Preview */
.live-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.preview-lead-card {
    background: linear-gradient(180deg, rgba(20, 30, 60, 0.85) 0%, rgba(10, 16, 32, 0.95) 100%);
    border: 1px solid rgba(0, 102, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 12px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview-lead-card:hover {
    border-color: var(--brand-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.preview-company-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.preview-director {
    font-size: 0.76rem;
    color: var(--brand-cyan);
    font-weight: 700;
    margin-bottom: 4px;
}

.preview-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.70rem;
    color: var(--text-dim);
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 4px;
}

.preview-action-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.preview-unmask-btn {
    flex: 1;
    background: rgba(255, 159, 28, 0.15);
    border: 1px solid rgba(255, 159, 28, 0.4);
    color: var(--brand-orange);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.70rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.preview-wa-btn {
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--brand-green);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.70rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Metric Strip Grid */
.metric-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.metric-box {
    padding: 14px;
    text-align: center;
}

.metric-num {
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2;
    margin-bottom: 2px;
}

.metric-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Continuous Source Ribbon */
.marquee-ribbon-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    background: rgba(10, 16, 32, 0.85);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 30px 0;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    gap: 24px;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #cbd5e1;
}

.marquee-item i {
    color: var(--brand-cyan);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Spotlight Module */
.ecosystem-spotlight {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(14, 21, 42, 0.9) 100%);
    border: 1.5px solid rgba(0, 102, 255, 0.4);
    border-radius: var(--radius-xl);
    padding: 24px clamp(16px, 2.5vw, 32px);
    margin-bottom: 45px;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
}

.spotlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.spotlight-left {
    max-width: 720px;
}

.spotlight-badge {
    background: rgba(0, 102, 255, 0.25);
    color: var(--brand-cyan);
    border: 1px solid rgba(0, 102, 255, 0.5);
    font-size: 0.66rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 6px;
}

.spotlight-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.spotlight-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.spotlight-features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.76rem;
    font-weight: 700;
    color: #e2e8f0;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 24px;
}

.section-tag {
    font-size: 0.70rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--brand-cyan);
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 4px;
}

.section-heading {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
}

/* 🧮 Interactive Calculator */
.calculator-card {
    background: var(--gradient-card);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 24px clamp(16px, 2.5vw, 32px);
    margin-bottom: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.calc-field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calc-label {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.calc-select, .calc-input {
    background: rgba(8, 13, 30, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
}

.calc-select:focus, .calc-input:focus {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.25);
}

.calc-result-box {
    margin-top: 20px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.35);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.calc-count-badge {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--brand-green);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.1;
}

/* 🏢 Visual Industry Cards Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
}

.industry-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.2);
}

.industry-img-box {
    position: relative;
    width: 100%;
    height: 135px;
    overflow: hidden;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-img {
    transform: scale(1.06);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 20, 0.2) 0%, rgba(5, 8, 20, 0.85) 100%);
}

.industry-floating-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--brand-green);
    font-size: 0.66rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    padding: 2px 7px;
    border-radius: var(--radius-full);
}

.industry-icon-badge {
    position: absolute;
    bottom: 8px;
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.90rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.industry-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.industry-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
}

.industry-desc {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.42;
    margin-bottom: 8px;
}

.industry-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.industry-tag-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-dim);
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.industry-action-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand-cyan);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 8px;
    margin-top: auto;
}

/* 📊 Live Spreadsheet Snippet */
.data-table-container {
    background: rgba(14, 21, 42, 0.85);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.data-table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.80rem;
    text-align: left;
}

.data-table th {
    background: rgba(8, 12, 28, 0.95);
    color: var(--text-dim);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.data-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    white-space: nowrap;
}

.data-table tr:hover td {
    background: rgba(0, 102, 255, 0.06);
}

/* 💎 VIP Pricing & Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
    margin-top: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 1.5px solid rgba(255, 159, 28, 0.6);
    box-shadow: 0 0 35px rgba(255, 159, 28, 0.2);
}

.pricing-card.featured::before {
    content: '👑 MOST POPULAR VIP PASS';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-surge-orange);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
    white-space: nowrap;
}

.pricing-title {
    font-size: 1.10rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 3px;
}

.pricing-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0 16px 0;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
}

.pricing-strike {
    font-size: 0.95rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.pricing-feature-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 0.80rem;
    color: #cbd5e1;
}

.pricing-feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Regional States Grid */
.state-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
}

.state-card {
    padding: 14px;
    text-decoration: none;
    color: inherit;
}

.state-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}

.state-name {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
}

.state-badge {
    background: rgba(0, 102, 255, 0.18);
    color: var(--brand-cyan);
    font-size: 0.68rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.state-sub {
    font-size: 0.72rem;
    color: var(--text-dim);
}

/* Global Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.country-card {
    padding: 18px;
    text-align: center;
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 6px;
    display: block;
}

.country-name {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 3px;
}

.country-stat {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--brand-cyan);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 6px;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.solution-card {
    padding: 18px;
}

.solution-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
}

.solution-title {
    font-size: 1.02rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.solution-list i {
    color: var(--brand-green);
    margin-top: 3px;
    font-size: 0.72rem;
}

/* 💬 Reviews & Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.review-card {
    background: rgba(14, 21, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 18px;
    transition: all 0.25s ease;
}

.review-card:hover {
    border-color: rgba(0, 102, 255, 0.35);
    transform: translateY(-2px);
}

.review-author-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-cyan);
    object-fit: cover;
}

/* ❓ Interactive FAQ Accordion */
.faq-grid {
    max-width: 860px;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(14, 21, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item.active {
    border-color: rgba(0, 102, 255, 0.45);
    background: rgba(17, 26, 51, 0.95);
}

.faq-question {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 700;
    color: #f1f5f9;
    user-select: none;
}

.faq-answer {
    padding: 0 18px 14px 18px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Custom Request Box */
.inquiry-box {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.12) 0%, rgba(14, 21, 42, 0.95) 100%);
    border: 1.5px solid rgba(255, 159, 28, 0.4);
    border-radius: var(--radius-xl);
    padding: 24px clamp(16px, 2.5vw, 32px);
    margin-bottom: 45px;
}

.inquiry-form {
    max-width: 760px;
    margin: 0 auto;
}

.inq-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.inq-row-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

/* 🌟 Real-Time Social Proof Toast Notification */
.social-proof-toast {
    position: fixed;
    bottom: 80px;
    left: 16px;
    z-index: 9990;
    background: rgba(8, 13, 30, 0.95);
    border: 1.5px solid rgba(0, 102, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(140%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 300px;
    pointer-events: none;
}

.social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    border: 1px solid var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.proof-msg {
    font-size: 0.72rem;
    color: #f1f5f9;
    font-weight: 600;
}

.proof-time {
    font-size: 0.62rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}

/* 📥 Lead Magnet Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: linear-gradient(180deg, #0d152b 0%, #060a16 100%);
    border: 1px solid rgba(0, 102, 255, 0.4);
    border-radius: var(--radius-xl);
    max-width: 440px;
    width: 100%;
    padding: 24px 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 102, 255, 0.2);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    0% { transform: scale(0.92); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Master Footer */
.master-footer {
    background: #03050c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0 20px 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.footer-brand-col p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.trust-badge-strip {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-size: 0.66rem;
    font-weight: 700;
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-col-title {
    font-size: 0.84rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.76rem;
}

.footer-link-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link-list a:hover {
    color: var(--brand-cyan);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.70rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 8px;
}

/* 📱 Fixed Mobile App Bottom Bar */
.mobile-app-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(4, 7, 18, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px)) 4px;
    z-index: 9998;
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    gap: 2px;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.app-nav-item i {
    font-size: 1.05rem;
}

.app-nav-item.active, .app-nav-item:hover {
    color: var(--brand-cyan);
}

.app-nav-item.highlight {
    color: var(--brand-orange);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 992px) {
    .header-links {
        display: none;
    }
    .mobile-hamburger-btn {
        display: inline-flex;
    }
    .mobile-app-bottom-bar {
        display: flex;
    }
    body {
        padding-bottom: 75px;
    }
    .header-online-pill {
        display: none;
    }
    .social-proof-toast {
        bottom: 75px;
        left: 10px;
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    .ticker-right-stats {
        display: none;
    }
    .top-ticker-strip {
        padding: 5px 12px;
    }
    .btn-secondary-glass.header-free-btn {
        display: none;
    }
    .brand-title {
        font-size: 0.90rem;
    }
    .brand-sub {
        display: none;
    }
    .hero-title {
        font-size: 1.65rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-group .btn-primary-glow,
    .hero-cta-group .btn-secondary-glass {
        width: 100%;
        justify-content: center;
    }
    .calc-result-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .calc-result-box > div {
        width: 100%;
    }
    .metric-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .metric-box {
        padding: 10px;
    }
    .metric-num {
        font-size: 1.2rem;
    }
    .metric-lbl {
        font-size: 0.68rem;
    }
}
