/* ============================================================
   i-BnB — Design tokens (Enterprise Dev refresh)
   ============================================================ */
:root {
    --ink: #1c1211;
    --ink-soft: #6b5c5a;
    --paper: #ffffff;
    --paper-warm: #fdf8f7;
    --red: #d3182a;
    --red-deep: #96101f;
    --red-tint: #fbe4e2;
    --rule: #f0dedd;
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-s: 10px;
    --radius-m: 16px;
    --content-w: 640px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--paper-warm);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 92px;
    overflow-x: hidden;
}

a { color: inherit; }

[id] { scroll-margin-top: 84px; }

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(253, 248, 247, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -8px rgba(28, 18, 17, 0.14); border-color: var(--rule); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    padding: 0 16px;
    max-width: 1040px;
    margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; flex-shrink: 1; }

.brand-logo {
    height: 54px;
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.brand:hover .brand-logo { transform: scale(1.04); }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }

.brand-word {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.brand-sub {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 420px) { .brand-sub { display: none; } }

.header-actions { display: flex; align-items: center; gap: 10px; }

.desktop-nav { display: none; }

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--red);
    color: var(--paper);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.quote-btn .material-symbols-outlined { font-size: 15px; }
.quote-btn:hover { background: var(--red-deep); }

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- MOBILE NAV ---------- */
.mobile-nav-overlay {
    position: fixed;
    inset: 84px 0 0 0;
    background: rgba(28, 18, 17, 0.35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav {
    position: fixed;
    top: 84px;
    right: -100%;
    width: 260px;
    height: calc(100vh - 84px);
    background: var(--paper);
    z-index: 1000;
    padding: 20px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
    padding: 13px 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
}
.mobile-nav a.active { color: var(--red); }
.mobile-nav .nav-cta {
    margin-top: 14px;
    background: var(--red);
    color: var(--paper);
    text-align: center;
    border-radius: var(--radius-s);
    border-bottom: none;
}

/* ---------- HERO ---------- */
.hero-block { padding: 92px 16px 40px; }
.hero-inner { max-width: var(--content-w); margin: 0 auto; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.badge .material-symbols-outlined { font-size: 14px; }
.badge-fill { background: var(--red-tint); color: var(--red-deep); }
.badge-outline { background: var(--paper); color: var(--ink-soft); border: 1.5px solid var(--rule); }

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-top: 16px;
}
.hero-title .accent { color: var(--red); }

.hero-sub {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-top: 14px;
    max-width: 46ch;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 22px;
    border-radius: var(--radius-s);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    transition: transform 0.15s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.97); }
.btn .material-symbols-outlined { font-size: 18px; }

.btn-primary { background: var(--red); color: var(--paper); }
.btn-primary:hover { background: var(--red-deep); }

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #2c1e1c; }

.btn-block { width: 100%; }

/* ---------- STAT CARD ---------- */
.stat-card {
    list-style: none;
    background: var(--paper);
    border-radius: var(--radius-m);
    box-shadow: 0 16px 36px -18px rgba(28, 18, 17, 0.22);
    display: flex;
    justify-content: space-between;
    padding: 20px 12px;
    margin-top: 26px;
}
.stat-card li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; flex: 1; }
.stat-card strong { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--red); }
.stat-card span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-soft); }

/* ---------- LIVE TILE ---------- */
.live-tile {
    position: relative;
    margin-top: 18px;
    height: 190px;
    border-radius: var(--radius-m);
    overflow: hidden;
    background: linear-gradient(155deg, #2a1a18 0%, #1c1211 60%, #120b0a 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}
.live-tile-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.6;
}
.live-tile-mark {
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.live-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background: rgba(211, 24, 42, 0.9);
    color: var(--paper);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--paper); animation: pulse-dot 1.6s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.live-caption {
    position: relative;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-top: 10px;
    max-width: 24ch;
}

/* ---------- STACK CARD ---------- */
.stack-card {
    margin-top: 18px;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-m);
    padding: 18px;
}
.stack-card-head { display: flex; align-items: flex-start; gap: 12px; }
.stack-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--red-tint); color: var(--red-deep);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stack-card-head h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.stack-card-head p { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.stack-version {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--red);
    background: var(--red-tint);
    padding: 3px 8px;
    border-radius: 999px;
    flex-shrink: 0;
}
.stack-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.pill {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    color: var(--ink-soft);
}
.pill-fill { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.stack-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    font-size: 12px;
    color: var(--ink-soft);
    flex-wrap: wrap;
    gap: 8px;
}
.stack-foot span { display: inline-flex; align-items: center; gap: 5px; }
.stack-foot .material-symbols-outlined { font-size: 15px; color: var(--red); }
.foot-accent { font-weight: 700; color: var(--red); }

/* ---------- MARQUEE ---------- */
.marquee-section {
    margin-top: 34px;
    padding: 15px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- LAYOUT ---------- */
.main-content { max-width: var(--content-w); margin: 0 auto; padding: 40px 16px 0; }
.main-content-tail { padding-top: 0; }

.section-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.kicker {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--red);
    margin-bottom: 4px;
}

/* ---------- CAPABILITY (Core Capabilities) ---------- */
.capability-section { margin-top: 4px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; flex-wrap: wrap; }
.link-all {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none; white-space: nowrap;
}
.link-all .material-symbols-outlined { font-size: 15px; }

.capability-list { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }

.capability-card {
    display: flex;
    gap: 14px;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-m);
    padding: 16px;
}
.cap-icon {
    width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
    background: var(--red-tint); color: var(--red-deep);
    display: flex; align-items: center; justify-content: center;
}
.cap-icon-dark { background: var(--ink); color: var(--paper); }
.cap-body { flex: 1; min-width: 0; }
.cap-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.cap-top h3 { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.phase-tag {
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
    background: var(--red-tint); color: var(--red-deep);
    padding: 3px 8px; border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.cap-body p { font-size: 13px; color: var(--ink-soft); margin-top: 6px; line-height: 1.55; }
.cap-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 12px; font-size: 11.5px; color: var(--ink-soft); flex-wrap: wrap; gap: 8px;
}
.cap-foot span { display: inline-flex; align-items: center; gap: 4px; }
.cap-foot .material-symbols-outlined { font-size: 14px; }
.cap-foot span .material-symbols-outlined { color: #2f9e5c; }
.cap-foot a { color: var(--red); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 3px; }

/* ---------- SERVICES (full list) ---------- */
.services-section { margin-top: 48px; }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
.service-card {
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-m);
    padding: 20px;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -16px rgba(28, 18, 17, 0.3);
}
.service-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
.service-icon .material-symbols-outlined { color: var(--paper); font-size: 21px; }
.service-card:hover .service-icon { background: var(--red); }
.service-card h3 { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; margin-top: 14px; }
.service-card p { font-size: 13px; color: var(--ink-soft); margin-top: 5px; }

/* ---------- PROCESS BAND ---------- */
.process-band {
    margin-top: 48px;
    padding: 28px 20px;
    border-radius: var(--radius-m);
    background: var(--ink);
    color: var(--paper);
}
.process-title { font-family: var(--font-display); font-size: 21px; font-weight: 600; line-height: 1.3; max-width: 22ch; }
.process-desc { font-size: 14px; color: rgba(255, 255, 255, 0.72); margin-top: 10px; line-height: 1.6; max-width: 46ch; }
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }
.process-step {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}
.process-step span { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--red); margin-bottom: 3px; }
.process-band .btn-primary { margin-top: 20px; }

/* ---------- TESTIMONIAL ---------- */
.testimonial-block { padding: 24px 16px 0; }
.testimonial-inner {
    max-width: var(--content-w);
    margin: 0 auto;
    background: linear-gradient(155deg, #3a1712 0%, #23100e 65%, #1a0b0a 100%);
    color: var(--paper);
    border-radius: var(--radius-m);
    padding: 22px;
}
.testimonial-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.case-tag {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.85);
    padding: 5px 10px; border-radius: 999px;
}
.stars { color: var(--red); letter-spacing: 2px; font-size: 13px; }
.testimonial-inner blockquote {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 14px;
}
.testimonial-inner figure { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 13px; }
.testimonial-inner img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.2); }
.testimonial-inner figcaption { color: rgba(255, 255, 255, 0.65); }
.testimonial-inner figcaption strong { display: block; color: var(--paper); font-size: 13.5px; }
.testimonial-stats {
    display: flex; gap: 12px; margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.testimonial-stats div { flex: 1; }
.testimonial-stats strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--paper); }
.testimonial-stats span { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.55); }

/* ---------- FINAL CTA ---------- */
.final-cta {
    margin-top: 40px;
    text-align: center;
    padding: 32px 20px;
    background: var(--paper);
    border: 1.5px solid var(--rule);
    border-radius: var(--radius-m);
}
.cta-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--red-tint); color: var(--red);
    margin-bottom: 16px;
}
.cta-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; max-width: 22ch; margin: 0 auto; }
.cta-desc { font-size: 14.5px; color: var(--ink-soft); margin-top: 10px; max-width: 40ch; margin-left: auto; margin-right: auto; }
.final-cta .btn { margin-top: 20px; }
.cta-fine { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-section { margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 15px 0; }
.faq-item:first-of-type { border-top: 1px solid var(--rule); margin-top: 16px; }
.faq-item summary {
    font-weight: 600;
    font-size: 14.5px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 18px; color: var(--red); margin-left: 10px; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; line-height: 1.6; max-width: 50ch; }

/* ---------- FOOTER ---------- */
.site-footer {
    margin-top: 52px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 24px;
}
@media (min-width: 640px) {
    .footer-inner { padding: 56px 32px 28px; }
}
@media (min-width: 1024px) {
    .footer-inner { padding: 64px 40px 32px; }
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
}
.footer-brand {
    grid-column: 1 / -1;
}
@media (min-width: 680px) {
    .footer-top {
        grid-template-columns: 1.4fr repeat(2, 1fr);
        gap: 32px 24px;
    }
    .footer-brand {
        grid-column: span 1;
    }
}
@media (min-width: 960px) {
    .footer-top {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        gap: 36px 28px;
    }
}

.footer-logo {
    width: auto;
    height: 42px;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
@media (min-width: 960px) {
    .footer-logo {
        height: 48px;
    }
}

.footer-brand p {
    font-size: 14.5px;
    margin-top: 16px;
    max-width: 32ch;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}
.footer-brand p strong {
    color: rgba(255, 255, 255, 0.95);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
    background: var(--red);
    transform: translateY(-2px);
}
.footer-social .material-symbols-outlined {
    font-size: 20px;
    color: var(--paper, #fff);
}
.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--paper, #fff);
    display: block;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.footer-col h4 {
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.footer-col a,
.footer-col p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    width: fit-content;
    position: relative;
    padding: 3px 0;
    min-height: 24px;
}
.footer-col a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.2s ease;
}
.footer-col a:hover {
    color: #fff;
}
.footer-col a:hover::after {
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
    body { padding-bottom: 0; }

    .header-inner, .main-content, .footer-inner, .hero-inner, .testimonial-inner { max-width: 1040px; }
    .header-inner { height: 116px; padding: 0 32px; }
    .brand-logo { height: 76px; }
    .brand-word { font-size: 29px; }
    .brand-sub { font-size: 12px; }

    .desktop-nav { display: flex; align-items: center; gap: 26px; margin-right: 8px; }
    .desktop-nav a {
        text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-soft);
        position: relative; padding-bottom: 2px;
    }
    .desktop-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width 0.2s ease; }
    .desktop-nav a:hover { color: var(--red); }
    .desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
    .desktop-nav a.active { color: var(--red); }

    .menu-toggle, .mobile-nav, .mobile-nav-overlay { display: none !important; }

    .hero-block { padding: 132px 32px 64px; }
    .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
    .hero-title { font-size: 48px; }
    .hero-sub { font-size: 17px; }
    .hero-actions { flex-direction: row; }
    .hero-badges, .hero-title, .hero-sub, .hero-actions, .stat-card { grid-column: 1; }
    .live-tile, .stack-card { grid-column: 2; grid-row: 1 / span 5; align-self: start; }
    .stat-card { margin-top: 26px; }

    .main-content { padding: 64px 32px 0; }

    .capability-list { display: grid; grid-template-columns: repeat(3, 1fr); }
    .capability-card { flex-direction: column; }

    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card.wide { grid-column: 1 / -1; }

    .process-band { padding: 48px 52px; }
    .process-title { font-size: 28px; }
    .process-steps { grid-template-columns: repeat(4, 1fr); max-width: 680px; }

    .testimonial-block { padding: 30px 32px 0; }
    .testimonial-inner { padding: 40px; }
    .testimonial-inner blockquote { font-size: 22px; max-width: 40ch; }

    .final-cta { padding: 48px; }
}

@media (min-width: 1024px) {
    .header-inner, .main-content, .hero-inner, .testimonial-inner { max-width: 1140px; }
    .hero-title { font-size: 54px; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .live-dot { animation: none; }
    * { scroll-behavior: auto !important; }
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }