/* =========================================================
   Linkline Nigeria Limited — clean Swift-style site
   ========================================================= */

:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --blue: #1d6fde;
  --blue-soft: #eaf1fb;
  --text: #1a1f29;
  --muted: #5b6472;
  --line: #e4e8ef;
  --bg-soft: #f5f7fa;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 18px 45px rgba(11, 37, 69, 0.12);
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ---------------- Top bar ---------------- */
.topbar {
  background: var(--navy);
  color: #cfd8ea;
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #cfd8ea; }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar-sep { opacity: 0.4; }
.topbar-right { margin-left: auto; font-weight: 600; }

/* ---------------- Header / Nav ---------------- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-img {
  height: 58px;
  width: auto;
  background: #fff;
  padding: 4px 12px;
  border-radius: 8px;
}
.footer-logo {
  height: 150px;
  width: auto;
  background: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.nav { margin-left: auto; }
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  background: none;
  border: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover { background: var(--bg-soft); }
.caret {
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
  transition: transform 0.2s ease;
}
.nav-item.open .caret { transform: rotate(180deg); }

/* Dropdown menu (The Network) */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 330px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}
.nav-item.dropdown.open .nav-dropdown,
.nav-item.dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.panel-links { list-style: none; display: grid; gap: 4px; }
.panel-links a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 600;
}
.panel-links a:hover { background: var(--bg-soft); text-decoration: none; }

/* Info panels — shown as centred modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-card {
  position: relative;
  background: var(--white);
  width: min(780px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 34px 36px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.modal-close:hover { background: var(--blue-soft); }

/* Panel content components (reused inside modals) */
.panel-title { font-size: 1.25rem; color: var(--navy); margin-bottom: 6px; }
.panel-desc { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; }
.panel-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 10px;
}
.panel-col ul { list-style: none; display: grid; gap: 8px; }
.panel-col li {
  font-size: 0.92rem;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}
.panel-col li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--blue);
}
.panel-col p { font-size: 0.92rem; color: var(--muted); margin-bottom: 10px; }
.panel-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px 22px;
}
.panel-grid li { font-size: 0.92rem; background: var(--bg-soft); border-radius: 8px; padding: 10px 14px; }
.panel-grid li strong { display: block; color: var(--navy); }

/* Overlay for closing panels on outside click */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.2);
  z-index: 50;
}
.overlay[hidden] { display: none; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--navy-2); text-decoration: none; }
.btn-ghost { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; text-decoration: none; }
.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue-soft); text-decoration: none; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--blue-soft); text-decoration: none; }

/* ---------------- Hero slider ---------------- */
.hero-slider {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  color: #fff;
  min-height: 620px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s;
}
.slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  filter: saturate(1.06) contrast(1.05);
}

/* Ken Burns — slow multi-point zoom/pan so each slide moves like a video shot */
@keyframes kenburns-in {
  0%   { transform: scale(1.05) translate(0, 0); }
  40%  { transform: scale(1.12) translate(-1.8%, 1.4%); }
  100% { transform: scale(1.24) translate(2.2%, -2%); }
}
@keyframes kenburns-out {
  0%   { transform: scale(1.24) translate(2.2%, -2%); }
  40%  { transform: scale(1.12) translate(1.8%, -1.4%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.slide.active img { animation: kenburns-in 22s ease-in-out forwards; }
.slide.alt.active img { animation: kenburns-out 22s ease-in-out forwards; }

/* Text fades up in sequence, like a video reveal */
.slide-content > * { opacity: 0; }
.slide.active .slide-content > * { animation: fadeUp 0.9s ease forwards; }
.slide.active .slide-content .eyebrow { animation-delay: 0.12s; }
.slide.active .slide-content h1 { animation-delay: 0.28s; }
.slide.active .slide-content .slide-sub,
.slide.active .slide-content .hero-steps { animation-delay: 0.5s; }
.slide.active .slide-content .hero-cta { animation-delay: 0.88s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero sign-up steps */
.hero-steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 0 0 30px;
}
.hero-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  opacity: 0;
}
.slide.active .hero-steps li { animation: fadeUp 0.6s ease forwards; }
.slide.active .hero-steps li:nth-child(1) { animation-delay: 0.55s; }
.slide.active .hero-steps li:nth-child(2) { animation-delay: 0.7s; }
.slide.active .hero-steps li:nth-child(3) { animation-delay: 0.85s; }
.slide.active .hero-steps li:nth-child(4) { animation-delay: 1s; }
.hero-steps .hs-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(127, 176, 255, 0.16);
  border: 1px solid rgba(127, 176, 255, 0.5);
  color: #bcd4ff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.hero-steps li p { display: grid; gap: 2px; }
.hero-steps li strong { color: #fff; font-size: 0.95rem; }
.hero-steps li small { color: #c6d3ea; font-size: 0.84rem; line-height: 1.4; }
.slide-content-hero { max-width: 800px; }

/* Cinematic vignette + film grain */
.slide-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 52%, rgba(0, 0, 0, 0.5) 100%);
}
.slider-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  animation: grain-shift 0.7s steps(4) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 2%); }
  50% { transform: translate(2%, -2%); }
  75% { transform: translate(-1%, -2%); }
}

/* Video-style progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 6;
  background: rgba(255, 255, 255, 0.18);
}
.slider-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #5b8de0, #bcd4ff);
}
@keyframes progress {
  from { width: 0; }
  to   { width: 100%; }
}
.hero-slider.paused .slider-progress span { animation-play-state: paused; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 37, 69, 0.94) 0%, rgba(11, 37, 69, 0.78) 45%, rgba(11, 37, 69, 0.35) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 130px;
  max-width: 680px;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9db7dd;
  margin-bottom: 18px;
}
.slide-content h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.slide-content h1 .accent { color: #7fb0ff; }
.slide-sub {
  font-size: 1.06rem;
  color: #d7e2f5;
  max-width: 54ch;
  margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(11, 37, 69, 0.4);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}
.slider-arrow:hover { background: rgba(29, 111, 222, 0.85); }
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dots .dot.active {
  background: #7fb0ff;
  transform: scale(1.25);
}

/* ---------------- Sections ---------------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-soft); }
section[id] { scroll-margin-top: 96px; }
.txt-accent { color: var(--blue); }
.txt-accent2 { color: #7fb0ff; }

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* Scroll reveal */
.reveal { transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal { opacity: 0; }
.reveal.in { opacity: 1; transform: none; }
html.js .reveal.in { opacity: 1; transform: none; }

/* Outsource It */
.outsource-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.outsource h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
.outsource-copy > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 14px; }
.outsource-lead { font-weight: 700; color: var(--navy); font-size: 1.12rem; }
.outsource-points { list-style: none; display: grid; gap: 10px; margin: 10px 0 28px; }
.outsource-points li {
  padding-left: 22px;
  position: relative;
  color: var(--text);
  font-size: 0.98rem;
}
.outsource-points li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--blue);
  font-weight: 800;
}
.outsource-points strong { color: var(--navy); }
.outsource-media { position: relative; }
.outsource-media > img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.outsource-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: -42px;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}
.outsource-stats div {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px 10px;
  text-align: center;
}
.outsource-stats span { display: block; font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.outsource-stats small { color: var(--muted); font-size: 0.78rem; }

/* Card grids */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe0f7; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.08rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.94rem; }

/* Benefit grid + quote */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #fff; }
.benefit h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 0.93rem; }
.benefit-quote {
  margin-top: 48px;
  text-align: center;
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 16px;
  padding: 40px 30px;
}
.benefit-quote p { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; }

/* Map of Lagos */
.map-section { background: var(--navy); }
.map-section .section-head h2 { color: #fff; }
.map-section .section-head > p { color: #aebfe0; }
.map-section .map-sub { font-size: 1.1rem; }
.map-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  max-width: 860px;
  margin: 0 auto;
}
.lagos-map { width: 100%; height: auto; display: block; }
.cov-band { animation: covPulse 3s ease-in-out infinite; }
@keyframes covPulse {
  0%, 100% { stroke-opacity: 0.16; }
  50%      { stroke-opacity: 0.32; }
}
.cov-sweep { animation: covSweep 2.4s linear infinite; }
@keyframes covSweep {
  to { stroke-dashoffset: -224; }
}
.radio-waves { transform-box: fill-box; transform-origin: center; animation: wavePulse 2s ease-in-out infinite; }
@keyframes wavePulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}
.marker .ping { opacity: 0; animation: ping 2.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.marker .ping.slow { animation-duration: 4s; animation-delay: 0.8s; }
@keyframes ping {
  0%   { opacity: 0.5; transform: scale(0.4); }
  70%, 100% { opacity: 0; transform: scale(1); }
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 16px 10px 6px;
  align-items: center;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.legend-item i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot-badagry, .dot-epe { background: #1d6fde; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.dot-metro { background: #0b2545; }
.legend-wave {
  width: 26px; height: 4px;
  background: linear-gradient(90deg, rgba(29, 111, 222, 0.25), rgba(29, 111, 222, 0.7));
  border-radius: 999px;
}

/* Just Plug & Play */
.plug-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto 44px;
}
.plug-step {
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plug-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plug-step .card-icon {
  margin: 0 auto 16px;
  width: 64px; height: 64px;
  border-radius: 50%;
}
.plug-step .card-icon svg { width: 32px; height: 32px; }
.plug-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(29, 111, 222, 0.4);
}
.plug-step h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.plug-step p { color: var(--muted); font-size: 0.93rem; }
.plug-arrow { display: flex; align-items: center; color: var(--blue); }
.plug-arrow svg { width: 30px; height: 30px; }
.plug-cta { text-align: center; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.contact-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.contact-copy > p { color: var(--muted); font-size: 1.02rem; margin-bottom: 24px; }
.contact-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-note { font-size: 0.88rem; margin-top: 16px; color: var(--muted); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.cc-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-icon svg { width: 24px; height: 24px; }
.contact-card strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 3px; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }
a.contact-card p { color: var(--blue); }

/* ---------------- Footer ---------------- */
.footer {
  background: var(--navy);
  color: #c6d3ea;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: #8ba4cc; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col li { font-size: 0.9rem; }
.footer-col a { color: #c6d3ea; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 0.82rem;
  color: #8ba4cc;
}

/* ---------------- Nav toggle (mobile) ---------------- */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1040px) {
  .hero-slider { min-height: 560px; }
  .slide-content { max-width: 100%; }
  .card-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .outsource-grid { gap: 40px; }
}

@media (max-width: 900px) {
  .header-inner { height: 60px; }
  .brand-img { height: 44px; padding: 3px 8px; }
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    width: min(400px, 92vw);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    z-index: 90;
  }
  .nav.open { transform: translateX(0); }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px; }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 15px 14px;
    font-size: 1rem;
  }
  .nav-item { border-bottom: 1px solid var(--line); }

  .nav-dropdown {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-item.dropdown.open .nav-dropdown { display: block; }
  .modal { padding: 12px; }
  .modal-card { padding: 26px 20px; }
  .panel-cols { grid-template-columns: 1fr; gap: 16px; }
  .panel-grid { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
  .outsource-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .outsource-stats { margin-top: -32px; padding: 0 12px; }
  .card-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .plug-steps { grid-template-columns: 1fr; gap: 34px; }
  .plug-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { min-height: 480px; }
  .slide-content { padding: 80px 0 110px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .hero-cta .btn { width: 100%; }
  .hero-slider { min-height: 420px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.9rem; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
  .slide-content { padding: 60px 0 100px; }
  .hero-steps { grid-template-columns: 1fr; }
  .card-grid, .benefit-grid, .contact-cards { grid-template-columns: 1fr; }
  .outsource-stats { grid-template-columns: repeat(3, 1fr); padding: 0 8px; gap: 8px; }
  .outsource-stats div { padding: 12px 6px; }
  .outsource-stats span { font-size: 1.1rem; }
  .contact-cta .btn { width: 100%; }
  .map-legend { gap: 10px 16px; padding: 12px 6px 4px; }
  .map-card { padding: 10px; }
  .benefit-quote { padding: 30px 20px; }
  .plug-step { padding: 30px 18px; }
}
