@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ==============================
   Reset & Base
============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #f4c430;
  --gold-dark: #d4a820;
  --dark: #111111;
  --dark2: #1e1e1e;
  --mid: #555555;
  --light: #f8f7f4;
  --border: #e8e4dc;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --radius: 8px;
  --tr: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; }
h1 { font-size: 38px; font-weight: 900; }
h2 { font-family: 'Roboto', sans-serif; font-size: 28px; font-weight: 900; margin-bottom: 12px; }
h3 { font-size: 17px; margin-bottom: 9px; }
p  { color: #3a3a3a; }

/* ==============================
   Layout
============================== */
.container { width: 92%; max-width: 1200px; margin: auto; }
.section    { padding: 72px 0; }
.section:nth-child(even) { background: var(--light); }
.section-label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ==============================
   Header / Nav
============================== */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 72px; }

nav { display: flex; gap: 4px; align-items: center; }

nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: color var(--tr), background var(--tr);
}
nav a:hover, nav a.active { color: var(--dark); background: var(--gold); }

.menu-toggle { display: none; font-size: 26px; cursor: pointer; color: var(--gold); }

/* ==============================
   Page Hero (inner pages)
============================== */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1c1c1c 60%, #0d0d0d 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 10% 50%, rgba(244,196,48,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { color: #999; font-size: 15px; max-width: 620px; font-weight: 300; line-height: 1.85; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero-tag {
  background: rgba(244,196,48,.12);
  border: 1px solid rgba(244,196,48,.25);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .03em;
}

/* ==============================
   Homepage Hero
============================== */
.hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
  color: #fff;
  padding: 110px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(244,196,48,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(244,196,48,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(244,196,48,.12);
  border: 1px solid rgba(244,196,48,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 { font-size: 48px; color: var(--gold); margin-bottom: 20px; letter-spacing: -.01em; line-height: 1.2; }
.hero p  { max-width: 640px; margin: 0 auto 38px; font-size: 16px; color: #bbb; font-weight: 300; line-height: 1.9; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat-num  { font-size: 34px; color: #fff; font-weight: 900; line-height: 1; }
.stat-label { font-size: 12px; color: #777; letter-spacing: .07em; text-transform: uppercase; margin-top: 4px; }

/* ==============================
   Buttons
============================== */
.btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--gold);
  color: var(--dark);
  padding: 12px 26px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background var(--tr), color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(244,196,48,.2);
}

/* ==============================
   Cards (Why Us / generic)
============================== */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; margin-top: 28px; }

.card {
  background: #fff;
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card h3 { font-size: 16px; margin-bottom: 8px; color: var(--dark); }
.card p   { font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ==============================
   About Section (index)
============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 20px;
}
.about-body { font-size: 15px; color: #444; line-height: 1.85; }
.about-body p + p { margin-top: 14px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.pillar:last-child { border-bottom: none; }
.pillar-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 16px;
}
.pillar-text h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.pillar-text p  { font-size: 13.5px; color: var(--mid); line-height: 1.6; }

/* ==============================
   Services Strip (index)
============================== */
.services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.svc-icon { width: 38px; height: 38px; background: #fdf8e8; border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 13px; font-size: 18px; }
.svc-card h3 { font-size: 14.5px; margin-bottom: 6px; }
.svc-card p  { font-size: 13px; color: var(--mid); line-height: 1.65; }
.svc-link { display: inline-block; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: .03em; text-decoration: none; }
.svc-link::after { content: ' →'; }

/* ==============================
   CTA Band
============================== */
.cta-band { background: var(--dark); padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: #999; font-size: 15px; max-width: 520px; margin: 0 auto 30px; }

/* ==============================
   Footer
============================== */
footer { background: #161616; color: #aaa; padding: 56px 0 22px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-grid h4 { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { font-size: 13.5px; color: #888; line-height: 1.9; display: block; text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand   { font-family: 'Segoe Print', 'Comic Sans MS', cursive; font-size: 20px; color: #fff; font-weight: bold; margin-bottom: 6px; }
.footer-tagline { font-size: 12px; font-weight: bold; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.footer-bottom  { text-align: center; padding-top: 18px; font-size: 12.5px; color: #444; }

/* ==============================
   Services Page — Detail Cards
============================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 28px; }

.svc-detail { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: transform var(--tr), box-shadow var(--tr); }
.svc-detail:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-detail-header { background: var(--dark); padding: 22px 24px; display: flex; align-items: center; gap: 14px; }
.svc-detail-header h3 { color: #fff; font-size: 16px; margin: 0; line-height: 1.3; }
.svc-detail-header p  { color: #888; font-size: 12.5px; margin-top: 3px; }
.svc-detail-body { padding: 22px 24px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.tag { background: var(--light); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 600; color: var(--dark); padding: 4px 12px; }
.svc-detail-body p { font-size: 13.5px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }

/* ==============================
   Services Page — Accordion
============================== */
.accordion-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 28px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-title {
  width: 100%; padding: 15px 18px; text-align: left;
  font-weight: 600; font-family: 'Roboto', sans-serif; font-size: 14px;
  border: none; cursor: pointer; background: #fff; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--tr);
}
.accordion-title:hover { background: #fdf8e8; }
.accordion-item.active .accordion-title { background: var(--gold); color: var(--dark); font-weight: 700; }
.accordion-title::after { content: "+"; font-size: 18px; font-weight: 400; }
.accordion-item.active .accordion-title::after { content: "–"; }
.accordion-content { display: none; padding: 16px 18px; background: var(--light); font-size: 13.5px; color: var(--mid); line-height: 1.75; }
.accordion-item.active .accordion-content { display: block; }
.accordion-content ul { padding-left: 18px; }
.accordion-content li { margin-bottom: 5px; }
.accordion-content b  { display: block; margin: 10px 0 4px; color: var(--dark); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }

/* ==============================
   Service Detail Pages — Layout
============================== */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.content-block { margin-bottom: 40px; }
.content-block:last-child { margin-bottom: 0; }
.block-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.block-sub { font-size: 14px; color: var(--mid); margin-bottom: 8px; }

/* Scope grid */
.scope-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; margin-top: 14px; }
.scope-card {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--gold);
  border-radius: 6px; padding: 12px 15px; font-size: 13.5px; font-weight: 600; color: var(--dark2);
  transition: transform var(--tr), box-shadow var(--tr);
}
.scope-card:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }

/* Deliverables */
.deliver-list { list-style: none; margin-top: 14px; }
.deliver-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--mid);
}
.deliver-list li:last-child { border-bottom: none; }
.deliver-list li::before {
  content: '✓'; background: var(--gold); color: var(--dark);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0; margin-top: 2px;
}

/* Process steps */
.process-steps { margin-top: 14px; display: flex; flex-direction: column; }
.step { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.step-body h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.step-body p  { font-size: 13.5px; color: var(--mid); line-height: 1.65; }

/* Callout block */
.callout-block {
  background: var(--light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 8px;
}
.callout-block p { font-size: 14px; color: var(--dark); font-weight: 600; line-height: 1.75; }

/* Payroll diff grid */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.diff-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.diff-card h4 { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 8px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.diff-card ul { list-style: none; padding: 0; margin-top: 8px; }
.diff-card ul li { font-size: 13px; color: var(--mid); padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: center; }
.diff-card ul li:last-child { border-bottom: none; }
.diff-card ul li::before { content: '•'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* Compliance law cols */
.law-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.law-group h4 { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--gold); display: inline-block; }
.law-list { list-style: none; padding: 0; }
.law-list li { font-size: 13.5px; color: var(--mid); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 9px; align-items: flex-start; }
.law-list li:last-child { border-bottom: none; }
.law-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* Warning band */
.warning-band {
  background: #1a1008; border: 1px solid rgba(244,196,48,.25);
  border-left: 4px solid var(--gold); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 32px;
  display: flex; gap: 14px; align-items: flex-start;
}
.warning-icon { font-size: 20px; flex-shrink: 0; }
.warning-band p { font-size: 13.5px; color: #ccc; line-height: 1.7; }
.warning-band strong { color: var(--gold); }

/* Scope list (diligence/disputes) */
.scope-list { list-style: none; margin-top: 14px; }
.scope-list li { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--mid); line-height: 1.65; }
.scope-list li:last-child { border-bottom: none; }
.scope-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* Report grid (diligence) */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.report-card { background: var(--dark); border-radius: var(--radius); padding: 20px; }
.report-card h4 { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.report-card p  { color: #aaa; font-size: 13px; line-height: 1.7; }

/* Use case grid (diligence) */
.usecase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 16px; }
.usecase-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; text-align: center; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); }
.usecase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.usecase-icon { font-size: 26px; margin-bottom: 10px; }
.usecase-card h4 { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.usecase-card p  { font-size: 12.5px; color: var(--mid); line-height: 1.55; }

/* Service tiles (disputes) */
.service-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 16px; }
.tile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.tile-icon { font-size: 26px; margin-bottom: 12px; }
.tile h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.tile p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* Approach grid (disputes) */
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.approach-card { background: var(--dark); border-radius: var(--radius); padding: 22px; }
.approach-card h4 { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; }
.approach-card p  { color: #aaa; font-size: 13.5px; line-height: 1.7; }

/* Draft cols (disputes) */
.draft-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.draft-group h4 { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid var(--gold); display: inline-block; }
.draft-list { list-style: none; padding: 0; }
.draft-list li { font-size: 13.5px; color: var(--mid); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; gap: 9px; align-items: flex-start; }
.draft-list li:last-child { border-bottom: none; }
.draft-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }

/* ==============================
   Sidebar
============================== */
.sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sidebar-card h4 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sidebar-card p  { font-size: 13.5px; color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.sidebar-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 6px; font-size: 13.5px; font-weight: 500;
  color: var(--mid); text-decoration: none;
  transition: background var(--tr), color var(--tr); margin-bottom: 4px;
}
.sidebar-nav a:hover { background: var(--light); color: var(--dark); }
.sidebar-nav a.current { background: var(--gold); color: var(--dark); font-weight: 700; }
.sidebar-nav a::after { content: '→'; font-size: 12px; opacity: .5; }
.sidebar-nav a.current::after { opacity: 1; }
.contact-card { background: var(--dark) !important; }
.contact-card h4 { color: var(--gold) !important; }
.contact-card p  { color: #aaa !important; }
.contact-card a  { display: block; color: #fff; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; text-decoration: none; transition: color var(--tr); }
.contact-card a:hover { color: var(--gold); }

/* ==============================
   Team Page
============================== */
.team-leaders { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-bottom: 48px; }

.team-grid-photos { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 32px; justify-items: center; }

.team-card { text-align: center; cursor: pointer; transition: transform var(--tr); }
.team-card:hover { transform: translateY(-5px); }
.team-card img {
  width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
  box-shadow: var(--shadow-md); border: 4px solid var(--gold);
  transition: box-shadow var(--tr); display: block; margin: 0 auto;
}
.team-leaders .team-card img { width: 140px; height: 140px; }
.team-card:hover img { box-shadow: 0 10px 28px rgba(244,196,48,.3); }
.team-card h4 { margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--dark); }
.team-card p  { font-size: 12.5px; color: var(--mid); margin-top: 2px; }
.team-qual    { display: block; font-size: 11.5px; color: var(--gold); font-weight: 600; margin-top: 3px; }

.team-divider { display: flex; align-items: center; gap: 16px; margin: 56px 0 40px; }
.divider-line  { flex: 1; height: 1px; background: var(--border); }
.divider-label { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); white-space: nowrap; }

.linkedin {
  display: inline-block; margin-top: 7px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #0a66c2; color: #fff;
  font-size: 13px; line-height: 24px; text-align: center;
  text-decoration: none; font-weight: 700;
  transition: opacity var(--tr);
}
.linkedin:hover { opacity: .82; }

/* Modal */
.modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 200;
  backdrop-filter: blur(3px);
}
.modal .box {
  background: #fff; padding: 36px 32px; border-radius: 10px;
  max-width: 640px; width: 100%; max-height: 88vh;
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.modal .close {
  float: right; background: var(--dark); color: #fff;
  border: none; padding: 7px 13px; border-radius: 5px;
  cursor: pointer; font-size: 13px; font-weight: 600;
  transition: background var(--tr);
}
.modal .close:hover { background: var(--gold); color: var(--dark); }
.modal .content h2 { font-size: 22px; margin-bottom: 4px; margin-top: 8px; }
.modal .content p  { font-size: 14px; color: #444; line-height: 1.8; }

/* ==============================
   Clientele Page
============================== */
.trust-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 28px;
}
.trust-stat { background: #fff; padding: 28px 20px; text-align: center; }
.trust-num  { font-size: 36px; color: var(--dark); font-weight: 900; line-height: 1; }
.trust-num span { color: var(--gold); }
.trust-lbl  { font-size: 12px; color: var(--mid); letter-spacing: .06em; text-transform: uppercase; margin-top: 6px; }

.conf-banner {
  background: var(--dark); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.conf-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.conf-banner h4 { color: #fff; font-size: 14px; margin-bottom: 4px; }
.conf-banner p  { color: #999; font-size: 13.5px; line-height: 1.65; }

.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 24px; }
.ind-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  display: flex; align-items: center; gap: 13px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.ind-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ind-icon { width: 38px; height: 38px; border-radius: 7px; background: #fdf8e8; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ind-card h4 { font-size: 13.5px; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ==============================
   Contact Page
============================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 8px; }
.contact-block  { margin-bottom: 32px; }
.contact-block:last-child { margin-bottom: 0; }
.contact-block h3 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contact-person {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 12px;
  transition: box-shadow var(--tr);
}
.contact-person:hover { box-shadow: var(--shadow-sm); }
.person-name  { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.contact-row  { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.contact-row:last-child { margin-bottom: 0; }
.c-icon { width: 30px; height: 30px; border-radius: 6px; background: #fdf8e8; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.contact-row a, .contact-row span { font-size: 13.5px; color: var(--mid); text-decoration: none; transition: color var(--tr); }
.contact-row a:hover { color: var(--gold); }
.addr-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.addr-card p { font-size: 13.5px; color: var(--mid); line-height: 1.8; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 260px; display: block; border: none; }

/* ==============================
   Reveal Animation
============================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==============================
   Responsive
============================== */
@media (max-width: 1024px) {
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-layout { grid-template-columns: 1fr; }
  .diff-grid, .law-cols, .report-grid, .approach-grid, .draft-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  nav {
    display: none; flex-direction: column;
    background: var(--dark2);
    position: absolute; right: 0; top: 72px;
    width: 230px; padding: 16px;
    border-radius: 0 0 0 var(--radius);
    box-shadow: var(--shadow-md);
  }
  nav.active { display: flex; }
  nav a { padding: 10px 14px; border-radius: 5px; color: #ccc; }
  .menu-toggle { display: block; }
}

@media (max-width: 600px) {
  .hero { padding: 72px 0 64px; }
  .hero h1 { font-size: 28px; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .team-grid-photos { grid-template-columns: repeat(2, 1fr); }
  .team-leaders { gap: 32px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
}
