:root {
    --bg: #f2f6fb;
    --bg-alt: #e8eff7;
    --text: #1c2534;
    --text-muted: #5f6b7a;
    --primary: #0d3b66;
    --primary-soft: rgba(13, 59, 102, 0.12);
    --accent: #4c93d3;
    --surface: #ffffff;
    --border: rgba(28, 37, 52, 0.08);
    --shadow: 0 20px 60px rgba(13, 59, 102, 0.12);
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

a:hover,
button:hover {
    cursor: pointer;
}

.container {
    width: min(1040px, 88vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    background: rgba(242, 246, 251, 0.9);
    border-bottom: 1px solid var(--border);
    z-index: 20;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
}

.brand .brand-mark {
    font-size: 1.4rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    border: none;
    background: none;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin-bottom: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #0b2f52);
    color: white;
    box-shadow: 0 12px 24px rgba(13, 59, 102, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(13, 59, 102, 0.25);
}

.btn-secondary {
    background: rgba(13, 59, 102, 0.1);
    color: var(--primary);
}

.btn-ghost {
    background: var(--surface);
    color: var(--primary);
    border: 1px solid rgba(13, 59, 102, 0.16);
}

.btn-ghost:hover {
    background: rgba(13, 59, 102, 0.08);
}

.hero {
    padding: 6rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.hero:before,
.hero:after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, rgba(76, 147, 211, 0.25), transparent 60%);
    top: -120px;
    right: -160px;
    filter: blur(0.5px);
    z-index: -2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    text-align: center;
}

.hero-copy {
    max-width: 640px;
    display: grid;
    gap: 1.5rem;
}

.hero-actions {
    justify-content: center;
}

.hero-copy .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--accent);
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 34rem;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    width: min(400px, 68vw);
    aspect-ratio: 1;
    border-radius: 50%;
    --mouseX: 0;
    --mouseY: 0;
    background: radial-gradient(circle at calc(50% + var(--mouseX) * 18%) calc(50% + var(--mouseY) * 18%), rgba(76, 147, 211, 0.28), rgba(232, 239, 247, 0.02) 68%), linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 247, 0.6));
    background-blend-mode: lighten;
    box-shadow: -22px -22px 52px rgba(255, 255, 255, 0.92), 20px 20px 52px rgba(13, 59, 102, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background 0.35s ease;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle at calc(50% + var(--mouseX) * 24%) calc(50% + var(--mouseY) * 24%), rgba(76, 147, 211, 0.12), transparent 72%);
    filter: blur(0.5px);
    transition: background 0.35s ease;
    z-index: 0;
}

.hero-visual .orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
    transition: transform 0.45s ease;
    will-change: transform;
}

.hero-visual .orb-lg {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(76, 147, 211, 0.25), transparent 70%);
    transform: translate(calc(var(--mouseX) * 20px), calc(var(--mouseY) * 20px));
}

.hero-visual .orb-md {
    width: 70%;
    height: 70%;
    top: 18%;
    right: -12%;
    background: radial-gradient(circle, rgba(13, 59, 102, 0.22), transparent 70%);
    transform: translate(calc(var(--mouseX) * -14px), calc(var(--mouseY) * -18px));
}

.hero-visual .orb-sm {
    width: 55%;
    height: 55%;
    bottom: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(76, 147, 211, 0.32), transparent 70%);
    transform: translate(calc(var(--mouseX) * 14px), calc(var(--mouseY) * 22px));
}

.hero-logo {
    position: relative;
    z-index: 2;
    font-size: clamp(3.8rem, 12vw, 6rem);
    font-weight: 700;
    color: rgba(13, 59, 102, 0.26);
    letter-spacing: 0.35rem;
    text-shadow: 0 18px 45px rgba(13, 59, 102, 0.2);
    transition: transform 0.45s ease;
    transform: translate(calc(var(--mouseX) * 10px), calc(var(--mouseY) * 10px));
}

.hero-brand-grid {
    width: 100%;
    max-width: 780px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.brand-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.25rem 1.5rem;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 239, 247, 0.78));
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: -14px -14px 28px rgba(255, 255, 255, 0.85), 16px 16px 32px rgba(13, 59, 102, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: -16px -16px 36px rgba(255, 255, 255, 0.87), 18px 18px 38px rgba(13, 59, 102, 0.14);
}

.brand-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(13, 59, 102, 0.12), rgba(76, 147, 211, 0.18));
    color: var(--primary);
    box-shadow: -10px -10px 22px rgba(255, 255, 255, 0.92), 10px 10px 22px rgba(13, 59, 102, 0.15);
    flex-shrink: 0;
}

.brand-card-icon i {
    font-size: 1.5rem;
}

.brand-card-icon--logo {
    background: transparent;
    box-shadow: none;
    border: none;
}

.brand-card-icon--logo img {
    width: 68%;
    height: auto;
    display: block;
}

.brand-card-icon--logo i {
    color: var(--primary);
}

.brand-card-icon--edgeintel img {
    width: 58%;
}

.brand-card-icon--edgenext img,
.brand-card-icon--careeredge img {
    width: 82%;
}

.brand-card-text h3 {
    margin: 0;
    font-size: 1.1rem;
}

.brand-card-text p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.section-header {
    text-align: center;
    margin-bottom: 3.2rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    margin-inline: auto;
    max-width: 640px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.two-column {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ecosystem {
    padding: 5.5rem 0;
}

.overview-layout {
    display: grid;
    gap: clamp(2.5rem, 4vw, 3.5rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.overview-intro {
    display: grid;
    gap: 1.6rem;
}

.overview-callout {
    border-left: 3px solid rgba(76, 147, 211, 0.35);
    padding-left: 1.6rem;
    display: grid;
    gap: 0.9rem;
}

.overview-callout h3 {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.overview-note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.overview-insights {
    display: grid;
    gap: 2.2rem;
}

.overview-item {
    display: grid;
    gap: 1rem;
    padding-left: 1.6rem;
    border-left: 2px solid rgba(13, 59, 102, 0.15);
}

.overview-label {
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
}

.overview-subtitle {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.check-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(76, 147, 211, 0.18);
}

.has-logo-overlay {
    position: relative;
}

.brand-mark-overlay {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark-overlay img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-mark-overlay--edgeintel {
    width: 58px;
}

.brand-mark-overlay--edgenext {
    width: 84px;
}

.brand-mark-overlay--careeredge {
    width: 92px;
}

.brand-mark-overlay--icon {
    width: 74px;
    height: 74px;
    color: #ffffff;
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.22);
}

.brand-mark-overlay--icon i {
    font-size: 1.6rem;
}

.footer-services {
    gap: 0.8rem;
}

.footer-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: inherit;
}

.footer-service-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.footer-service-logo img {
    width: 82%;
    height: auto;
    display: block;
}

.footer-service-logo i {
    font-size: 1.1rem;
    color: var(--primary);
}

.services {
    padding: 5.5rem 0;
}

.card-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 239, 247, 0.76));
    border-radius: 32px;
    padding: clamp(2.4rem, 4vw, 3.2rem);
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: -20px -20px 48px rgba(255, 255, 255, 0.78), 22px 22px 48px rgba(13, 59, 102, 0.12);
}

.service-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(232, 239, 247, 0.78));
    border-radius: 26px;
    padding: 2.1rem 2rem;
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: -14px -14px 32px rgba(255, 255, 255, 0.9), 16px 16px 32px rgba(13, 59, 102, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: -16px -16px 38px rgba(255, 255, 255, 0.9), 18px 18px 38px rgba(13, 59, 102, 0.14);
}

.neu-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 239, 247, 0.85));
    box-shadow: -12px -12px 24px rgba(255, 255, 255, 0.9), 12px 12px 24px rgba(13, 59, 102, 0.16);
    color: var(--primary);
}

.neu-icon i {
    font-size: 1.4rem;
}

.service-card .duration {
    font-weight: 600;
    color: var(--accent);
}

.impact {
    padding: 5.5rem 0;
    background: var(--bg-alt);
}

.impact .section-header h2 {
    max-width: 640px;
    margin-inline: auto;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.2rem;
}

.stat-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(232, 239, 247, 0.82));
    border-radius: 26px;
    padding: 2.4rem 2.2rem;
    text-align: center;
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: -16px -16px 32px rgba(255, 255, 255, 0.86), 18px 18px 36px rgba(13, 59, 102, 0.12);
    display: grid;
    gap: 1rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 0;
    letter-spacing: 0.01em;
}

.stat-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.portfolio {
    padding: 5.5rem 0;
}

.filter-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.chip {
    border: none;
    background: rgba(13, 59, 102, 0.08);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.chip:hover,
.chip:focus {
    transform: translateY(-1px);
    background: rgba(13, 59, 102, 0.14);
}

.chip.active {
    background: var(--primary);
    color: white;
}

.portfolio-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(232, 239, 247, 0.78));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: -14px -14px 30px rgba(255, 255, 255, 0.82), 16px 16px 36px rgba(13, 59, 102, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: -16px -16px 38px rgba(255, 255, 255, 0.85), 18px 18px 42px rgba(13, 59, 102, 0.13);
}

.portfolio-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.portfolio-card h3 {
    margin: 1.75rem 1.75rem 0.6rem;
}

.portfolio-card p {
    margin: 0 1.75rem 1.6rem;
    color: var(--text-muted);
}

.portfolio-card .badge {
    position: absolute;
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 1.2rem;
    box-shadow: 0 8px 18px rgba(13, 59, 102, 0.18);
}

.portfolio-card .btn {
    margin: 0 1.75rem 1.75rem;
    align-self: flex-start;
}

.portfolio-grid {
    gap: 2.25rem;
}

.portfolio-card {
    position: relative;
}

.sub-brands {
    padding: 5.5rem 0;
    background: var(--bg-alt);
}

.brand-stack {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.brand-feature {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(232, 239, 247, 0.82));
    border-radius: 28px;
    padding: clamp(2.4rem, 4vw, 3rem);
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: 0 24px 54px rgba(13, 59, 102, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    height: 100%;
}

.brand-feature.reverse {
    flex-direction: column;
}

.brand-copy {
    display: grid;
    gap: 1.1rem;
}

.brand-copy .badge {
    justify-self: flex-start;
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(13, 59, 102, 0.2);
}

.brand-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.brand-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-muted);
    display: grid;
    gap: 0.45rem;
}

.brand-summary {
    font-weight: 600;
    color: var(--primary);
}

.brand-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-art {
    order: -1;
}

.brand-art,
.brand-art .image-frame {
    width: 100%;
}

.brand-art {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(76, 147, 211, 0.25));
    box-shadow: -24px -24px 50px rgba(255, 255, 255, 0.85), 28px 28px 55px rgba(13, 59, 102, 0.2);
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.1), transparent 65%);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta {
    padding: 5rem 0 6rem;
}

.cta-card {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.08), rgba(76, 147, 211, 0.12));
    border-radius: 30px;
    padding: 2.75rem;
    text-align: center;
    border: 1px solid rgba(13, 59, 102, 0.1);
    box-shadow: 0 22px 52px rgba(13, 59, 102, 0.13);
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
}

.site-footer {
    background: #e0e8f2;
    padding: 3rem 0 1.5rem;
    color: rgba(28, 37, 52, 0.86);
    border-top: 1px solid rgba(28, 37, 52, 0.1);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-brand .brand-mark {
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
}

.footer-brand .brand-name {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.site-footer h4 {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-meta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: inherit;
}

body.subpage .hero {
    padding: 6rem 0 4rem;
}

body.subpage .hero-logo {
    font-size: clamp(3rem, 8vw, 5rem);
    color: rgba(13, 59, 102, 0.18);
}

body.subpage .hero-copy h1 {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
}

body.subpage .hero-visual .orb-lg {
    top: 20px;
    right: 0;
}

body.subpage main section {
    padding: 4.5rem 0;
}

body.subpage .portfolio .service-card {
    min-height: 260px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .main-nav ul {
        position: absolute;
        top: 70px;
        right: 5%;
        background: var(--surface);
        border-radius: 16px;
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: var(--shadow);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-nav.open ul {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 6px;
    }

    .site-header .container {
        flex-wrap: wrap;
    }

    .btn-primary {
        display: none;
    }

    .hero-brand-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-feature,
    .brand-feature.reverse {
        flex-direction: column;
    }

    .brand-art,
    .brand-copy {
        flex: 1 1 100%;
    }

    .image-frame {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-visual {
        width: min(320px, 80vw);
    }

    .hero-actions {
        width: 100%;
    }

    .hero-brand-grid {
        max-width: 420px;
        grid-template-columns: 1fr;
    }

    .services-panel {
        padding: 1.8rem;
    }

    .brand-card {
        padding: 1.2rem 1.4rem;
    }

    .stat-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (min-width: 1200px) {
    .hero-brand-grid {
        max-width: none;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
