/* ============================================
   LEEHWA North America — Shared Page Styles
   ============================================ */

/* ─── Variables ─── */
:root {
    --blue-50: #e8f2fc;
    --blue-100: #cce2f9;
    --blue-200: #99c5f3;
    --blue-300: #5ca3e8;
    --blue-400: #2e8bdd;
    --blue-500: #0073CF;
    --blue-600: #0061b0;
    --blue-700: #004f91;
    --blue-800: #003e72;
    --blue-900: #002e54;
    --dark: #0f172a;
    --dark-700: #1e293b;
    --dark-600: #334155;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --white: #f7f8fa;

    /* Per-page theme — overridden inline */
    --theme: #0073CF;
    --theme-dark: #0061b0;
    --theme-light: rgba(0, 115, 207, .08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

/* ─── Back Bar ─── */
.back-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--dark), #0a1628);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 40px;
    font-size: 13px;
    letter-spacing: .5px
}

.back-bar-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.back-bar a.back-bar-home {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    letter-spacing: .3px
}

.back-bar a.back-bar-home:hover {
    color: rgba(255, 255, 255, .9)
}

.back-bar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .15)
}

.back-bar-company {
    font-weight: 700;
    color: white;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase
}

.back-bar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding-left: 16px;
    margin-left: 8px
}

.back-bar-nav-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-right: 6px;
    white-space: nowrap
}

.back-bar-link {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all .2s;
    white-space: nowrap
}

.back-bar-link:hover {
    color: white;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15)
}

.back-bar-link.active {
    color: white;
    background: var(--theme);
    border-color: transparent
}

/* ─── Nav ─── */
nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all .3s
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08)
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo img {
    height: 40px
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark)
}

.logo-text span {
    color: var(--blue-500)
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s;
    position: relative
}

.nav-links a:hover {
    color: var(--blue-600)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-500);
    transition: width .3s
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--blue-600) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .2s
}

.nav-cta:hover {
    background: var(--blue-700) !important;
    transform: translateY(-1px)
}

.nav-cta::after {
    display: none !important
}

/* ─── Language Switcher ─── */
.lang-switcher {
    position: relative;
    margin-left: 4px
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px
}

.lang-btn:hover {
    border-color: var(--blue-400);
    color: var(--blue-600)
}

.lang-btn svg {
    width: 10px;
    height: 10px;
    transition: transform .2s
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all .2s;
    z-index: 300
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-option {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    gap: 8px
}

.lang-option:first-child {
    border-radius: 7px 7px 0 0
}

.lang-option:last-child {
    border-radius: 0 0 7px 7px
}

.lang-option:hover {
    background: var(--gray-50);
    color: var(--blue-600)
}

.lang-option.active {
    color: var(--blue-600);
    font-weight: 700
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    font-size: 11px
}

/* ─── Detail Hero ─── */
.detail-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 160px 40px 80px;
    position: relative;
    overflow: hidden;
    color: white
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, .88) 0%, rgba(15, 29, 58, .82) 40%, rgba(11, 40, 84, .88) 100%);
    z-index: 1
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.detail-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%
}

.detail-hero-logo {
    display: none
}

/* Company label badge above hero h1 */
.detail-hero-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(6px)
}

/* ISO / Certification badge row */
.cert-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--theme);
    border-radius: 8px;
    background: var(--theme-light);
    font-size: 12px;
    font-weight: 700;
    color: var(--theme);
    letter-spacing: .4px
}

.cert-badge svg {
    flex-shrink: 0
}

.cert-label {
    font-size: 12px;
    color: var(--muted, #64748b);
    font-weight: 500
}

.detail-hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 16px
}

.detail-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    line-height: 1.7
}

/* ─── Section Common ─── */
.section {
    padding: 100px 40px
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--theme);
    margin-bottom: 16px
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 16px
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 700px;
    line-height: 1.8
}

/* ─── Overview Stats ─── */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

/* ── Overview Highlight Cards (qualitative, replaces number stats) ── */
.overview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px
}

.overview-highlight-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-left: 4px solid var(--theme);
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    transition: all .3s
}

.overview-highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .07)
}

.overview-highlight-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 8px;
    letter-spacing: -0.3px
}

.overview-highlight-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65
}

@media (max-width: 768px) {
    .overview-highlights {
        grid-template-columns: 1fr
    }
}

/* ── Overview Stat Cards (legacy, kept for pages not yet migrated) ── */
.overview-stat {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--theme);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .3s
}

.overview-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06)
}

.overview-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--theme);
    letter-spacing: -1.5px;
    margin-bottom: 4px
}

.overview-stat-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.service-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme);
    transform: scaleX(1);
    opacity: .25;
    transition: opacity .4s;
    transform-origin: left
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    border-color: var(--theme);
    border-top-color: transparent
}

.service-card:hover::before {
    opacity: 1
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--theme-light);
    color: var(--theme)
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

/* ─── Locations ─── */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px
}

.location-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all .3s
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .08)
}

.location-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-200)
}

.location-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.location-card:hover .location-card-img img {
    transform: scale(1.05)
}

.location-card-body {
    padding: 24px
}

.location-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px
}

.location-card .loc-region {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 12px
}

.location-card .loc-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500)
}

.location-card .loc-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--theme)
}

/* ─── Group Network ─── */
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px
}

.group-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all .3s
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.group-card-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.country-badge {
    display: inline-block;
    padding: 5px 11px;
    background: var(--dark);
    color: rgba(255, 255, 255, .9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 6px;
    text-transform: uppercase
}

.location-card-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-700), var(--dark));
    color: rgba(255, 255, 255, .2);
    font-size: 40px
}

.group-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.group-card p {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5
}

.group-card a {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--theme);
    font-weight: 600;
    text-decoration: none
}

.group-card a:hover {
    text-decoration: underline
}

/* ─── CTA ─── */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 100%)
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 115, 207, .08);
    border: 1px solid rgba(0, 115, 207, .2);
    border-radius: 24px;
    padding: 64px 48px
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1px
}

.cta-inner p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, .15)
}

.btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .3s
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .3)
}

/* ─── Footer ─── */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 40px 40px
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 16px;
    line-height: 1.7
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--gray-300)
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: 10px
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s
}

.footer-col a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-500)
}

/* ─── Hero Stats Strip ─── */
.hero-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.hero-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 0
}

.hero-stat-item {
    flex: 1;
    padding: 20px 32px 20px 0;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.hero-stat-item:last-child {
    border-right: none;
    padding-right: 0
}

.hero-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.2
}

.hero-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
    font-weight: 600
}

/* ─── Photo Gallery ─── */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 32px
}

.photo-slot {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #1a2236, #0f172a);
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color .3s
}

.photo-slot:hover {
    border-color: rgba(255, 255, 255, .25)
}

.photo-slot-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35)
}

.photo-slot-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .3px
}

.photo-slot-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, .28);
    line-height: 1.5
}

.photo-slot-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--theme);
    color: white;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 3px 7px;
    border-radius: 4px;
    text-transform: uppercase
}

/* ─── Video Placeholder ─── */
.video-placeholder {
    background: linear-gradient(145deg, #0d1829, #1a2236);
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    margin-top: 32px;
    transition: border-color .3s
}

.video-placeholder:hover {
    border-color: rgba(255, 255, 255, .15)
}

.video-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 18px;
    transition: all .3s
}

.video-placeholder:hover .video-play-btn {
    background: var(--theme);
    border-color: var(--theme);
    transform: scale(1.08)
}

.video-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px
}

.video-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    margin-top: 6px;
    text-align: center
}

.video-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px
}

.video-grid .video-placeholder {
    margin-top: 0;
    max-height: 260px
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ─── Responsive ─── */
@media(max-width:1024px) {
    .detail-hero h1 {
        font-size: 36px
    }

    .overview-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .detail-hero {
        min-height: 400px;
        padding: 140px 24px 60px
    }

    .detail-hero h1 {
        font-size: 28px;
        letter-spacing: -1px
    }

    .section {
        padding: 64px 24px
    }

    .section-title {
        font-size: 28px
    }

    .overview-stats {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .locations-grid {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .cta-inner {
        padding: 40px 24px
    }

    .cta-inner h2 {
        font-size: 24px
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}