/* Bou Fayad Auditing — Friendly modern site (Blue + Gold) */

:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --ink: #0b1733;
  --ink-2: #1b2a4e;
  --muted: #5b6786;
  --line: #e6e9f2;

  --blue-900: #0b1f4a;
  --blue-700: #1d3fa3;
  --blue-500: #2f59d9;
  --blue-300: #92b1f5;
  --blue-50:  #eaf0ff;

  --gold-600: #b88a1c;
  --gold-500: #d4a73a;
  --gold-400: #f0c64f;
  --gold-100: #fff4d1;

  --grad-hero: linear-gradient(135deg, #eef3ff 0%, #f7f1e3 100%);
  --grad-band: linear-gradient(135deg, #1d3fa3 0%, #0b1f4a 65%, #1a2b5e 100%);
  --grad-card: linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);

  --shadow-sm: 0 4px 14px rgba(15, 23, 60, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 60, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 23, 60, 0.18);
  --shadow-blue: 0 18px 50px rgba(29, 63, 163, 0.28);
  --shadow-gold: 0 14px 36px rgba(212, 167, 58, 0.32);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  --f-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-serif: "Fraunces", "Plus Jakarta Sans", serif;

  --c-max: 1240px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold-400); color: var(--ink); }

.wrap { max-width: var(--c-max); margin: 0 auto; padding: 0 22px; }
@media (min-width: 768px) { .wrap { padding: 0 36px; } }

/* ============ TOP NAV (rounded pill bar) ============ */
.nav-shell { position: fixed; inset: 0 0 auto 0; z-index: 60; padding: 14px 14px 0; }
.nav {
  max-width: var(--c-max); margin: 0 auto;
  background: var(--surface);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  padding: 8px 10px 8px 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; padding: 6px 12px 6px 0; border-right: 1px solid var(--line); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--blue-700); color: #fff;
  font-family: var(--f-display); font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 16px rgba(29,63,163,.35);
}
.brand-name { font-family: var(--f-display); font-weight: 800; font-size: 14px; letter-spacing: -0.01em; color: var(--ink); }
.brand-name b { color: var(--gold-600); }
.nav-links { display: none; justify-content: center; gap: 4px; }
@media (min-width: 900px) { .nav-links { display: inline-flex; } }
.nav-link {
  padding: 10px 16px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-link.active { background: var(--blue-700); color: #fff; box-shadow: 0 6px 14px rgba(29,63,163,.35); }
.nav-right { display: inline-flex; align-items: center; gap: 8px; }
.nav-phone {
  display: none; align-items: center; gap: 8px; padding: 8px 14px;
  border-radius: var(--r-pill); background: var(--blue-50); color: var(--blue-700);
  font-weight: 600; font-size: 13px;
}
.nav-phone .ph-ic { width: 22px; height: 22px; border-radius: 50%; background: var(--blue-700); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
@media (min-width: 900px) { .nav-phone { display: inline-flex; } }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--gold-500); color: var(--ink);
  font-weight: 700; font-size: 13px;
  box-shadow: var(--shadow-gold);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 18px 40px rgba(212,167,58,.42); }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-50); color: var(--blue-700);
  font-weight: 700; font-size: 18px;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.mobile-menu { display: none; max-width: var(--c-max); margin: 8px auto 0; padding: 12px; background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 14px; border-radius: var(--r-sm); color: var(--ink-2); font-weight: 500; }
.mobile-menu a:hover { background: var(--blue-50); color: var(--blue-700); }

/* ============ HERO ============ */
.hero { padding: calc(var(--nav-h) + 30px) 0 60px; }
@media (min-width: 900px) { .hero { padding: calc(var(--nav-h) + 50px) 0 90px; } }
.hero-card {
  position: relative;
  background: var(--grad-hero);
  border-radius: var(--r-xl);
  padding: 36px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .hero-card { padding: 56px 56px; } }
.hero-card::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(212,167,58,0.35), transparent 70%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border-radius: var(--r-pill); font-family: var(--f-body); font-weight: 600; font-size: 12px;
  color: var(--blue-700); letter-spacing: .04em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 4px rgba(212,167,58,.18); }

.hero-h1 {
  margin-top: 22px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(38px, 6.5vw, 76px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-h1 .pill {
  display: inline-block; padding: 2px 18px 6px;
  background: var(--blue-700); color: #fff; border-radius: 14px;
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-blue);
}
.hero-h1 .pill.gold { background: var(--gold-500); color: var(--ink); box-shadow: var(--shadow-gold); transform: rotate(1.5deg); }

.hero-lede { margin-top: 22px; max-width: 50ch; font-size: 17px; color: var(--muted); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px; transition: transform .2s, box-shadow .2s;
}
.btn-primary { background: var(--gold-500); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(212,167,58,.42); }
.btn-blue { background: var(--blue-700); color: #fff; box-shadow: var(--shadow-blue); }
.btn-blue:hover { transform: translateY(-2px); background: var(--blue-900); }
.btn-ghost { background: transparent; color: var(--ink); padding: 14px 8px; }
.btn-ghost .play {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: var(--blue-700); display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* Hero portrait + floating cards */
.hero-figure { position: relative; min-height: 360px; }
.hero-photo {
  position: relative; aspect-ratio: 4 / 5; max-width: 440px; margin: 0 auto;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--blue-50);
  box-shadow: var(--shadow-md);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::before {
  content: ""; position: absolute; inset: -20px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 60%);
  pointer-events: none;
}

.float {
  position: absolute; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  animation: floatY 6s ease-in-out infinite;
}
.float.top { top: 18px; right: -8px; }
.float.bot { bottom: 30px; left: -10px; animation-delay: 1.2s; }
@media (min-width: 900px) {
  .float.top { right: -28px; }
  .float.bot { left: -34px; }
}
.float .ic { width: 36px; height: 36px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.float .ic.blue { background: var(--blue-50); color: var(--blue-700); }
.float .ic.gold { background: var(--gold-100); color: var(--gold-600); }
.float .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.float .v { font-family: var(--f-display); font-weight: 800; font-size: 18px; }
.float .v small { color: var(--blue-500); font-weight: 700; font-size: 12px; margin-left: 4px; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============ FEATURE CARDS ROW ============ */
.features { padding: 30px 0 60px; }
.feat-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 640px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(4, 1fr); } }
.feat {
  background: var(--surface); border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; gap: 16px;
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat.lead { background: var(--blue-50); }
.feat-ic {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-100); color: var(--gold-600);
  box-shadow: inset 0 0 0 1px rgba(212,167,58,.25);
}
.feat-ic svg { width: 22px; height: 22px; }
.feat.lead .feat-ic { background: transparent; color: var(--blue-700); box-shadow: none; }
.feat h3 { font-family: var(--f-display); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.feat p { font-size: 14px; color: var(--muted); }

/* ============ ABOUT SPLIT ============ */
.about { padding: 70px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-photo { position: relative; }
.about-photo-frame {
  position: relative;
  background: var(--blue-50); border-radius: var(--r-xl); padding: 22px;
  box-shadow: var(--shadow-sm);
}
.about-photo-frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg);
  background: var(--blue-700);
}
.about-photo .blob {
  position: absolute; top: -28px; left: -28px;
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  filter: blur(0px); z-index: -1; opacity: .85;
}
.about-photo .ring {
  position: absolute; bottom: -22px; right: -22px;
  width: 110px; height: 110px; border-radius: 50%;
  border: 6px solid var(--blue-700); z-index: -1; opacity: .25;
}

.about .tag {
  font-size: 12px; font-weight: 700; color: var(--blue-700); letter-spacing: .14em; text-transform: uppercase;
}
.about h2 {
  margin-top: 14px;
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(30px, 4.4vw, 50px); line-height: 1.1; letter-spacing: -0.02em;
}
.about h2 .hi {
  display: inline-block; padding: 0 12px 4px;
  background: var(--blue-700); color: #fff; border-radius: 10px;
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  transform: rotate(-1deg);
}
.about p { margin-top: 18px; color: var(--muted); font-size: 16px; max-width: 50ch; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.about-stat {
  background: var(--surface); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-sm);
}
.about-stat .ic {
  width: 38px; height: 38px; border-radius: 10px; background: var(--gold-100); color: var(--gold-600);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 12px;
}
.about-stat h4 { font-family: var(--f-display); font-weight: 800; font-size: 15px; }
.about-stat p { margin-top: 6px; font-size: 13px; color: var(--muted); }

.about-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px;
  padding: 14px 22px; background: var(--gold-500); color: var(--ink); border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-gold);
}
.about-cta:hover { transform: translateY(-2px); }

/* ============ SERVICES BAND (gradient) ============ */
.services-band {
  margin: 30px 14px; padding: 70px 22px; border-radius: var(--r-xl);
  background: var(--grad-band); color: #fff; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .services-band { padding: 90px 56px; margin: 40px auto; max-width: calc(var(--c-max) + 28px); } }
.services-band::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 60%; height: 60%;
  background: radial-gradient(closest-side, rgba(240,198,79,.25), transparent 70%);
  pointer-events: none;
}
.services-band::after {
  content: ""; position: absolute; inset: auto auto -20% -10%; width: 60%; height: 60%;
  background: radial-gradient(closest-side, rgba(146,177,245,.25), transparent 70%);
  pointer-events: none;
}
.band-head { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto 50px; }
.band-head .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.band-head .eyebrow .dot { background: var(--gold-400); }
.band-head h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin-top: 18px; }
.band-head h2 .hi { display: inline-block; padding: 0 12px 4px; background: var(--gold-500); color: var(--ink); border-radius: 10px; transform: rotate(-1.5deg); font-family: var(--f-serif); font-style: italic; font-weight: 500; }
.band-head p { margin-top: 16px; font-size: 15px; color: rgba(255,255,255,.78); }

.svc-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc {
  background: var(--surface); color: var(--ink); border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc .ic { width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--blue-50); color: var(--blue-700); margin-bottom: 18px; }
.svc.gold .ic { background: var(--gold-100); color: var(--gold-600); }
.svc h3 { font-family: var(--f-display); font-weight: 800; font-size: 18px; }
.svc p { color: var(--muted); font-size: 14px; margin-top: 10px; }
.svc .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 700; font-size: 13px; color: var(--blue-700); }
.svc .more .arr { transition: transform .2s; }
.svc:hover .more .arr { transform: translateX(4px); }

/* ============ STATS STRIP ============ */
.stats { padding: 50px 0; }
.stats-grid {
  background: var(--surface); border-radius: var(--r-xl); padding: 30px;
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 40px; } }
.stat { text-align: left; padding-left: 16px; border-left: 3px solid var(--gold-500); }
.stat .v { font-family: var(--f-display); font-weight: 800; font-size: clamp(28px, 4vw, 40px); color: var(--blue-900); }
.stat .v sup { color: var(--gold-600); font-size: .55em; margin-left: 2px; }
.stat .l { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-top: 6px; }

/* ============ CTA BAND ============ */
.cta-band { padding: 30px 0 70px; }
.cta-card {
  background: var(--grad-band); color: #fff;
  border-radius: var(--r-xl); padding: 40px 28px;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
  position: relative; overflow: hidden;
}
@media (min-width: 800px) { .cta-card { grid-template-columns: 1fr auto; padding: 60px 56px; } }
.cta-card::after {
  content: ""; position: absolute; right: -10%; bottom: -50%; width: 70%; height: 200%;
  background: radial-gradient(closest-side, rgba(240,198,79,.25), transparent 70%);
  pointer-events: none;
}
.cta-card h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.02em; position: relative; z-index: 1; }
.cta-card h2 .hi { background: var(--gold-500); color: var(--ink); padding: 0 10px; border-radius: 8px; }
.cta-card p { color: rgba(255,255,255,.8); margin-top: 10px; position: relative; z-index: 1; }

/* ============ FOOTER ============ */
.footer { padding: 30px 0 30px; }
.footer-inner {
  background: var(--surface); border-radius: var(--r-xl); padding: 40px 28px;
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; padding: 56px 48px; gap: 40px; } }
.footer h4 { font-family: var(--f-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--blue-700); margin-bottom: 16px; }
.footer p { color: var(--muted); font-size: 14px; max-width: 36ch; }
.footer li { margin-bottom: 8px; font-size: 14px; color: var(--ink-2); }
.footer li a:hover { color: var(--blue-700); }
.footer .brand { border-right: 0; padding: 0 0 14px; }
.footer-bottom {
  max-width: var(--c-max); margin: 18px auto 0; padding: 0 22px;
  display: grid; grid-template-columns: 1fr; gap: 8px;
  font-size: 12px; color: var(--muted);
}
@media (min-width: 768px) { .footer-bottom { grid-template-columns: 1fr 1fr; padding: 0 36px; } }
.footer-bottom .end { text-align: right; color: var(--gold-600); font-weight: 600; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { padding: calc(var(--nav-h) + 30px) 0 40px; }
.page-hero-card {
  background: var(--grad-hero); border-radius: var(--r-xl);
  padding: 50px 26px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .page-hero-card { padding: 80px 56px; } }
.page-hero-card::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  background: radial-gradient(closest-side, rgba(212,167,58,.3), transparent 70%);
}
.page-hero h1 { position: relative; font-family: var(--f-display); font-weight: 800; font-size: clamp(36px, 6vw, 64px); line-height: 1.05; letter-spacing: -0.02em; max-width: 16ch; }
.page-hero h1 .hi { display: inline-block; padding: 0 12px 4px; background: var(--blue-700); color: #fff; border-radius: 12px; font-family: var(--f-serif); font-style: italic; font-weight: 500; transform: rotate(-1.5deg); }
.page-hero h1 .hi.gold { background: var(--gold-500); color: var(--ink); transform: rotate(1.5deg); }
.page-hero .lede { position: relative; margin-top: 18px; color: var(--muted); font-size: 17px; max-width: 56ch; }
.page-hero .crumbs { position: relative; display: inline-flex; gap: 8px; margin-bottom: 18px; padding: 8px 14px; background: rgba(255,255,255,.7); border-radius: var(--r-pill); font-size: 12px; color: var(--blue-700); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; box-shadow: var(--shadow-sm); }

/* ============ SERVICES PAGE DETAIL ============ */
.svc-detail { padding: 30px 0 60px; }
.svc-detail-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .svc-detail-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-detail-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-detail article {
  background: var(--surface); border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.svc-detail article:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-detail .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--blue-50); color: var(--blue-700); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; font-weight: 800; }
.svc-detail article:nth-child(3n+2) .ic { background: var(--gold-100); color: var(--gold-600); }
.svc-detail h2 { font-family: var(--f-display); font-weight: 800; font-size: 22px; }
.svc-detail p { margin-top: 10px; color: var(--muted); font-size: 14px; }
.svc-detail ul.spec { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 14px; }
.svc-detail ul.spec li { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--ink-2); border-bottom: 1px dashed var(--line); }
.svc-detail ul.spec li:last-child { border-bottom: 0; }
.svc-detail ul.spec li b { color: var(--blue-700); font-weight: 700; }

/* ============ ABOUT PAGE ============ */
.firm { padding: 30px 0 60px; }
.firm-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
@media (min-width: 900px) { .firm-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.timeline { padding: 30px 0 50px; }
.timeline-list {
  background: var(--surface); border-radius: var(--r-xl); padding: 22px; box-shadow: var(--shadow-sm);
}
.timeline-row { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 22px; border-bottom: 1px dashed var(--line); align-items: center; }
@media (min-width: 768px) { .timeline-row { grid-template-columns: 140px 1fr auto; gap: 26px; padding: 28px; } }
.timeline-row:last-child { border-bottom: 0; }
.timeline-row .y { font-family: var(--f-display); font-weight: 800; font-size: clamp(22px, 3vw, 32px); color: var(--blue-700); }
.timeline-row .t { color: var(--ink-2); font-size: 15px; }
.timeline-row .pin { display: none; font-size: 12px; color: var(--gold-600); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@media (min-width: 768px) { .timeline-row .pin { display: inline; } }

.partners { padding: 30px 0 60px; }
.partners-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
.partner { background: var(--surface); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.partner:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.partner .av { width: 56px; height: 56px; border-radius: 16px; background: var(--blue-700); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--f-display); font-weight: 800; font-size: 18px; margin-bottom: 18px; box-shadow: var(--shadow-blue); }
.partner:nth-child(3n+2) .av { background: var(--gold-500); color: var(--ink); box-shadow: var(--shadow-gold); }
.partner h3 { font-family: var(--f-display); font-weight: 800; font-size: 18px; }
.partner .role { font-size: 12px; color: var(--gold-600); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.partner p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* ============ INSIGHTS ============ */
.posts { padding: 30px 0 60px; }
.posts-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .posts-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post { background: var(--surface); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; transition: transform .25s, box-shadow .25s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post .meta { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--blue-700); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.post .meta .pill { background: var(--gold-100); color: var(--gold-600); padding: 4px 10px; border-radius: var(--r-pill); }
.post h3 { font-family: var(--f-display); font-weight: 800; font-size: 19px; line-height: 1.25; }
.post p { color: var(--muted); font-size: 14px; }
.post .read { margin-top: auto; font-size: 13px; color: var(--blue-700); font-weight: 700; }

/* ============ CONTACT ============ */
.contact { padding: 30px 0 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.offices { display: grid; grid-template-columns: 1fr; gap: 16px; }
.office { background: var(--surface); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.office .city { display: inline-block; padding: 4px 10px; background: var(--blue-50); color: var(--blue-700); border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.office h3 { font-family: var(--f-display); font-weight: 800; font-size: 22px; margin-top: 10px; }
.office p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.office a { display: block; margin-top: 8px; font-size: 13px; color: var(--blue-700); font-weight: 600; }

.form-card { background: var(--surface); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .form-card { padding: 44px; } }
.form-card h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(24px, 3vw, 32px); }
.form-card p.sub { color: var(--muted); margin-top: 6px; }
.form { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
.form .row2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form .row2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid transparent;
  padding: 14px 16px; border-radius: var(--r-md); font-size: 15px; outline: none;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--blue-500); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form .submit {
  justify-self: start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; background: var(--gold-500); color: var(--ink);
  border-radius: var(--r-pill); font-weight: 700; box-shadow: var(--shadow-gold);
  transition: transform .2s;
}
.form .submit:hover { transform: translateY(-2px); }
.sent {
  margin-top: 18px; padding: 16px 20px; border-radius: var(--r-md);
  background: var(--blue-50); color: var(--blue-700); font-weight: 600;
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
