/* =====================
   TOKENS & RESET
   ===================== */
:root {
    --bg: #0d0d0d;
    --bg-alt: #111111;
    --surface: #161616;
    --border: rgba(255, 255, 255, 0.07);
    --text: #f0f0f0;
    --text-muted: rgba(240, 240, 240, 0.42);
    --accent: #c8ff00;
    --accent-dim: rgba(200, 255, 0, 0.08);
    --radius: 4px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --nav-h: 64px;
    --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================
   NOISE OVERLAY
   ===================== */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* =====================
   NAV
   ===================== */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(13, 13, 13, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}

.nav-logo {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid rgba(200, 255, 0, 0.25);
    padding: 9px 20px;
    border-radius: var(--radius);
    letter-spacing: 0.02em;
    transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
    background: var(--accent-dim);
    border-color: rgba(200, 255, 0, 0.5);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =====================
   MOBILE NAV
   ===================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    inset: var(--nav-h) 0 auto;
    z-index: 99;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    letter-spacing: -0.01em;
}

.mobile-nav-link:hover { color: var(--text); }

/* =====================
   HERO
   ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: var(--nav-h) 24px 0;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Radial gradient to fade edges and darken center for text legibility */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 48%, rgba(13,13,13,0.55) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Floating chips */
.hero-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
    letter-spacing: 0.01em;
    animation: chipFloat 3.5s ease-in-out infinite;
}

.chip-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chip-1 { top: 32%; left: 7%;  animation-delay: 0s; }
.chip-2 { top: 30%; right: 7%; animation-delay: 1s; }
.chip-3 { bottom: 26%; right: 9%; animation-delay: 2s; }

@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.hero-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(48px, 7.5vw, 104px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
    margin-bottom: 28px;
}

.hero-accent { color: var(--accent); }

.hero-sub {
    font-size: clamp(15px, 1.5vw, 17px);
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Trusted bar */
.hero-trusted {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px 0 36px;
    margin-top: auto;
    border-top: 1px solid var(--border);
    text-align: center;
}

.trusted-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(240, 240, 240, 0.3);
    letter-spacing: 0.02em;
}

.trusted-dot { opacity: 0.3; }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: #d4ff20;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.18);
}

/* =====================
   SECTION LAYOUT
   ===================== */
.section {
    padding: 120px 48px;
    border-top: 1px solid var(--border);
}

.section-alt { background: var(--bg-alt); }

.container { max-width: var(--max-w); margin: 0 auto; }

.section-header { margin-bottom: 72px; }

.section-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.97;
}

.section-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-top: 22px;
}

/* =====================
   SERVICES
   ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border);
}

.service-card {
    padding: 52px 48px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: background 0.25s;
    position: relative;
    cursor: default;
}

.service-card:nth-child(2n)  { border-right: none; }
.service-card:nth-child(3),
.service-card:nth-child(4)   { border-bottom: none; }

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: opacity 0.25s;
    pointer-events: none;
}

.service-card:hover { background: var(--surface); }
.service-card:hover::after { opacity: 0.18; }

.service-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
}

.service-body h3 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.service-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tags li {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 2px;
}

/* =====================
   PROCESS
   ===================== */
.process-list { display: flex; flex-direction: column; }

.process-step {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 48px;
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.process-step:first-child { border-top: 1px solid var(--border); }

.process-step-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 6px;
}

.process-step-body h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.process-step-body p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.72;
}

/* =====================
   ABOUT
   ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start;
}

.about-text p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.82;
    margin-bottom: 22px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-stats { display: flex; flex-direction: column; }

.stat {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.stat:first-child { border-top: 1px solid var(--border); }

.stat-num {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* =====================
   CONTACT
   ===================== */
.contact-section { border-bottom: 1px solid var(--border); }

.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 720px;
}

.contact-inner .section-tag { margin-bottom: 20px; }

.contact-headline {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.95;
    margin-bottom: 22px;
}

.contact-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.68;
    margin-bottom: 40px;
}

.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================
   FOOTER
   ===================== */
.footer { padding: 30px 48px; }

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-logo {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--accent);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* =====================
   AI SYSTEMS SECTION
   ===================== */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.system-card {
    background: var(--accent);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    cursor: default;
    transition: transform 0.22s, box-shadow 0.22s;
}

.system-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(200, 255, 0, 0.18);
}

.system-icon {
    width: 52px;
    height: 52px;
    background: #1a3028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.system-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d0d0d;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.system-viewall {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    min-height: 220px;
}

.system-viewall-circle {
    width: 80px;
    height: 80px;
    background: rgba(200, 255, 0, 0.1);
    border: 1px solid rgba(200, 255, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: background 0.2s, transform 0.2s;
}

.system-viewall:hover .system-viewall-circle {
    background: rgba(200, 255, 0, 0.2);
    transform: translateY(-2px);
}

.system-viewall-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =====================
   100+ USES SECTION
   ===================== */
.uses-section { background: var(--bg); }

.uses-header {
    text-align: center;
    margin-bottom: 64px;
}

.uses-tag {
    display: block;
    text-align: center;
    margin-bottom: 16px;
}

.uses-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.use-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: default;
    white-space: nowrap;
}

.use-pill:hover {
    border-color: rgba(200, 255, 0, 0.35);
    color: var(--text);
    background: rgba(200, 255, 0, 0.04);
}

.use-pill svg { flex-shrink: 0; }

/* =====================
   PARTNERS SECTION
   ===================== */
.partners-header { margin-bottom: 64px; }

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 76px;
    width: max-content;
    animation: logoScroll 40s linear infinite;
    will-change: transform;
}

.logo-marquee:hover .logo-track { animation-play-state: paused; }

.brand-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    color: rgba(240, 240, 240, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
}

.brand-logo svg {
    height: 100%;
    width: auto;
    fill: currentColor;
    display: block;
}

.brand-logo:hover {
    color: var(--text);
    transform: scale(1.08);
}

@keyframes logoScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .logo-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 48px 64px; }
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    gap: 24px;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    color: var(--text-muted);
    transition: transform 0.3s ease, border-color 0.2s, color 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: rgba(200, 255, 0, 0.4);
    color: var(--accent);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.78;
    padding-bottom: 28px;
    max-width: 680px;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* =====================
   AUTOMATIONS IN ACTION
   ===================== */
.automations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.auto-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: var(--bg);
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
}

.auto-card:hover {
    border-color: rgba(200, 255, 0, 0.28);
    background: var(--surface);
    transform: translateY(-3px);
}

.auto-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.auto-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(200, 255, 0, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.auto-card-head h3 {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.auto-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.auto-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: auto;
}

.auto-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.auto-col-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.auto-col-time {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.auto-col-time small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

.auto-before .auto-col-time { color: rgba(240, 240, 240, 0.5); }
.auto-after  .auto-col-time { color: var(--accent); }

.auto-col-note {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.auto-arrow {
    color: var(--accent);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-savings {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.auto-savings strong {
    color: var(--text);
    font-weight: 700;
}

.automations-disclaimer {
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.01em;
}

.automations-disclaimer a {
    color: var(--accent);
    border-bottom: 1px solid rgba(200, 255, 0, 0.3);
    transition: border-color 0.2s;
}

.automations-disclaimer a:hover { border-color: var(--accent); }

/* =====================
   ROI CALCULATOR
   ===================== */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.roi-inputs {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.roi-field { display: flex; flex-direction: column; gap: 14px; }

.roi-field-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.roi-field-top label {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.roi-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Range sliders */
.roi-field input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
}

.roi-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.4), 0 4px 12px rgba(200, 255, 0, 0.3);
    transition: transform 0.15s;
}

.roi-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }

.roi-field input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 1px rgba(200, 255, 0, 0.4);
    cursor: pointer;
}

.roi-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: auto;
}

.roi-result {
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 14px;
    padding: 40px;
    background: linear-gradient(160deg, var(--accent-dim) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.roi-result-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.roi-result-block { display: flex; flex-direction: column; gap: 10px; }

.roi-result-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.roi-result-num {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.roi-result-num.accent { color: var(--accent); }

.roi-result-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.roi-result-sub strong { color: var(--text); font-weight: 700; }

.roi-cta {
    margin-top: auto;
    justify-content: center;
    width: 100%;
}

/* =====================
   REVEAL ANIMATION
   ===================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.service-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.14s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.20s; }

.process-step.reveal:nth-child(2) { transition-delay: 0.10s; }
.process-step.reveal:nth-child(3) { transition-delay: 0.20s; }

.auto-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.auto-card.reveal:nth-child(3) { transition-delay: 0.14s; }
.auto-card.reveal:nth-child(4) { transition-delay: 0.20s; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .mobile-nav { display: flex; }

    .nav    { padding: 0 24px; }
    .section { padding: 80px 24px; }
    .footer  { padding: 26px 24px; }

    .chip-1 { top: 22%; left: 4%;  font-size: 11px; padding: 7px 12px; }
    .chip-2 { top: 22%; right: 4%; font-size: 11px; padding: 7px 12px; }
    .chip-3 { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card:nth-child(2n) { border-right: 1px solid var(--border); }
    .service-card:nth-child(3)  { border-bottom: 1px solid var(--border); }
    .service-card                { padding: 36px 24px; }

    .systems-grid { grid-template-columns: repeat(2, 1fr); }

    .logo-track { gap: 52px; }
    .brand-logo { height: 26px; }

    .automations-grid { grid-template-columns: 1fr; }
    .auto-card { padding: 30px 24px; }

    .roi-grid { grid-template-columns: 1fr; }
    .roi-inputs, .roi-result { padding: 32px 24px; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }

    .process-step { grid-template-columns: 60px 1fr; gap: 20px; padding: 40px 0; }

    .faq-question { font-size: 16px; }

    .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
    .footer-links  { justify-content: center; }
}

@media (max-width: 600px) {
    .hero-headline    { font-size: 42px; letter-spacing: -0.03em; }
    .section-title    { font-size: 32px; }
    .contact-headline { font-size: 40px; }
    .process-step-body h3 { font-size: 22px; }
    .section-header   { margin-bottom: 48px; }
    .stat-num         { font-size: 40px; }
    .hero-chip        { display: none; }

    .systems-grid { grid-template-columns: 1fr; }
    .system-card  { min-height: 160px; }
    .system-viewall { min-height: 120px; flex-direction: row; gap: 16px; justify-content: flex-start; }

    .faq-question { font-size: 15px; padding: 22px 0; }
    .use-pill     { font-size: 12px; padding: 8px 14px; }

    .auto-compare    { gap: 8px; }
    .auto-col-time   { font-size: 20px; }
    .roi-result-row  { grid-template-columns: 1fr; gap: 22px; }

    .case-callout        { padding: 28px 20px; }
    .case-callout-story  { font-size: 14px; }
    .case-callout-stats  { grid-template-columns: 1fr 1fr; }
    .case-callout-num    { font-size: 32px; }
}

/* =====================
   LEGAL PAGES
   ===================== */
.legal-section {
    padding-top: calc(var(--nav-h) + 80px);
    min-height: 100vh;
}

.legal-body {
    max-width: 680px;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.legal-block { display: flex; flex-direction: column; gap: 12px; }

.legal-body h2 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.legal-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.78;
}

.legal-body a {
    color: var(--accent);
    border-bottom: 1px solid rgba(200, 255, 0, 0.3);
    transition: border-color 0.2s;
}

.legal-body a:hover { border-color: var(--accent); }

/* =====================
   CASE CALLOUT
   ===================== */
.case-callout {
    margin-top: 28px;
    border: 1px solid rgba(200, 255, 0, 0.2);
    border-radius: 14px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.04) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.case-callout-top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.case-callout-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid rgba(200, 255, 0, 0.25);
    border-radius: 100px;
    padding: 4px 10px;
}

.case-callout-sector {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.case-callout-story {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 800px;
}

.case-callout-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.case-callout-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.case-callout-num {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
    color: var(--accent);
}

.case-callout-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    line-height: 1.4;
}
