/* ============================================================
   George & Vyas, LLC — Main Stylesheet
   Site: georgevyas.com
   Colors: #1B4D8E (primary blue), #0F2D54 (dark navy),
           #f7f9fc (light gray bg), #e8ecf1 (border gray),
           #1a2332 (text dark), #4a5568 (text muted),
           #F59E0B (gold stars), #7FB3E8 (accent blue light)
   Fonts: Merriweather (headings) + Source Sans 3 (body)
   ============================================================ */

/* ---------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
  --blue:         #1B4D8E;
  --navy:         #0F2D54;
  --navy-dark:    #0a1f3d;
  --white:        #FFFFFF;
  --gray-bg:      #f7f9fc;
  --gray-bg-alt:  #f0f4f8;
  --border:       #e8ecf1;
  --text-dark:    #1a2332;
  --text-muted:   #4a5568;
  --gold:         #F59E0B;
  --accent-light: #7FB3E8;
  --accent-card:  rgba(255,255,255,0.1);

  --font-heading: 'Merriweather', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --radius:       8px;
  --radius-lg:    14px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.14);
  --transition:   all 0.25s ease;
}

/* ---------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Keyboard focus indicator (WCAG 2.1 AA) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #1B4D8E;
  outline-offset: 2px;
}

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-dark);
}

/* ---------------------------------------------------------------
   3. UTILITY CLASSES
--------------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-heading--white {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(27,77,142,0.35);
}

.btn--white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn--white:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,255,255,0.25);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* Gold/amber — high-visibility CTA on dark backgrounds */
.btn--gold {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(245,158,11,0.38);
}
.btn--gold:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  box-shadow: 0 6px 22px rgba(245,158,11,0.50);
  transform: translateY(-1px);
}

/* Outline variant for use on light/white section backgrounds */
.btn--outline-primary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.stars-gold {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ---------------------------------------------------------------
   4. NAVIGATION
--------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav--scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Text logo fallback — shows when G_V_logo.png is not yet present */
.nav__logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-badge {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__logo-firm {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Footer text logo fallback */
.footer__logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer__logo-badge {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
}
.footer__logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.footer__logo-firm {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer__logo-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover {
  color: var(--blue);
}

/* Secondary nav CTA — Free Consultation outline pill */
.nav__consult {
  background: transparent;
  color: var(--blue) !important;
  border: 2px solid var(--blue);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__consult:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

.nav__cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}
.nav__cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile a {
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.nav__mobile a:last-child {
  border-bottom: none;
}
.nav__mobile a:hover {
  background: var(--gray-bg);
  color: var(--blue);
}
.nav__mobile .nav__cta {
  margin: 12px 24px 0;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
}

/* Floating phone button */
.fab-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  border: 3px solid #22c55e;
  transition: var(--transition);
  text-decoration: none;
}
.fab-phone:hover {
  background: #f0fdf4;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(34,197,94,0.35);
  border-color: #16a34a;
}
.fab-phone::after {
  content: '24/7';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #16a34a;
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   5. HERO SECTION
--------------------------------------------------------------- */
.hero {
  background:
    linear-gradient(135deg, rgba(15,45,84,0.35) 0%, rgba(10,31,61,0.35) 100%),
    url('kent-county-courthouse.jpg') center center / cover no-repeat;
  padding: 104px 0 44px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__inner {
  width: 100%;
  max-width: 860px;
}

/* Hero Left */
.hero__left {
  padding-top: 0;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hero__rating .stars-gold {
  font-size: 1.7rem;
}
.hero__rating-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(15, 45, 84, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 22px;
  margin-bottom: 22px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

/* Availability indicator above star rating */
.hero__available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.hero__available-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25);
  flex-shrink: 0;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.0); }
}

@media (prefers-reduced-motion: reduce) {
  .nav__avail-dot { animation: none; }
}

.hero__micro {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  background: rgba(15, 45, 84, 0.55);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Hero Right — Trust Badge Card */
.hero__right {
  flex-shrink: 0;
  width: 300px;
}

.hero__trust-badge {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.hero__trust-badge__google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.hero__trust-badge__google span {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__trust-badge__stars {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 6px;
}

.hero__trust-badge__score {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__trust-badge__count {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.hero__trust-badge__divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 0 18px;
}

.hero__trust-badge__creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.hero__trust-badge__cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.hero__trust-badge__cred-icon {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 800;
}

.hero__trust-badge__link {
  display: block;
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__trust-badge__link:hover { color: rgba(255,255,255,0.85); }

/* Hero Right — CTA Card (legacy) */
.hero__card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.hero__card-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}

.hero__card h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.hero__card-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 22px;
}

/* Hero form */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s;
}
.hero-form input::placeholder {
  color: rgba(255,255,255,0.55);
}
.hero-form input:focus,
.hero-form select:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.18);
}
.hero-form select {
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.hero-form select option {
  background: var(--navy);
  color: var(--white);
}

.hero-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--blue);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.hero-form__submit:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
}

.hero-form__note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.hero-form__success {
  display: none;
  text-align: center;
  padding: 24px;
  color: #6ee7b7;
  font-size: 1.05rem;
  font-weight: 600;
}

/* ---------------------------------------------------------------
   6. TRUST BAR
--------------------------------------------------------------- */
.trust-bar {
  background: var(--gray-bg-alt);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.trust-item__icon {
  font-size: 1.3rem;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   7. THREE-STEP PROCESS
--------------------------------------------------------------- */
.process {
  background: linear-gradient(135deg, #0F2D54 0%, #1B4D8E 100%);
  padding: 56px 0 64px;
}

.process__header {
  text-align: center;
  margin-bottom: 40px;
}

.process__header .section-label {
  color: #F59E0B;
  border-color: rgba(245,158,11,0.35);
  background: rgba(245,158,11,0.12);
}

.process__header .section-heading {
  color: #fff;
}

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

.process-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 4px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
}
.process-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* Large watermark step number */
.process-card::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-card__step {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0F2D54;
  background: #F59E0B;
  border-radius: 999px;
  padding: 3px 14px;
  margin-bottom: 16px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

/* Arrow connector between cards */
.process__grid .process-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 42px;
  font-size: 1.6rem;
  color: #F59E0B;
  opacity: 0.6;
  z-index: 2;
}

/* ---------------------------------------------------------------
   8. PRACTICE AREAS
--------------------------------------------------------------- */
.areas {
  background: var(--gray-bg);
  padding: 40px 0 56px;
}

.areas__header {
  text-align: center;
  margin-bottom: 32px;
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 20px 24px 22px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  box-shadow: 0 1px 4px rgba(15,45,84,0.05);
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-left-color: var(--blue);
}
.area-card h3 { transition: color 0.15s; }
.area-card:hover h3 { color: var(--blue); }

.area-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.area-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}

.area-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: left;
}

.areas__cta {
  text-align: center;
}

/* ── Section-level CTA button row (appears at bottom of each section) ── */
.section-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 8px;
}

@media (max-width: 480px) {
  .section-cta {
    flex-direction: column;
    align-items: center;
  }
  .section-cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

/* ---------------------------------------------------------------
   9. REVIEWS / TESTIMONIALS
--------------------------------------------------------------- */
.reviews {
  background: #edf2fb;
  padding: 24px 0 32px;
}

/* ---- Centered header ---- */
.reviews__header {
  text-align: center;
  margin-bottom: 16px;
}
.reviews__header .section-label {
  display: block;
  margin-bottom: 8px;
}
.reviews__header .section-heading {
  margin-bottom: 16px;
}

/* Google rating badge — centered pill */
.reviews__rating-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d4deee;
  border-radius: 40px;
  padding: 10px 22px;
  box-shadow: 0 2px 8px rgba(15,45,84,0.07);
  margin-bottom: 20px;
}
.reviews__rating-block .stars-gold {
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.reviews__rating-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}
.reviews__rating-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-left: 1px solid #d4deee;
  padding-left: 10px;
}

/* ---- Cards grid ---- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 16px;
}

.review-card {
  background: #fff;
  border: 1px solid #d4deee;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: 0 2px 12px rgba(15,45,84,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(15,45,84,0.12);
}

/* Large decorative opening quote */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: #d4deee;
  font-family: Georgia, serif;
  pointer-events: none;
}

.review-card__stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.review-card__text {
  font-size: 0.97rem;
  color: #2e3f55;
  font-style: italic;
  line-height: 1.8;
  flex: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e8eef7;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(15,45,84,0.18);
}

.review-card__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.review-card__time {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews__link {
  text-align: center;
  margin-bottom: 4px;
}
.reviews__link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.reviews__link a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ---- Additional reviews carousel ---- */
.reviews__more-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.reviews__carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d4deee transparent;
}
.reviews__carousel::-webkit-scrollbar { height: 4px; }
.reviews__carousel::-webkit-scrollbar-track { background: transparent; }
.reviews__carousel::-webkit-scrollbar-thumb { background: #d4deee; border-radius: 2px; }

.review-mini {
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid #d4deee;
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  padding: 18px 20px;
  scroll-snap-align: start;
  position: relative;
}
.review-mini::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 3.5rem;
  line-height: 1;
  color: #e8eef7;
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-mini__stars {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.review-mini__text {
  font-size: 0.88rem;
  color: #2e3f55;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}
.review-mini__author {
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #edf2fb;
  padding-top: 10px;
}
.review-mini__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.review-mini__name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
}
.review-mini__for {
  font-size: 0.74rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: 1px;
}

/* ---------------------------------------------------------------
   10. CASE RESULTS  (dark navy background for visual impact)
--------------------------------------------------------------- */
.results {
  background: var(--navy);
  padding: 40px 0 56px;
}

.results__header {
  text-align: center;
  margin-bottom: 32px;
}

.results__header .section-label {
  color: rgba(255, 255, 255, 0.55);
}

.results__header .section-heading {
  color: var(--white);
}

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

.result-card {
  background: #fff;
  border: 1px solid #d4deee;
  border-top: 4px solid #1B4D8E;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: 0 1px 6px rgba(15,45,84,0.06);
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,45,84,0.12);
}

.result-card__court {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a90a8;
  margin-bottom: 8px;
}

.result-card__charge {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #0F2D54;
  margin-bottom: 14px;
  line-height: 1.3;
}

.result-card__divider {
  height: 3px;
  background: #1B4D8E;
  border-radius: 2px;
  margin-bottom: 14px;
}

.result-card__outcome {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1B4D8E;
  margin-bottom: 12px;
}

.result-card__context {
  font-size: 0.85rem;
  color: #5c6e8a;
  font-style: italic;
  line-height: 1.65;
}

.result-card--featured {
  border: 2px solid rgba(245,158,11,0.55);
  background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
}
.result-card--featured:hover {
  border-color: rgba(245,158,11,0.8);
}
.result-card--featured .result-card__outcome {
  color: #b45309;
}
.result-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #92400e;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.results__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #9aaec0;
  font-style: italic;
  padding-top: 8px;
}

/* ---------------------------------------------------------------
   11. ATTORNEY BIOS
--------------------------------------------------------------- */
.about {
  background: var(--gray-bg);
  padding: 40px 0 56px;
}

.about__header {
  text-align: center;
  margin-bottom: 32px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bio-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--blue);
  padding: 40px 36px;
  transition: var(--transition);
}
.bio-card:hover {
  box-shadow: var(--shadow-lg);
}

.bio-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 22px;
  overflow: hidden;
}

.bio-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bio-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-align: center;
}

.bio-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
  text-align: center;
}

.bio-card__focus {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.bio-card__bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.bio-card__credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bio-card__cred {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text-dark);
  font-weight: 600;
}

.bio-card__cred-check {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.bio-card__profile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.bio-card__profile-link:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* ---------------------------------------------------------------
   12. FAQ ACCORDION
--------------------------------------------------------------- */
.faqs {
  background: var(--gray-bg);
  padding: 40px 0 56px;
}

.faqs__header {
  text-align: center;
  margin-bottom: 32px;
}

.faqs__inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-left: 4px solid #1B5EA6;
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--white);
  padding: 20px 24px 22px;
}

.faq-item__question {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.4;
}

.faq-item__answer {
  display: block;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* ---------------------------------------------------------------
   13. CTA BAND
--------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #1B4D8E 0%, #0F2D54 100%);
  padding: 48px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-band__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   14. CONTACT SECTION
--------------------------------------------------------------- */
.contact {
  background: var(--white);
  padding: 56px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact__left .section-label {
  display: block;
  margin-bottom: 8px;
}

.contact__left .section-heading {
  margin-bottom: 18px;
}

.contact__left > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info__icon {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-info__value a {
  color: var(--blue);
  transition: color 0.2s;
}
.contact-info__value a:hover {
  color: var(--navy);
}

/* Contact form card */
.contact__form-card {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

/* Matter intake iframe variant — no internal padding, iframe fills the card */
.contact__form-card--iframe {
  padding: 0;
  overflow: hidden;
}

.contact__form-card--iframe iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: none;
}

.contact__form-card--iframe .form-disclaimer {
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: var(--gray-bg);
  text-align: center;
}

.contact__form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact__form-card .form-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* ── Contact CTA card (replaces embedded iframe) ── */
.contact__cta-card {
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.contact__cta-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1;
}

.contact__cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.contact__cta-card > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 28px;
}

.contact__cta-btn {
  margin-bottom: 24px;
  font-size: 1rem;
  padding: 14px 32px;
}

.contact__cta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.contact__cta-chips span {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.contact__cta-card .form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Contact form fields ── */
/* Contact form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,77,142,0.10);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a0aec0;
}
.form-field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
}
.form-submit:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(27,77,142,0.3);
}

.form-disclaimer {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  color: #065f46;
  font-size: 1.05rem;
  font-weight: 600;
  background: #d1fae5;
  border-radius: var(--radius);
  margin-top: 12px;
}

/* ---------------------------------------------------------------
   15. FOOTER
--------------------------------------------------------------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--white);
}

.footer__phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.footer__phone:hover {
  color: var(--accent-light);
}

.footer__address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__bar-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer__bar-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ---------------------------------------------------------------
   16. RESPONSIVE — TABLET (≤1024px)
--------------------------------------------------------------- */
@media (max-width: 1024px) {
  /* hero__inner is already single-column; no override needed */
  .hero {
    padding: 90px 0 56px;
  }
  .hero__inner {
    flex-direction: column;
    gap: 36px;
  }
  .hero__left {
    text-align: center;
  }
  .hero__left .hero__rating { justify-content: center; }
  .hero__left .hero__btns { justify-content: center; }
  .hero__right {
    width: 100%;
    max-width: 400px;
  }

  .areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------------------------------------------------------------
   17. RESPONSIVE — MOBILE (≤768px)
--------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__inner {
    height: 64px;
  }

  /* Hero */
  .hero {
    padding: 86px 0 52px;
  }
  .hero__inner {
    flex-direction: column;
    gap: 28px;
  }
  .hero__left {
    text-align: center;
  }
  .hero__left .hero__rating { justify-content: center; }
  .hero__left .hero__btns { justify-content: center; }
  .hero__right {
    width: 100%;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero__btns {
    flex-direction: column;
  }
  .hero__btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar__inner {
    gap: 20px;
  }
  .trust-divider {
    display: none;
  }

  /* Process */
  .process {
    padding: 32px 0 44px;
  }
  .process__grid {
    grid-template-columns: 1fr;
  }
  .process-card::after {
    display: none;
  }

  /* Areas */
  .areas {
    padding: 32px 0 44px;
  }
  .areas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  /* Reviews */
  .reviews {
    padding: 20px 0 28px;
  }
  .reviews__rating-block {
    padding: 8px 16px;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Results */
  .results {
    padding: 32px 0 44px;
  }
  .results__grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about {
    padding: 32px 0 44px;
  }
  .bio-card {
    padding: 28px 22px;
  }

  /* FAQs */
  .faqs {
    padding: 32px 0 44px;
  }

  /* CTA band */
  .cta-band {
    padding: 36px 0;
  }
  .cta-band__btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-band__btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Contact */
  .contact {
    padding: 60px 0;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__form-card {
    padding: 28px 20px;
  }
  .contact__form-card--iframe {
    padding: 0;
  }
  .contact__form-card--iframe iframe {
    height: 580px; /* slightly shorter on mobile */
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  footer {
    padding: 48px 0 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer__bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* FAB */
  .fab-phone {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------------------------
   18. ACCESSIBILITY & FOCUS STYLES
--------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -999px;
  left: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus {
  top: 8px;
}

/* ---------------------------------------------------------------
   19. BREADCRUMB NAVIGATION
--------------------------------------------------------------- */
.breadcrumb {
  padding: 10px 0 0;
  margin-bottom: 0;
}
.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #8a9ab5;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb__item:not(:last-child)::after {
  content: '›';
  color: #b0bdd0;
  font-size: 0.9rem;
}
.breadcrumb__item a {
  color: #6a7fa0;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb__item a:hover {
  color: var(--blue);
  text-decoration: underline;
}
.breadcrumb__item[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

/* ---------------------------------------------------------------
   20. RESULTS STAT BAR
--------------------------------------------------------------- */
.results-stat-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: #fff;
  border: 2px solid #1B4D8E;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(15,45,84,0.10);
  padding: 20px 12px;
  margin-bottom: 36px;
}
.results-stat-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 28px;
  border-right: 1px solid #1B4D8E;
}
.results-stat-bar__item:last-child {
  border-right: none;
}
.results-stat-bar__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #F59E0B;
  line-height: 1;
  margin-bottom: 4px;
}
.results-stat-bar__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0F2D54;
  text-align: center;
}
@media (max-width: 600px) {
  .results-stat-bar {
    gap: 8px;
    background: #fff;
    border: 2px solid #1B4D8E;
    padding: 16px 8px;
    margin-bottom: 28px;
  }
  .results-stat-bar__item {
    border: none;
    border-right: none;
    border-bottom: 1px solid #1B4D8E;
    border-radius: 0;
    padding: 14px 20px;
    flex: 1 1 140px;
  }
  .results-stat-bar__item:last-child {
    border-bottom: none;
  }
}
