:root {
    --bg: #fafaf7;
    --bg-alt: #ffffff;
    --bg-dark: #0e0e0e;
    --ink: #0e0e0e;
    --ink-soft: #4a4a4a;
    --ink-muted: #8a8a8a;
    --line: #e8e6e0;
    --brand-red: #d91f1f;
    --brand-red-dark: #b51919;
    --brand-blue: #1e3a8a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 4px;
    --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ======= NAVIGATION ======= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 64px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-cta {
    background: var(--ink);
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: var(--brand-red);
    transform: translateY(-1px);
}

/* ======= HERO ======= */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, #f3f1ea 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(217, 31, 31, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: stretch;
}

/* ======= HERO LEFT COLUMN ======= */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 540px;
    animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    align-self: flex-start;
    margin-bottom: 28px;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.hero-title-accent {
    font-style: italic;
    color: var(--brand-red);
    font-weight: 400;
}

.hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 580px;
    margin-bottom: auto;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 44px;
}

/* ======= HERO RIGHT COLUMN ======= */
.hero-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 540px;
    animation: fadeIn 1.2s ease 0.2s both;
}

.hero-logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, transparent 60%),
        radial-gradient(circle at 30% 40%, rgba(217, 31, 31, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(30, 58, 138, 0.06) 0%, transparent 50%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

.hero-logo-huge {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 16px 40px rgba(30, 58, 138, 0.12));
    animation: floatLogo 6s ease-in-out infinite;
}

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

/* ======= HERO STATS - on right, below logo ======= */
.hero-stats-right {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-top: 28px;
}

.stat {
    text-align: left;
    padding: 8px 12px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-plus {
    color: var(--brand-red);
    font-weight: 400;
}

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

/* ======= HERO BADGES BAND - full width below ======= */
.hero-badges-band {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    justify-content: center;
}

.hero-badge:hover {
    border-color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--brand-red);
    flex-shrink: 0;
}

/* ======= BUTTONS ======= */
.btn-primary {
    background: var(--ink);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-block;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 31, 31, 0.25);
}

.btn-secondary {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 8px;
    transition: gap 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover { gap: 12px; color: var(--brand-red); }

/* ======= SHARED SECTION STYLES ======= */
section { padding: 120px 0; }

.section-header {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--ink);
}

.section-sub {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* ======= SERVICES ======= */
.services { background: var(--bg-alt); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.service-card.in-view { opacity: 1; transform: translateY(0); }
.service-card:nth-child(2) { transition-delay: 0.05s; }
.service-card:nth-child(3) { transition-delay: 0.1s; }
.service-card:nth-child(4) { transition-delay: 0.15s; }

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(217, 31, 31, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--brand-red);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    position: relative;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    position: relative;
}

.service-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.65;
    position: relative;
}

.modes-banner {
    background: var(--ink);
    color: white;
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.modes-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.modes-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mode {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.mode-icon {
    width: 56px;
    height: 28px;
    color: var(--brand-red);
    flex-shrink: 0;
}

.mode-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    display: inline-block;
}

/* ======= NETWORK ======= */
.network { background: var(--bg); }

.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.region-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.region-card.in-view { opacity: 1; transform: translateY(0); }
.region-card:nth-child(2) { transition-delay: 0.08s; }
.region-card:nth-child(3) { transition-delay: 0.16s; }
.region-card:nth-child(4) { transition-delay: 0.24s; }

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.region-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.region-card:hover::before { transform: scaleX(1); }

.region-card-featured {
    background: linear-gradient(135deg, var(--bg-alt) 0%, #fff8f7 100%);
    border-color: rgba(217, 31, 31, 0.2);
}

.region-card-featured::before { transform: scaleX(1); }

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.region-state {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.region-count {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(217, 31, 31, 0.08);
    border-radius: 100px;
    white-space: nowrap;
}

.region-cities {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.region-city {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.region-pin {
    width: 8px;
    height: 8px;
    background: var(--brand-red);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(217, 31, 31, 0.15);
}

.region-city strong {
    display: block;
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 2px;
}

.region-city em {
    font-style: normal;
    color: var(--ink-muted);
    font-size: 13px;
}

/* Network summary strip */
.network-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--ink);
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px 48px;
    gap: 20px;
}

.network-summary-item {
    text-align: center;
    flex: 1;
}

.network-summary-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.network-summary-label {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.network-summary-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ======= CLIENTS ======= */
.clients { background: var(--bg-alt); }

.client-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 920px;
    margin: 0 auto 80px;
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.client-metric {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.client-metric.in-view { opacity: 1; transform: translateY(0); }
.client-metric:nth-child(2) { transition-delay: 0.1s; }
.client-metric:nth-child(3) { transition-delay: 0.2s; }

.client-metric-num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.client-metric-label {
    font-size: 13px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.client-section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

.client-section-title-secondary { margin-top: 80px; }

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.client-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.client-card.in-view { opacity: 1; transform: translateY(0); }
.client-card:nth-child(2) { transition-delay: 0.05s; }
.client-card:nth-child(3) { transition-delay: 0.1s; }
.client-card:nth-child(4) { transition-delay: 0.15s; }

.client-card:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-4px);
}

.oem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.oem-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.oem-card.in-view { opacity: 1; transform: translateY(0); }
.oem-card:nth-child(2) { transition-delay: 0.05s; }
.oem-card:nth-child(3) { transition-delay: 0.1s; }
.oem-card:nth-child(4) { transition-delay: 0.15s; }
.oem-card:nth-child(5) { transition-delay: 0.2s; }
.oem-card:nth-child(6) { transition-delay: 0.25s; }

.oem-card:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    background: white;
}

/* ======= CONTACT ======= */
.contact { background: var(--bg); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact-info.in-view { opacity: 1; transform: translateY(0); }

.contact-info .section-title { text-align: left; }
.contact-info .eyebrow { text-align: left; }

.contact-details { margin-top: 40px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child { border-bottom: none; }

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand-red);
}

.contact-icon svg { width: 18px; height: 18px; }

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
}

a.contact-value:hover { color: var(--brand-red); }

.contact-form {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact-form.in-view { opacity: 1; transform: translateY(0); }

.hidden-field { position: absolute; left: -5000px; }

.form-group { margin-bottom: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    background: var(--bg);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: white;
    box-shadow: 0 0 0 3px rgba(217, 31, 31, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
    width: 100%;
    margin-top: 12px;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    max-width: 320px;
    line-height: 1.6;
}

.footer-meta {
    text-align: right;
    font-size: 13px;
}

.footer-links {
    margin-top: 12px;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: white; }

/* ======= ANIMATIONS ======= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-left, .hero-right { min-height: auto; }
    .hero-right { max-width: 600px; margin: 0 auto; width: 100%; }
    .hero-badges-band { grid-template-columns: repeat(2, 1fr); }
    .region-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-logo img { height: 48px; }
    .hero { padding: 110px 0 60px; }
    .hero-stats-right { grid-template-columns: repeat(2, 1fr); }
    section { padding: 80px 0; }
    .section-header { margin-bottom: 60px; }
    .service-grid { grid-template-columns: 1fr; }
    .client-metrics { grid-template-columns: 1fr; gap: 28px; }
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .oem-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .modes-banner { padding: 24px 28px; flex-direction: column; align-items: flex-start; }
    .modes-list { gap: 16px; flex-wrap: wrap; }
    .mode { font-size: 22px; }
    .mode-icon { width: 44px; height: 22px; }
    .network-summary { flex-direction: column; padding: 28px; gap: 24px; }
    .network-summary-divider { width: 100%; height: 1px; }
    .footer-inner { flex-direction: column; }
    .footer-meta { text-align: left; }
    .footer-links { justify-content: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
}

@media (max-width: 560px) {
    .container { padding: 0 20px; }
    .nav-cta { padding: 8px 14px; font-size: 13px; }
    .nav-logo img { height: 40px; }
    .hero-title { font-size: 38px; }
    .hero-stats-right { grid-template-columns: 1fr; }
    .hero-badges-band { grid-template-columns: 1fr; }
    .stat-num { font-size: 28px; }
    .region-grid { grid-template-columns: 1fr; }
    .oem-grid { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: 1fr; }
    .client-card { padding: 32px 20px; font-size: 22px; }
}
