/* ═══════════════════════════════════════════════════════
   SF GLS — Super Fast Global Logistics Services
   Aesthetic: Bold Industrial · Speed · Precision
   Fonts: Bebas Neue (display) + Plus Jakarta Sans (body)
   Palette: Deep charcoal · Crimson red · Ice white
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

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

:root {
  /* ── Core Palette ── */
  --black:   #080c10;
  --ink:     #0f1520;
  --panel:   #161f2e;
  --border:  #1e2d40;
  --steel:   #243448;
  --mist:    #334d68;
  --fog:     #7a9ab8;
  --silver:  #b4c8d8;
  --white:   #edf2f7;
  --red:     #d42020;
  --red-lt:  #f03030;
  --red-glow:rgba(212,32,32,.35);

  /* ── Type ── */
  --display: 'Bebas Neue', sans-serif;
  --body:    'Plus Jakarta Sans', sans-serif;

  /* ── Misc ── */
  --ease: cubic-bezier(.4,0,.2,1);
  --r:    3px;
}

/* ── RESET & BASE ───────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--ink); }
::-webkit-scrollbar-thumb  { background: var(--red); border-radius: 3px; }

/* ══════════════════════════════════
   NAVIGATION
══════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto;
  z-index: 500;
  height: 68px;
  display: flex; align-items: center;
  padding: 0 6vw;
  gap: 40px;
  background: rgba(8,12,16,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav::after {                        /* red underline stripe */
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 55%);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 38px; }

.nav-menu {
  display: flex; gap: 4px;
  list-style: none; flex: 1;
}
.nav-menu a {
  display: block;
  font-family: var(--body); font-weight: 600; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--fog);
  padding: 6px 14px; border-radius: var(--r);
  transition: color .22s var(--ease), background .22s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(212,32,32,.1);
}
.nav-menu a.active { color: var(--red); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: .8rem;
  letter-spacing: .06em;
  color: var(--red);
  border: 1px solid rgba(212,32,32,.4);
  padding: 7px 20px; border-radius: var(--r);
  transition: background .22s, color .22s, box-shadow .22s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--red); color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
}
.nav-lang {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--fog); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px;
  transition: border-color .22s, color .22s;
  white-space: nowrap;
}
.nav-lang:hover { border-color: var(--fog); color: var(--white); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 68px;
  display: flex; align-items: center;
  overflow: hidden;
}
/* photo layer */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://www.sfgls.com/images/image-17-1024x683.jpg');
  background-size: cover; background-position: center 80%;
  filter: brightness(.3) saturate(.7);
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.00); }
}
/* gradient overlays */
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(8,12,16,.97) 38%, rgba(8,12,16,.5) 75%),
    linear-gradient(to top, rgba(8,12,16,.9) 0%, transparent 50%);
}
/* diagonal red slash */
.hero::before {
  content: '';
  position: absolute; z-index: 1;
  top: 0; right: 22vw; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 10%, var(--red) 40%, transparent 90%);
  opacity: .35;
}
/* bottom amber line */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, var(--red) 0%, transparent 50%);
}

.hero-body {
  background-image: url("https://www.sfgls.com/images/image-17-1024x683.jpg");
  background-size: cover;        /* 화면에 꽉 차게 */
  background-position: center;   /* 중앙 정렬 */
  background-repeat: no-repeat;  /* 반복 방지 */
  padding: 80px 20px;            /* 내용이 너무 붙지 않도록 */
  color: #fff;                   /* 배경 위에서 글자 보이게 */
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  opacity: 0; animation: slideUp .7s .2s var(--ease) forwards;
}
.hero-tag::before {
  content: ''; display: inline-block;
  width: 36px; height: 2px; background: var(--red);
}
.hero-flags {
  display: flex; gap: 8px; margin-bottom: 28px;
  opacity: 0; animation: slideUp .7s .32s var(--ease) forwards;
}
.hero-flags img { height: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 2px; }

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: .92; letter-spacing: .02em;
  color: var(--white); margin-bottom: 10px;
  opacity: 0; animation: slideUp .8s .42s var(--ease) forwards;
}
.hero-h1 span { color: var(--red); }
.hero-sub-head {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  letter-spacing: .04em; color: var(--silver);
  margin-bottom: 28px;
  opacity: 0; animation: slideUp .8s .52s var(--ease) forwards;
}
.hero-desc {
  font-size: 1rem; color: var(--fog); line-height: 1.85;
  max-width: 520px; margin-bottom: 40px;
  opacity: 0; animation: slideUp .8s .62s var(--ease) forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: slideUp .8s .72s var(--ease) forwards;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 6vw; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mist);
  animation: fadeIn 1.4s 1.3s both;
}
.hero-scroll::before { content: ''; width: 40px; height: 1px; background: var(--border); }

.hero-counter {
  position: absolute; right: 6vw; bottom: 60px; z-index: 3;
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; animation: fadeIn .9s .9s var(--ease) forwards;
}
.hc-item { text-align: right; }
.hc-num  {
  font-family: var(--display); font-size: 3.4rem; line-height: 1;
  color: var(--white); letter-spacing: .02em;
}
.hc-num span { color: var(--red); }
.hc-lbl { font-size: .72rem; color: var(--fog); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 700;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: all .24s var(--ease);
}
.btn-red {
  background: var(--red); color: #fff;
}
.btn-red:hover {
  background: var(--red-lt); transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ══════════════════════════════════
   SECTION SHARED
══════════════════════════════════ */
.sec       { padding: 96px 6vw; }
.sec-dark  { background: var(--ink); }
.sec-panel { background: var(--panel); }
.sec-black { background: var(--black); }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--red); }

.sec-h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: .03em; color: var(--white);
  line-height: 1.0; margin-bottom: 22px;
}
.sec-desc {
  font-size: .96rem; color: var(--fog);
  line-height: 1.85; max-width: 580px; margin-bottom: 52px;
}
.rule { width: 48px; height: 3px; background: var(--red); margin-bottom: 32px; }

/* ══════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; border-radius: var(--r);
  filter: saturate(.75);
}
/* red corner accent */
.about-img::before {
  content: '';
  position: absolute; top: -12px; left: -12px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}
.about-img::after {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 60px; height: 60px;
  border-bottom: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

/* ── Progress bars ── */
.progress-list { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.prog-item {}
.prog-header {
  display: flex; justify-content: space-between;
  font-size: .82rem; font-weight: 600; color: var(--silver);
  margin-bottom: 7px;
}
.prog-pct { color: var(--red); }
.prog-track {
  height: 4px; background: var(--border); border-radius: 2px; overflow: hidden;
}
.prog-fill {
  height: 100%; background: linear-gradient(90deg, var(--red), var(--red-lt));
  border-radius: 2px;
  transform-origin: left;
  animation: growBar 1.4s .4s var(--ease) both;
}
@keyframes growBar {
  from { transform: scaleX(0); } to { transform: scaleX(1); }
}

/* ── CEO strip ── */
.ceo-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--steel);
  border-left: 3px solid var(--red);
  margin-top: 32px;
}
.ceo-row img.avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--red);
}
.ceo-name { font-family: var(--display); font-size: 1.2rem; color: var(--white); }
.ceo-role { font-size: .78rem; color: var(--fog); margin-top: 2px; }
.ceo-icon { margin-left: auto; }
.ceo-icon img { height: 30px; filter: invert(1) opacity(.5); }
.ceo-icon:hover img { opacity: 1; }

/* ══════════════════════════════════
   SERVICES GRID
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.svc-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.5) saturate(.65);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}
.svc-card:hover img { filter: brightness(.3) saturate(.5); transform: scale(1.07); }
.svc-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(8,12,16,.95) 0%, transparent 60%);
  transition: background .4s;
}
.svc-card:hover .svc-body {
  background: linear-gradient(to top, rgba(212,32,32,.55) 0%, rgba(8,12,16,.7) 100%);
}
.svc-tag {
  font-family: var(--body); font-weight: 700;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 6px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.svc-card:hover .svc-tag { opacity: 1; transform: translateY(0); }
.svc-name {
  font-family: var(--display); font-size: 1.6rem;
  letter-spacing: .04em; color: var(--white);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red);
  margin-top: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s .06s, transform .3s .06s;
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
/* icon badge */
.svc-badge {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px;
  background: rgba(8,12,16,.65);
  border: 1px solid rgba(212,32,32,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.svc-badge img { height: 20px; filter: invert(1) opacity(.7); }

/* ── 6-card variant (services page) ── */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card-6 {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .24s, transform .24s;
}
.svc-card-6:hover { border-color: var(--red); transform: translateY(-4px); }
.svc-card-6-img { aspect-ratio: 16/10; overflow: hidden; }
.svc-card-6-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.55) saturate(.65);
  transition: transform .5s, filter .4s;
}
.svc-card-6:hover .svc-card-6-img img { transform: scale(1.06); filter: brightness(.4); }
.svc-card-6-body { padding: 24px 26px; }
.svc-card-6-name {
  font-family: var(--display); font-size: 1.3rem;
  letter-spacing: .04em; color: var(--white); margin-bottom: 10px;
}
.svc-card-6-desc { font-size: .84rem; color: var(--fog); line-height: 1.75; }
.svc-read {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--red);
  margin-top: 14px; transition: gap .2s;
}
.svc-card-6:hover .svc-read { gap: 10px; }

/* ══════════════════════════════════
   PROCESS SECTION
══════════════════════════════════ */
.process-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 52px;
}
.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.proc-card { position: relative; overflow: hidden; }
.proc-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(.4) saturate(.6);
  transition: filter .4s, transform .5s;
}
.proc-card:hover img { filter: brightness(.3) saturate(.5); transform: scale(1.05); }
.proc-num-wrap {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0;
}
.proc-num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--display); font-size: 8rem; line-height: 1;
  color: rgba(255,255,255,.06); letter-spacing: .02em;
  pointer-events: none; user-select: none;
}
.proc-footer {
  display: flex; align-items: stretch;
}
.proc-num-box {
  flex-shrink: 0;
  background: var(--red);
  width: 56px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.5rem;
  color: #fff; letter-spacing: .04em;
}
.proc-label {
  flex: 1;
  background: rgba(8,12,16,.88);
  padding: 14px 18px;
  font-family: var(--display); font-size: 1.15rem;
  letter-spacing: .04em; color: var(--white);
  display: flex; align-items: center;
}

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  padding: 140px 6vw 72px;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 50%;
  background: linear-gradient(135deg, transparent 0%, rgba(212,32,32,.03) 100%);
}
.ph-eyebrow {
  font-family: var(--body); font-weight: 700;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.ph-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .96; letter-spacing: .03em;
  color: var(--white); margin-bottom: 20px;
}
.page-hero p { font-size: 1rem; color: var(--fog); max-width: 580px; line-height: 1.85; }

/* ══════════════════════════════════
   STATS ROW
══════════════════════════════════ */
.stats-row {
  background: var(--panel);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 6vw;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
}
.stat { text-align: center; }
.stat-n {
  font-family: var(--display); font-size: 3.2rem; line-height: 1;
  color: var(--red); letter-spacing: .04em;
}
.stat-l { font-size: .76rem; color: var(--fog); letter-spacing: .06em; margin-top: 6px; }

/* ══════════════════════════════════
   ABOUT PAGE — FULL TEXT
══════════════════════════════════ */
.about-text-block {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 40px;
}
.about-text-block p { font-size: .94rem; color: var(--silver); line-height: 1.9; margin-bottom: 16px; }
.about-text-block p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════
   CONTACT PAGE
══════════════════════════════════ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start;
}
.info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 26px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .24s;
}
.info-card:hover { border-color: var(--red); }
.ic-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,32,32,.1); border: 1px solid rgba(212,32,32,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--red);
}
.ic-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.ic-val { font-size: .86rem; color: var(--silver); line-height: 1.7; }
.ic-val a { color: var(--fog); transition: color .2s; }
.ic-val a:hover { color: var(--white); }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.si {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--steel); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; color: var(--fog);
  transition: background .22s, border-color .22s, color .22s;
}
.si:hover { background: var(--red); border-color: var(--red); color: #fff; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-wrap {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 40px;
}
.form-wrap h3 {
  font-family: var(--display); font-size: 1.4rem;
  letter-spacing: .04em; color: var(--white); margin-bottom: 6px;
}
.form-wrap p { font-size: .84rem; color: var(--fog); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label {
  font-family: var(--body); font-weight: 700;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fog);
}
.fg input, .fg textarea, .fg select {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 16px;
  color: var(--white); font-family: var(--body); font-size: .88rem;
  outline: none; transition: border-color .22s, background .22s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--red); background: var(--mist);
}
.fg textarea { resize: vertical; min-height: 130px; }
.fg select option { background: var(--ink); }

/* ══════════════════════════════════
   CTA BAND
══════════════════════════════════ */
.cta-band {
  background: var(--red);
  padding: 68px 6vw; text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: .04em; color: #fff; margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,.78); margin-bottom: 28px; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.5); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 64px 6vw 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  margin-bottom: 52px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-tagline { font-size: .85rem; color: var(--fog); line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-family: var(--body); font-weight: 700;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .84rem; color: var(--fog); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .78rem; color: var(--mist); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: .78rem; color: var(--mist); transition: color .2s; }
.footer-links a:hover { color: var(--red); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .hero-counter { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-6 { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .sec { padding: 60px 5vw; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-6 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 5vw; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(3.2rem, 14vw, 7rem); }
}
