/*
Theme Name: Fair Fee Staging
Author: Codex
Description: Custom staging landing page for Fair Fee Legal Services.
Version: 0.1.1
Text Domain: fair-fee-staging
*/

:root {
  --site-max: 1440px;
  --blue: #0878f8;
  --blue-dark: #0265d9;
  --green: #69bf43;
  --ink: #1f2229;
  --muted: #6f7682;
  --soft: #f6f8fb;
  --line: #e8edf5;
  --orange: #d89651;
  --shadow: 0 22px 42px rgba(31, 34, 41, 0.1);
}

/* Final hard lock for the homepage stats band desktop proportions. */
@media (min-width: 1100px) {
  .stats-band.stats-band,
  .stats-band {
    min-height: 680px !important;
    padding: 90px 0 96px !important;
  }

  .stats-band .shell {
    max-width: 1540px !important;
  }

  .stats-band h2 {
    font-size: 56px !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
  }

  .stats-divider {
    width: 735px !important;
    margin: 30px auto 48px !important;
  }

  .stats-grid {
    width: 1360px !important;
    max-width: 1360px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin: 0 auto !important;
  }

  .stats-grid div {
    min-height: 304px !important;
    padding: 28px 38px 32px !important;
  }

  .stat-icon {
    width: 104px !important;
    height: 104px !important;
    margin-bottom: 26px !important;
  }

  .stats-grid strong {
    font-size: 68px !important;
    line-height: 1 !important;
  }

  .stats-grid span:not(.stat-icon) {
    margin-top: 14px !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.shell {
  width: min(var(--site-max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 150px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a:first-child {
  color: var(--blue);
}

.mobile-nav-toggle {
  display: none;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-nav-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.header-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill,
.button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.pill {
  font-weight: 700;
}

.pill svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.pill-blue,
.button.primary {
  color: #fff;
  background: var(--blue);
}

.pill-green {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--blue);
  border: 2px solid #93c7ff;
  background: rgba(255, 255, 255, 0.72);
}

.button.white {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 70, 160, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(760px, 48vw, 920px);
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 28%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(78px, 4.8vw, 104px);
  text-align: center;
}

.hero h1 {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(36px, 3.45vw, 44px);
  line-height: 1.24;
  font-weight: 500;
}

.hero h1 span {
  color: var(--blue);
  font-weight: 900;
}

.hero p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #313842;
  font-size: 15px;
  line-height: 1.75;
}

.hero p strong,
.hero p a {
  color: var(--blue);
  font-weight: 800;
}

.hero-buttons {
  justify-content: center;
  margin-top: 22px;
}

.hero-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center top;
  transform: translateX(-50%) scale(1.25);
  transform-origin: center bottom;
}

.why-strip {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 48px;
  padding: 52px 0 56px;
  align-items: center;
}

.why-title {
  display: flex;
  align-items: center;
  gap: 17px;
}

.why-title img {
  width: 78px;
  flex: 0 0 auto;
}

.why-title h2,
.section-copy h2,
.faq-copy h2,
.office-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.feature-card p,
.section-copy p,
.faq-copy p,
.office-card p,
.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.feature-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.feature-card .feature-phone {
  display: inline;
  gap: 0;
  margin-top: 0;
  color: var(--blue);
  font-size: inherit;
  font-weight: 800;
  text-decoration: none;
}

.feature-card .feature-phone::after {
  display: none;
  content: none;
}

.feature-card a::after,
.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.stats-band,
.testimonials-band {
  color: #fff;
  background: var(--blue);
  text-align: center;
}

.stats-band {
  position: relative;
  overflow: hidden;
  padding: 64px 0 68px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #0c82ff 0%, #0878f8 100%);
}

.stats-band::before,
.stats-band::after {
  position: absolute;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 54, 142, 0.14);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.stats-band::before {
  content: "★★★★★  5.0 rating";
  left: max(34px, calc(50% - 670px));
  top: 58px;
  transform: rotate(-5deg);
}

.stats-band::after {
  content: "Trusted by Nevada families";
  right: max(34px, calc(50% - 690px));
  bottom: 54px;
  transform: rotate(4deg);
}

.stats-band .shell {
  position: relative;
  z-index: 1;
}

.stats-band .shell::before,
.stats-band .shell::after {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.12);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}

.stats-band .shell::before {
  content: "★";
  left: 9%;
  bottom: 18px;
}

.stats-band .shell::after {
  content: "👍";
  right: 9%;
  top: 18px;
  font-size: 52px;
}

.stats-band h2,
.testimonials-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

.stats-band h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 94px 0 0 rgba(255, 255, 255, 0.32), -94px 0 0 rgba(255, 255, 255, 0.32);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  max-width: 920px;
  gap: 18px;
  margin: 38px auto 0;
}

.stats-grid div {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.stats-grid strong {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 600;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.stats-band {
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 28% 42%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.13), transparent 17%),
    linear-gradient(135deg, #0b7fff 0%, #0878f8 48%, #0871ec 100%);
}

.stats-band::before,
.stats-band::after {
  content: "";
  inset: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.stats-band::before {
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.11), transparent 8%),
    radial-gradient(circle at 84% 34%, rgba(255, 255, 255, 0.1), transparent 9%);
}

.stats-band::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05));
}

.stats-band .shell::before,
.stats-band .shell::after {
  display: none;
}

.stats-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 42px rgba(0, 54, 142, 0.18);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.stats-pill span {
  color: var(--orange);
  letter-spacing: 0.05em;
}

.stats-rating {
  left: max(12px, calc((100vw - var(--site-max)) / -2 + 70px));
  top: -8px;
  transform: rotate(-2deg);
}

.stats-trust {
  right: max(10px, calc((100vw - var(--site-max)) / -2 + 34px));
  bottom: -16px;
  transform: rotate(2deg);
}

.stats-avatar {
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 62px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 44, 120, 0.24);
}

.stats-avatar-one {
  left: max(4px, calc((100vw - var(--site-max)) / -2 + 18px));
  top: 88px;
}

.stats-avatar-two {
  left: max(70px, calc((100vw - var(--site-max)) / -2 + 150px));
  bottom: 30px;
}

.stats-avatar-three {
  right: max(28px, calc((100vw - var(--site-max)) / -2 + 110px));
  top: 28px;
}

.stats-avatar-four {
  right: max(2px, calc((100vw - var(--site-max)) / -2 + 12px));
  top: 116px;
}

.stats-star {
  position: absolute;
  color: rgba(255, 255, 255, 0.11);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.stats-star-one {
  left: 17%;
  top: 48%;
}

.stats-star-two {
  right: 16%;
  top: 20%;
}

.stats-band h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
}

.stats-band h2 span {
  color: var(--orange);
}

.stats-band h2::after {
  display: none;
}

.stats-grid {
  max-width: 940px;
  gap: 16px;
  margin-top: 48px;
}

.stats-grid div {
  position: relative;
  overflow: hidden;
  padding: 32px 28px 30px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 22px 42px rgba(0, 54, 142, 0.16);
  backdrop-filter: blur(10px);
}

.stats-grid div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--orange);
}

.stats-grid strong {
  font-size: clamp(42px, 5.5vw, 66px);
  font-weight: 800;
}

.stats-grid span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.stats-band::before,
.stats-band::after,
.stats-band .shell::after,
.stats-star-two {
  display: none !important;
  content: none !important;
}

.stats-pill {
  color: #fff;
}

.stats-pill span {
  color: #fbbc04;
}

/* Final stats band treatment. Kept last because this theme has older stats variants above. */
.stats-band.stats-band,
.stats-band {
  min-height: 680px;
  padding: 90px 0 96px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #0783ff 0%, #0079f2 100%);
}

.stats-band::before,
.stats-band::after,
.stats-band .shell::before,
.stats-band .shell::after,
.stats-pill,
.stats-avatar,
.stats-star {
  display: none !important;
  content: none !important;
}

.stats-band h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 8px 22px rgba(0, 61, 153, 0.22);
}

.stats-band h2 span {
  color: #ffc928;
}

.stats-band h2::after {
  display: none !important;
  content: none !important;
}

.stats-divider {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(735px, 72vw);
  margin: 30px auto 48px;
  color: #ffc928;
}

.stats-divider::before,
.stats-divider::after {
  content: "";
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(255, 201, 40, 0.28);
}

.stats-divider span {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stats-grid {
  width: min(1360px, calc(100vw - 160px));
  max-width: 1360px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.stats-grid div {
  min-height: 304px;
  padding: 28px 38px 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 54px rgba(0, 55, 145, 0.18);
  backdrop-filter: blur(10px);
}

.stats-grid div::after {
  display: none;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffc928;
  background: rgba(255, 255, 255, 0.05);
}

.stat-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 4.1vw, 68px);
  font-weight: 700;
}

.stats-grid span:not(.stat-icon) {
  margin-top: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .stats-band.stats-band,
  .stats-band {
    padding: 54px 0 58px;
  }

  .stats-band h2 {
    font-size: 34px;
  }

  .stats-divider {
    width: min(300px, 78vw);
    margin: 22px auto 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid div {
    min-height: auto;
    padding: 28px 20px 26px;
  }

  .stat-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .stat-icon svg {
    width: 34px;
    height: 34px;
  }

  .stats-grid strong {
    font-size: 44px;
  }

  .stats-grid span:not(.stat-icon) {
    font-size: 17px;
  }
}

/* Final requested polish: keep homepage type and mobile header alignment consistent. */
#consultation .eyebrow,
#bankruptcy .eyebrow,
.chapter-heading .eyebrow,
.home-articles-heading .eyebrow,
.office-card-intro .eyebrow {
  color: var(--orange) !important;
}

.stats-band h2,
.stats-grid strong {
  font-family: inherit !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.section-copy h2,
.chapter-heading h2,
.faq-copy h2,
.home-articles-heading h2,
.consultation-cta h2 {
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0;
}

.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) .hero-image {
  object-position: center center;
  transform: translateX(-50%);
}

@media (max-width: 560px) {
  .header-inner {
    justify-content: space-between !important;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0 14px;
  }

  .brand {
    order: 1;
    flex: 0 1 auto !important;
    justify-content: flex-start !important;
  }

  .brand img {
    width: 132px;
  }

  .mobile-nav-toggle {
    order: 2;
    margin-left: auto;
  }

  .header-actions {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }

  .hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) .hero-image {
    object-position: 28% bottom;
  }
}

/* Final mobile overrides for header nav and office collage. */
@media (max-width: 980px) {
  .chapter7-intro,
  .chapter7-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .chapter7-intro {
    padding: 58px 0 66px;
  }

  .chapter7-content {
    padding: 64px 0 72px;
  }

  .chapter7-side-card,
  .chapter7-sidebar {
    position: static;
  }

  .chapter7-card-grid,
  .chapter7-steps {
    grid-template-columns: 1fr;
  }

  .chapter7-benefits {
    padding: 58px 0 66px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
  }

  .header-inner {
    position: relative;
    overflow: visible;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1001;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(31, 34, 41, 0.16);
  }

  .site-header.nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    display: block;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .collage-section .collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .collage-section .collage::before {
    display: none;
  }

  .collage-section .collage-large {
    position: static;
    order: 1;
    grid-column: 1 / -1;
    width: 100%;
    aspect-ratio: 1.45 / 1;
  }

  .collage-section .collage-small,
  .collage-section .collage-small.top,
  .collage-section .collage-small.bottom {
    position: static;
    display: block;
    width: 100%;
    aspect-ratio: 1.28 / 1;
    border: 4px solid #fff;
  }

  .collage-section .collage-small.top {
    order: 2;
  }

  .collage-section .collage-small.bottom {
    order: 3;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 3;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 30;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(31, 34, 41, 0.14);
  }

  .site-header.nav-open .primary-nav {
    display: grid;
  }

  .primary-nav a {
    display: block;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .header-inner {
    justify-content: space-between;
  }

  .brand {
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .mobile-nav-toggle {
    order: 2;
  }

  .header-actions {
    order: 3;
    width: 100%;
  }
}

/* Google-style review section. */
.google-reviews-section {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 255, 255, 0.13) 0 0, rgba(255, 255, 255, 0.13) 72px, transparent 73px),
    radial-gradient(circle at 90% 42%, rgba(255, 255, 255, 0.11) 0 0, rgba(255, 255, 255, 0.11) 92px, transparent 93px),
    radial-gradient(circle at 7% 86%, rgba(255, 255, 255, 0.11) 0 0, rgba(255, 255, 255, 0.11) 58px, transparent 59px),
    linear-gradient(135deg, #087cff 0%, #005fd7 100%);
}

.google-reviews-section::before,
.google-reviews-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.google-reviews-section::before {
  right: 9%;
  top: 120px;
  width: 125px;
  height: 185px;
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transform: rotate(10deg) skewY(-12deg);
}

.google-reviews-section::after {
  right: 7%;
  top: 420px;
  width: 210px;
  height: 190px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.3px, transparent 1.3px);
  background-size: 12px 12px;
  opacity: 0.52;
}

.google-reviews-section .shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 120px), 1540px);
}

.google-reviews-section .eyebrow {
  margin-bottom: 12px;
  color: #ffd22f;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.google-reviews-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.reviews-intro {
  max-width: 820px;
  margin: 18px auto 32px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 1.5;
}

.google-review-summary {
  display: grid;
  grid-template-columns: 1.18fr 1fr 0.8fr;
  align-items: center;
  width: min(760px, 100%);
  min-height: 94px;
  margin: 0 auto 22px;
  padding: 16px 28px;
  border-radius: 8px;
  color: #111827;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 45, 130, 0.22);
  text-align: left;
}

.google-brand,
.summary-rating,
.summary-count {
  display: flex;
  align-items: center;
  min-height: 62px;
}

.google-brand {
  gap: 18px;
  padding-right: 22px;
}

.summary-rating,
.summary-count {
  padding-left: 28px;
  border-left: 1px solid #d8dee8;
}

.summary-rating {
  gap: 22px;
}

.google-g,
.mini-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.google-g {
  width: 66px;
  height: 66px;
  font-size: 64px;
  line-height: 1;
}

.google-brand strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.google-brand strong span:nth-child(1) {
  color: #4285f4;
}

.google-brand strong span:nth-child(2),
.google-brand strong span:nth-child(6) {
  color: #ea4335;
}

.google-brand strong span:nth-child(3) {
  color: #fbbc05;
}

.google-brand strong span:nth-child(4) {
  color: #4285f4;
}

.google-brand strong span:nth-child(5) {
  color: #34a853;
}

.google-brand em,
.summary-count span {
  display: block;
  margin-top: 3px;
  color: #4b5563;
  font-style: normal;
  font-size: 22px;
  line-height: 1.1;
}

.summary-rating strong {
  color: #136fdf;
  font-size: 52px;
  line-height: 1;
}

.summary-rating strong span {
  color: #111827;
  font-size: 28px;
  font-weight: 800;
}

.review-stars {
  color: #f5a400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.summary-rating .review-stars {
  font-size: 30px;
}

.summary-count strong {
  display: block;
  color: #111827;
  font-size: 30px;
  line-height: 1;
}

.summary-count span {
  font-size: 15px;
}

.verified-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.verified-google span {
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.verified-google svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.verified-google svg path:last-child {
  fill: none;
  stroke: #087cff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 22px;
}

.google-review-card {
  display: flex;
  min-height: 128px;
  padding: 12px 14px;
  flex-direction: column;
  justify-content: space-between;
  color: #111827;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(0, 46, 134, 0.16);
  text-align: left;
}

.google-review-card header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}

.review-avatar {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: var(--avatar-color, #136fdf);
  font-size: 16px;
  font-weight: 800;
}

.review-avatar-image {
  display: block;
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
  object-position: center;
}

.google-review-card header strong {
  display: block;
  font-size: 13px;
  line-height: 1.15;
}

.google-review-card header .review-stars {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.google-review-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin: 0;
  color: #111827;
  font-size: 12px;
  line-height: 1.28;
}

.google-review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  color: #6b7280;
  font-size: 10px;
}

.google-review-card footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.mini-google {
  font-size: 14px;
  line-height: 1;
}

.google-review-link {
  display: inline-flex;
  min-height: 52px;
  min-width: 400px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 16px;
  padding: 0 28px;
  border-radius: 8px;
  color: #087cff;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 46, 134, 0.18);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.google-review-link > span:last-child {
  margin-left: 20px;
  font-size: 30px;
  line-height: 1;
}

.reviews-disclaimer {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.sitemap-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.sitemap-columns ul {
  margin-bottom: 0;
}

.sitemap-columns li + li {
  margin-top: 10px;
}

@media (max-width: 1180px) {
  .google-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .google-reviews-section {
    padding: 56px 0 42px;
  }

  .google-reviews-section .shell {
    width: min(calc(100% - 34px), 560px);
  }

  .google-reviews-section::before,
  .google-reviews-section::after {
    display: none;
  }

  .google-reviews-section .eyebrow {
    font-size: 13px;
  }

  .google-reviews-section h2 {
    font-size: 36px;
  }

  .reviews-intro {
    margin-bottom: 26px;
    font-size: 16px;
  }

  .google-review-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .google-brand,
  .summary-rating,
  .summary-count {
    justify-content: center;
    min-height: 0;
    padding: 0;
    border-left: 0;
  }

  .summary-rating {
    gap: 14px;
  }

  .google-g {
    width: 46px;
    height: 46px;
    font-size: 46px;
  }

  .google-brand strong {
    font-size: 22px;
  }

  .google-brand em {
    font-size: 18px;
  }

  .summary-rating strong {
    font-size: 40px;
  }

  .summary-rating .review-stars {
    font-size: 22px;
  }

  .google-review-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .google-review-card {
    min-height: auto;
    padding: 12px 14px;
  }

  .google-review-card:nth-child(n+5) {
    display: none;
  }

  .google-review-card header {
    margin-bottom: 8px;
  }

  .google-review-card p {
    font-size: 12px;
    line-height: 1.28;
  }

  .google-review-card footer {
    margin-top: 13px;
  }

  .google-review-link {
    width: 100%;
    min-width: 0;
    gap: 12px;
    font-size: 16px;
  }

  .google-review-link > span:last-child {
    margin-left: 4px;
  }

  .sitemap-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* EOF override: definitive desktop stats layout. */
@media (min-width: 1100px) {
  .stats-band.stats-band,
  .stats-band {
    min-height: 640px !important;
    padding: 82px 0 76px !important;
  }

  .stats-band .shell {
    max-width: 1540px !important;
  }

  .stats-band h2 {
    font-size: 54px !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
  }

  .stats-divider {
    width: 735px !important;
    margin: 28px auto 34px !important;
  }

  .stats-grid {
    width: 1360px !important;
    max-width: 1360px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin: 0 auto !important;
  }

  .stats-grid div {
    min-height: 286px !important;
    padding: 28px 38px 28px !important;
  }

  .stat-icon {
    width: 96px !important;
    height: 96px !important;
    margin-bottom: 20px !important;
  }

  .stats-grid strong {
    font-size: 66px !important;
    line-height: 1 !important;
  }

  .stats-grid span:not(.stat-icon) {
    margin-top: 12px !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
}

/* Final hard lock for the homepage stats band desktop proportions. */
@media (min-width: 1100px) {
  .stats-band.stats-band,
  .stats-band {
    min-height: 680px !important;
    padding: 90px 0 96px !important;
  }

  .stats-band .shell {
    max-width: 1540px !important;
  }

  .stats-band h2 {
    font-size: 56px !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
  }

  .stats-divider {
    width: 735px !important;
    margin: 30px auto 48px !important;
  }

  .stats-grid {
    width: 1360px !important;
    max-width: 1360px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin: 0 auto !important;
  }

  .stats-grid div {
    min-height: 304px !important;
    padding: 28px 38px 32px !important;
  }

  .stat-icon {
    width: 104px !important;
    height: 104px !important;
    margin-bottom: 26px !important;
  }

  .stats-grid strong {
    font-size: 68px !important;
    line-height: 1 !important;
  }

  .stats-grid span:not(.stat-icon) {
    margin-top: 14px !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
}

/* Final hard lock for the homepage stats band desktop proportions. */
@media (min-width: 1100px) {
  .stats-band.stats-band,
  .stats-band {
    min-height: 680px !important;
    padding: 90px 0 96px !important;
  }

  .stats-band .shell {
    max-width: 1540px !important;
  }

  .stats-band h2 {
    font-size: 56px !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
  }

  .stats-divider {
    width: 735px !important;
    margin: 30px auto 48px !important;
  }

  .stats-grid {
    width: 1360px !important;
    max-width: 1360px !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin: 0 auto !important;
  }

  .stats-grid div {
    min-height: 304px !important;
    padding: 28px 38px 32px !important;
  }

  .stat-icon {
    width: 104px !important;
    height: 104px !important;
    margin-bottom: 26px !important;
  }

  .stats-grid strong {
    font-size: 68px !important;
    line-height: 1 !important;
  }

  .stats-grid span:not(.stat-icon) {
    margin-top: 14px !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
}

@media (min-width: 1100px) {
  .stats-band .shell {
    max-width: 1680px !important;
  }

  .stats-band h2 {
    font-size: clamp(46px, 3.2vw, 56px) !important;
    white-space: nowrap;
  }

  .stats-divider {
    width: 720px !important;
    margin: 30px auto 28px !important;
  }

  .stats-grid {
    width: min(1360px, calc(100vw - 160px)) !important;
    max-width: none !important;
    gap: 34px !important;
  }

  .stats-grid div {
    min-height: 286px !important;
    padding: 28px 40px 30px !important;
  }

  .stat-icon {
    width: 92px;
    height: 92px;
    margin-bottom: 24px;
  }
}

.stats-grid .stat-icon,
.stats-grid .stat-icon svg {
  color: #ffc928 !important;
  stroke: currentColor !important;
}

/* Proportion pass for the desktop stats band. */
@media (min-width: 901px) {
  .stats-band.stats-band,
  .stats-band {
    padding: 84px 0 86px;
  }

  .stats-band .shell {
    max-width: 1420px;
  }

  .stats-band h2 {
    font-size: clamp(44px, 3.6vw, 62px);
    line-height: 1.05;
  }

  .stats-divider {
    width: min(720px, 48vw);
    margin: 28px auto 44px;
  }

  .stats-grid {
    max-width: 1360px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .stats-grid div {
    min-height: 304px;
    padding: 30px 38px 34px;
  }

  .stat-icon {
    width: 106px;
    height: 106px;
    margin-bottom: 26px;
  }

  .stat-icon svg {
    width: 44px;
    height: 44px;
  }

  .stats-grid strong {
    font-size: clamp(58px, 4.1vw, 76px);
    line-height: 1;
  }

  .stats-grid span:not(.stat-icon) {
    margin-top: 14px;
    font-size: 25px;
    line-height: 1.2;
  }
}

/* Final stats band treatment. Kept last because this theme has older stats variants above. */
.stats-band.stats-band,
.stats-band {
  min-height: 680px;
  padding: 90px 0 96px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #0783ff 0%, #0079f2 100%);
}

.stats-band::before,
.stats-band::after,
.stats-band .shell::before,
.stats-band .shell::after,
.stats-pill,
.stats-avatar,
.stats-star {
  display: none !important;
  content: none !important;
}

.stats-band h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 8px 22px rgba(0, 61, 153, 0.22);
}

.stats-band h2 span {
  color: #ffc928;
}

.stats-band h2::after {
  display: none !important;
  content: none !important;
}

.stats-divider {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(735px, 72vw);
  margin: 30px auto 48px;
  color: #ffc928;
}

.stats-divider::before,
.stats-divider::after {
  content: "";
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(255, 201, 40, 0.28);
}

.stats-divider span {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stats-grid {
  width: min(1360px, calc(100vw - 160px));
  max-width: 1360px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.stats-grid div {
  min-height: 304px;
  padding: 28px 38px 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 54px rgba(0, 55, 145, 0.18);
  backdrop-filter: blur(10px);
}

.stats-grid div::after {
  display: none;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffc928;
  background: rgba(255, 255, 255, 0.05);
}

.stat-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 4.1vw, 68px);
  font-weight: 700;
}

.stats-grid span:not(.stat-icon) {
  margin-top: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .stats-band.stats-band,
  .stats-band {
    padding: 54px 0 58px;
  }

  .stats-band h2 {
    font-size: 34px;
  }

  .stats-divider {
    width: min(300px, 78vw);
    margin: 22px auto 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid div {
    min-height: auto;
    padding: 28px 20px 26px;
  }

  .stat-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .stat-icon svg {
    width: 34px;
    height: 34px;
  }

  .stats-grid strong {
    font-size: 44px;
  }

  .stats-grid span:not(.stat-icon) {
    font-size: 17px;
  }
}

.stats-band {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #0783ff 0%, #0079f2 100%);
}

.stats-band::before,
.stats-band::after,
.stats-band .shell::before,
.stats-band .shell::after,
.stats-pill,
.stats-avatar,
.stats-star {
  display: none !important;
  content: none !important;
}

.stats-band h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 8px 22px rgba(0, 61, 153, 0.22);
}

.stats-band h2 span {
  color: #ffc928;
}

.stats-band h2::after {
  display: none !important;
  content: none !important;
}

.stats-divider {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(640px, 72vw);
  margin: 30px auto 46px;
  color: #ffc928;
}

.stats-divider::before,
.stats-divider::after {
  content: "";
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(255, 201, 40, 0.28);
}

.stats-divider span {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stats-grid {
  max-width: 1040px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  margin: 0 auto;
}

.stats-grid div {
  min-height: 270px;
  padding: 36px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 54px rgba(0, 55, 145, 0.18);
  backdrop-filter: blur(10px);
}

.stats-grid div::after {
  display: none;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffc928;
  background: rgba(255, 255, 255, 0.05);
}

.stat-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 700;
}

.stats-grid span:not(.stat-icon) {
  margin-top: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .stats-band {
    padding: 54px 0 58px;
  }

  .stats-band h2 {
    font-size: 34px;
  }

  .stats-divider {
    width: min(300px, 78vw);
    margin: 22px auto 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid div {
    min-height: auto;
    padding: 28px 20px 26px;
  }

  .stat-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .stat-icon svg {
    width: 34px;
    height: 34px;
  }

  .stats-grid strong {
    font-size: 44px;
  }

  .stats-grid span:not(.stat-icon) {
    font-size: 17px;
  }
}

.stats-band h2::after {
  display: block;
  width: min(520px, 70vw);
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: none;
}

.stats-band {
  padding: 64px 0 68px;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #0c82ff 0%, #0878f8 100%);
}

.stats-pill,
.stats-avatar,
.stats-star {
  display: none;
}

.stats-band::before,
.stats-band::after {
  position: absolute;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inset: auto;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 54, 142, 0.14);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.stats-band::before {
  content: "★★★★★  5.0 rating";
  left: max(34px, calc(50% - 670px));
  top: 58px;
  transform: rotate(-5deg);
}

.stats-band::after {
  content: "Trusted by Nevada families";
  right: max(34px, calc(50% - 690px));
  bottom: 54px;
  transform: rotate(4deg);
}

.stats-band .shell::before,
.stats-band .shell::after {
  position: absolute;
  z-index: -1;
  display: block;
  color: rgba(255, 255, 255, 0.12);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}

.stats-band .shell::before {
  content: "★";
  left: 9%;
  bottom: 18px;
}

.stats-band .shell::after {
  content: "👍";
  right: 9%;
  top: 18px;
  font-size: 52px;
}

.stats-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

.stats-band h2 span {
  color: inherit;
}

.stats-band h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 94px 0 0 rgba(255, 255, 255, 0.32), -94px 0 0 rgba(255, 255, 255, 0.32);
}

.stats-grid {
  max-width: 920px;
  gap: 18px;
  margin-top: 38px;
}

.stats-grid div {
  overflow: visible;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: none;
}

.stats-grid div::after {
  display: none;
}

.stats-grid strong {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
}

.stats-grid span {
  margin-top: 10px;
  color: inherit;
  font-size: 13px;
}

.chapter-section {
  padding: 88px 0 30px;
}

.chapter-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.chapter-heading h2,
.home-articles-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.chapter-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.chapter-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 14%, rgba(8, 120, 248, 0.1), transparent 22%),
    linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 22px 58px rgba(31, 34, 41, 0.07);
}

.chapter-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--blue);
}

.chapter-card span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-card h3 {
  margin: 9px 0 18px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1;
}

.chapter-card p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.split-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 92px;
  padding: 95px 0;
}

.image-card {
  position: relative;
}

.image-card::before,
.collage::before {
  content: "";
  position: absolute;
  inset: -46px 68px auto -48px;
  height: 75%;
  border-radius: 8px;
  background: var(--soft);
  z-index: -1;
}

.image-card img,
.office-card img,
.collage-large {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-copy {
  max-width: 490px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-copy p:not(.eyebrow) {
  margin: 22px 0 0;
}

.consultation-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.consultation-options a {
  display: grid;
  gap: 7px;
  min-height: 138px;
  padding: 18px;
  border: 1px solid rgba(15, 83, 163, 0.13);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 16px 38px rgba(31, 34, 41, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.consultation-options a:hover {
  border-color: rgba(8, 120, 248, 0.32);
  box-shadow: 0 20px 42px rgba(8, 120, 248, 0.1);
  transform: translateY(-2px);
}

.consultation-options span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.consultation-options a:nth-child(2) span {
  background: var(--green);
}

.consultation-options svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.consultation-options strong {
  font-size: 15px;
  line-height: 1.2;
}

.consultation-options small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.collage-section {
  padding-top: 42px;
  padding-bottom: 100px;
}

.collage {
  position: relative;
  min-height: 470px;
}

.collage::before {
  inset: 86px 0 38px 126px;
  height: auto;
  width: auto;
}

.collage-large {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 76%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}

.collage-small {
  position: absolute;
  left: 0;
  width: 205px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 8px solid #fff;
  box-shadow: 0 18px 34px rgba(31, 34, 41, 0.14);
  z-index: 3;
}

.collage-small.top {
  top: 16px;
}

.collage-small.bottom {
  top: 274px;
  left: 18px;
  width: 165px;
  z-index: 3;
}

.testimonials-band {
  position: relative;
  padding: 88px 0 108px;
  overflow: hidden;
}

.testimonials-band .eyebrow {
  color: #f1a45b;
}

.testimonials-band::before,
.testimonials-band::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(0, 58, 140, 0.16);
  backdrop-filter: blur(10px);
}

.testimonials-band::before {
  content: "★★★★★ 5.0 rating";
  top: 108px;
  left: max(36px, calc((100vw - var(--site-max)) / 2 + 18px));
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials-band::after {
  content: "Verified reviews";
  right: max(42px, calc((100vw - var(--site-max)) / 2 + 18px));
  top: 248px;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.82;
}

.testimonials-band .shell::before,
.testimonials-band .shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonials-band .shell::before {
  width: 150px;
  height: 150px;
  left: 26px;
  bottom: 62px;
}

.testimonials-band .shell::after {
  width: 112px;
  height: 112px;
  right: 62px;
  bottom: 148px;
}

.testimonials-band .shell {
  position: relative;
  z-index: 1;
}

.band-intro {
  max-width: 720px;
  margin: 24px auto 58px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  font-size: 17px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.review-card {
  min-height: 382px;
  padding: 14px 14px 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 42px rgba(0, 51, 120, 0.24);
}

.review-media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.review-media img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: center;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 54, 130, 0.18);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  border-left: 15px solid var(--blue);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.quote-mark {
  color: var(--blue);
  height: 42px;
  margin-top: 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.82;
  font-weight: 900;
}

.review-card p {
  min-height: 92px;
  margin: 0;
  color: #3a4049;
  font-size: 15px;
  line-height: 1.5;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  font-size: 14px;
}

.faq-section {
  align-items: start;
  padding-bottom: 80px;
}

.faq-copy h2 span {
  color: var(--blue);
}

.faq-list {
  margin-top: 28px;
  background: #fafbfe;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 28px;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 12px 0 0;
}

.faq-answer {
  max-width: 820px;
  margin-top: 12px;
  color: #4d5664;
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer p {
  margin: 12px 0 0;
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-price-highlight {
  color: var(--blue);
  font-weight: 900;
}

.faq-answer small {
  display: block;
  color: #5d6876;
  font-size: 12px;
  line-height: 1.55;
}

.faq-answer table {
  width: 100%;
  margin: 12px 0 20px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.faq-answer th,
.faq-answer td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.faq-answer th {
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.faq-answer .blue-box-out {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 111, 232, 0.2);
  border-radius: 8px;
  background: #f5f9ff;
}

.faq-answer .blue-box {
  padding: 12px 16px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.faq-answer .blue-box-out table {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.faq-answer .blue-box-out p {
  margin: 0;
  padding: 10px 14px 14px;
}

.faq-list-full .faq-answer {
  max-width: none;
}

.pricing-faq {
  display: grid;
  gap: 9px;
  max-width: 100%;
}

.pricing-chapter {
  padding: 10px;
  border: 1px solid rgba(0, 111, 232, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  box-shadow: none;
}

.pricing-chapter-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.pricing-chapter-heading strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.15;
}

.pricing-chapter-heading span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-options {
  display: grid;
  gap: 7px;
}

.pricing-options-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-options-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-option {
  position: relative;
  min-height: 0;
  padding: 9px 12px 9px 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pricing-option::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--blue);
}

.pricing-option-featured {
  border-color: rgba(0, 111, 232, 0.34);
  box-shadow: 0 10px 24px rgba(0, 111, 232, 0.09);
}

.pricing-label {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 111, 232, 0.08);
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1;
}

.pricing-option strong {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.08;
}

.pricing-option span:not(.pricing-label) {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.32;
}

.pricing-note,
.pricing-footnotes {
  margin: 8px 0 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: #58667a;
  background: #eef5ff;
  font-size: 11px;
  line-height: 1.35;
}

.pricing-footnotes {
  margin-top: 0;
  background: #f6f8fb;
}

.pricing-footnotes p {
  margin: 5px 0 0;
}

.pricing-footnotes p:first-child {
  margin-top: 0;
}

.pricing-chapter-simple {
  display: grid;
  grid-template-columns: minmax(135px, 0.34fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 8px;
}

.pricing-chapter-simple .pricing-chapter-heading {
  display: block;
  margin-bottom: 0;
}

.pricing-chapter-simple .pricing-chapter-heading span {
  display: block;
  margin-top: 5px;
}

.pricing-chapter-simple .pricing-option {
  min-height: 0;
}

.faq-read-more {
  margin-top: 24px;
}

.home-articles {
  padding: 12px 0 82px;
}

.home-articles-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 28px;
  align-items: end;
  margin-bottom: 28px;
}

.home-articles-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.home-articles-heading .text-link {
  margin: 0 0 7px;
  white-space: nowrap;
}

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

.home-article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(31, 34, 41, 0.07);
}

.home-article-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: center;
}

.home-article-card div {
  padding: 24px 24px 26px;
}

.home-article-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
}

.home-article-card p {
  margin: 14px 0 0;
  color: #4d5664;
  font-size: 14px;
  line-height: 1.68;
}

.faq-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 108px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #0878f8 0%, #006fe8 100%);
}

.faq-page-hero::before,
.faq-page-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.faq-page-hero::before {
  width: 260px;
  height: 260px;
  left: max(24px, calc(50% - 720px));
  top: 48px;
}

.faq-page-hero::after {
  width: 170px;
  height: 170px;
  right: max(44px, calc(50% - 670px));
  bottom: -46px;
}

.faq-page-hero .shell {
  position: relative;
  z-index: 1;
}

.faq-page-hero .eyebrow,
.faq-page-cta .eyebrow {
  color: #f5b56f;
}

.faq-page-hero h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
}

.faq-page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.faq-page-content {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(56px, 7vw, 104px);
  align-items: start;
  padding: 92px 0 88px;
}

.faq-page-intro {
  position: sticky;
  top: 104px;
}

.faq-page-intro h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
}

.faq-page-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.faq-list-full {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 34, 41, 0.06);
}

.faq-list-full details {
  background: #fff;
}

.faq-list-full summary {
  font-size: 16px;
  line-height: 1.45;
}

.faq-list-full p {
  max-width: 820px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 92px;
  padding: 38px 48px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  overflow: hidden;
}

.faq-page-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
}

.faq-page-cta p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.faq-alt-hero {
  position: relative;
  overflow: hidden;
}

.faq-alt-hero-a {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #fbfaf8 0%, #fff 100%);
}

.faq-alt-hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 72px;
  align-items: center;
}

.faq-alt-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.04;
}

.faq-alt-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.faq-alt-hero-a img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-option-a-content {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 78px 0 96px;
}

.faq-support-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 22px;
}

.faq-support-panel > img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-support-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-support-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.faq-support-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.faq-action-pop {
  position: relative;
  height: 238px;
  margin-top: 0;
  border-radius: 18px;
  filter: drop-shadow(0 18px 38px rgba(31, 34, 41, 0.12));
}

.faq-action-pop::before {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f6faff;
}

.faq-action-image-base,
.faq-action-image-pop {
  position: absolute;
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: 57% center;
}

.faq-action-image-base {
  inset: 42px 0 0;
  height: calc(100% - 42px);
  border-radius: 18px;
  opacity: 0.94;
}

.faq-action-image-pop {
  inset: 0 0 auto;
  height: 198px;
  object-position: 57% 28%;
  clip-path: inset(0 0 22px 0 round 18px 18px 0 0);
  border-radius: 18px 18px 0 0;
}

.faq-contact-options {
  display: grid;
  gap: 12px;
}

.faq-contact-option {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 34, 41, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-contact-option-featured {
  grid-template-columns: 54px 1fr;
  padding: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
}

.faq-contact-option:hover {
  border-color: rgba(8, 120, 248, 0.34);
  box-shadow: 0 18px 42px rgba(8, 120, 248, 0.11);
  transform: translateY(-2px);
}

.faq-contact-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.faq-contact-option:nth-child(2) .faq-contact-icon,
.faq-contact-option:nth-child(3) .faq-contact-icon {
  background: var(--green);
}

.faq-contact-icon svg {
  width: 24px;
  height: 24px;
}

.faq-contact-option strong,
.faq-contact-option small {
  display: block;
}

.faq-contact-option strong {
  font-size: 15px;
}

.faq-contact-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.faq-alt-hero-b {
  min-height: 560px;
  display: grid;
  align-items: center;
  color: #fff;
  text-align: center;
  background: #101722;
}

.faq-alt-hero-b > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
}

.faq-alt-hero-b::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 24, 0.1), rgba(5, 12, 24, 0.46));
}

.faq-alt-hero-b .shell {
  position: relative;
  z-index: 1;
}

.faq-alt-hero-b p:not(.eyebrow) {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.faq-option-b-intro {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 76px 0 38px;
}

.faq-option-b-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.faq-option-b-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.faq-option-b-content {
  max-width: 1060px;
  padding-bottom: 96px;
}

.faq-bottom-cta {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 26px;
  border-radius: 8px;
  background: #f4f8ff;
}

.faq-bottom-cta img {
  width: 170px;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.faq-bottom-cta h2 {
  margin: 0;
  font-size: 28px;
}

.faq-bottom-cta p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.consultation-cta {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  margin-top: 28px;
  margin-bottom: 82px;
  padding: 28px 70px 28px 34px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  overflow: hidden;
}

.consultation-cta::before,
.consultation-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.consultation-cta::before {
  width: 118px;
  height: 118px;
  left: 315px;
  bottom: 22px;
}

.consultation-cta::after {
  width: 104px;
  height: 132px;
  right: 84px;
  top: -34px;
}

.consultation-cta > img:first-child {
  align-self: stretch;
  width: 250px;
  height: 100%;
  max-height: 184px;
  margin: 0;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(0, 54, 130, 0.2);
  position: relative;
  z-index: 1;
}

.consultation-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.consultation-cta p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.cta-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 20px;
}

.cta-options a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.cta-options span {
  grid-row: 1 / span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: #fff;
  border-radius: 8px;
}

.cta-options svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cta-options strong,
.cta-options small {
  display: block;
}

.cta-options strong {
  font-size: 13px;
  line-height: 1.1;
}

.cta-options small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.28;
}

.consultation-cta .button {
  position: relative;
  z-index: 1;
}

.cta-logo {
  display: none;
}

.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  padding: 92px 0 112px;
}

.offices-heading {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto 10px;
  text-align: center;
}

.offices-heading h2 {
  margin: 16px 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 900;
}

.offices-heading > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 148px;
  height: 4px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, rgba(8, 120, 248, 0.16), rgba(8, 120, 248, 0.16)) left center / 42px 2px no-repeat,
    linear-gradient(90deg, var(--blue), var(--blue)) center / 54px 3px no-repeat,
    linear-gradient(90deg, rgba(8, 120, 248, 0.16), rgba(8, 120, 248, 0.16)) right center / 42px 2px no-repeat;
}

.offices-heading > p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.office-card {
  min-width: 0;
  padding: 48px 38px 38px;
  border: 1px solid rgba(15, 83, 163, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 30px 75px rgba(34, 48, 70, 0.12);
}

.office-card-intro .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--blue);
}

.office-card-intro .eyebrow svg,
.office-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.office-card-intro h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.office-card-intro > p {
  max-width: 500px;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.office-actions .button {
  min-height: 54px;
  min-width: 216px;
  border-radius: 8px;
  font-size: 16px;
}

.office-actions .button span {
  display: inline-flex;
}

.office-map-card {
  position: relative;
  min-height: 320px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 83, 163, 0.12);
  border-radius: 12px;
  background: #edf3fb;
  box-shadow: none;
}

.office-map-card > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.office-map-card > img.office-photo-accent {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 118px;
  height: 92px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(24, 36, 55, 0.24);
}

.mini-icon,
.office-hours-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
}

.mini-icon svg,
.office-hours-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.office-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 83, 163, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 14px 38px rgba(34, 48, 70, 0.08);
}

.office-contact-main {
  min-height: 0;
}

.office-contact-main > div {
  display: grid;
  gap: 9px;
  align-content: center;
  min-height: 158px;
}

.office-contact p,
.office-contact a {
  margin: 0;
  color: #4c5764;
  font-size: 15px;
  line-height: 1.62;
}

.office-contact a {
  color: var(--blue);
  font-weight: 500;
}

.office-contact-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.office-contact-line p {
  color: #182231;
  font-size: 14px;
  line-height: 1.35;
  white-space: nowrap;
}

.mini-icon {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.office-hours {
  display: grid;
  grid-template-columns: 24px 44px minmax(98px, 1fr);
  gap: 6px 13px;
  align-content: center;
  margin-top: 0;
  min-height: 158px;
  padding-left: 26px;
  border-left: 1px solid rgba(15, 83, 163, 0.12);
  color: #354050;
  font-size: 15px;
  line-height: 1.4;
}

.office-hours-icon {
  grid-row: 1 / span 6;
  align-self: start;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  color: var(--blue);
}

.office-hours strong {
  grid-column: 2 / 4;
  align-self: center;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.office-hours span {
  color: #4b5664;
  font-weight: 500;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-brand img {
  width: 184px;
  margin-bottom: 22px;
}

.footer-links {
  display: grid;
  grid-template-columns: 0.72fr 1.05fr 1.28fr 0.95fr;
  gap: clamp(34px, 4.8vw, 76px);
  padding: 66px 0 50px;
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-link-group h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.footer-link-group a {
  position: relative;
  display: block;
  color: #25303d;
  font-size: 16px;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-group:not(.footer-link-group-simple) a {
  padding-left: 24px;
}

.footer-link-group:not(.footer-link-group-simple) a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
}

.footer-link-group a:hover {
  color: var(--blue);
  transform: translateX(2px);
}

.footer-disclaimer {
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  color: #5d6671;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-weight: 800;
}

.footer-bottom {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: rgba(255, 255, 255, 0.92);
  background: var(--blue);
  font-size: 13px;
}

.legal-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.legal-footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
}

.legal-footer-links a:hover {
  color: #fff;
}

.footer-bottom .social-row a {
  width: 32px;
  height: 32px;
  color: var(--blue);
  background: #fff;
  font-size: 11px;
}

.resource-hero {
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 120, 248, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.resource-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 74px;
  align-items: center;
}

.resource-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.resource-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.resource-hero .hero-buttons {
  justify-content: flex-start;
  margin-top: 28px;
}

.resource-hero img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 70px rgba(31, 34, 41, 0.13);
}

.legal-hero {
  padding-bottom: 72px;
}

.legal-page {
  padding: 70px 0 88px;
}

.legal-content {
  max-width: 920px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(31, 34, 41, 0.06);
}

.legal-updated {
  margin-top: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 26px;
  line-height: 1.18;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.chapter7-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(105, 191, 67, 0.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.chapter7-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
  padding: 74px 0 86px;
}

.chapter7-lead h2 {
  margin-top: 0;
  font-size: clamp(30px, 3vw, 42px);
}

.chapter7-side-card {
  position: sticky;
  top: 104px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(160deg, #0878f8 0%, #0265d9 100%);
  box-shadow: 0 28px 64px rgba(2, 101, 217, 0.22);
}

.chapter7-side-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chapter7-side-card strong {
  display: block;
  margin-top: 16px;
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.chapter7-side-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

.chapter7-side-card .text-link {
  color: #fff;
}

.chapter7-benefits {
  padding: 80px 0 88px;
  background: var(--soft);
}

.chapter7-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.chapter7-section-heading h2 {
  margin: 0;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.1;
}

.chapter7-section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.chapter7-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.chapter7-card-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(31, 34, 41, 0.06);
}

.chapter7-card-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.chapter7-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.chapter7-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: start;
  padding: 86px 0 92px;
}

.chapter7-article {
  max-width: none;
}

.chapter7-article h2:first-child {
  margin-top: 0;
}

.chapter7-article h3 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.chapter7-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 12px;
}

.chapter7-steps div {
  padding: 22px;
  border-radius: 8px;
  background: #f6f8fb;
}

.chapter7-steps span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.chapter7-steps p {
  margin: 0;
  font-size: 14px;
}

.chapter7-bottom-cta {
  margin-bottom: 82px;
}

.chapter13-hero {
  background:
    radial-gradient(circle at 18% 24%, rgba(216, 150, 81, 0.1), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fff9f2 100%);
}

.chapter13-side-card {
  background: linear-gradient(160deg, #0f6fe9 0%, #0653b8 58%, #d89651 140%);
}

.chapter13-benefits {
  background: #fff9f2;
}

@media (max-width: 980px) {
  .chapter7-intro,
  .chapter7-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .chapter7-intro {
    padding: 58px 0 66px;
  }

  .chapter7-content {
    padding: 64px 0 72px;
  }

  .chapter7-side-card,
  .chapter7-sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .chapter7-card-grid,
  .chapter7-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .chapter7-benefits {
    padding: 58px 0 66px;
  }
}

@media (max-width: 560px) {
  .chapter7-lead,
  .chapter7-article {
    padding: 26px 20px;
  }

  .chapter7-lead h2,
  .chapter7-section-heading h2 {
    font-size: 31px;
    line-height: 1.14;
  }

  .chapter7-side-card {
    padding: 26px 22px;
  }

  .chapter7-side-card strong {
    font-size: clamp(42px, 16vw, 56px);
    line-height: 0.98;
  }

  .chapter7-side-card p {
    font-size: 15px;
  }
}

.articles-layout,
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: start;
  padding: 74px 0 92px;
}

.article-card-list {
  display: grid;
  gap: 22px;
}

.article-preview-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 38px rgba(31, 34, 41, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-preview-card:hover {
  border-color: rgba(8, 120, 248, 0.3);
  box-shadow: 0 24px 58px rgba(31, 34, 41, 0.1);
  transform: translateY(-3px);
}

.article-preview-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 7px;
}

.article-preview-card span,
.article-preview-card strong,
.article-preview-card em,
.article-preview-card b {
  display: block;
}

.article-preview-card small {
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.article-preview-card strong {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.16;
}

.article-preview-card em {
  margin-top: 12px;
  color: #4d5664;
  font-size: 15px;
  font-style: normal;
  line-height: 1.65;
}

.article-preview-card b {
  margin-top: 14px;
  color: var(--blue);
  font-size: 13px;
}

.article-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  padding-top: 12px;
}

.article-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 34, 41, 0.05);
}

.article-pagination a.page-numbers:hover,
.article-pagination .page-numbers.current {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

.article-pagination .prev,
.article-pagination .next {
  min-width: 92px;
}

.resource-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 34, 41, 0.06);
}

.sidebar-card h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.14;
}

.recent-article-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.recent-article-list a {
  position: relative;
  padding-left: 18px;
  color: #26313f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42;
}

.recent-article-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
}

.sidebar-card-blue {
  color: #fff;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.22), transparent 24%),
    var(--blue);
}

.sidebar-card-blue p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.guide-preview-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 18px 42px rgba(31, 34, 41, 0.07);
}

.guide-preview-card img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(31, 34, 41, 0.08);
}

.guide-download-panel {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.guide-point-list {
  display: grid;
  gap: 12px;
}

.guide-point-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.guide-point-list strong,
.guide-point-list span {
  display: block;
}

.guide-point-list strong {
  color: var(--blue);
  font-size: 17px;
}

.guide-point-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-steps {
  padding: 0 0 96px;
  text-align: center;
}

.guide-steps h2 {
  max-width: 740px;
  margin: 0 auto 34px;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.12;
}

.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.guide-step-grid article,
.article-placeholder {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(31, 34, 41, 0.05);
}

.guide-step-grid article {
  padding: 0;
  overflow: hidden;
}

.guide-step-grid article img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: center;
}

.guide-step-copy {
  padding: 24px 26px 28px;
}

.guide-step-grid span {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.guide-step-grid h3 {
  margin: 14px 0 0;
  font-size: 22px;
}

.guide-step-grid p,
.article-placeholder p {
  color: #4d5664;
  line-height: 1.75;
}

.article-placeholder {
  max-width: 860px;
  margin-top: 74px;
  margin-bottom: 92px;
}

.article-placeholder h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}

.single-post-hero {
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 120, 248, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.single-post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 70px;
  align-items: center;
}

.single-post-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 4.2vw, 68px);
  line-height: 1.04;
}

.single-post-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: #4d5664;
  font-size: 18px;
  line-height: 1.75;
}

.single-post-hero .hero-buttons {
  justify-content: flex-start;
  margin-top: 28px;
}

.single-post-hero img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 70px rgba(31, 34, 41, 0.13);
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
  padding: 76px 0 104px;
}

.single-post-content {
  max-width: 880px;
}

.single-post-content h2 {
  margin: 42px 0 14px;
  font-size: 32px;
  line-height: 1.18;
}

.single-post-content p {
  margin: 0 0 20px;
  color: #43505e;
  font-size: 18px;
  line-height: 1.85;
}

.single-post-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.single-post-content a:hover {
  color: #055fc8;
}

.single-post-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.single-sidebar-copy {
  color: var(--muted);
  line-height: 1.7;
}

.contact-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 92px 0 106px;
  background:
    radial-gradient(circle at 13% 18%, rgba(8, 120, 248, 0.12), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f4f9ff 100%);
}

.contact-hero-v2::after {
  content: "★★★★★";
  position: absolute;
  right: 8vw;
  bottom: 46px;
  color: rgba(216, 150, 81, 0.18);
  font-size: 84px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact-hero-v2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 4.8vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-hero-copy .hero-buttons {
  justify-content: flex-start;
  margin-top: 28px;
}

.contact-method-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-method-strip a {
  min-height: 86px;
  display: grid;
  align-content: center;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(31, 34, 41, 0.05);
}

.contact-method-strip span,
.contact-method-strip strong {
  display: block;
}

.contact-method-strip span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-method-strip strong {
  margin-top: 7px;
  color: var(--ink);
  font-size: 15px;
}

.contact-hero-media {
  position: relative;
  min-height: 500px;
}

.contact-hero-media::before {
  content: "";
  position: absolute;
  inset: 44px -32px -32px 64px;
  border-radius: 8px;
  background: var(--blue);
}

.contact-hero-media > img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 72px rgba(31, 34, 41, 0.18);
}

.contact-floating-card {
  position: absolute;
  right: 0;
  bottom: 16px;
  z-index: 2;
  width: min(420px, 72%);
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 62px rgba(31, 34, 41, 0.16);
}

.contact-floating-card img {
  width: 104px;
  height: 82px;
  object-fit: cover;
  border-radius: 7px;
}

.contact-floating-card strong,
.contact-floating-card small {
  display: block;
}

.contact-floating-card strong {
  font-size: 18px;
}

.contact-floating-card small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-locations-v2 {
  position: relative;
  overflow: hidden;
  padding: 86px 0 104px;
  background: #fff;
}

.contact-locations-v2::before {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, #f6faff);
}

.contact-section-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.contact-section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 1.08;
}

.contact-section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-office-grid-v2 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-office-card-v2 {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(31, 34, 41, 0.08);
}

.contact-office-card-v2 > img {
  width: 100%;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
}

.contact-office-copy-v2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 28px;
}

.contact-office-copy-v2 h3 {
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  line-height: 1.12;
}

.office-address {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.office-address span {
  display: block;
}

.contact-office-actions {
  display: grid;
  align-content: start;
  gap: 10px;
  text-align: right;
}

.contact-office-actions a {
  color: var(--blue);
  font-weight: 900;
}

.contact-office-copy-v2 .office-hours {
  grid-column: 1 / -1;
  grid-template-columns: 54px 1fr;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-office-copy-v2 .office-hours span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 14px;
  color: #5f6974;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 700;
}

.contact-office-copy-v2 .office-hours span:nth-child(odd) {
  color: var(--blue);
  background: #fff;
}

.contact-form-band-v2 {
  padding: 96px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(135deg, #0750a8 0%, #0878f8 100%);
}

.contact-form-grid-v2 {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.contact-form-grid-v2 h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(40px, 3.4vw, 56px);
  line-height: 1.08;
}

.contact-form-grid-v2 p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.contact-form-grid-v2 .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.contact-proof-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-proof-grid strong,
.contact-proof-grid span {
  display: block;
}

.contact-proof-grid strong {
  font-size: 24px;
}

.contact-proof-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.contact-form-band-v2 .contact-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 47, 110, 0.18);
  backdrop-filter: blur(8px);
}

.contact-locations {
  padding: 74px 0 92px;
  text-align: center;
}

.contact-locations h2 {
  max-width: 860px;
  margin: 0 auto 42px;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.12;
}

.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  text-align: left;
}

.contact-office-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(31, 34, 41, 0.08);
}

.contact-office-copy {
  padding: 32px;
}

.contact-office-copy h3 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 27px;
  line-height: 1.15;
}

.contact-office-copy p,
.contact-office-copy a {
  display: block;
  margin: 0;
  color: #4f5965;
  font-size: 15px;
  line-height: 1.65;
}

.contact-office-copy p span {
  display: block;
}

.contact-office-copy a {
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.contact-office-card img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  border-top: 1px solid var(--line);
}

.contact-form-band {
  padding: 92px 0 98px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 82, 166, 0.96), rgba(0, 110, 210, 0.9)),
    var(--blue);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 64px;
  align-items: start;
}

.contact-form-grid h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.12;
}

.contact-form-grid p {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
}

.contact-form-grid .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-quick-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form .ff-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-form-notice-missing,
.contact-form-notice-invalid,
.contact-form-notice-error {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(122, 17, 17, 0.22);
}

.contact-form label.full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

.contact-form input {
  min-height: 54px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form button {
  justify-self: center;
  min-width: 250px;
  border: 0;
  cursor: pointer;
}

.hero.hero-preview-blend {
  background: #f4eee6;
}

.hero.hero-preview-blend::after {
  display: none;
}

.hero.hero-preview-blend .hero-copy {
  isolation: isolate;
}

.hero.hero-preview-blend .hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(48px, 4.2vw, 74px);
  left: 50%;
  width: min(900px, calc(100% - 40px));
  height: clamp(210px, 15vw, 250px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.66) 42%, rgba(255, 255, 255, 0.22) 66%, rgba(255, 255, 255, 0) 78%);
  filter: blur(12px);
}

.hero.hero-preview-blend .hero-image {
  object-position: center center;
  transform: translateX(-50%) scale(1.18);
}

.hero.hero-preview-blue {
  background: #dbe9f3;
}

.hero.hero-preview-blue::after {
  display: none;
}

.hero.hero-preview-blue .hero-copy {
  isolation: isolate;
}

.hero.hero-preview-blue .hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(48px, 4.2vw, 74px);
  left: 50%;
  width: min(880px, calc(100% - 40px));
  height: clamp(190px, 14vw, 235px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.46) 46%, rgba(255, 255, 255, 0.14) 68%, rgba(255, 255, 255, 0) 82%);
  filter: blur(10px);
}

.hero.hero-preview-blue .hero-image {
  object-position: center center;
  transform: translateX(-50%) scale(1.18);
}

.hero.hero-preview-aerial {
  background: #064b97;
}

.hero.hero-preview-aerial::after {
  display: none;
}

.hero.hero-preview-aerial .hero-copy {
  isolation: isolate;
}

.hero.hero-preview-aerial .hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(44px, 4vw, 70px);
  left: 50%;
  width: min(920px, calc(100% - 40px));
  height: clamp(190px, 14vw, 238px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 30, 68, 0.28) 0%, rgba(0, 30, 68, 0.16) 48%, rgba(0, 30, 68, 0) 75%);
  filter: blur(10px);
}

.hero.hero-preview-aerial h1,
.hero.hero-preview-aerial p {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 31, 75, 0.38);
}

.hero.hero-preview-aerial h1 span {
  color: #ffd24a;
}

.hero.hero-preview-aerial .button.primary {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 36, 88, 0.2);
}

.hero.hero-preview-aerial .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 30px rgba(0, 36, 88, 0.14);
}

.hero.hero-preview-aerial .hero-image {
  object-position: center 34%;
  transform: translateX(-50%);
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 36px, 640px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 74px;
    gap: 14px;
  }

  .brand img {
    width: 136px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .pill {
    min-height: 34px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    min-height: 0;
    background: linear-gradient(180deg, #fbfaf9 0%, #f4f0ec 55%, #fff 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(31px, 8vw, 42px);
  }

  .hero p {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-image {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 0;
    width: 100%;
    height: 315px;
    margin: 28px auto 0;
    transform: none;
  }

  .hero.hero-preview-blend {
    min-height: 700px;
    background: #f4eee6;
  }

  .hero.hero-preview-blend::after {
    display: none;
  }

  .hero.hero-preview-blend .hero-copy {
    padding-top: 40px;
  }

  .hero.hero-preview-blend .hero-copy::before {
    top: 12px;
    width: calc(100% + 24px);
    height: 340px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 45%, rgba(255, 255, 255, 0.3) 68%, rgba(255, 255, 255, 0) 82%);
    filter: blur(14px);
  }

  .hero.hero-preview-blend .hero-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: center bottom;
    transform: translateX(-50%) scale(1.04);
  }

  .hero.hero-preview-blue {
    min-height: 700px;
    background: #dbe9f3;
  }

  .hero.hero-preview-blue::after {
    display: none;
  }

  .hero.hero-preview-blue .hero-copy {
    padding-top: 40px;
  }

  .hero.hero-preview-blue .hero-copy::before {
    top: 10px;
    width: calc(100% + 20px);
    height: 315px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0) 84%);
    filter: blur(12px);
  }

  .hero.hero-preview-blue .hero-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: center bottom;
    transform: translateX(-50%) scale(1.04);
  }

  .hero.hero-preview-aerial {
    min-height: 700px;
    background: #064b97;
  }

  .hero.hero-preview-aerial::after {
    display: none;
  }

  .hero.hero-preview-aerial .hero-copy {
    padding-top: 40px;
  }

  .hero.hero-preview-aerial .hero-copy::before {
    top: 10px;
    width: calc(100% + 20px);
    height: 315px;
    background: radial-gradient(ellipse at center, rgba(0, 25, 62, 0.28) 0%, rgba(0, 25, 62, 0.16) 52%, rgba(0, 25, 62, 0) 78%);
    filter: blur(12px);
  }

  .hero.hero-preview-aerial .hero-image {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: center bottom;
    transform: translateX(-50%);
  }

  .why-strip {
    grid-template-columns: 1fr 1fr;
    gap: 34px 36px;
    padding: 46px 0;
  }

  .why-title {
    align-self: start;
  }

  .split-section,
  .faq-section,
  .chapter-grid,
  .home-article-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split-section,
  .faq-section {
    padding: 62px 0;
  }

  .chapter-section {
    padding: 62px 0 10px;
  }

  .chapter-grid {
    gap: 18px;
  }

  .consultation-options {
    grid-template-columns: 1fr;
  }

  .consultation-options a {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
  }

  .consultation-options small {
    grid-column: 2;
    margin-top: -6px;
  }

  .home-articles {
    padding-bottom: 70px;
  }

  .home-articles-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split-section .section-copy {
    order: 2;
  }

  .collage-section .section-copy {
    order: 1;
  }

  .collage-section .collage {
    order: 2;
  }

  .collage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .collage-large,
  .collage-small {
    position: static;
    width: 100%;
    aspect-ratio: 1.45 / 1;
  }

  .collage-small {
    display: none;
  }

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

  .office-contact {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-link-group {
    justify-items: center;
    text-align: center;
  }

  .footer-link-group:not(.footer-link-group-simple) a {
    padding-left: 0;
  }

  .footer-link-group:not(.footer-link-group-simple) a::before {
    display: none;
  }

  .stats-band {
    padding: 58px 0 64px;
  }

  .stats-avatar,
  .stats-star {
    display: none;
  }

  .stats-pill {
    position: static;
    justify-self: center;
    width: fit-content;
    margin: 0 auto 16px;
    transform: none;
  }

  .stats-trust {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .testimonial-grid {
    width: min(720px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .review-card {
    min-height: 360px;
  }

  .consultation-cta {
    grid-template-columns: 180px 1fr;
    gap: 22px;
    margin-top: 20px;
    margin-bottom: 72px;
    padding: 22px 24px 22px 22px;
  }

  .consultation-cta > img:first-child {
    width: 180px;
    max-height: 180px;
    margin: 0;
  }

  .consultation-cta .button {
    grid-column: 2;
    justify-self: start;
  }

  .cta-options {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .cta-logo {
    display: none;
  }

  .footer-brand img,
  .social-row {
    justify-content: center;
    margin-inline: auto;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 12px 18px;
  }

  .faq-page-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 66px 0 70px;
  }

  .faq-page-intro {
    position: static;
  }

  .faq-page-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 72px;
    padding: 30px;
  }

  .faq-alt-hero-grid,
  .faq-option-a-content,
  .faq-option-b-intro,
  .resource-hero-grid,
  .articles-layout,
  .guide-layout,
  .guide-step-grid,
  .contact-office-grid,
  .contact-form-grid,
  .contact-hero-v2-grid,
  .contact-office-grid-v2,
  .contact-form-grid-v2,
  .single-post-hero-grid,
  .single-post-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .resource-hero {
    padding: 58px 0 66px;
  }

  .resource-hero h1 {
    font-size: 42px;
  }

  .resource-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .resource-hero .hero-buttons {
    justify-content: flex-start;
  }

  .resource-hero img {
    aspect-ratio: 1.18 / 1;
  }

  .articles-layout,
  .guide-layout {
    padding: 54px 0 70px;
  }

  .resource-sidebar,
  .guide-download-panel,
  .single-post-sidebar,
  .faq-support-panel {
    position: static;
  }

  .article-preview-card {
    grid-template-columns: 1fr;
  }

  .article-preview-card img {
    height: 240px;
  }

  .contact-locations {
    padding: 56px 0 70px;
  }

  .contact-form-band {
    padding: 66px 0 74px;
  }

  .contact-hero-v2 {
    padding: 58px 0 72px;
  }

  .contact-hero-copy h1 {
    font-size: 44px;
  }

  .contact-method-strip,
  .contact-proof-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-media {
    min-height: 0;
  }

  .contact-hero-media::before {
    inset: 28px -16px -18px 38px;
  }

  .contact-hero-media > img {
    width: 92%;
    height: 360px;
  }

  .contact-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 460px);
    margin-top: -34px;
    margin-left: auto;
  }

  .contact-locations-v2,
  .contact-form-band-v2 {
    padding: 66px 0 74px;
  }

  .contact-office-copy-v2 {
    grid-template-columns: 1fr;
  }

  .contact-office-actions {
    text-align: left;
  }

  .faq-bottom-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 34px);
  }

  .header-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px 0 14px;
  }

  .brand {
    flex: 1 0 100%;
    display: flex;
    justify-content: center;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: 31px;
  }

  .hero-buttons {
    gap: 10px;
  }

  .home-articles {
    display: none;
  }

  .button {
    min-height: 43px;
    padding: 0 19px;
  }

  .hero-image {
    height: 335px;
    object-position: center bottom;
  }

  .hero.hero-preview-blend {
    min-height: 690px;
  }

  .hero.hero-preview-blend .hero-copy {
    padding-top: 36px;
  }

  .hero.hero-preview-blend .hero-copy::before {
    top: 8px;
    height: 320px;
  }

  .hero.hero-preview-blend .hero-image {
    height: 100%;
    object-position: center bottom;
  }

  .hero.hero-preview-blue {
    min-height: 690px;
  }

  .hero.hero-preview-blue .hero-copy {
    padding-top: 36px;
  }

  .hero.hero-preview-blue .hero-copy::before {
    top: 8px;
    height: 305px;
  }

  .hero.hero-preview-blue .hero-image {
    height: 100%;
    object-position: center bottom;
  }

  .hero.hero-preview-aerial {
    min-height: 690px;
  }

  .hero.hero-preview-aerial .hero-copy {
    padding-top: 36px;
  }

  .hero.hero-preview-aerial .hero-copy::before {
    top: 8px;
    height: 305px;
  }

  .hero.hero-preview-aerial .hero-image {
    height: 100%;
    object-position: center bottom;
  }

  .why-strip {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .why-title {
    grid-column: 1;
    display: block;
  }

  .why-title img {
    width: 64px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 17px;
  }

  .feature-card p,
  .section-copy p,
  .faq-copy p,
  .office-card p {
    font-size: 14px;
  }

  .stats-band {
    padding: 46px 0 52px;
  }

  .stats-band::before,
  .stats-band::after,
  .stats-band .shell::before,
  .stats-band .shell::after,
  .stats-pill,
  .stats-avatar,
  .stats-star {
    display: none !important;
  }

  .stats-band h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .stats-band h2::after {
    width: 58px;
    height: 4px;
    margin-top: 14px;
    box-shadow: 70px 0 0 rgba(255, 255, 255, 0.28), -70px 0 0 rgba(255, 255, 255, 0.28);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .stats-grid div {
    padding: 24px 20px 22px;
  }

  .stats-grid strong {
    font-size: 42px;
  }

  .stats-grid span {
    margin-top: 8px;
    font-size: 14px;
  }

  .image-card::before,
  .collage::before {
    inset: -24px 36px auto -18px;
  }

  .testimonials-band {
    padding: 58px 0 64px;
    overflow: hidden;
  }

  .testimonials-band::before,
  .testimonials-band::after {
    display: none;
  }

  .testimonials-band h2 {
    font-size: 34px;
  }

  .band-intro {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .testimonial-grid {
    width: 100%;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0 18px 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 78%;
    min-height: 360px;
    scroll-snap-align: start;
  }

  .review-card p {
    font-size: 14px;
    min-height: 92px;
  }

  .pricing-options-three,
  .pricing-options-two,
  .pricing-chapter-simple {
    grid-template-columns: 1fr;
  }

  .pricing-chapter {
    padding: 10px;
  }

  .pricing-chapter-heading {
    display: block;
  }

  .pricing-chapter-heading span {
    display: block;
    margin-top: 7px;
  }

  .pricing-option {
    min-height: 0;
    padding: 10px 12px;
  }

  .pricing-option strong {
    font-size: 20px;
  }

  .faq-section {
    padding-top: 38px;
  }

  .faq-page-hero {
    padding: 64px 0 74px;
  }

  .faq-page-hero h1 {
    font-size: 38px;
  }

  .faq-page-hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .faq-list-full summary {
    font-size: 14px;
  }

  .faq-page-cta {
    width: calc(100% - 34px);
    padding: 24px;
  }

  .faq-alt-hero-a {
    padding: 56px 0 64px;
  }

  .resource-hero h1,
  .faq-alt-hero h1 {
    font-size: 38px;
  }

  .faq-alt-hero p:not(.eyebrow) {
    font-size: 14px;
  }

  .faq-option-a-content,
  .faq-option-b-content {
    padding-bottom: 70px;
  }

  .article-preview-card {
    padding: 14px;
  }

  .article-preview-card img {
    height: 190px;
  }

  .article-preview-card strong,
  .sidebar-card h2,
  .guide-steps h2,
  .article-placeholder h2 {
    font-size: 26px;
  }

  .legal-content {
    padding: 24px;
  }

  .guide-preview-card,
  .sidebar-card,
  .article-placeholder,
  .contact-office-copy {
    padding: 22px;
  }

  .guide-step-copy {
    padding: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    justify-self: stretch;
  }

  .contact-office-copy-v2 .office-hours {
    grid-template-columns: 1fr 1fr;
  }

  .faq-option-b-intro {
    padding-top: 54px;
  }

  .faq-alt-hero-b {
    min-height: 440px;
  }

  .faq-contact-option-featured {
    grid-template-columns: 54px 1fr;
  }

  .faq-contact-option-featured img {
    grid-column: 1 / -1;
    width: 100%;
    height: 150px;
    order: -1;
  }

  .faq-list details {
    padding: 19px 18px;
  }

  .consultation-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 34px);
    min-height: 0;
    padding: 18px;
    gap: 18px;
    text-align: center;
  }

  .consultation-cta > img:first-child {
    width: 100%;
    max-height: 220px;
    margin: 0;
  }

  .consultation-cta h2 {
    font-size: 26px;
  }

  .consultation-cta p {
    margin-inline: auto;
    font-size: 12px;
  }

  .consultation-cta .button {
    grid-column: auto;
    justify-self: center;
  }

  .cta-options {
    grid-template-columns: 1fr;
    margin-inline: auto;
    text-align: left;
  }

  .offices {
    gap: 54px;
    padding: 58px 0 74px;
  }

  .offices-heading h2 {
    font-size: 32px;
  }

  .offices-heading > p:last-child {
    font-size: 16px;
  }

  .office-card {
    padding: 28px 18px 20px;
  }

  .office-actions .button {
    width: 100%;
    min-width: 0;
  }

  .office-map-card,
  .office-map-card > img {
    min-height: 245px;
  }

  .office-contact {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .office-contact p,
  .office-contact a {
    font-size: 14px;
  }

  .office-map-card > img.office-photo-accent {
    width: 96px;
    height: 74px;
    right: 12px;
    bottom: 12px;
    border-width: 4px;
  }

  .office-hours {
    grid-template-columns: 24px 42px 1fr;
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(15, 83, 163, 0.12);
    border-left: 0;
  }

  .footer-links {
    padding: 38px 0 40px;
  }

  .footer-link-group h3 {
    font-size: 22px;
  }

  .footer-disclaimer {
    padding: 24px 0 28px;
    font-size: 15px;
  }
}

.stats-band.stats-band,
.stats-band {
  padding: 92px 0 96px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 24% 76%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #0783ff 0%, #0079f2 100%);
}

.stats-band::before,
.stats-band::after,
.stats-band .shell::before,
.stats-band .shell::after,
.stats-pill,
.stats-avatar,
.stats-star {
  display: none !important;
  content: none !important;
}

.stats-band h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  text-shadow: 0 8px 22px rgba(0, 61, 153, 0.22);
}

.stats-band h2 span {
  color: #ffc928;
}

.stats-band h2::after {
  display: none !important;
  content: none !important;
}

.stats-divider {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(640px, 72vw);
  margin: 30px auto 46px;
  color: #ffc928;
}

.stats-divider::before,
.stats-divider::after {
  content: "";
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 18px rgba(255, 201, 40, 0.28);
}

.stats-divider span {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stats-grid {
  max-width: 1040px;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 28px;
  margin: 0 auto;
}

.stats-grid div {
  min-height: 270px;
  padding: 36px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 54px rgba(0, 55, 145, 0.18);
  backdrop-filter: blur(10px);
}

.stats-grid div::after {
  display: none;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffc928;
  background: rgba(255, 255, 255, 0.05);
}

.stat-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats-grid strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 700;
}

.stats-grid span:not(.stat-icon) {
  margin-top: 14px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .stats-band.stats-band,
  .stats-band {
    padding: 54px 0 58px;
  }

  .stats-band h2 {
    font-size: 34px;
  }

  .stats-divider {
    width: min(300px, 78vw);
    margin: 22px auto 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid div {
    min-height: auto;
    padding: 28px 20px 26px;
  }

  .stat-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .stat-icon svg {
    width: 34px;
    height: 34px;
  }

  .stats-grid strong {
    font-size: 44px;
  }

  .stats-grid span:not(.stat-icon) {
    font-size: 17px;
  }
}

/* Hero 10 crop lock. Must remain last because older mobile hero rules are still in the cascade. */
.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) .hero-image {
  object-position: center center;
  transform: translateX(-50%) !important;
}

.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) .hero-copy {
  isolation: isolate;
}

.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) .hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: clamp(44px, 4vw, 70px);
  left: 50%;
  width: min(920px, calc(100% - 40px));
  height: clamp(190px, 14vw, 238px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.44) 45%, rgba(255, 255, 255, 0.12) 68%, rgba(255, 255, 255, 0) 82%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) h1 {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.58),
    0 3px 14px rgba(255, 255, 255, 0.68),
    0 8px 24px rgba(15, 38, 70, 0.16);
}

.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) h1 span {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7),
    0 3px 14px rgba(255, 255, 255, 0.74),
    0 8px 24px rgba(0, 72, 168, 0.22);
}

.hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) p {
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.82),
    0 4px 16px rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .hero:not(.hero-preview-blend):not(.hero-preview-blue):not(.hero-preview-aerial) .hero-image {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 335px !important;
    margin: 28px auto 0 !important;
    object-position: 28% bottom !important;
    transform: none !important;
  }
}

/* Chapter options redesign. */
.chapter-section-old {
  display: none !important;
}

.chapter-options-redesign {
  padding: 96px 0 74px;
}

.chapter-options-grid {
  grid-template-columns: 1.28fr 0.98fr 0.98fr;
  gap: 42px;
  align-items: stretch;
}

.chapter-intro-card,
.chapter-option-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 34, 41, 0.08);
}

.chapter-intro-card img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  object-position: center;
}

.chapter-intro-card div {
  padding: 42px 44px 48px;
}

.chapter-intro-card .eyebrow {
  margin-bottom: 22px;
  color: var(--blue);
}

.chapter-intro-card h2 {
  margin: 0;
  color: #0b1324;
  font-size: clamp(31px, 2.4vw, 40px);
  line-height: 1.08;
  font-weight: 900;
}

.chapter-intro-card p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0 0;
  color: #586171;
  font-size: 18px;
  line-height: 1.58;
}

.chapter-option-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 58px 46px 44px;
  background: linear-gradient(180deg, #fff 0%, #fdfefe 100%);
}

.chapter-option-card::before {
  display: none;
}

.chapter-option-card .chapter-option-icon {
  display: inline-flex;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef5ff;
  letter-spacing: 0;
}

.chapter-option-card .chapter-option-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chapter-option-card h3 {
  margin: 0;
  color: #0b1324;
  font-size: clamp(30px, 2.25vw, 40px);
  line-height: 1.18;
  font-weight: 900;
}

.chapter-option-card p {
  max-width: 340px;
  margin: 30px 0 0;
  color: #586171;
  font-size: 18px;
  line-height: 1.62;
}

.chapter-option-card .text-link {
  margin-top: auto;
  padding-top: 36px;
  font-size: 18px;
}

.chapter-option-card .text-link::after {
  width: auto;
  height: auto;
  content: "\2192";
  background: none;
  font-size: 30px;
  line-height: 1;
}

@media (max-width: 980px) {
  .chapter-options-redesign {
    padding: 62px 0 30px;
  }

  .chapter-options-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .chapter-intro-card div,
  .chapter-option-card {
    padding: 28px;
  }

  .chapter-option-card {
    min-height: auto;
  }

  .chapter-option-card .chapter-option-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 24px;
  }

  .chapter-option-card .chapter-option-icon svg {
    width: 42px;
    height: 42px;
  }
}
