/* ============================================================
   MHS Service – Redesign
   Color: White/Light + Charcoal + Red accent
   ============================================================ */

/* --- Design Tokens ---------------------------------------- */
:root {
  --red:        #E11D48;
  --red-dark:   #BE123C;
  --red-light:  #FB7185;
  --red-bg:     rgba(225,29,72,.06);
  --red-border: rgba(225,29,72,.18);

  --coal:       #0F172A;
  --coal-90:    #1E293B;
  --coal-70:    #334155;
  --coal-50:    #64748B;
  --coal-30:    #94A3B8;
  --coal-10:    #CBD5E1;

  --surface:    #F8FAFC;
  --surface-2:  #F1F5F9;
  --border:     #E2E8F0;
  --white:      #FFFFFF;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.06);
  --shadow:     0 4px 16px rgba(15,23,42,.1), 0 2px 8px rgba(15,23,42,.06);
  --shadow-lg:  0 20px 48px rgba(15,23,42,.14), 0 8px 24px rgba(15,23,42,.08);

  --ease:       cubic-bezier(.4,0,.2,1);
  --trans:      .25s var(--ease);

  --wrap:       1160px;
  --hdr-h:      72px;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--hdr-h); font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--coal-70);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Utilities --------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}
.sec { padding: 96px 0; }
.sec--grey { background: var(--surface); }
.sec--coal { background: var(--coal); }
.sec--red  { background: var(--red); }
.t-center  { text-align: center; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in  { opacity: 1; transform: none; }
.reveal-d1  { transition-delay: .08s; }
.reveal-d2  { transition-delay: .16s; }
.reveal-d3  { transition-delay: .24s; }
.reveal-d4  { transition-delay: .32s; }

/* --- Typography -------------------------------------------- */
h1,h2,h3,h4 { color: var(--coal); font-weight: 700; line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.4rem,5vw,3.8rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.sec--coal h1,
.sec--coal h2,
.sec--coal h3,
.sec--coal h4 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.sec-title   { margin-bottom: 14px; }
.sec-sub     { font-size: 1.05rem; color: var(--coal-50); max-width: 580px; line-height: 1.75; }
.sec-hdr     { margin-bottom: 60px; }
.sec-hdr.t-center .sec-sub { margin: 0 auto; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(225,29,72,.28);
}
.btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 24px rgba(225,29,72,.35); }

.btn-dark {
  background: var(--coal);
  color: var(--white);
}
.btn-dark:hover { background: var(--coal-90); box-shadow: var(--shadow); }

.btn-ghost {
  background: transparent;
  color: var(--coal);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--coal); background: var(--surface); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* --- Header ----------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.hdr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  gap: 32px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-logo__mark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--white);
  background: var(--red);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  line-height: 1;
}
.hdr-logo__dot {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
}
.hdr-logo__name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--coal);
  letter-spacing: -.01em;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.hdr-nav__link {
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 500;
  color: var(--coal-50);
  transition: color var(--trans), background var(--trans);
}
.hdr-nav__link:hover { color: var(--coal); background: var(--surface); }
.hdr-nav__link--active { color: var(--coal) !important; background: var(--surface); }

.hdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--coal);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  transition: background var(--trans), transform var(--trans);
}
.hdr-cta:hover { background: var(--red); transform: translateY(-1px); }

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--trans);
}
.hdr-burger:hover { background: var(--surface); }
.hdr-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--coal);
  border-radius: 1px;
  transition: transform var(--trans), opacity var(--trans);
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* spacer for fixed header */
.hdr-spacer { height: var(--hdr-h); }

/* --- Hero -------------------------------------------------- */
.hero {
  background: var(--coal);
  min-height: calc(100vh - var(--hdr-h));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 85% 50%, rgba(225,29,72,.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 100%, rgba(225,29,72,.07) 0%, transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(225,29,72,.4);
  background: rgba(225,29,72,.08);
  color: var(--red-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-lead {
  font-size: 1.1rem;
  color: var(--coal-30);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-metrics {
  display: flex;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-metric {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-metric:last-child { border-right: none; padding-right: 0; padding-left: 32px; }
.hero-metric:first-child { padding-left: 0; }
.hero-metric__num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -.03em;
}
.hero-metric__num span { color: var(--red); }
.hero-metric__label {
  font-size: .75rem;
  color: var(--coal-30);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 400px;
}
.h-card {
  position: absolute;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px;
  transition: transform .4s var(--ease);
}
.h-card--1 { width: 280px; bottom: 0; left: 0; transform: rotate(-4deg); }
.h-card--2 { width: 260px; top: 20px; right: 0; transform: rotate(3deg); }
.h-card--3 { width: 290px; top: 100px; left: 20px; }
.h-card__icon { font-size: 2rem; margin-bottom: 16px; }
.h-card__title { color: var(--white); font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.h-card__sub { color: var(--coal-30); font-size: .8rem; }
.h-card__dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--red-light);
}
.h-card__dot::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }

/* --- Services Grid ---------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: background var(--trans);
}
.svc-card:hover .svc-icon { background: rgba(225,29,72,.12); }
.svc-card h3 { color: var(--coal); margin-bottom: 10px; }
.svc-card p { color: var(--coal-50); font-size: .88rem; line-height: 1.7; margin-bottom: 22px; }
.svc-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--trans);
}
.svc-link:hover { gap: 9px; }
.svc-link svg { transition: transform var(--trans); }
.svc-link:hover svg { transform: translateX(2px); }

/* --- About Section ---------------------------------------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-box {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(225,29,72,.06), transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge__num { font-size: 1.8rem; line-height: 1; display: block; letter-spacing: -.03em; }
.about-badge__lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; opacity: .9; }

.about-content .sec-sub { color: var(--coal-50); margin-bottom: 20px; max-width: 100%; }
.about-list { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--coal-70);
  font-size: .9rem;
}
.about-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--red);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
  filter: none;
  background: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 700;
  color: var(--white);
}
/* Fix for pseudo-element badge */
.about-list li::before {
  content: '✓';
  mask: none;
  -webkit-mask: none;
}

/* --- Stats Strip ------------------------------------------ */
.stats-strip {
  background: var(--coal);
  padding: 72px 0;
}
.stats-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-block {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child  { border-right: none; padding-right: 0; }
.stat-block__num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.stat-block__num em { font-style: normal; color: var(--red); }
.stat-block__lbl {
  font-size: .78rem;
  color: var(--coal-30);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* --- Why Us ----------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans);
}
.why-card:hover { border-color: var(--red-border); box-shadow: var(--shadow); }
.why-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  opacity: .15;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.05em;
}
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--coal-50); font-size: .88rem; }

/* --- Trust Bar -------------------------------------------- */
.trust-bar {
  padding: 40px 0;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}
.trust-bar .wrap {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coal-30);
  white-space: nowrap;
}
.trust-icons {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.trust-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--coal-50);
}
.trust-icon svg { color: var(--red); }

/* --- CTA Banner ------------------------------------------- */
.cta-band {
  background: var(--coal);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,29,72,.2), transparent 70%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: var(--coal-30); font-size: 1.05rem; max-width: 520px; margin: 0 auto 40px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer ----------------------------------------------- */
.ftr {
  background: var(--coal);
  color: var(--coal-30);
}
.ftr-top { padding: 80px 0 64px; border-bottom: 1px solid rgba(255,255,255,.07); }
.ftr-top .wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}
.ftr-logo .hdr-logo__name { color: rgba(255,255,255,.9); }
.ftr-brand p { font-size: .88rem; line-height: 1.75; margin: 18px 0 28px; max-width: 300px; }

.ftr-socials { display: flex; gap: 8px; }
.ftr-social {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coal-30);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.ftr-social:hover { border-color: var(--red); color: var(--white); background: rgba(225,29,72,.15); }

.ftr-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ftr-col h5 {
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.ftr-col ul { display: flex; flex-direction: column; gap: 10px; }
.ftr-col ul a {
  font-size: .87rem;
  color: var(--coal-30);
  transition: color var(--trans);
}
.ftr-col ul a:hover { color: var(--white); }

.ftr-contact-list { gap: 12px !important; }
.ftr-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--coal-30);
}
.ftr-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.ftr-contact-list li a { color: var(--coal-30); transition: color var(--trans); }
.ftr-contact-list li a:hover { color: var(--white); }

.ftr-bottom { padding: 24px 0; }
.ftr-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
}
.ftr-bottom-links { display: flex; gap: 24px; }
.ftr-bottom-links a { color: var(--coal-30); transition: color var(--trans); }
.ftr-bottom-links a:hover { color: var(--white); }

/* --- Page Hero -------------------------------------------- */
.page-hero {
  background: var(--surface);
  padding: calc(var(--hdr-h) + 72px) 0 72px;
  border-bottom: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(225,29,72,.05), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--coal-30);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--red); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--red-dark); }
.breadcrumb svg { width: 12px; height: 12px; opacity: .4; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .lead { color: var(--coal-50); font-size: 1.05rem; max-width: 600px; }

/* --- Team Cards ------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--coal);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.team-card h3 { margin-bottom: 5px; }
.team-role { color: var(--red); font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { color: var(--coal-50); font-size: .85rem; line-height: 1.7; }

/* --- Values Grid ------------------------------------------ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.val-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--trans);
}
.val-card:hover { border-color: var(--red-border); }
.val-icon {
  width: 44px; height: 44px;
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.val-card h4 { margin-bottom: 5px; }
.val-card p { color: var(--coal-50); font-size: .84rem; }

/* --- Service Detail --------------------------------------- */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1.5px solid var(--border);
}
.svc-detail:last-child { border-bottom: none; }
.svc-detail.flip { direction: rtl; }
.svc-detail.flip > * { direction: ltr; }

.svc-detail__icon { font-size: 3.5rem; margin-bottom: 20px; }
.svc-detail h2 { margin-bottom: 16px; }
.svc-detail p { color: var(--coal-50); margin-bottom: 18px; line-height: 1.8; }
.svc-features { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--coal-70);
  font-size: .9rem;
}
.svc-features li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-visual {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.svc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(225,29,72,.05), transparent 60%);
}

/* --- Contact ----------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info__title { margin-bottom: 32px; }
.c-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.c-icon {
  width: 46px; height: 46px;
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-item h4 { color: var(--coal-30); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.c-item p { color: var(--coal-70); font-size: .92rem; }
.c-item a { color: var(--red); transition: color var(--trans); }
.c-item a:hover { color: var(--red-dark); }

.contact-form-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.contact-form-box h3 { margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { margin-bottom: 18px; }
.f-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--coal-50);
  margin-bottom: 7px;
  letter-spacing: .04em;
}
.f-group input,
.f-group textarea,
.f-group select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--coal);
  font-size: .92rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  appearance: none;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,72,.12);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: var(--coal-10); }
.f-group textarea { min-height: 130px; resize: vertical; }

/* Success / Error notices */
.notice {
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: .9rem;
}
.notice--ok { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25); color: #065f46; }
.notice--err { background: rgba(225,29,72,.07); border: 1px solid var(--red-border); color: var(--red-dark); }

/* --- Legal Pages ------------------------------------------ */
.legal-body { max-width: 740px; }
.legal-body h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 8px; }
.legal-body p { color: var(--coal-50); margin-bottom: 16px; line-height: 1.8; }
.legal-body a { color: var(--red); }
.legal-body ul { margin: 12px 0 20px 20px; list-style: disc; }
.legal-body ul li { color: var(--coal-50); margin-bottom: 8px; }

/* --- 404 -------------------------------------------------- */
.pg-404 { text-align: center; padding: 120px 0; min-height: calc(100vh - var(--hdr-h)); display: flex; align-items: center; }
.pg-404__code { font-size: clamp(6rem,14vw,10rem); font-weight: 900; color: var(--red); opacity: .12; line-height: 1; letter-spacing: -.05em; margin-bottom: -20px; }
.pg-404 h1 { margin-bottom: 16px; }
.pg-404 p { color: var(--coal-50); margin-bottom: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual     { display: none; }
  .hero-lead       { max-width: 100%; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .about-layout    { grid-template-columns: 1fr; gap: 48px; }
  .about-badge     { bottom: 16px; right: 16px; }
  .stats-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stat-block      { border-right: none; }
  .why-grid        { grid-template-columns: 1fr; }
  .ftr-top .wrap   { grid-template-columns: 1fr; gap: 48px; }
  .ftr-cols        { grid-template-columns: repeat(3, 1fr); }
  .svc-detail      { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail.flip { direction: ltr; }
  .contact-layout  { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }
  .sec { padding: 72px 0; }
  .hdr-burger { display: flex; }
  .hdr-nav {
    display: none;
    position: fixed;
    top: var(--hdr-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 2px;
    align-items: stretch;
    box-shadow: var(--shadow);
    z-index: 800;
  }
  .hdr-nav.open { display: flex; }
  .hdr-nav__link { padding: 12px 16px; text-align: left; }
  .hdr-cta { display: none; }

  .hero-metrics { flex-wrap: wrap; gap: 24px; }
  .hero-metric { border-right: none !important; padding: 0 !important; flex: 0 0 calc(50% - 12px); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .ftr-cols { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }
  .trust-bar .wrap { gap: 24px; }
  .trust-icons { gap: 24px; }
  .ftr-bottom .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-strip .wrap { grid-template-columns: 1fr 1fr; }
  .ftr-cols { grid-template-columns: 1fr; }
  .hero-metric { flex: 0 0 100%; }
}
