/* ═══════════════════════════════════════════════════
   K80 One Page Professional V3 — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black:     #0a0a0a;
  --dark:      #111111;
  --charcoal:  #1c1c1c;
  --dark-2:    #2a2a2a;
  --grey:      #555;
  --mid-grey:  #777;
  --light-mid: #aaa;
  --border:    #e4e4e4;
  --light:     #f7f7f7;
  --white:     #ffffff;
  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --header-h:  70px;
  --max-w:     1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: var(--header-h); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,.35); }
.eyebrow--dark  { color: var(--mid-grey); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--dark-2); color: var(--white); }
.btn-light   { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { background: #eee; }
.btn-outline-dark  { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline-dark:hover  { background: var(--black); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.38); }
.btn-outline-light:hover { border-color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section--grey     { background: var(--light); }
.section--dark     { background: var(--black); color: var(--white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }

.section-header { margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  color: inherit;
  margin-bottom: 16px;
  max-width: 680px;
}
.section-header p {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
}
.section--dark .section-header p,
.section--charcoal .section-header p { color: rgba(255,255,255,.48); }

/* ── Header ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  gap: 28px;
}
.logo {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.site-nav { flex: 1; overflow: hidden; }
.nav-list { display: flex; align-items: center; gap: 1px; }
.nav-link {
  display: block;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey);
  border-radius: 2px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--black); background: var(--light); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

/* ── Mobile menu ── */
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
#mobile-overlay.is-visible { opacity: 1; visibility: visible; }
#mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--white);
  z-index: 850;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,.68,0,1.1);
  overflow-y: auto;
}
#mobile-menu.is-open { transform: translateX(0); }
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  font-size: 22px;
  color: var(--black);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.mobile-nav-list { padding: 8px 0; }
.mobile-nav-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:first-child { border-top: 1px solid var(--border); }
.mobile-cta { display: block; margin: 24px 24px 32px; text-align: center; }

/* ── Hero ── */
.hero-section {
  background: var(--black);
  padding: 120px 0 100px;
}
.hero-section h1 {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.07;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.56);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── Proof stats ── */
.stats-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.stat-item {
  padding: 52px 0 52px 36px;
  border-right: 1px solid var(--border);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 54px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}
.stat-label { font-size: 13px; color: var(--mid-grey); line-height: 1.45; max-width: 140px; }

/* ── What K80 Does ── */
.what-body {
  font-size: 17px;
  color: var(--grey);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 56px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cap-card {
  background: var(--white);
  padding: 40px 32px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  z-index: 0;
}
.cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  background: #fafafa;
  z-index: 1;
}
.cap-card h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.cap-card p { font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ── Delivery Models ── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.model-card {
  background: var(--charcoal);
  padding: 44px 36px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  position: relative;
  z-index: 0;
}
.model-card:hover {
  transform: translateY(-5px);
  background: #252525;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 1;
}
.model-card h3 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.model-card p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

/* ── How It Works ── */
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hiw-intro h2 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.hiw-text { font-size: 16px; color: var(--grey); line-height: 1.8; margin-bottom: 32px; }
.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step-item:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 700;
  color: #ddd;
  line-height: 1.2;
  padding-top: 2px;
}
.step-item h3 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 7px;
}
.step-item p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ── Client Projects ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cs-card {
  background: var(--white);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  z-index: 0;
}
.cs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  background: #fafafa;
  z-index: 1;
}
.cs-sector {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 12px;
  display: block;
}
.cs-card h3 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
}
.cs-summary { font-size: 13px; color: var(--grey); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.cs-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.cs-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.cs-btn {
  display: inline-block;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  background: var(--black);
  color: var(--white);
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
  font-family: var(--ff-sans);
}
.cs-btn:hover { background: var(--dark-2); }

/* ── Industries ── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.industry-card {
  background: var(--white);
  padding: 52px 48px;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  position: relative;
  z-index: 0;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,.1);
  background: #fafafa;
  z-index: 1;
}
.industry-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.industry-desc { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 24px; }
.industry-list-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-mid);
  margin-bottom: 12px;
  display: block;
}
.industry-needs { display: flex; flex-direction: column; gap: 7px; }
.industry-needs li {
  font-size: 13px;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.industry-needs li::before { content: '\2014'; color: #ccc; flex-shrink: 0; margin-top: 1px; }

/* ── Monthly Outsourcing ── */
#outsourcing { padding: 0; }
.outsourcing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.out-content {
  background: var(--charcoal);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
.out-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.out-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.out-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.out-points li {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.out-points li::before {
  content: '\00B7';
  color: rgba(255,255,255,.25);
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.2;
}
.out-stats { border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 8px; }
.out-stat  { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.out-stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.out-stat-label { font-size: 12px; color: rgba(255,255,255,.32); }

.out-faq {
  background: var(--light);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.out-faq h3 {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 36px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
}
.faq-q-text { font-size: 14px; font-weight: 500; color: var(--black); line-height: 1.4; }
.faq-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding-bottom: 18px; font-size: 14px; color: var(--grey); line-height: 1.75; }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.15;
}
.contact-desc { font-size: 15px; color: var(--grey); line-height: 1.8; margin-bottom: 32px; }
.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}
.trust-list li::before { content: '\2713'; color: var(--black); font-weight: 700; flex-shrink: 0; }

/* ── Form ── */
.form-box {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid var(--border);
}
.form-box h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
}
.k80-form { display: flex; flex-direction: column; gap: 18px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-2);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.form-label .req { color: var(--light-mid); font-weight: 400; text-transform: none; }
.form-input, .form-select, .form-textarea {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--black); }
.form-textarea { resize: vertical; min-height: 130px; }
.honeypot { position: absolute; opacity: 0; height: 0; overflow: hidden; pointer-events: none; }
.form-footer { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-submit-btn {
  padding: 13px 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.form-submit-btn:hover { background: var(--dark-2); }
.form-submit-btn:disabled { opacity: .55; cursor: not-allowed; }
.form-status { font-size: 13px; font-weight: 500; display: none; }
.form-status--success { color: #1a5a1a; display: block; }
.form-status--error   { color: #8e1515; display: block; }

/* ── Footer ── */
.site-footer { background: var(--black); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.6; max-width: 200px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: 13px; color: rgba(255,255,255,.42); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }

/* ── Case Study Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px 60px;
  overflow-y: auto;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 900px;
  border-radius: 3px;
  position: relative;
  padding: 60px 64px;
  margin: auto;
}
.modal-close-btn {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  color: var(--grey);
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: color .15s, border-color .15s;
  background: none;
}
.modal-close-btn:hover { color: var(--black); border-color: var(--black); }
.modal-sector {
  font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mid-grey);
  margin-bottom: 10px; display: block;
}
.modal-title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.18;
  margin-bottom: 40px;
  max-width: 700px;
}
.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: start;
}
.modal-block { margin-bottom: 28px; }
.modal-block:last-child { margin-bottom: 0; }
.modal-block h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--mid-grey); margin-bottom: 10px;
}
.modal-block p { font-size: 15px; color: var(--grey); line-height: 1.8; }
.modal-outcomes { display: flex; flex-direction: column; gap: 8px; }
.modal-outcomes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--grey); line-height: 1.5;
}
.modal-outcomes li::before { content: '\2014'; color: #ccc; flex-shrink: 0; margin-top: 2px; }
.modal-meta-box {
  background: var(--light);
  padding: 28px 24px;
  border-radius: 2px;
  position: sticky;
  top: 20px;
}
.modal-meta-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.modal-meta-item:first-child { padding-top: 0; }
.modal-meta-item:last-child  { border-bottom: none; padding-bottom: 0; }
.modal-meta-key {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--light-mid);
}
.modal-meta-val { font-size: 13px; color: var(--black); font-weight: 500; line-height: 1.4; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive: tablet ── */
@media (max-width: 1060px) {
  .container { padding: 0 24px; }
  .site-nav  { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 24px; }
  .stats-grid { padding: 0 24px; grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .cap-grid      { grid-template-columns: 1fr 1fr; }
  .models-grid   { grid-template-columns: 1fr; }
  .hiw-layout    { grid-template-columns: 1fr; gap: 48px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid    { grid-template-columns: 1fr; }
  .outsourcing-layout { grid-template-columns: 1fr; }
  .out-content { padding: 64px 40px; }
  .out-faq     { padding: 64px 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 0 24px; }
  .modal-box  { padding: 40px 36px; }
  .modal-body-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal-meta-box { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-section { padding: 80px 0 64px; }
  .section-header { margin-bottom: 40px; }
  .cap-grid      { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; gap: 24px; }
  .form-box { padding: 32px 24px; }
  .modal-box { padding: 32px 20px; }
  .out-content { padding: 56px 24px; }
  .out-faq     { padding: 56px 24px; }
  .industry-card { padding: 40px 32px; }
  .cap-card:hover, .model-card:hover, .industry-card:hover, .cs-card:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .stat-num { font-size: 42px; }
  .stat-item { padding: 36px 0 36px 24px; }
  .stat-item:first-child { padding-left: 0; }
}
