:root {
  --navy: #1F3864;
  --navy-dark: #142542;
  --navy-soft: #2A4A80;
  --gold: #B08D57;
  --gold-light: #D9C09B;
  --bg: #F7F5F1;
  --card: #FFFFFF;
  --text: #202634;
  --text-muted: #5B6472;
  --border: #E7E2DA;
  --success: #2F7A4E;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(31, 56, 100, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a.active { color: var(--navy); font-weight: 700; }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy) 60%, var(--navy-soft));
  color: #fff;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,87,0.35), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  background: rgba(176, 141, 87, 0.15);
  border: 1px solid rgba(176, 141, 87, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #c49f68; color: #fff; box-shadow: 0 10px 24px rgba(176,141,87,0.35); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); color: #fff; }

.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust div { min-width: 110px; }
.hero-trust strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.hero-trust span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* Hero chat preview card */
.chat-preview {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  padding: 20px;
  color: var(--text);
}
.chat-preview .chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.chat-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); }
.chat-preview .chat-head strong { color: var(--navy); font-size: 0.95rem; }
.chat-preview .chat-head span { font-size: 0.78rem; color: var(--text-muted); }

.bubble {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  max-width: 88%;
}
.bubble.bot { background: #EFF2F7; color: var(--text); border-top-left-radius: 2px; }
.bubble.user {
  background: var(--navy);
  color: #fff;
  margin-left: auto;
  border-top-right-radius: 2px;
}
.bubble .cite {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-alt { background: var(--card); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head .eyebrow { background: rgba(31,56,100,0.06); border-color: rgba(31,56,100,0.15); color: var(--navy); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.94rem; }

/* ---------- Internal quality dashboard ---------- */
.admin-page { min-height: 100vh; background: #eef1f5; }
.admin-shell { max-width: 1180px; margin: auto; padding: 40px 24px 80px; }
.admin-title, .panel-head, .source-row, .review-actions { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.admin-title { margin-bottom:28px; }
.admin-title .eyebrow { color:var(--navy); background:#fff; margin-bottom:10px; }
.admin-title p { margin:0; }
.admin-login { max-width:620px; margin:60px auto; }
.admin-login-row { display:flex; gap:12px; }
.admin-login-row input, .review-row textarea { width:100%; border:1px solid var(--border); border-radius:10px; padding:13px; font:inherit; }
.admin-error { color:#a32929; margin-top:12px!important; }
.metric-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; padding:0 0 24px; }
.metric-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:20px; }
.metric-card span { display:block; color:var(--text-muted); font-size:.85rem; }
.metric-card strong { font:700 1.8rem 'Playfair Display',serif; color:var(--navy); }
.admin-grid { display:grid; grid-template-columns:1.5fr 1fr; gap:24px; }
.btn-outline-dark { color:var(--navy); border:1px solid var(--navy); background:transparent; }
.btn-small, .review-actions button { border:1px solid var(--border); background:#fff; color:var(--navy); padding:7px 11px; border-radius:8px; cursor:pointer; }
.review-row { border-top:1px solid var(--border); padding:18px 0; }
.review-row textarea { margin:12px 0; min-height:70px; }
.review-actions { justify-content:flex-start; }
.source-row { padding:10px 0; border-top:1px solid var(--border); font-size:.88rem; }
.status-badge { display:inline-block; padding:3px 8px; border-radius:999px; background:#eef1f5; font-size:.72rem; }
.status-current,.status-configured,.status-normal { background:#e4f4e9; color:#23613b; }
.status-check-failed,.status-not-configured,.status-critical,.status-high { background:#fbe9e8; color:#8c2822; }
@media(max-width:800px){.metric-grid{grid-template-columns:repeat(2,1fr)}.admin-grid{grid-template-columns:1fr}.admin-login-row{flex-direction:column}}

/* Steps / timeline */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  counter-increment: step;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.step-num::before { content: counter(step); }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -4px;
  width: 2px;
  background: var(--border);
}
.step-body h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step-body p { margin-bottom: 0; }
.step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(31,56,100,0.08);
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 18px 0;
  font-size: 0.85rem;
}
.trust-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 52ch; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 28px;
  margin-top: 40px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.68); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.disclaimer-note {
  background: rgba(176,141,87,0.12);
  border: 1px solid rgba(176,141,87,0.35);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 24px; margin: 0 16px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 60ch; margin: 0 auto; }

/* ---------- Chatbot page ---------- */
.chat-shell {
  max-width: 760px;
  margin: -40px auto 0;
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(31,56,100,0.15);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.chat-shell .chat-head {
  background: var(--navy);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-shell .chat-head .chat-dot { background: #4ADE80; }
.chat-shell .chat-head strong { display: block; }
.chat-shell .chat-head span { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.chat-body {
  padding: 24px;
  height: 440px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.chat-body .bubble.bot { background: #EFF2F7; }
.chat-body .bubble.user { background: var(--navy); color: #fff; }

.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 14px; }
.quick-reply {
  background: #fff;
  border: 1px solid var(--gold-light);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  font-weight: 600;
}
.quick-reply:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: #FBFAF8;
}
.chat-input-row input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-family: inherit;
}
.chat-input-row input:focus { outline: 2px solid var(--gold-light); }
.chat-send {
  background: var(--gold);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}
.chat-send:hover { background: var(--navy); }

.chat-disclaimer {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  padding: 10px 24px 0;
}

.chat-consent { padding: 18px 22px; background: #f6f8fb; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.chat-consent[hidden] { display: none !important; }
.chat-consent label { color: var(--text); line-height: 1.55; }
.chat-consent input { margin-right: 8px; }
.chat-consent small { color: var(--text-muted); }

/* Score badge in chat */
.score-card {
  background: #fff;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  max-width: 88%;
}
.score-card .score-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.score-card .score-value { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin: 4px 0; }
.score-fill { height: 6px; border-radius: 999px; background: #EEE; overflow: hidden; margin-top: 6px;}
.score-fill span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--navy)); }

/* ---------- Misc ---------- */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  background: rgba(31,56,100,0.06);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon-badge { flex-shrink: 0; margin-bottom: 0; }

form.contact-form { display: flex; flex-direction: column; gap: 14px; }
form.contact-form label { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: -8px; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }
form.contact-form input:focus, form.contact-form select:focus, form.contact-form textarea:focus {
  outline: 2px solid var(--gold-light);
}

.legal-content h2 { margin-top: 2em; font-size: 1.3rem; }
.legal-content h3 { margin-top: 1.4em; font-size: 1.05rem; }
.legal-content ul { color: var(--text-muted); }
.legal-content { max-width: 780px; margin: 0 auto; }

.badge-strip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}
.badge-strip div {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Typing animation ─────────────────────────────────────────────────── */
.typing { display: flex; align-items: center; gap: 5px; padding: 14px 18px !important; }
.typing-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--navy); opacity: 0.35;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-6px); opacity: 0.9; }
}

/* ── Mobile chat sizing ───────────────────────────────────────────────── */
@media (max-width: 600px) {
  .chat-body { height: calc(100vh - 300px); min-height: 320px; }
  .chat-shell { margin: -24px 12px 0; border-radius: 16px; }
  .chat-shell .chat-head { padding: 14px 18px; }
  .chat-body { padding: 16px; }
  .chat-input-row { padding: 12px 14px; }
  .chat-input-row input { font-size: 16px; padding: 10px 14px; }
  .bubble { max-width: 92%; font-size: 0.85rem; }
  .quick-reply { font-size: 0.78rem; padding: 7px 12px; }
}

/* ── FAQ grid ─────────────────────────────────────────────────────────── */
.faq-grid { display: grid; gap: 16px; max-width: 820px; margin: 0 auto; }
.faq-item { padding: 20px 24px; }
.faq-item summary { cursor: pointer; font-weight: 600; color: var(--navy); font-family: 'Inter', sans-serif; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 12px 0 0; }

/* ── Score legend ─────────────────────────────────────────────────────── */
.score-legend { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.score-legend span { background: rgba(31,56,100,0.06); border: 1px solid rgba(31,56,100,0.15); color: var(--navy); padding: 6px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }

/* ── Validation note ──────────────────────────────────────────────────── */
.validation-note { background: rgba(47,122,78,0.08); border: 1px solid rgba(47,122,78,0.3); border-radius: 10px; padding: 14px 18px; font-size: 0.88rem; color: var(--text); margin-top: 20px; }

/* ── Chatbot feedback row ─────────────────────────────────────────────── */
.feedback-row { display: flex; align-items: center; gap: 10px; margin: 2px 0 14px 0; font-size: 0.8rem; color: var(--text-muted); }
.feedback-row button { border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 4px 12px; cursor: pointer; font-size: 0.8rem; }
.feedback-row button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Chat safe note ───────────────────────────────────────────────────── */
.chat-safe-note { font-size: 0.78rem; color: var(--text-muted); margin: 10px 2px 0; }

/* ── Escalation & quick-reply primary ─────────────────────────────────── */
.chat-escalate-btn { margin: 6px 0 14px; }
.quick-reply.primary { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── Lawyer partner grid ──────────────────────────────────────────────── */
.lawyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lawyer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: left;
}
.lawyer-name {
  font-size: 1rem;
  margin-bottom: 6px;
}
.lawyer-loc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.lawyer-badge {
  display: inline-block;
  background: rgba(31,56,100,0.06);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.lawyer-cta {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.86rem;
}
@media (max-width: 860px) {
  .lawyer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lawyer-grid { grid-template-columns: 1fr; }
}

/* ===== Tim Mitra Lexa (lawyer grid) ===== */
.lawyers { padding: 4rem 0; background: linear-gradient(180deg, #fff 0%, #f7f8fc 100%); }
.lawyers .section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: .5rem; }
.lawyers .section-sub { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; color: #5b6478; }
.lawyer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.lawyer-card { background: #fff; border: 1px solid #e8ebf3; border-radius: 16px; padding: 1.5rem; text-align: center; transition: transform .2s, box-shadow .2s; }
.lawyer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,22,53,.12); }
.lawyer-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin: 0 auto .9rem; }
.lawyer-name { font-size: .92rem; color: var(--navy); font-weight: 600; line-height: 1.3; margin-bottom: .6rem; min-height: 2.4em; }
.lawyer-badge { display: inline-block; background: rgba(212,175,55,.15); color: #9a7b1e; font-size: .72rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; margin-bottom: .7rem; }
.lawyer-loc { font-size: .82rem; color: #5b6478; margin-bottom: 1rem; }
.lawyer-cta { display: inline-block; font-size: .82rem; font-weight: 600; color: var(--navy); text-decoration: none; border: 1px solid var(--navy); padding: .45rem 1rem; border-radius: 999px; transition: background .2s, color .2s; }
.lawyer-cta:hover { background: var(--navy); color: #fff; }
.lawyer-note { text-align: center; margin-top: 2rem; color: #5b6478; }
.lawyer-note a { color: var(--navy); font-weight: 600; }
