:root {
    color-scheme: light;
    --container: min(1180px, calc(100vw - 32px));
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
    /* Color tokens */
    --text: #0f172a;
    --muted: #64748b;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --accent: #0ea5e9;
    --accent-alt: #0ea5e9;
    --border: rgba(15, 23, 42, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: #fcfcfd;
    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 60%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--container);
    margin-inline: auto;
    padding: 20px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: auto;
    height: 56px;
    max-width: 300px;
    object-fit: contain;
    filter: brightness(0.85) saturate(1.2);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: var(--shadow-card);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.brand-copy small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.brand-copy-compact small {
    font-size: 14px;
}

.brand-copy-hidden {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 600;
}

.site-nav a {
    color: var(--muted);
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #0ea5e9;
}

.site-nav .nav-cta {
    color: #ffffff;
    background: #0ea5e9;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
    transition: all 180ms ease;
}

.site-nav .nav-cta:hover {
    color: #ffffff;
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.3);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    color: #0f172a;
    place-items: center;
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 999px;
}

.menu-toggle span + span {
    margin-top: 5px;
}

section {
    padding: 40px 0;
}

.hero-section {
    padding: 96px 0 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.mini-label {
    margin: 0 0 16px;
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.stats-head h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: #0f172a;
    font-size: clamp(44px, 4.5vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading h2,
.stats-head h2 {
    font-size: clamp(32px, 3.5vw, 56px);
}

.hero-copy .lead,
.section-heading p,
.stats-head p {
    margin: 24px 0 0;
    max-width: 60ch;
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 16px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background: #1e293b;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
    color: #0f172a;
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
    border-color: rgba(15, 23, 42, 0.3);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn-block {
    width: 100%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 220px;
    min-height: 64px;
    padding: 12px 24px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-card);
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
}

.hero-visual {
    position: relative;
    min-height: 660px;
    isolation: isolate;
}

.hero-frame {
    position: absolute;
    inset: 10px;
    border-radius: 32px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    justify-content: center;
}

.hero-frame-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    display: block;
    pointer-events: none;
    border-radius: 32px;
}

.hero-stat-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.hero-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0f2fe;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    width: 22px;
    height: 22px;
}

.hero-stat-text strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.hero-stat-text span {
    font-size: 12px;
    color: #475569;
    font-weight: 500;
}

.hero-fallback, .hero-disk, .hero-wire, .hero-wire-a, .hero-wire-b, .hero-panel {
    display: none;
}

.showcase-section {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 40px;
}

.showcase-spotlight,
.showcase-mini {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-card);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.showcase-spotlight {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: 540px;
    padding: 40px;
}

.showcase-spotlight::before,
.showcase-mini::before {
    display: none;
}

.showcase-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.showcase-copy > p:last-of-type {
    max-width: 58ch;
}

.showcase-copy h2,
.showcase-mini h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -0.05em;
    color: #0f172a;
}

.showcase-mini h3 {
    font-size: clamp(24px, 2.5vw, 32px);
}

.showcase-copy h2 {
    font-size: clamp(38px, 3.5vw, 60px);
}

.showcase-copy p,
.showcase-mini p {
    color: #475569;
    line-height: 1.6;
}

.showcase-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.showcase-points span {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
}

.showcase-stage {
    position: relative;
    min-height: 400px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    padding: 34px;
}

.showcase-stage::before, .showcase-stage::after {
    display: none;
}

.showcase-glow, .showcase-scan, .showcase-ring {
    display: none;
}

.showcase-stage img {
    display: none;
}

.showcase-icon-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 8px 0;
}

.showcase-icon-block h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.showcase-icon-block p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
    max-width: 36ch;
}

.showcase-rail {
    display: grid;
    gap: 24px;
}

.showcase-mini {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
    gap: 24px;
    align-items: center;
    padding: 32px;
    min-height: 250px;
}

.showcase-mini-copy {
    display: grid;
    gap: 12px;
}

.showcase-mini-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

.showcase-mini:hover, .showcase-spotlight:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.showcase-mini:hover img {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.stats-strip {
    position: relative;
    padding-top: 64px;
}

.stats-head {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    margin-bottom: 32px;
}

.stats-head p {
    max-width: 42ch;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.stat-card,
.glass-card,
.category-card,
.service-card,
.quote-card,
.lead-card,
.contact-panel,
.faq-item {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    border-radius: 24px;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.stat-card:hover,
.glass-card:hover,
.category-card:hover,
.service-card:hover,
.quote-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    color: #0ea5e9;
    font-size: clamp(38px, 4vw, 56px);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 12px;
    color: #334155;
    font-weight: 600;
    font-size: 16px;
}

.section-heading {
    margin-bottom: 32px;
}

.about-grid {
    display: flex;
    justify-content: center;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
}

.glass-card {
    padding: 32px;
}

.glass-card h3,
.category-card h3,
.service-card h3,
.lead-card h3 {
    margin: 0 0 16px;
    font-family: "Space Grotesk", sans-serif;
    color: #0f172a;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.glass-card p,
.category-card p,
.service-card p,
.quote-card p,
.contact-copy p,
.lead-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.category-grid,
.service-grid,
.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.category-card,
.service-card,
.quote-card {
    position: relative;
    padding: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-card {
    padding-top: 24px;
}

.category-visual {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 16px;
}

.category-card::after,
.service-card::after,
.quote-card::after {
    display: none;
}

.card-index,
.service-step {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0ea5e9;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 24px;
}

.brand-section {
    padding-inline: 0;
    margin-top: 22px;
}

.brand-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    padding: 24px 0;
    background: #f8fafc;
}

.brand-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: scroll-track 28s linear infinite;
}

.brand-pill {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
    padding: 18px 22px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

.brand-pill strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    color: #0f172a;
}

.brand-pill span {
    color: #64748b;
    font-size: 14px;
}

.quote-mark {
    font-family: "Space Grotesk", sans-serif;
    color: #0ea5e9;
    font-size: 64px;
    line-height: 0.8;
    margin-bottom: 16px;
    opacity: 0.5;
}

.quote-card footer {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.quote-card footer span {
    color: #64748b;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: box-shadow 260ms ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    border: 0;
    color: #0f172a;
    background: transparent;
    font: inherit;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    transition: color 180ms ease;
}

.faq-trigger:hover {
    color: #0ea5e9;
}

.faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: #0ea5e9;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 200ms ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    padding: 0 28px 28px;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    gap: 40px;
    padding: 40px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
}

.contact-copy h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: #0f172a;
    font-size: clamp(36px, 3.5vw, 56px);
    letter-spacing: -0.04em;
}

.contact-meta {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.contact-meta a,
.contact-meta span {
    color: #475569;
    font-weight: 600;
    font-size: 18px;
    transition: color 180ms ease;
}

.contact-meta a:hover {
    color: #0ea5e9;
}

.contact-note {
    display: block;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

.lead-card {
    padding: 32px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.lead-card form {
    display: block;
}

.lead-card label,
.field-inline {
    display: grid;
    gap: 8px;
}

.lead-card label + label {
    margin-top: 20px;
}

.lead-card span {
    font-weight: 700;
    color: #334155;
    font-size: 14px;
}

.lead-card input,
.lead-card textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    color: #0f172a;
    border-radius: 12px;
    padding: 16px;
    font: inherit;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-card input:focus,
.lead-card textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.form-note {
    min-height: 20px;
    margin-top: 12px;
    color: #64748b;
    font-size: 14px;
}

.site-footer {
    padding: 40px 0 48px;
    background: #0f172a;
    color: #ffffff;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 24px;
}

.footer-grid p,
.footer-grid span,
.footer-grid a {
    color: #94a3b8;
    margin-top: 12px;
    transition: color 180ms ease;
}

.footer-grid a:hover {
    color: #ffffff;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 700ms ease,
        transform 800ms cubic-bezier(.16,1,.3,1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-strong {
    transform: translateY(48px);
}

@keyframes scroll-track {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 9px));
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .contact-panel,
    .stats-head,
    .showcase-section,
    .showcase-spotlight {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .category-grid,
    .service-grid,
    .reference-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-frame {
        inset: 20px;
    }

    .float-card-b {
        left: 2%;
    }

    .showcase-stage {
        min-height: 380px;
    }

    .showcase-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-mini {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: grid;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 8px;
        padding: 20px;
        border-radius: 20px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero-copy h1,
    .section-heading h2,
    .stats-head h2,
    .contact-copy h2 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .stats-grid,
    .category-grid,
    .service-grid,
    .reference-grid,
    .footer-grid,
    .stats-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .stats-head h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .stats-head p {
        max-width: none;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .float-card {
        max-width: 170px;
        padding: 12px 14px;
    }

    .float-card span {
        font-size: 11px;
    }

    .float-card strong {
        font-size: 13px;
    }

    .showcase-rail {
        grid-template-columns: 1fr;
    }

    .showcase-spotlight {
        padding: 22px;
        min-height: auto;
    }

    .showcase-copy h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .showcase-stage {
        min-height: 320px;
        padding: 18px;
    }

    .showcase-stage img {
        inset: auto 18px 18px 18px;
        width: calc(100% - 36px);
    }

    .showcase-chip {
        min-height: 48px;
        padding: 10px 14px;
        border-radius: 16px;
        font-size: 13px;
    }

    .showcase-chip-top {
        top: 18px;
        right: 18px;
    }

    .showcase-chip-middle {
        top: 82px;
        left: 18px;
    }

    .showcase-chip-bottom {
        bottom: 18px;
        right: 18px;
    }

    .showcase-mini {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .site-header {
        background: #f8fafc;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .nav-wrap,
    .container {
        width: min(100vw - 32px, 100%);
    }

    section {
        padding: 32px 0;
    }

    .hero-badges,
    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 480px;
    }

    .nav-wrap {
        padding: 14px 0;
    }

    .brand img {
        height: 44px;
        width: auto;
        /* Forced deep navy filter */
        filter: brightness(0) saturate(100%) invert(8%) sepia(21%) saturate(5437%) hue-rotate(203deg) brightness(89%) contrast(93%);
        display: block;
    }

    .hero-stat-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .hero-stat-icon {
        width: 36px;
        height: 36px;
    }

    .hero-stat-text strong {
        font-size: 18px;
    }

    .hero-stat-text span {
        font-size: 11px;
        display: block;
    }

    .showcase-mini {
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
