/* ============================================
   XenonAds LTD — Corporate Bold Theme
   Inspired by Magnite / professional adtech
   ============================================ */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Variables ===== */
:root {
    --navy-900: #0a0e1a;
    --navy-800: #0f1525;
    --navy-700: #161e33;
    --navy-600: #1e293b;
    --navy-500: #334155;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --green-500: #10b981;
    --red-500: #ef4444;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 2px 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-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --transition: all 0.25s ease;
}

/* ===== Layout Utilities ===== */
.container { width: 100% !important; max-width: 1200px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 20px; padding-right: 20px; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.flex { display: flex !important; }
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-start { justify-content: flex-start !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

.grid-cols-1 { grid-template-columns: repeat(1, 1fr) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }

@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
    .md\:inline-flex { display: inline-flex !important; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
    .md\:flex-row { flex-direction: row !important; }
    .md\:text-left { text-align: left !important; }
    .md\:w-auto { width: auto !important; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
    .lg\:flex { display: flex !important; }
}

/* Spacing */
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3rem !important; }

.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
.py-20 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pb-16 { padding-bottom: 4rem !important; }
.pb-20 { padding-bottom: 5rem !important; }
.pt-24 { padding-top: 6rem !important; }
.pt-28 { padding-top: 7rem !important; }
.pt-32 { padding-top: 8rem !important; }

.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-10 { margin-top: 2.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-12 { margin-bottom: 3rem !important; }
.mb-16 { margin-bottom: 4rem !important; }
.mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }

@media (min-width: 768px) {
    .md\:pt-32 { padding-top: 8rem !important; }
    .md\:pt-36 { padding-top: 9rem !important; }
    .md\:mb-0 { margin-bottom: 0 !important; }
    .md\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}

/* Width / Height */
.w-full { width: 100% !important; }
.w-auto { width: auto !important; }
.h-16 { height: 4rem !important; }
.h-20 { height: 5rem !important; }
.h-full { height: 100% !important; }
.min-h-screen { min-height: 100vh !important; }

@media (min-width: 768px) {
    .md\:h-20 { height: 5rem !important; }
}

/* Position */
.fixed { position: fixed !important; }
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.sticky { position: sticky !important; }
.top-0 { top: 0 !important; }
.left-0 { left: 0 !important; }
.right-0 { right: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.z-50 { z-index: 50 !important; }
.z-40 { z-index: 40 !important; }
.z-10 { z-index: 10 !important; }

/* Text */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }
.text-5xl { font-size: 3rem !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.leading-tight { line-height: 1.2 !important; }
.leading-relaxed { line-height: 1.7 !important; }

/* Max width */
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-4xl { max-width: 56rem !important; }
.max-w-5xl { max-width: 64rem !important; }
.max-w-6xl { max-width: 72rem !important; }

/* Colors */
.text-white { color: #ffffff !important; }
.text-blue-600 { color: #2563eb !important; }
.text-blue-500 { color: #3b82f6 !important; }
.text-gray-900 { color: #111827 !important; }
.text-gray-700 { color: #374151 !important; }
.text-gray-600 { color: #4b5563 !important; }
.text-gray-500 { color: #6b7280 !important; }
.text-gray-400 { color: #9ca3af !important; }
.text-gray-300 { color: #d1d5db !important; }
.text-amber-500 { color: #f59e0b !important; }
.text-green-500 { color: #10b981 !important; }

.bg-white { background-color: #ffffff !important; }
.bg-blue-600 { background-color: #2563eb !important; }
.bg-blue-50 { background-color: #eff6ff !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-gray-100 { background-color: #f3f4f6 !important; }
.bg-gray-900 { background-color: #111827 !important; }
.bg-navy { background-color: var(--navy-900) !important; }

/* Border */
.border-t { border-top: 1px solid var(--gray-200) !important; }
.border-b { border-bottom: 1px solid var(--gray-200) !important; }
.border-gray-200 { border-color: var(--gray-200) !important; }

/* Display utilities */
.overflow-hidden { overflow: hidden !important; }
.rounded { border-radius: var(--radius) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-full { border-radius: 9999px !important; }

/* Transition */
.transition { transition: var(--transition) !important; }
.duration-300 { transition-duration: 300ms !important; }

/* Space-y */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--navy-900); letter-spacing: -0.02em; }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
@media (min-width: 768px) {
    .navbar-inner { height: 72px; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-900);
    letter-spacing: -0.03em;
}
.logo-mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    border-radius: 7px;
    flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo span.ltd { font-size: 0.625rem; font-weight: 600; color: var(--gray-400); letter-spacing: 0.1em; margin-left: 2px; }

/* Logo Image */
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.logo-img-white {
    height: 44px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
@media (min-width: 768px) {
    .logo-img { height: 52px; }
    .logo-img-white { height: 48px; }
}


/* Nav links */
.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}
.nav-link:hover { color: var(--navy-900); }
.nav-link.active { color: var(--blue-600); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--blue-600);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--blue-600);
    color: #fff;
}
.btn-primary:hover {
    background: var(--blue-500);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.btn-secondary {
    background: transparent;
    color: var(--navy-900);
    border: 1px solid var(--gray-300);
}
.btn-secondary:hover {
    border-color: var(--navy-900);
    background: var(--gray-50);
}
.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-dark { background: var(--navy-900); color: #fff; }
.btn-dark:hover { background: var(--navy-800); transform: translateY(-1px); }

/* Mobile menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    font-size: 1.5rem;
    color: var(--navy-900);
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
}
.mobile-menu .nav-link:last-child { border-bottom: none; }
.mobile-menu .btn { width: 100%; margin-top: 12px; }

/* ===== Hero (Dark) ===== */
.hero {
    background: var(--navy-900);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 800px 400px at 20% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 600px 300px at 80% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-300);
    margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
}
.hero h1 .highlight { color: var(--blue-400); }
.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 36rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* Hero stats bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin-top: 64px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat {
    background: var(--navy-900);
    padding: 24px 20px;
    text-align: center;
}
.hero-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
}

/* ===== Page Header (Dark, smaller) ===== */
.page-header {
    background: var(--navy-900);
    color: #fff;
    padding-top: 120px;
    padding-bottom: 56px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
@media (min-width: 768px) { .page-header h1 { font-size: 3rem; } }
.page-header h1 .highlight { color: var(--blue-400); }
.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 36rem;
    line-height: 1.7;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--navy-900); color: #fff; }
.section-gray { background: var(--gray-50); }

.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-dark .section-title { color: #fff; }
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 36rem;
    line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.6); }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* ===== Feature Cards ===== */
.feature-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 10px;
    margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--blue-600); }
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Dark feature cards */
.section-dark .feature-card {
    background: var(--navy-800);
    border-color: var(--navy-700);
}
.section-dark .feature-card:hover {
    border-color: var(--navy-600);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.section-dark .feature-card h3 { color: #fff; }
.section-dark .feature-card p { color: rgba(255,255,255,0.6); }
.section-dark .feature-icon { background: rgba(37, 99, 235, 0.15); }
.section-dark .feature-icon svg { color: var(--blue-400); }

/* ===== Partner Logos ===== */
.partner-wall {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 32px;
    min-width: 160px;
    transition: var(--transition);
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    filter: grayscale(100%);
    opacity: 0.6;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.partner-logo img {
    max-height: 32px;
    max-width: 130px;
    width: auto;
    height: auto;
}
.partner-logo:hover { color: var(--gray-700); }
.partner-logo:nth-child(4n) { border-right: none; }
.partner-logo:nth-last-child(-n+4) { border-bottom: none; }

/* ===== Stats Bar (light) ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-item {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
}
.stat-item .num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-900);
    letter-spacing: -0.03em;
}
.stat-item .num .suffix { color: var(--blue-600); }
.stat-item .label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 6px;
    font-weight: 500;
}

/* ===== Split Section ===== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) { .split-grid { grid-template-columns: 1fr 1fr; } }

/* ===== List with checkmarks ===== */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 6px;
    margin-top: 2px;
}
.check-icon svg { width: 14px; height: 14px; color: var(--blue-600); }
.check-item h4 { font-size: 1rem; font-weight: 600; color: var(--navy-900); margin-bottom: 2px; }
.check-item p { font-size: 0.9rem; color: var(--gray-600); }

/* ===== Dashboard Mock ===== */
.dashboard-mock {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.dash-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ef4444; }
.dash-dot.yellow { background: #f59e0b; }
.dash-dot.green { background: #10b981; }
.dash-body { padding: 24px; }
.dash-title { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 4px; font-weight: 500; }
.dash-value { font-size: 1.75rem; font-weight: 800; color: var(--navy-900); margin-bottom: 20px; letter-spacing: -0.02em; }
.dash-chart { display: flex; align-items: flex-end; gap: 6px; height: 100px; margin-bottom: 20px; }
.dash-bar { flex: 1; background: var(--blue-600); border-radius: 4px 4px 0 0; opacity: 0.7; transition: opacity 0.3s; }
.dash-bar:hover { opacity: 1; }
.dash-bar:nth-child(even) { background: var(--blue-400); }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-200); }
.dash-stat { text-align: center; }
.dash-stat .label { font-size: 0.7rem; color: var(--gray-400); margin-bottom: 2px; }
.dash-stat .val { font-size: 0.9rem; font-weight: 700; color: var(--navy-900); }

/* ===== Awards Section ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) { .awards-grid { grid-template-columns: repeat(4, 1fr); } }
.award-card {
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}
.award-card:hover { border-color: var(--blue-600); }
.award-icon {
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
}
.award-icon svg { width: 24px; height: 24px; color: var(--amber-400); }
.award-card h4 { font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.award-card p { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ===== News Cards ===== */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.news-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-image {
    height: 160px;
    background: var(--navy-700);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.news-image::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
}
.news-image svg { position: relative; z-index: 1; width: 40px; height: 40px; color: rgba(255,255,255,0.3); }
.news-body { padding: 20px; }
.news-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.news-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; line-height: 1.4; }
.news-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.news-date { font-size: 0.75rem; color: var(--gray-400); margin-top: 12px; }

/* ===== CTA Band ===== */
.cta-band {
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    padding: 56px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 400px 200px at 50% 0%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.03em; }
@media (min-width: 768px) { .cta-band h2 { font-size: 2.5rem; } }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 28px; }

/* ===== Timeline ===== */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 4px; bottom: 4px;
    width: 2px;
    background: var(--gray-200);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -28px; top: 4px;
    width: 16px; height: 16px;
    background: #fff;
    border: 3px solid var(--gray-300);
    border-radius: 50%;
}
.timeline-item.active .timeline-dot { border-color: var(--blue-600); background: var(--blue-600); }
.timeline-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.timeline-item p { font-size: 0.875rem; color: var(--gray-600); }

/* ===== Format Cards ===== */
.format-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .format-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .format-grid { grid-template-columns: repeat(3, 1fr); } }
.format-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
}
.format-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); }
.format-visual {
    height: 160px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--gray-100);
}
.format-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.format-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.format-card p { font-size: 0.85rem; color: var(--gray-600); }

/* ===== Step Cards ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card { text-align: center; }
.step-num {
    width: 40px; height: 40px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: 50%;
}
.step-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.step-card p { font-size: 0.875rem; color: var(--gray-600); }

/* ===== Pricing Cards ===== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--blue-600); border-width: 2px; }
.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--blue-600);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-card h3 { font-size: 1.75rem; font-weight: 800; color: var(--navy-900); }
.pricing-card .model { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 12px; }
.pricing-card .desc { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.6; }
.pricing-features li { padding: 10px 0; font-size: 0.875rem; color: var(--gray-700); border-top: 1px solid var(--gray-100); display: flex; gap: 8px; align-items: center; }
.pricing-features li:first-child { border-top: none; }
.pricing-features li svg { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; }

/* ===== Contact Form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 10px;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--navy-900); }
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

.form-wrapper {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy-900); margin-bottom: 6px; }
.form-group label .req { color: var(--red-500); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--navy-900);
    font-family: inherit;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--gray-400); text-align: center; margin-top: 12px; }

/* ===== FAQ ===== */
.faq-list { max-width: 48rem; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--gray-300); }
.faq-item.open { border-color: var(--blue-600); }
.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-900);
    text-align: left;
}
.faq-toggle {
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-toggle svg { width: 16px; height: 16px; color: var(--blue-600); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ===== Requirements ===== */
.req-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .req-grid { grid-template-columns: repeat(2, 1fr); } }
.req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--gray-700);
}
.req-item svg { width: 18px; height: 18px; color: var(--green-500); flex-shrink: 0; }

/* ===== Targeting Cards ===== */
.targeting-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .targeting-grid { grid-template-columns: repeat(2, 1fr); } }
.targeting-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.targeting-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); }
.targeting-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-50);
    border-radius: 10px;
}
.targeting-icon svg { width: 20px; height: 20px; color: var(--blue-600); }
.targeting-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.targeting-card p { font-size: 0.875rem; color: var(--gray-600); }

/* ===== Legal Content ===== */
.legal-box {
    max-width: 48rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.legal-box h2 { font-size: 1.25rem; font-weight: 700; color: var(--navy-900); margin-top: 32px; margin-bottom: 12px; }
.legal-box h2:first-child { margin-top: 0; }
.legal-box p, .legal-box li { font-size: 0.9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }
.legal-box ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.legal-box a { color: var(--blue-600); text-decoration: underline; }
.legal-box strong { color: var(--navy-900); }

/* ===== Footer ===== */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.6);
    padding-top: 64px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
}
.footer-logo .logo-mark { background: var(--blue-600); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; max-width: 20rem; }
.footer-heading { font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-links li.non-link { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }

.social-row { display: flex; gap: 8px; }
.social-btn {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.social-btn:hover { background: var(--blue-600); color: #fff; }
.social-btn svg { width: 18px; height: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .hero-stat .num { font-size: 1.5rem; }
    .stat-item .num { font-size: 2rem; }
    .cta-band { padding: 40px 20px; }
    .cta-band h2 { font-size: 1.5rem; }
    .legal-box { padding: 24px; }
    .form-wrapper { padding: 24px; }
    .partner-logo { min-width: 50%; border-right: none; }
    .partner-logo:nth-child(odd) { border-right: 1px solid var(--gray-200); }
}


/* Footer Logo - same as header, on white pill background */
.logo-img-footer {
    height: 44px;
    width: auto;
    display: block;
    padding: 6px 14px;
    background: #ffffff;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .logo-img-footer { height: 48px; }
}
