@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

:root {
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-hero: #080c14;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --accent: #004afd;
    --accent-hover: #0035c7;
    --border: #e2e8f0;
    --border-subtle: rgba(0,0,0,0.06);
    --font-body: 'Inter', system-ui, sans-serif;
    --font-display: 'Clash Display', system-ui, sans-serif;
    --nav-h: 72px;
    --radius: 12px;
    --radius-sm: 8px;
    --max-w: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── ANIMATIONS ─── */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
    transition-delay: var(--delay, 0ms);
}
[data-animate].in-view {
    opacity: 1;
    transform: none;
}
[data-animate="fade"] {
    transform: none;
    transition: opacity 0.6s ease;
}
[data-animate="scale"] {
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
[data-animate="scale"].in-view { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
    [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(8,12,20,0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(255,255,255,0.08);
    box-shadow: 0 1px 30px rgba(0,0,0,0.35);
}
.nav-inner {
    max-width: var(--max-w); width: 100%; margin: 0 auto;
    padding: 0 2rem; height: 100%;
    display: flex; align-items: center; gap: 2.5rem;
}
/* Logo stays light at all times — nav darkens on scroll instead of going white */
.nav-logo img.logo-light { display: block; }
.nav-logo img.logo-dark  { display: none; }
.nav-logo img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 0.125rem; flex: 1; }
.nav-link {
    padding: 0.5rem 0.875rem; border-radius: 6px;
    font-size: 0.875rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }

.nav-cta { margin-left: auto; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--accent); color: #fff;
    padding: 0.6rem 1.25rem; border-radius: 8px;
    font-size: 0.875rem; font-weight: 600;
    transition: background 0.15s, transform 0.1s;
    border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.85);
    padding: 0.6rem 1.25rem; border-radius: 8px;
    font-size: 0.875rem; font-weight: 600;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Mobile menu */
.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 0.5rem; border: none; background: none; margin-left: auto;
}
.nav-hamburger span { width: 22px; height: 1.5px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.nav-mobile {
    display: none; position: fixed; inset: var(--nav-h) 0 0 0;
    background: var(--bg); padding: 1.5rem 2rem 3rem; overflow-y: auto; z-index: 99;
    border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile .nav-link { color: var(--text-muted); font-size: 1.05rem; padding: 0.75rem 0.75rem; }
.nav-mobile .nav-link:hover { color: var(--text); background: var(--bg-alt); }
.nav-mobile .btn-primary { width: 100%; justify-content: center; margin-top: 1rem; padding: 0.85rem; }

/* ─── HERO ─── */
.hero {
    position: relative; height: 100dvh; min-height: 600px;
    display: flex; align-items: flex-end;
    overflow: hidden; background: var(--bg-hero);
}
.hero-video {
    position: absolute; inset: 0;
    object-fit: cover; width: 100%; height: 100%;
    opacity: 0.5;
}
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,12,20,0.95) 0%,
        rgba(8,12,20,0.4) 50%,
        rgba(8,12,20,0.1) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    max-width: var(--max-w); width: 100%; margin: 0 auto;
    padding: 0 2rem 5rem;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.625rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 1.5rem;
    animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.hero-eyebrow span { width: 24px; height: 1px; background: rgba(255,255,255,0.35); }
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5.75rem);
    font-weight: 700; color: #fff; line-height: 1.03; letter-spacing: -0.025em;
    max-width: 860px; margin-bottom: 1.5rem;
    animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.hero-title em {
    font-style: normal; color: #fff;
    background: var(--accent);
    padding: 0.02em 0.22em; border-radius: 8px;
    -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 480px;
    margin-bottom: 2.5rem; line-height: 1.7;
    animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.32s both;
}
.hero-actions {
    display: flex; gap: 0.875rem; flex-wrap: wrap;
    animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.42s both;
}
.btn-hero {
    background: #fff; color: var(--text);
    padding: 0.8rem 1.75rem; border-radius: 8px;
    font-size: 0.9rem; font-weight: 700;
    transition: opacity 0.15s, transform 0.15s;
}
.btn-hero:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-hero-outline {
    border: 1.5px solid rgba(255,255,255,0.28); color: rgba(255,255,255,0.85);
    padding: 0.8rem 1.75rem; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600;
    transition: border-color 0.15s, color 0.15s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,0.65); color: #fff; }

.hero-scroll {
    position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    animation: fadeIn 1s ease 1.2s both;
}
.hero-scroll-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent); animation: scrollPulse 2s ease-in-out infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ─── HOME HERO (centered, video bg + brand carousel) ─── */
.hero-home { align-items: stretch; }
.hero-home-inner {
    position: relative; z-index: 2;
    max-width: var(--max-w); width: 100%; margin: 0 auto;
    padding: var(--nav-h) 2rem 2.25rem;
    display: flex; flex-direction: column;
}
.hero-home .hero-content {
    flex: 1; padding: 0;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    text-align: left;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.55rem;
    padding: 0.4rem 0.95rem 0.4rem 0.75rem;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 99px;
    font-size: 0.76rem; font-weight: 500; letter-spacing: 0.01em;
    color: rgba(255,255,255,0.82); margin-bottom: 1.75rem;
    animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(0,74,253,0.22); }
.hero-home .hero-title {
    max-width: 14ch; margin: 0 0 1.5rem;
    font-size: clamp(2.8rem, 7vw, 6rem);
}
.hero-home .hero-sub {
    max-width: 480px; margin: 0 0 2.5rem;
    color: rgba(255,255,255,0.6); font-size: 1.1rem;
}
.hero-home .hero-actions { justify-content: flex-start; }

/* Brand carousel (marquee) — label left, services scroll right */
.hero-brands {
    flex-shrink: 0; display: flex; align-items: center; gap: 2.5rem;
    padding-top: 1.5rem; margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.09);
    animation: fadeIn 1s ease 0.7s both;
}
.hero-brands-label {
    flex-shrink: 0; max-width: 110px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); line-height: 1.4;
}
.marquee {
    flex: 1; min-width: 0;
    position: relative; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 3.5rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    color: rgba(255,255,255,0.5); white-space: nowrap; letter-spacing: -0.01em;
    transition: color 0.2s;
}
.marquee-item:hover { color: rgba(255,255,255,0.85); }
@keyframes marquee { to { transform: translateX(calc(-50% - 1.75rem)); } }
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Inner page hero (shorter, no video) */
.hero-inner {
    position: relative; padding-top: var(--nav-h);
    background: var(--bg-hero); overflow: hidden;
    min-height: 420px; display: flex; align-items: flex-end;
}
.hero-inner .hero-video { opacity: 0.35; }
.hero-inner .hero-content { padding-bottom: 4rem; }
.hero-inner .hero-title { font-size: clamp(2rem, 4.5vw, 4rem); }

/* ─── SECTIONS ─── */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--bg-alt); }
.container { max-width: var(--max-w); margin: 0 auto; }
.eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.eyebrow-light { color: rgba(255,255,255,0.4); }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 3.1rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; color: var(--text); margin-bottom: 1.25rem; }
.section-sub { font-size: 1.025rem; color: var(--text-muted); max-width: 540px; line-height: 1.7; }

/* ─── TRUST BAR ─── */
.trust-bar { padding: 2.5rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.trust-item { text-align: center; }
.trust-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; line-height: 1; }
.trust-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.375rem; line-height: 1.4; }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.service-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem; background: var(--bg);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex; flex-direction: column; gap: 1rem;
}
.service-card:hover { border-color: #b8c8ff; box-shadow: 0 8px 40px rgba(0,74,253,0.07); transform: translateY(-4px); }
.service-icon { width: 44px; height: 44px; background: #eef2ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.service-icon svg { width: 22px; height: 22px; }
.service-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.service-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.service-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.3rem; }
.service-link svg { width: 13px; height: 13px; transition: transform 0.15s; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ─── FEATURE LIST ─── */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 8px; }
.feature-body {}
.feature-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.375rem; }
.feature-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ─── PROCESS STEPS ─── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ─── LOCATIONS ─── */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.location-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.location-header { background: var(--bg-hero); padding: 2.5rem 2rem 2rem; position: relative; }
.location-city { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.location-state { font-size: 0.82rem; color: rgba(255,255,255,0.38); margin-top: 0.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
.location-badge { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(0,74,253,0.25); color: #93c5fd; padding: 0.35rem 0.75rem; border-radius: 99px; border: 1px solid rgba(0,74,253,0.35); }
.location-body { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 0.875rem; }
.location-row { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.88rem; color: var(--text-muted); }
.location-row svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ─── INDUSTRIES ─── */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.industry-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.75rem 1.75rem 1.5rem; background: var(--bg);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover { border-color: #b8c8ff; transform: translateY(-3px); box-shadow: 0 6px 28px rgba(0,74,253,0.06); }
.industry-num { font-family: var(--font-display); font-size: 2.75rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 1rem; }
.industry-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.industry-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── FEATURES GRID (subpages) ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.feature-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem; background: var(--bg);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    display: flex; flex-direction: column; gap: 1rem;
}
.feature-card:hover { border-color: #b8c8ff; box-shadow: 0 8px 40px rgba(0,74,253,0.07); transform: translateY(-4px); }
.feature-icon { width: 44px; height: 44px; background: #eef2ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-card .feature-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0; }
.feature-card .feature-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PROCESS STEPS (subpages) ─── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.process-step {
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 1.75rem 1.5rem; background: var(--bg);
}
.process-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 0.875rem; }
.process-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ─── STATS ROW (subpages) ─── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.stat-block { border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; background: var(--bg); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.625rem; line-height: 1.45; }

/* ─── COMPLIANCE GRID (subpages) ─── */
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.compliance-item { border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; background: var(--bg); display: flex; gap: 1.5rem; align-items: flex-start; }
.compliance-badge { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; color: var(--accent); background: #eef2ff; padding: 0.5rem 0.875rem; border-radius: 8px; white-space: nowrap; flex-shrink: 0; }
.compliance-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── DARK SECTION (industries) ─── */
.section-dark { background: var(--bg-hero); position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 80% 0%, rgba(0,74,253,0.12), transparent); pointer-events: none; }
.section-dark .container { position: relative; z-index: 1; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.5); }
.section-dark .industry-card {
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.1);
}
.section-dark .industry-card:hover { border-color: rgba(0,74,253,0.55); background: rgba(0,74,253,0.06); box-shadow: 0 8px 40px rgba(0,74,253,0.12); }
.section-dark .industry-num { color: rgba(255,255,255,0.14); }
.section-dark .industry-name { color: #fff; }
.section-dark .industry-desc { color: rgba(255,255,255,0.5); }

/* ─── CTA BAND ─── */
.cta-band { background: var(--bg-hero); padding: 6rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,74,253,0.15), transparent); }
.cta-band .container { position: relative; z-index: 1; }
.cta-band .section-title { color: #fff; }
.cta-band .section-sub { color: rgba(255,255,255,0.45); margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3.5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-row-icon { width: 40px; height: 40px; background: #eef2ff; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-row-icon svg { width: 17px; height: 17px; }
.contact-row-title { font-weight: 600; font-size: 0.875rem; margin-bottom: 0.25rem; }
.contact-row-val { font-size: 0.875rem; color: var(--text-muted); }
.contact-form { display: flex; flex-direction: column; gap: 1.125rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.03em; }
.form-input, .form-textarea, .form-select {
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.7rem 0.95rem; font-size: 0.88rem; font-family: var(--font-body);
    color: var(--text); background: var(--bg); transition: border-color 0.15s; width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--accent); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-optional { color: var(--text-light); font-weight: 400; }
.form-consent { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-consent input { margin-top: 0.15rem; width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.form-status { font-size: 0.82rem; line-height: 1.5; min-height: 1px; }
.form-status.is-error { color: #dc2626; }
.form-status.is-ok { color: var(--accent); }

/* ─── FOOTER ─── */
.footer { background: var(--bg-hero); border-top: 1px solid rgba(255,255,255,0.08); padding: 3rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo img { height: 26px; filter: brightness(0) invert(1); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-note { max-width: var(--max-w); margin: 1.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.72rem; color: rgba(255,255,255,0.32); line-height: 1.5; }

/* ─── BREADCRUMB ─── */
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ─── SPLIT SECTION ─── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-alt); }
.split-img video, .split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .locations-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
    .trust-inner { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .feature-list { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .services-grid, .industries-grid, .steps { grid-template-columns: 1fr; }
    .features-grid, .process-steps, .stats-row { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .trust-num { font-size: 2rem; }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-content { padding: 0 1.5rem 3.5rem; }
    .hero-home .hero-content { padding: 0; }
    .hero-home-inner { padding: var(--nav-h) 1.5rem 2rem; }
    .hero-brands { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hero-brands-label { max-width: none; }
    .marquee { width: 100%; }
    .hero-inner .hero-content { padding-bottom: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .section { padding: 4rem 1.5rem; }
    .cta-band { padding: 4rem 1.5rem; }
}
