/* =========================================================
   Loopstone — Reverse Supply Chain Platform
   Brand: deep navy + warm orange · industrial / corporate
   ========================================================= */

:root {
    --navy: #0e1f33;
    --navy-2: #15293f;
    --navy-3: #1f3c5a;
    --navy-soft: #e7ecf2;
    --orange: #ea6a1f;
    --orange-dark: #c5571a;
    --orange-light: #ffaa6e;
    --orange-soft: #fff1e7;
    --green: #10b981;
    --blue: #4b9be8;
    --gray-900: #0e1f33;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #fff;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 2px rgba(15, 32, 56, 0.06);
    --shadow: 0 4px 16px rgba(15, 32, 56, 0.08);
    --shadow-lg: 0 24px 56px rgba(15, 32, 56, 0.14);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
    --container: 1240px;
    --nav-h: 76px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    font-size: 15.5px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: var(--font);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 12px; color: var(--gray-500); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.skip-link {
    position: absolute; left: -9999px;
    background: var(--orange); color: var(--white);
    padding: 12px 18px; font-weight: 700;
    border-radius: 0 0 8px 0; z-index: 10000;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ============= HEADER ============= */
.site-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
}
.nav-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 36px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    flex-shrink: 0;
}
.brand-logo {
    height: 44px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}
.brand-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
}
.brand-text small {
    display: block;
    font-size: 9px;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    margin-top: 4px;
}
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: rgba(255, 255, 255, 0.1); color: var(--orange-light); }
.nav-links a.active { color: var(--orange); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
    line-height: 1;
    white-space: nowrap;
    font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-2); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 14px; }
.btn-block { width: 100%; }

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ============= HERO ============= */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: calc(var(--nav-h) + 70px) 0 0;
    min-height: 720px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(14, 31, 51, 0.85) 0%, rgba(14, 31, 51, 0.55) 50%, rgba(14, 31, 51, 0.45) 100%),
        url("https://images.unsplash.com/photo-1601598851547-4302969d0614?w=2200&q=85&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
}
.hero-eyebrow {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: inline-block;
}
.hero h1 {
    color: var(--white);
    max-width: 720px;
    margin-bottom: 22px;
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}
.hero-sub {
    color: var(--gray-200);
    font-size: 1.05rem;
    max-width: 580px;
    margin-bottom: 36px;
}

/* 4 subbrand tiles ribbon */
.subbrand-ribbon {
    position: relative;
    z-index: 4;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.subbrand-tile {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s, box-shadow 0.15s;
    color: var(--navy);
}
.subbrand-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    color: var(--navy);
}
.subbrand-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
}
.subbrand-tile strong {
    display: block;
    font-size: 14px;
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.subbrand-tile small {
    display: block;
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* ============= SECTIONS ============= */
.section { padding: 80px 0; }
.section-soft { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--gray-300); }
.section-orange { background: var(--orange); color: var(--white); }
.section-orange h2 { color: var(--white); }

.section-eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ============= ABOUT + RETAILERS ============= */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 32px;
}
.stat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--orange-soft);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.stat-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}
.stat-label {
    font-size: 12.5px;
    color: var(--gray-500);
    margin-top: 4px;
    line-height: 1.4;
}

.retailers-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-bottom: 22px;
}
.retailers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.retailer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, box-shadow 0.15s;
    padding: 12px 18px;
}
.retailer-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.retailer-card .rlogo {
    width: 100%;
    height: 56px;
    display: block;
}
.retailer-card.more {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 600;
}

/* ============= 4 SUBBRAND DETAIL CARDS ============= */
.subbrand-detail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}
.subbrand-detail .card {
    background: var(--navy-2);
    border-radius: var(--radius);
    padding: 30px 26px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--navy-3);
    height: 100%;
}
.subbrand-detail .card > .btn { margin-top: auto; }
.subbrand-detail .card-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-300);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
    align-self: flex-start;
}
.subbrand-detail .card-title {
    color: var(--orange);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.subbrand-detail .card-url {
    color: var(--gray-300);
    font-size: 12.5px;
    margin-bottom: 14px;
    word-break: break-all;
}
.subbrand-detail .card-desc {
    color: var(--gray-200);
    font-size: 13.5px;
    margin-bottom: 16px;
    line-height: 1.55;
}
.subbrand-detail .card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.subbrand-detail .card-features li {
    font-size: 13px;
    color: var(--gray-200);
    padding: 5px 0 5px 22px;
    position: relative;
}
.subbrand-detail .card-features li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 11px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
}
.subbrand-detail .flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    margin-bottom: 18px;
}
.subbrand-detail .flow-node {
    text-align: center;
    color: var(--gray-300);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    flex: 0 0 auto;
    max-width: 60px;
}
.subbrand-detail .flow-node-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(234, 106, 31, 0.12);
    border: 1.5px solid var(--orange);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin: 0 auto 4px;
}
.subbrand-detail .flow-arrow {
    color: var(--gray-400);
    font-size: 14px;
    margin: 0 -2px;
}

/* ============= NATIONAL EXPANSION ============= */
.expansion-row {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
    align-items: center;
}
.expansion-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-700);
    font-weight: 500;
}
.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.legend-dot.current { background: var(--blue); box-shadow: 0 0 0 4px rgba(75, 155, 232, 0.18); }
.legend-dot.expansion { background: var(--orange); box-shadow: 0 0 0 4px rgba(234, 106, 31, 0.18); }
.legend-dot.future { background: var(--gray-400); }

.us-map-wrap {
    aspect-ratio: 1.6 / 1;
    background: var(--navy-2);
    border-radius: var(--radius);
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.us-map-wrap svg { width: 100%; height: 100%; display: block; }

.city-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
    margin-top: 28px;
}
.city-thumb {
    aspect-ratio: 16/10;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}
.city-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(14, 31, 51, 0.35) 100%);
}
.city-ny { background-image: url("https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=600&q=80&auto=format&fit=crop"); }
.city-nj { background-image: url("https://images.unsplash.com/photo-1668207138728-6d6f3edbdaad?w=600&q=80&auto=format&fit=crop"); }
.city-ct { background-image: url("https://images.unsplash.com/photo-1568585105565-e372998a195e?w=600&q=80&auto=format&fit=crop"); }
.city-pa { background-image: url("https://images.unsplash.com/photo-1559113213-f7f7a64d2b54?w=600&q=80&auto=format&fit=crop"); }
.city-fl { background-image: url("https://images.unsplash.com/photo-1535498730771-e735b998cd64?w=600&q=80&auto=format&fit=crop"); }
.city-in { background-image: url("https://images.unsplash.com/photo-1601751818941-571144562ff8?w=600&q=80&auto=format&fit=crop"); }
.city-tx { background-image: url("https://images.unsplash.com/photo-1531218150217-54595bc2b934?w=600&q=80&auto=format&fit=crop"); }
.city-ca { background-image: url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=600&q=80&auto=format&fit=crop"); }
.city-name {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 8px;
}
.city-cta {
    text-align: center;
    margin-top: 28px;
}
.city-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--navy);
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}
.city-cta a:hover { border-color: var(--orange); color: var(--orange); }

/* ============= VISION 2030 ============= */
.vision {
    background-color: var(--navy);
    background-image:
        linear-gradient(135deg, rgba(14, 31, 51, 0.95) 0%, rgba(21, 41, 63, 0.88) 50%, rgba(31, 60, 90, 0.75) 100%),
        url("https://images.unsplash.com/photo-1586528116493-0a6a4a3f7d3a?w=2000&q=80&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.vision-row {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr 0.8fr;
    gap: 44px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.vision-text h2 { color: var(--white); }
.vision-text p { color: var(--gray-300); }
.vision-numbers {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 22px;
    align-items: center;
}
.vision-box {
    padding: 26px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.vision-box.goal { background: var(--orange); border-color: var(--orange-dark); }
.vision-box .vision-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue);
    margin-bottom: 16px;
}
.vision-box.goal .vision-label { color: rgba(255, 255, 255, 0.92); }
.vision-row .vision-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.vision-row .vision-item:first-of-type { border-top: 0; padding-top: 0; }
.vision-row .vision-item-icon {
    width: 36px; height: 36px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.vision-box.goal .vision-item-icon { background: rgba(255, 255, 255, 0.18); color: var(--white); }
.vision-row .vision-item-num {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}
.vision-row .vision-item-label {
    font-size: 11.5px;
    color: var(--gray-300);
    margin-top: 2px;
}
.vision-box.goal .vision-item-label { color: rgba(255, 255, 255, 0.85); }
.vision-arrow {
    font-size: 28px;
    color: var(--orange);
    text-align: center;
}
.vision-map {
    aspect-ratio: 1.2 / 1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    position: relative;
}
.vision-map svg { width: 100%; height: 100%; }

/* ============= ECOSYSTEM FLOW ============= */
.ecosystem-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
}
.eco-node {
    text-align: center;
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 600;
    flex: 0 1 auto;
    max-width: 110px;
}
.eco-node-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 10px;
    transition: border-color 0.15s, transform 0.15s;
}
.eco-node.center .eco-node-icon {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
    transform: scale(1.15);
}
.eco-node.center { color: var(--orange); font-weight: 800; }
.eco-arrow {
    color: var(--gray-300);
    font-size: 22px;
    align-self: center;
    margin-top: -20px;
    flex-shrink: 0;
}

.cta-ecosystem {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-self: center;
    height: fit-content;
    max-width: 380px;
    margin-left: auto;
}
.cta-ecosystem h3 { color: var(--white); margin-bottom: 4px; }
.cta-ecosystem p { color: var(--gray-300); font-size: 13.5px; margin-bottom: 16px; }
.cta-ecosystem .btn { width: 100%; }
.cta-ecosystem .or-divider {
    text-align: center;
    color: var(--gray-400);
    font-size: 11px;
    margin: 6px 0 6px;
    text-transform: lowercase;
}

.ecosystem-row {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 36px;
    align-items: stretch;
}

/* ============= FOOTER ============= */
.site-footer {
    background: var(--white);
    color: var(--gray-500);
    padding: 56px 0 24px;
    border-top: 1px solid var(--gray-200);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 36px;
}
.footer-brand .brand { color: var(--navy); }
.footer-brand p {
    font-size: 13.5px;
    color: var(--gray-500);
    max-width: 280px;
    margin-top: 16px;
    line-height: 1.6;
}
.footer-brand .brand-text strong { color: var(--navy); }
.footer-brand .brand-text small { color: var(--gray-500); }
.cta-ecosystem .btn-outline { color: var(--white); }
.footer-col h4 {
    color: var(--navy);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 14px;
}
.footer-col ul, .footer-col-pair { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 7px; font-size: 13.5px; }
.footer-col li a { color: var(--gray-500); }
.footer-col li a:hover { color: var(--orange); }
.footer-col-pair {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    font-size: 13px;
}
.footer-col-pair span { color: var(--navy); font-weight: 600; }
.footer-col-pair em { color: var(--gray-500); font-style: normal; }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
    color: var(--gray-500);
}
.footer-contact .row { display: flex; align-items: center; gap: 10px; }
.footer-contact .row a { color: var(--gray-500); }
.footer-contact .row a:hover { color: var(--orange); }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 18px;
    text-align: center;
    font-size: 12.5px;
    color: var(--gray-400);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 56px;
        left: 0; right: 0;
        background: #0a1628;
        border-top: 1px solid rgba(255,255,255,.08);
        padding: 12px 0 20px;
        z-index: 999;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0,0,0,.4);
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a { padding: 13px 28px; font-size: 15px; border-radius: 0; border-left: none; }
    .nav-toggle { display: inline-flex; margin-left: auto; }
    .subbrand-ribbon { grid-template-columns: repeat(2, 1fr); }
    .subbrand-detail { grid-template-columns: repeat(2, 1fr); }
    .retailers-grid { grid-template-columns: repeat(2, 1fr); }
    .about-row, .expansion-row, .vision-row, .ecosystem-row { grid-template-columns: 1fr; gap: 36px; }
    .vision-numbers { grid-template-columns: 1fr; }
    .vision-arrow { transform: rotate(90deg); }
    .city-strip { grid-template-columns: repeat(4, 1fr); }
    .cta-ecosystem { max-width: none; margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .hero { padding-top: 120px; min-height: 540px; }
    .hero h1 { font-size: 2.05rem; }
    .subbrand-ribbon { grid-template-columns: 1fr; }
    .subbrand-detail { grid-template-columns: 1fr; }
    .retailers-grid { grid-template-columns: repeat(2, 1fr); }
    .city-strip { grid-template-columns: repeat(2, 1fr); }
    .ecosystem-flow { gap: 4px; }
    .eco-node-icon { width: 46px; height: 46px; font-size: 20px; }
    .eco-arrow { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .vision-row { gap: 24px; }
}
