/* ============================================
   PREAUTO — Premium Automotive
   ============================================ */

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

:root {
  --black: #080808;
  --dark: #0e0e0e;
  --dark-2: #151515;
  --dark-3: #1c1c1c;
  --gray-900: #252525;
  --gray-800: #2a2a2a;
  --gray-700: #3d3d3d;
  --gray-600: #555;
  --gray-500: #777;
  --gray-400: #999;
  --gray-300: #bbb;
  --gray-200: #e2e2e2;
  --gray-100: #f3f3f3;
  --white: #fff;

  --gold: #c9a54e;
  --gold-light: #dabb6a;
  --gold-dark: #a8873a;
  --gold-10: rgba(201,165,78,0.10);
  --gold-20: rgba(201,165,78,0.20);

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  --font: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Fade Animation --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
}
.logo-pre {
  color: var(--white);
  transition: color .3s;
}
.logo-auto {
  color: var(--gold);
}
.nav.scrolled .logo-pre { color: var(--black); }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--gray-600); }
.nav.scrolled .nav-links a:hover { color: var(--black); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 100px;
  transition: all .2s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-menu-links a { font-size: 24px; font-weight: 600; color: var(--white); }
.mobile-menu-cta {
  font-size: 16px; font-weight: 700;
  padding: 14px 40px;
  background: var(--gold); color: var(--black);
  border-radius: 100px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--black);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(201,165,78,.07) 0%, transparent 65%),
    linear-gradient(180deg, transparent 60%, rgba(8,8,8,.8) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
}
.eyebrow-line {
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero-title {
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.text-gold { color: var(--gold); }

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.6);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -.2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.btn-lg { padding: 17px 44px; font-size: 16px; }
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,165,78,.25);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
}
.scroll-track {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.1);
  border-radius: 1px;
  overflow: hidden;
}
.scroll-thumb {
  width: 100%; height: 16px;
  background: rgba(255,255,255,.35);
  border-radius: 1px;
  animation: scroll-move 2s ease-in-out infinite;
}
@keyframes scroll-move {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(32px); }
}

/* ========== SECTIONS ========== */
.section { padding: 110px 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-light {
  background: var(--gray-100);
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.tag-gold { color: var(--gold); }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -.8px;
}
.section-title-light { color: var(--white); }

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  margin-top: 12px;
  max-width: 460px;
  line-height: 1.7;
}
.section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ========== LOCATION ========== */
.loc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.loc-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}
.loc-desc {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.85;
  margin-bottom: 36px;
}

.loc-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 36px;
}
.loc-stat { text-align: left; }
.loc-stat-num {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.loc-stat-suffix {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}
.loc-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  font-weight: 500;
}

.loc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--r);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  transition: all .25s;
}
.loc-cta:hover {
  background: var(--gold-20);
  transform: translateX(4px);
}

/* Building Visual */
.loc-building {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 36px;
  overflow: hidden;
}

.building-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.building-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.building-label-top, .building-label-bot {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
}
.building-floors {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.floor-segment {
  width: 180px;
  border-radius: 4px;
}
.floor-segment.top {
  height: 52px;
  background: linear-gradient(135deg, var(--gold-20), rgba(201,165,78,.08));
  border: 1px solid var(--gold-20);
}
.floor-segment.mid {
  height: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.floor-segment.bot {
  height: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.building-info {
  text-align: center;
  margin-bottom: 24px;
}
.building-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.building-info p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.building-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.building-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.check-icon {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

/* ========== SERVICES ========== */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
  border-color: transparent;
}

.svc-icon-wrap {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  background: var(--gold-10);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon {
  width: 30px; height: 30px;
  color: var(--gold);
}

.svc-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.svc-desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ========== WHY PREAUTO ========== */

/* Hero Card */
.why-hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,.04);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.why-hero-left {
  padding: 48px 44px;
}
.why-hero-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-hero-icon svg { width: 100%; height: 100%; }
.why-hero-left h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.why-hero-left p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 22px;
}
.why-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mini-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  background: var(--gold-10);
  color: var(--gold-dark);
  border-radius: 100px;
}

.why-hero-visual {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
}
.vg-block {
  border-radius: var(--r-sm);
  background: var(--gray-200);
  transition: all .3s;
}
.vg-1 {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--gold-10), var(--gold-20));
  border: 1px solid var(--gold-20);
}
.vg-2 { background: var(--gray-300); }
.vg-3 { background: var(--gray-200); }
.why-hero-card:hover .vg-1 { background: linear-gradient(135deg, var(--gold-20), rgba(201,165,78,.3)); }

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all .3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
  border-color: var(--gold-20);
}
.why-card-icon {
  width: 40px; height: 40px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.why-card-icon svg { width: 100%; height: 100%; }
.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.why-card p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ========== PARTNERS ========== */
.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-content {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  white-space: nowrap;
  transition: all .2s;
  min-width: 160px;
  height: 72px;
}
.partner-item img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.partner-item:hover {
  border-color: var(--gold-20);
  background: var(--gold-10);
}

/* ========== CTA ========== */
.cta-section {
  padding: 20px 0 0;
}
.cta-box {
  background: var(--black);
  border-radius: var(--r-xl);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(201,165,78,.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(201,165,78,.06) 0%, transparent 50%);
}
.cta-sub {
  display: inline-block;
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.cta-title {
  position: relative;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.cta-desc {
  position: relative;
  font-size: 17px;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
}
.cta-box .btn { position: relative; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.contact-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all .3s;
}
.contact-card:hover {
  border-color: var(--gold-20);
  background: var(--dark-3);
}
.contact-card-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  background: var(--gold-10);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.contact-card span {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}

.map-area {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 2.4/1;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.35);
}
.map-placeholder p {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.map-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: opacity .2s;
}
.map-link:hover { opacity: .7; }

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.footer-logo .logo-pre { color: var(--white); }
.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 300px;
}

.footer-cols {
  display: flex;
  gap: 56px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.footer-col a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-sub {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.footer-legal p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.9;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid .why-card:nth-child(4),
  .why-grid .why-card:nth-child(5) {
    grid-column: auto;
  }
  .loc-layout { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { letter-spacing: -1px; }

  .loc-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .loc-stats { gap: 24px; }

  .services-row { grid-template-columns: 1fr; }

  .why-hero-card {
    grid-template-columns: 1fr;
  }
  .why-hero-visual { min-height: 200px; }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid { grid-template-columns: 1fr; }
  .map-area { aspect-ratio: 16/9; }

  .footer-top { flex-direction: column; }
  .footer-cols { gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: start; }

  .cta-box { padding: 56px 28px; }
}

@media (max-width: 480px) {
  .loc-stats {
    flex-direction: column;
    gap: 16px;
  }
  .loc-stats .loc-stat { text-align: center; }

  .building-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { justify-content: center; }

  .footer-cols { flex-direction: column; gap: 28px; }
}
