/* Navigate Manpower Services — Corporate Stylesheet (v2: white + sans-serif)
   Industry-standard B2B staffing aesthetic. Brand maroon retained as accent.
*/

:root {
  --c-primary: #7B1F2B;        /* brand maroon (logo) */
  --c-primary-hover: #5D1620;
  --c-bg: #FFFFFF;             /* clean white */
  --c-bg-alt: #F7F7F5;         /* warm off-white for section alternation */
  --c-bg-deep: #0B1220;        /* deep slate-navy for dark sections */
  --c-accent: #B68A4E;         /* refined gold, used sparingly */
  --c-text: #0B1220;           /* near-black slate */
  --c-text-muted: #4B5563;     /* slate-500 */
  --c-border: #E5E7EB;         /* clean light border */
  --c-border-strong: #D1D5DB;
  --c-border-dark: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Manrope', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-text);
  line-height: 1.15;
}

.overline {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-primary);
  display: inline-block;
}

/* ---------- LAYOUT ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

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

.section-divider { height: 1px; background: var(--c-border); width: 100%; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 16px 48px; } }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-logo .brand-text { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 1024px) { .nav-logo .brand-text { display: flex; } }
.nav-logo .brand-text .brand-name {
  display: block;
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1; color: var(--c-text);
  letter-spacing: -0.01em;
}
.nav-logo .brand-text .brand-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px; letter-spacing: 0.28em; color: var(--c-text-muted);
  text-transform: uppercase; margin-top: 5px; font-weight: 600;
}

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 10px 16px; font-size: 14px; font-weight: 500;
  color: var(--c-text); text-decoration: none;
  position: relative; transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--c-primary); }
.nav-links a.active { color: var(--c-primary); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--c-primary);
}

.nav-cta {
  background: var(--c-primary); color: #fff;
  padding: 11px 22px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: none;
  text-decoration: none; transition: all 0.2s ease;
  border: 1px solid var(--c-primary);
  border-radius: 2px;
}
.nav-cta:hover { background: var(--c-primary-hover); border-color: var(--c-primary-hover); }

.nav-burger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  background: transparent; border: none; padding: 8px;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger span { width: 26px; height: 2px; background: var(--c-text); transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 15px; font-weight: 500;
  color: var(--c-text); text-decoration: none;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu a:last-of-type { border-bottom: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
  background: var(--c-bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--c-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at 25% 50%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 25% 50%, black 20%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; } }

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
  font-weight: 600;
}
.hero h1 .accent {
  color: var(--c-primary);
  font-weight: 700;
}
.hero p.lede {
  font-size: 18px; color: var(--c-text-muted);
  max-width: 540px; margin: 0 0 32px;
  line-height: 1.6;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; font-size: 14px; font-weight: 600;
  letter-spacing: 0; text-transform: none;
  text-decoration: none; cursor: pointer; transition: all 0.2s ease;
  border: 1px solid transparent;
  border-radius: 2px;
}
.btn i { width: 16px; height: 16px; }
.btn-primary {
  background: var(--c-primary); color: #fff;
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-hover);
  border-color: var(--c-primary-hover);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--c-text);
  border-color: var(--c-border-strong);
}
.btn-ghost:hover {
  background: var(--c-text); color: #fff;
  border-color: var(--c-text);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,18,32,0.55) 100%);
}
.hero-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.97);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
  border-left: 3px solid var(--c-primary);
  border-radius: 2px;
}
.hero-badge .num {
  font-family: 'Sora', sans-serif;
  font-size: 32px; line-height: 1; color: var(--c-primary); font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-badge .lbl {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-muted); font-weight: 600;
}

/* ---------- TRUST BAR ---------- */
.trustbar {
  background: var(--c-bg-deep); color: #fff;
  padding: 24px 0; overflow: hidden;
  border-top: 1px solid var(--c-border-dark);
  border-bottom: 1px solid var(--c-border-dark);
}
.trustbar-track {
  display: flex; gap: 56px; animation: marquee 32s linear infinite;
  white-space: nowrap;
}
.trustbar-item {
  font-family: 'Sora', sans-serif;
  font-size: 15px; letter-spacing: 0.04em; font-weight: 500;
  color: rgba(255,255,255,0.78);
  display: flex; align-items: center; gap: 56px;
}
.trustbar-item::after {
  content: "•"; color: var(--c-accent); font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEADER ---------- */
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 12px 0 14px;
  font-weight: 600;
}
.section-head p { font-size: 17px; color: var(--c-text-muted); margin: 0; max-width: 600px; line-height: 1.6; }

/* ---------- ABOUT / EDITORIAL ---------- */
.editorial-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 900px) { .editorial-grid { grid-template-columns: 1fr 1.15fr; gap: 72px; } }
.editorial-img {
  aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 4px;
}
.editorial-img img { width: 100%; height: 100%; object-fit: cover; }
.editorial-body p { font-size: 16px; color: var(--c-text-muted); line-height: 1.65; }
.editorial-body p.lead {
  font-family: 'Sora', sans-serif;
  font-size: 22px; color: var(--c-text);
  font-style: normal; font-weight: 500; line-height: 1.4;
  margin: 14px 0 24px; letter-spacing: -0.01em;
}

.kpi-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}
@media (min-width: 768px) { .kpi-row { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  padding: 24px 20px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}
.kpi .n {
  font-family: 'Sora', sans-serif;
  font-size: 36px; line-height: 1; font-weight: 700;
  color: var(--c-text); letter-spacing: -0.025em;
}
.kpi .l {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-muted); margin-top: 10px; font-weight: 600;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  padding: 36px 30px 40px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
  transition: background 0.3s ease;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--c-primary);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--c-bg-alt); }
.service-card:hover::before { width: 100%; }
.service-card .num {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 12px; color: var(--c-primary); letter-spacing: 0.06em;
}
.service-card .ico {
  width: 36px; height: 36px; color: var(--c-primary);
  margin: 24px 0 22px;
  stroke-width: 1.5;
}
.service-card h3 {
  font-size: 21px; margin: 0 0 12px; color: var(--c-text); font-weight: 600;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 15px; color: var(--c-text-muted); margin: 0 0 22px;
  line-height: 1.6;
}
.service-card .more {
  font-size: 13px; letter-spacing: 0; text-transform: none;
  color: var(--c-primary); text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card .more::after {
  content: "→"; transition: transform 0.3s ease;
}
.service-card:hover .more::after { transform: translateX(4px); }

/* ---------- INDUSTRIES ---------- */
.industries-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}
@media (min-width: 768px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry {
  padding: 28px 22px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  transition: background 0.25s ease;
  min-height: 168px;
  background: var(--c-bg);
}
.industry:hover { background: var(--c-bg-alt); }
.industry .ico { width: 24px; height: 24px; color: var(--c-primary); stroke-width: 1.5; }
.industry .t { font-family: 'Sora', sans-serif; font-size: 17px; color: var(--c-text); font-weight: 600; letter-spacing: -0.01em; }
.industry .d { font-size: 13px; color: var(--c-text-muted); line-height: 1.5; }

/* ---------- WHY US ---------- */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--c-border);
}
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item {
  padding: 36px 28px 36px 0;
  border-bottom: 1px solid var(--c-border);
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
}
@media (min-width: 800px) {
  .why-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--c-border); }
  .why-item:nth-child(even) { padding-left: 40px; }
}
.why-item .n {
  font-family: 'Sora', sans-serif;
  font-size: 36px; line-height: 1; font-weight: 700;
  color: var(--c-primary); letter-spacing: -0.03em;
}
.why-item h3 { font-size: 19px; margin: 0 0 8px; color: var(--c-text); font-weight: 600; }
.why-item p { font-size: 15px; color: var(--c-text-muted); margin: 0; line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--c-bg-alt); }
.tcard {
  border: 1px solid var(--c-border);
  padding: 36px 32px;
  background: var(--c-bg);
  display: flex; flex-direction: column; gap: 22px;
  border-radius: 4px;
}
.tcard .qmark {
  font-family: 'Sora', sans-serif;
  font-size: 56px; line-height: 0.5; color: var(--c-primary);
  font-weight: 700; height: 24px;
}
.tcard blockquote {
  font-family: 'Sora', sans-serif;
  font-size: 18px; line-height: 1.5; color: var(--c-text);
  font-weight: 500; margin: 0; letter-spacing: -0.01em;
}
.tcard .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--c-border);
}
.tcard .avatar {
  width: 44px; height: 44px; background: var(--c-primary); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.tcard .name { font-weight: 600; font-size: 14px; color: var(--c-text); }
.tcard .role { font-size: 12px; color: var(--c-text-muted); }

.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--c-bg-deep); color: #fff;
  padding: 72px 0;
}
.cta-strip h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin: 0 0 14px; }
.cta-strip p { color: rgba(255,255,255,0.68); font-size: 17px; margin: 0 0 30px; max-width: 600px; line-height: 1.6; }
.cta-strip .overline { color: var(--c-accent); }
.cta-strip .btn-primary { background: #fff; color: var(--c-bg-deep); border-color: #fff; }
.cta-strip .btn-primary:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.cta-strip .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.32); }
.cta-strip .btn-ghost:hover { background: #fff; color: var(--c-bg-deep); border-color: #fff; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-bg-deep); color: #fff;
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; } }
.footer h4 {
  font-family: 'Manrope', sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: rgba(255,255,255,0.55); margin: 0 0 18px;
}
.footer a {
  display: block; color: rgba(255,255,255,0.78); text-decoration: none;
  font-size: 14px; padding: 6px 0; transition: color 0.2s ease;
}
.footer a:hover { color: #fff; }
.footer-brand img { height: 56px; margin-bottom: 18px; background: #fff; padding: 6px; border-radius: 4px; }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-contact .row { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.78); }
.footer-contact .row svg { width: 16px; height: 16px; color: var(--c-accent); margin-top: 4px; flex-shrink: 0; stroke-width: 1.6; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ---------- PAGE HEADER (sub-pages) ---------- */
.page-hero {
  padding: 72px 0 56px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  position: relative;
}
.page-hero .crumbs { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-text-muted); margin-bottom: 18px; font-weight: 600; }
.page-hero .crumbs a { color: var(--c-text-muted); text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--c-primary); }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 18px; line-height: 1.06; letter-spacing: -0.03em;
  font-weight: 600;
}
.page-hero h1 .accent { color: var(--c-primary); font-weight: 700; }
.page-hero p { font-size: 18px; color: var(--c-text-muted); max-width: 640px; line-height: 1.6; }

/* ---------- SERVICE DETAIL ---------- */
.svc-detail {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding: 64px 0; border-bottom: 1px solid var(--c-border);
}
@media (min-width: 900px) { .svc-detail { grid-template-columns: 1fr 1.3fr; gap: 72px; } }
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }
.svc-detail .visual {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 4px;
}
.svc-detail .visual img { width: 100%; height: 100%; object-fit: cover; }
.svc-detail .body .overline { margin-bottom: 12px; }
.svc-detail .body h2 { font-size: clamp(28px, 3.2vw, 38px); margin: 0 0 16px; font-weight: 600; letter-spacing: -0.02em; }
.svc-detail .body > p { font-size: 16px; color: var(--c-text-muted); line-height: 1.65; }
.svc-detail .body ul {
  margin: 24px 0 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--c-border);
}
@media (min-width: 600px) { .svc-detail .body ul { grid-template-columns: repeat(2, 1fr); } }
.svc-detail .body ul li {
  padding: 14px 0; border-bottom: 1px solid var(--c-border);
  display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--c-text);
}
.svc-detail .body ul li::before {
  content: ""; width: 6px; height: 6px; background: var(--c-primary);
  border-radius: 50%; margin-top: 8px; flex-shrink: 0;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--c-border);
  border-left: 1px solid var(--c-border);
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  padding: 32px 26px;
  border-right: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}
.contact-card .ico { width: 26px; height: 26px; color: var(--c-primary); margin-bottom: 18px; stroke-width: 1.5; }
.contact-card h3 { font-size: 19px; margin: 0 0 14px; font-weight: 600; }
.contact-card p, .contact-card a {
  font-size: 14px; color: var(--c-text-muted); margin: 0 0 6px;
  text-decoration: none; display: block; line-height: 1.55;
}
.contact-card a:hover { color: var(--c-primary); }

.form-block {
  background: var(--c-bg);
  padding: 48px 36px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
}
.form-block h3 { font-size: 24px; margin: 0 0 20px; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--c-text); margin-bottom: 8px; font-weight: 600;
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--c-bg); border: 1px solid var(--c-border-strong);
  padding: 12px 14px; font-family: inherit; font-size: 14px;
  color: var(--c-text); transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 2px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(123,31,43,0.08);
}

/* ---------- ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- UTIL ---------- */
.text-center { text-align: center; }
.muted { color: var(--c-text-muted); }
.divider-y { height: 40px; }
.flex-row-center { display: flex; align-items: center; justify-content: center; gap: 12px; }

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