.lgpg{box-sizing:border-box}

/* ===== styles.css (scoped) ===== */
:root {
  --navy-900: #0E1A2D;
  --navy-800: #13203A;
  --navy-950: #0A0F1A;
  --blue-500: #1F9BF0;
  --blue-400: #2BA6FF;
  --blue-700: #0E4FCC;
  --blue-600: #1B5FE0;
  --tint:     #EAF0FB;
  --ink:      #0E1A2D;
  --ink-soft: #5a6470;
  --ink-mute: #8a95a1;
  --line:     #e6e9ed;
  --bg:       #ffffff;
  --shadow-card: 0 1px 2px rgba(14,26,45,.04), 0 12px 32px -8px rgba(14,26,45,.12);
  --shadow-form: 0 1px 3px rgba(14,26,45,.05), 0 24px 60px -16px rgba(14,26,45,.20);

  --maxw: 1200px;
  --gutter: 32px;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  --t-base: cubic-bezier(.2,.7,.2,1);
}
.lgpg * { box-sizing: border-box; }
.lgpg,
.lgpg {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.lgpg a { color: var(--blue-500); text-decoration: none; }
.lgpg a:hover { color: var(--blue-400); }
.lgpg button { font-family: inherit; }
.lgpg .page { width: 100%; }
.lgpg .topbar {
  background: var(--navy-900);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lgpg .topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.lgpg .brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.lgpg .brand-mark img {
  height: 28px;
  width: auto;
  display: block;
}
.lgpg .topbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.lgpg .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  transition: color .15s var(--t-base);
}
.lgpg .nav-link:hover { color: var(--blue-400); }
.lgpg .nav-caret { opacity: .8; }
.lgpg .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  transition: all .15s var(--t-base);
  white-space: nowrap;
}
.lgpg .nav-cta:hover {
  border-color: var(--blue-400);
  color: var(--blue-400);
  background: rgba(43,166,255,.06);
}
@media (max-width: 1024px) {
.lgpg .topbar-nav { display: none; }
}
.lgpg .section { padding: 96px 0; }
.lgpg .section-tight { padding: 64px 0; }
.lgpg .section-bleed-navy { background: var(--navy-900); color: #fff; }
.lgpg .section-bleed-tint { background: var(--tint); }
.lgpg .section-bleed-near { background: var(--navy-950); color: #fff; }
.lgpg .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.lgpg .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(31,155,240,.10);
  margin-bottom: 18px;
}
.lgpg .section-bleed-navy .eyebrow,
.lgpg .section-bleed-near .eyebrow {
  color: var(--blue-400);
  background: rgba(43,166,255,.14);
}
.lgpg .section-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 20px;
  text-wrap: balance;
}
.lgpg .section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 0;
  text-wrap: pretty;
}
.lgpg .section-bleed-navy .section-sub,
.lgpg .section-bleed-near .section-sub { color: rgba(255,255,255,.72); }
.lgpg .section-head { text-align: center; margin-bottom: 56px; }
.lgpg .section-head .section-sub { margin-left: auto; margin-right: auto; }
.lgpg .section-head-left { text-align: left; margin-bottom: 56px; max-width: 720px; }
.lgpg .section-head-left .section-sub { margin-left: 0; }
.lgpg .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .18s var(--t-base);
  white-space: nowrap;
}
.lgpg .btn-primary {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-500));
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 20px -8px rgba(31,155,240,.6);
}
.lgpg .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 12px 28px -10px rgba(31,155,240,.7); }
.lgpg .btn-primary:active { transform: translateY(0); }
.lgpg .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.lgpg .btn-ghost:hover { background: rgba(14,26,45,.04); }
.lgpg .btn-on-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.lgpg .btn-on-dark:hover { background: rgba(255,255,255,.12); }
.lgpg .btn-block { width: 100%; }
.lgpg .btn-lg { height: 58px; padding: 0 32px; font-size: 16px; }
.lgpg .btn .arr { transition: transform .2s var(--t-base); }
.lgpg .btn:hover .arr { transform: translateX(3px); }
.lgpg .trust-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.lgpg .trust-row .dot-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-mute);
  display: inline-block;
}
.lgpg .section-bleed-navy .trust-row,
.lgpg .hero-dark .trust-row { color: rgba(255,255,255,.7); }
.lgpg .logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 32px;
  align-items: center;
}
.lgpg .logo-cell {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  filter: grayscale(0%);
  transition: filter .25s var(--t-base), opacity .25s var(--t-base);
}
.lgpg .logo-cell img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.lgpg .logo-cell[data-brand="Allegra"] img { transform: scale(1.35); transform-origin: center; }
.lgpg .logo-grid.muted .logo-cell { filter: grayscale(100%); opacity: .68; }
.lgpg .logo-grid.muted .logo-cell:hover { filter: grayscale(0%); opacity: 1; }
.lgpg .logo-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  align-items: center;
}
.lgpg .logo-strip .logo-cell { height: 44px; }
.lgpg .logo-strip .logo-cell img { filter: brightness(0) invert(1); opacity: .7; transition: opacity .2s; }
.lgpg .logo-strip .logo-cell:hover img { opacity: 1; }
.lgpg .logo-strip.on-light .logo-cell img { filter: grayscale(100%) brightness(0.4); opacity: .55; }
.lgpg .logo-strip.on-light .logo-cell:hover img { opacity: 1; }
.lgpg .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lgpg .stats-flex {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.lgpg .stats-flex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}
.lgpg .stats-flex-copy .section-title { margin-top: 8px; }
@media (max-width: 1024px) {
.lgpg .stats-flex { grid-template-columns: 1fr; gap: 40px; }
.lgpg .stats-flex-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 600px) {
.lgpg .stats-flex-grid { grid-template-columns: 1fr; }
}
.lgpg .reviews-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.lgpg .reviews-block-r {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lgpg .reviews-stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lgpg .reviews-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lgpg .reviews-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.lgpg .reviews-clutch {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ef4d29;
  font-family: serif;
  font-style: italic;
}
.lgpg .review-card {
  text-align: center;
  padding: 24px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.lgpg .review-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.lgpg .review-stars span {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 6px;
}
.lgpg .review-quote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 500;
}
.lgpg .review-author {
  font-size: 14px;
  color: var(--blue-500);
  font-weight: 600;
}
.lgpg .stat {
  text-align: left;
}
.lgpg .stat-num {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--blue-400);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.lgpg .stat-num .plus {
  font-size: 36px;
  color: var(--blue-500);
}
.lgpg .stat-label {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.02em;
}
.lgpg .stats-light .stat-num { color: var(--blue-700); }
.lgpg .stats-light .stat-label { color: var(--ink-soft); }
.lgpg .value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lgpg .value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .25s var(--t-base), box-shadow .25s var(--t-base), border-color .25s;
}
.lgpg .value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31,155,240,.4);
}
.lgpg .value-card .step-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lgpg .value-card .step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(31,155,240,.12);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}
.lgpg .value-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.lgpg .value-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.lgpg .value-card .icon-block {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(43,166,255,.14), rgba(31,155,240,.18));
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.lgpg .cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lgpg .case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s var(--t-base);
}
.lgpg .case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.lgpg .case-thumb {
  height: 180px;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lgpg .case-thumb img { max-width: 60%; max-height: 60px; object-fit: contain; }
.lgpg .case-body { padding: 24px 24px 28px; }
.lgpg .case-body .stat-big {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lgpg .case-body .stat-cap {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
}
.lgpg .case-body h4 {
  margin: 16px 0 8px;
  font-size: 17px;
  font-weight: 600;
}
.lgpg .case-body p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.lgpg .case-link {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lgpg .featured-case {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lgpg .featured-case .label {
  font-size: 12px; letter-spacing: 0.16em; font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 18px;
}
.lgpg .featured-case h3 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.lgpg .featured-case p { color: rgba(255,255,255,.75); line-height: 1.55; margin: 0 0 24px; }
.lgpg .featured-case .stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.lgpg .featured-case .stat-num { font-size: 40px; }
.lgpg .featured-case .stat-label { color: rgba(255,255,255,.6); font-size: 12px; }
.lgpg .locations-photo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.lgpg .loc-photo-card {
  display: flex;
  flex-direction: column;
}
.lgpg .loc-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tint);
  box-shadow: 0 1px 3px rgba(14,26,45,.06);
  transition: transform .25s var(--t-base), box-shadow .25s var(--t-base);
}
.lgpg .loc-photo svg { width: 100%; height: 100%; display: block; }
.lgpg .loc-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.lgpg .loc-photo:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -10px rgba(14,26,45,.18); }
.lgpg .loc-tag {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lgpg .loc-photo-city {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--ink);
}
@media (max-width: 1024px) {
.lgpg .locations-photo-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
.lgpg .locations-photo-row { grid-template-columns: 1fr; }
}
.lgpg .loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: all .2s var(--t-base);
}
.lgpg .loc-card:hover { border-color: var(--blue-500); transform: translateY(-2px); }
.lgpg .loc-card .pin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(31,155,240,.12);
  color: var(--blue-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.lgpg .loc-card .city {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lgpg .reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.lgpg .reviews-badge .stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.lgpg .reviews-badge .num { font-weight: 700; font-size: 16px; }
.lgpg .reviews-badge .meta { font-size: 13px; color: var(--ink-soft); }
.lgpg .footer-cta {
  text-align: center;
  padding: 88px 32px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  border-radius: var(--r-lg);
  color: #fff;
}
.lgpg .footer-cta h3 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.lgpg .footer-cta p { color: rgba(255,255,255,.7); margin: 0 0 28px; font-size: 17px; }
.lgpg .press-strip {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lgpg .press-row,
.lgpg .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lgpg .press-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  box-shadow: 0 1px 2px rgba(14,26,45,.04);
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}
.lgpg .badge-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(14,26,45,.04);
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 100px;
}
.lgpg .badge-l1 { font-size: 10px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-soft); }
.lgpg .badge-l2 { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.lgpg .badge-l3 { font-size: 10px; font-weight: 500; color: var(--ink-mute); letter-spacing: 0.04em; }
.lgpg .footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding: 80px 0 32px;
}
.lgpg .footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.lgpg .footer-cols {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1.05fr .8fr 1.4fr;
  gap: 40px;
}
.lgpg .footer-col { display: flex; flex-direction: column; }
.lgpg .footer-h {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
}
.lgpg .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lgpg .footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-400);
  font-size: 15px;
  font-weight: 400;
  transition: color .15s var(--t-base);
}
.lgpg .footer-list a:hover { color: #fff; }
.lgpg .ft-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  color: var(--blue-400);
}
.lgpg .footer-col-sub p,
.lgpg .footer-sub-copy {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0 0 18px;
}
.lgpg .footer-input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 12px;
  outline: none;
}
.lgpg .footer-input:focus { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(43,166,255,.18); }
.lgpg .footer-sub-btn {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  background: var(--blue-500);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s var(--t-base);
}
.lgpg .footer-sub-btn:hover { background: var(--blue-400); }
.lgpg .footer-divider {
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 56px 0 24px;
}
.lgpg .footer-bottom {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.55);
}
.lgpg .footer-bottom a { color: var(--blue-400); }
.lgpg .footer-bottom a:hover { color: #fff; }
@media (max-width: 1024px) {
.lgpg .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 600px) {
.lgpg .footer-cols { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
.lgpg .featured-case { grid-template-columns: 1fr; padding: 40px; }
.lgpg .value-grid,
.lgpg .cases-grid { grid-template-columns: 1fr; }
.lgpg .stats-row { grid-template-columns: repeat(2, 1fr); }
.lgpg .locations-row { grid-template-columns: repeat(2, 1fr); }
.lgpg .logo-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
.lgpg .logo-strip { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lgpg .section { padding: 64px 0; }
.lgpg .section-title { font-size: 32px; }
.lgpg .footer-cta h3 { font-size: 28px; }
}
@media (max-width: 600px) {
.lgpg .logo-grid { grid-template-columns: repeat(2, 1fr); }
.lgpg .featured-case { padding: 28px; }
.lgpg .featured-case h3 { font-size: 26px; }
.lgpg .featured-case .stats-mini { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== hero-styles.css (scoped) ===== */
.lgpg .hero { position: relative; }
.lgpg .hero-light { background: #fff; padding: 64px 0 96px; }
.lgpg .hero-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding: 48px 0 64px;
  overflow: hidden;
}
.lgpg .hero-h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.lgpg .hero-dark .hero-h1 { color: #fff; }
.lgpg .hero-h1-xl { font-size: 64px; }
.lgpg .hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 540px;
}
.lgpg .hero-sub-light { color: rgba(255,255,255,.78); }
.lgpg .hero-reviews { margin-top: 24px; }
.lgpg .hero-dark .reviews-badge { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.lgpg .hero-dark .reviews-badge .meta { color: rgba(255,255,255,.6); }
.lgpg .hero-reviews-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lgpg .hero-reviews-stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.lgpg .hero-reviews-stars .stars {
  color: #e8413a;
  font-size: 18px;
  letter-spacing: 2px;
}
.lgpg .hero-reviews-stars .num {
  font-weight: 700;
  font-size: 16px;
}
.lgpg .hero-reviews-stars .meta {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.lgpg .hero-clutch-mini {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.lgpg .hero-trust-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  max-width: 460px;
}
.lgpg .hero-trust-note strong { color: rgba(255,255,255,.85); font-weight: 600; }
.lgpg .hero-split-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.lgpg .hero-form-wrap { display: flex; justify-content: flex-end; }
.lgpg .hero-center { text-align: center; }
.lgpg .hero-center .container { position: relative; z-index: 2; }
.lgpg .hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent); mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
}
.lgpg .hero-bg-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(43,166,255,.18), transparent 60%);
  pointer-events: none;
}
.lgpg .hero-center-copy {
  max-width: 760px;
  margin: 0 auto 40px;
}
.lgpg .hero-center .trust-row { justify-content: center; }
.lgpg .hero-form-center {
  max-width: 560px;
  margin: 0 auto;
}
.lgpg .hero-logos-strip {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.lgpg .hero-logos-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  font-weight: 600;
}
.lgpg .hero-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.lgpg .hero-form-sticky {
  position: sticky;
  top: 32px;
}
.lgpg .hero-copy-right { padding-top: 24px; }
.lgpg .hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 8px 0 24px;
}
.lgpg .hero-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lgpg .hero-bullet > div { display: flex; flex-direction: column; gap: 2px; }
.lgpg .hero-bullet strong { font-weight: 600; font-size: 16px; color: var(--ink); }
.lgpg .hero-bullet span { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.lgpg .hero-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(31,155,240,.12);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
@media (max-width: 1024px) {
.lgpg .hero-split-grid,
.lgpg .hero-sticky-grid { grid-template-columns: 1fr; gap: 48px; }
.lgpg .hero-form-sticky { position: static; }
.lgpg .hero-h1,
.lgpg .hero-h1-xl { font-size: 40px; }
.lgpg .hero-form-wrap { justify-content: stretch; }
.lgpg .hero-form-wrap > .pf { max-width: none; }
}

/* ===== form-4step-styles.css (scoped) ===== */
.lgpg .pf4 {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px 24px;
  box-shadow: var(--shadow-form);
  border: 1px solid rgba(14,26,45,.06);
  width: 100%;
  max-width: 540px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lgpg .pf4-h {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.lgpg .pf4-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lgpg .pf4-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.lgpg .pf4-field-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}
.lgpg .pf4-field-label .req {
  color: var(--blue-500);
  font-style: normal;
  margin-left: 3px;
  font-weight: 700;
}
.lgpg .pf4-field-help {
  font-size: 13px;
  color: var(--ink-soft);
  margin: -4px 0 4px;
  line-height: 1.4;
}
.lgpg .pf4-field-err {
  font-size: 12px;
  color: #e54860;
  font-weight: 500;
  margin-top: 2px;
}
.lgpg .pf4-input {
  height: 42px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: all .15s var(--t-base);
  outline: none;
  width: 100%;
}
.lgpg .pf4-input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(31,155,240,.16);
}
.lgpg .pf4-input::placeholder { color: var(--ink-mute); }
.lgpg .pf4-textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
}
.lgpg .pf4-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lgpg .pf4-chips--single { grid-template-columns: 1fr; }
.lgpg .pf4-chip {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s var(--t-base);
  font-family: inherit;
  text-align: left;
  line-height: 1.3;
}
.lgpg .pf4-chip:hover { border-color: var(--blue-500); background: rgba(31,155,240,.04); }
.lgpg .pf4-chip.is-selected {
  border-color: var(--blue-500);
  background: rgba(31,155,240,.08);
  box-shadow: 0 0 0 3px rgba(31,155,240,.14);
  color: var(--blue-700);
}
.lgpg .pf4-chip-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: all .15s var(--t-base);
}
.lgpg .pf4-chip.is-selected .pf4-chip-dot {
  border-color: var(--blue-500);
  background: var(--blue-500);
}
.lgpg .pf4-chip.is-selected .pf4-chip-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}
.lgpg .pf4-chip--check .pf4-chip-dot {
  border-radius: 4px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
}
.lgpg .pf4-chip--check.is-selected .pf4-chip-dot {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}
.lgpg .pf4-chip--check.is-selected .pf4-chip-dot::after { content: none; }
.lgpg .pf4-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.lgpg .pf4-actions--end { justify-content: flex-end; }
.lgpg .pf4-back {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 12px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s var(--t-base);
}
.lgpg .pf4-back:hover { color: var(--blue-500); }
.lgpg .pf4-next {
  appearance: none;
  border: none;
  background: var(--blue-500);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .18s var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px -4px rgba(31,155,240,.5);
}
.lgpg .pf4-next:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(31,155,240,.55);
}
.lgpg .pf4-next:active { transform: translateY(0); }
.lgpg .pf4-next .arr { transition: transform .2s var(--t-base); }
.lgpg .pf4-next:hover .arr { transform: translateX(3px); }
.lgpg .pf4-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.lgpg .pf4-foot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.lgpg .pf4-foot-bar {
  height: 8px;
  background: rgba(14,26,45,.07);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.lgpg .pf4-foot-fill {display:block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
  border-radius: 999px;
  transition: width .35s var(--t-base);
  box-shadow: 0 0 8px rgba(31,155,240,.3);
}
.lgpg .pf4-done {
  text-align: center;
  padding: 48px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lgpg .pf4-done-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(31,155,240,.14);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.lgpg .pf4-done h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lgpg .pf4-done p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
  max-width: 360px;
}
@media (max-width: 600px) {
.lgpg .pf4 { padding: 28px 24px 24px; }
.lgpg .pf4-h { font-size: 22px; margin-bottom: 22px; }
.lgpg .pf4-chips { grid-template-columns: 1fr; }
.lgpg .pf4-row { grid-template-columns: 1fr; }
}

/* ===== web-design-styles.css (scoped) ===== */
.lgpg .wd-hero-quote {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  max-width: 540px;
}
.lgpg .wd-hero-quote p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 0 10px;
  font-style: italic;
}
.lgpg .wd-hero-quote cite {
  font-style: normal;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.lgpg .wd-hero-quote cite strong { color: rgba(255,255,255,.85); font-weight: 600; }
.lgpg .wd-cases {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 8px;
}
.lgpg .wd-case-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.lgpg .wd-case-row.flip .wd-case-shot { order: 2; }
.lgpg .wd-case-shot {
  position: relative;
}
.lgpg .wd-case-shot image-slot {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
}
.lgpg .wd-case-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.lgpg .wd-case-copy h3 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.lgpg .wd-case-copy > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 20px;
  text-wrap: pretty;
}
.lgpg .wd-results-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
}
.lgpg .wd-results-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lgpg .wd-results-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.lgpg .wd-results-list li strong { color: var(--ink); font-weight: 600; }
.lgpg .wd-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(31,155,240,.12);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.lgpg .wd-case-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 22px;
  background: var(--tint);
  border-radius: var(--r-md);
  margin-bottom: 22px;
}
.lgpg .wd-case-stat .num {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue-700);
  line-height: 1;
}
.lgpg .wd-case-stat .cap {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.lgpg .wd-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.lgpg .wd-feature-grid .value-card { grid-column: span 2; }
.lgpg .wd-feature-grid .value-card:nth-child(4) { grid-column: 2 / span 2; }
.lgpg .wd-feature-grid .value-card h3 { font-size: 21px; }
.lgpg .wd-resp-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
}
.lgpg .wd-resp-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.lgpg .wd-resp-stat {
  text-align: center;
  padding: 48px 40px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
}
.lgpg .wd-resp-stat .num {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--blue-400);
}
.lgpg .wd-resp-stat .cap {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.lgpg .wd-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lgpg .wd-benefits-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.lgpg .wd-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
}
.lgpg .wd-benefit-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.lgpg .wd-benefit-list li + li { border-top: 1px solid var(--line); }
.lgpg .wd-pullquote {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.lgpg .wd-pullquote blockquote {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
  text-wrap: balance;
}
.lgpg .wd-pullquote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lgpg .wd-branding-copy {
  max-width: 760px;
  margin: 0 auto;
}
.lgpg .wd-branding-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.lgpg .wd-cms-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  margin: 40px 0 16px;
}
.lgpg .wd-cms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.lgpg .wd-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lgpg .wd-svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform .25s var(--t-base), box-shadow .25s var(--t-base), border-color .25s;
}
.lgpg .wd-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31,155,240,.4);
}
.lgpg .wd-svc-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(31,155,240,.5);
}
.lgpg .wd-svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.lgpg .wd-svc-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .wd-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lgpg .wd-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.lgpg .wd-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.lgpg .wd-faq summary::-webkit-details-marker { display: none; }
.lgpg .wd-faq-caret {
  flex-shrink: 0;
  color: var(--blue-500);
  transition: transform .2s var(--t-base);
}
.lgpg .wd-faq details[open] .wd-faq-caret { transform: rotate(180deg); }
.lgpg .wd-faq details p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.lgpg .wd-cta-band {
  text-align: center;
  margin-top: 48px;
}
@media (max-width: 1024px) {
.lgpg .wd-case-row,
.lgpg .wd-resp-grid,
.lgpg .wd-benefits-grid { grid-template-columns: 1fr; gap: 36px; }
.lgpg .wd-case-row.flip .wd-case-shot { order: 0; }
.lgpg .wd-feature-grid { grid-template-columns: 1fr 1fr; }
.lgpg .wd-feature-grid .value-card { grid-column: span 1; }
.lgpg .wd-feature-grid .value-card:nth-child(4) { grid-column: auto; }
.lgpg .wd-feature-grid .value-card:nth-child(5) { grid-column: span 2; }
.lgpg .wd-svc-grid { grid-template-columns: 1fr; }
.lgpg .wd-resp-stat .num { font-size: 72px; }
.lgpg .wd-pullquote blockquote { font-size: 22px; }
}
@media (max-width: 600px) {
.lgpg .wd-feature-grid { grid-template-columns: 1fr; }
.lgpg .wd-feature-grid .value-card:nth-child(5) { grid-column: auto; }
}

/* ===== web-design-v2-styles.css (scoped) ===== */
.lgpg,
.lgpg { overflow-x: clip; }
.lgpg .wd-hero-quote .lead {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin: 0 0 10px;
}
.lgpg .page .section { padding: 72px 0; }
.lgpg .page .section-head { margin-bottom: 44px; }
.lgpg .page .wd-cta-band { margin-top: 36px; }
.lgpg .page .wd-cases { gap: 36px; }
.lgpg .page .wd-case-row { gap: 48px; }
.lgpg .page .wd-cms-label { margin: 32px 0 14px; }
.lgpg .page.wd2-bd-tint {
  --wd2-block: #EAF0FB;
  --wd2-block-img: none;
  --wd2-dots: rgba(14, 26, 45, .14);
}
.lgpg .page.wd2-bd-navy {
  --wd2-block: #0E1A2D;
  --wd2-block-img: radial-gradient(ellipse 70% 60% at 30% 20%, rgba(43, 166, 255, .22), transparent 65%);
  --wd2-dots: rgba(43, 166, 255, .35);
}
.lgpg .page.wd2-bd-sky {
  --wd2-block: #1F9BF0;
  --wd2-block-img: linear-gradient(135deg, rgba(43, 166, 255, .9), rgba(27, 95, 224, .9));
  --wd2-dots: rgba(255, 255, 255, .4);
}
@media (prefers-reduced-motion: no-preference) {
.lgpg html:not(.wd2-no-reveal) [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s var(--t-base), transform .75s var(--t-base);
  }
.lgpg html:not(.wd2-no-reveal) [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }
.lgpg html:not(.wd2-no-reveal) [data-reveal]:not(.is-in) .wd2-ring-val {
    stroke-dashoffset: 753.98px !important;
  }
}
.lgpg .wd2-hero-glow2 {
  position: absolute;
  bottom: -260px;
  left: -180px;
  width: 720px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(14, 79, 204, .22), transparent 62%);
  pointer-events: none;
}
.lgpg .wd2-hero-ring {
  position: absolute;
  top: -140px;
  right: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(43, 166, 255, .14);
  box-shadow: 0 0 120px rgba(43, 166, 255, .06) inset;
  pointer-events: none;
}
.lgpg .wd2-hero-ring::after {
  content: "";
  position: absolute;
  inset: 64px;
  border-radius: 50%;
  border: 1px solid rgba(43, 166, 255, .08);
}
.lgpg .wd2-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(14, 26, 45, .08), 0 14px 32px -10px rgba(14, 26, 45, .25);
  white-space: nowrap;
}
.lgpg .wd2-chip .wd2-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  flex-shrink: 0;
}
.lgpg .page.wd2-chips-off .wd2-chip { display: none; }
.lgpg .wd2-problem-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.lgpg .wd2-problem-grid .section-head {
  text-align: left;
  margin-bottom: 0;
}
.lgpg .wd2-problem-grid .section-sub { margin-left: 0; }
.lgpg .wd2-problem-grid .wd-cta-band { text-align: left; }
.lgpg .wd2-ba-stage {
  position: relative;
  padding: 8px 0;
}
.lgpg .wd2-ba-stage::before {
  content: "";
  position: absolute;
  inset: 10% -4% 4% 12%;
  border-radius: 28px;
  background-color: var(--wd2-block);
  background-image: var(--wd2-block-img);
  transform: rotate(-2deg);
}
.lgpg .wd2-ba-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(14, 26, 45, .22));
}
.lgpg .wd2-ba-stage .wd2-chip { bottom: -2px; left: 4%; }
.lgpg .wd2-dots {
  position: absolute;
  width: 130px;
  height: 100px;
  background-image: radial-gradient(var(--wd2-dots) 2px, transparent 2.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.lgpg .wd2-ba-stage .wd2-dots { top: -8px; right: 2%; }
.lgpg .wd2-folio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.lgpg .wd2-folio-card {
  position: relative;
  border-radius: 20px;
  transition: transform .35s var(--t-base), filter .35s var(--t-base);
}
.lgpg .wd2-folio-card:hover { transform: translateY(-8px); }
.lgpg .wd2-folio-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 4px 10px rgba(14, 26, 45, .08));
  transition: filter .35s var(--t-base);
}
.lgpg .wd2-folio-card:hover img {
  filter: drop-shadow(0 28px 48px rgba(14, 26, 45, .24));
}
.lgpg .wd2-folio-card.span-3 { grid-column: span 3; }
.lgpg .wd2-folio-card.span-2 { grid-column: span 2; }
.lgpg .wd2-folio-card .wd2-chip { top: 16px; left: 16px; }
.lgpg .wd2-folio-card.chip-br .wd2-chip { top: auto; left: auto; bottom: 16px; right: 16px; }
.lgpg .wd2-shot-stage {
  position: relative;
  padding: 28px 0;
}
.lgpg .wd2-shot-stage::before {
  content: "";
  position: absolute;
  inset: 0 6% 0 0;
  border-radius: 28px;
  background-color: var(--wd2-block);
  background-image: var(--wd2-block-img);
  transform: rotate(-1.5deg);
  transition: background-color .3s;
}
.lgpg .wd-case-row.flip .wd2-shot-stage::before {
  inset: 0 0 0 6%;
  transform: rotate(1.5deg);
}
.lgpg .wd2-shot-stage img,
.lgpg .wd2-shot-stage image-slot {
  position: relative;
  z-index: 2;
  width: 92%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 28px 56px rgba(14, 26, 45, .28));
}
.lgpg .wd2-shot-stage image-slot {
  width: 86%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 28px 56px -12px rgba(14, 26, 45, .35);
  filter: none;
}
.lgpg .wd2-shot-stage .wd2-dots { bottom: 6px; left: -10px; z-index: 1; }
.lgpg .wd-case-row.flip .wd2-shot-stage .wd2-dots { left: auto; right: -10px; }
.lgpg .wd2-shot-stage .wd2-chip { bottom: 10px; right: 10%; }
.lgpg .wd-case-row.flip .wd2-shot-stage .wd2-chip { right: auto; left: 10%; }
.lgpg .wd2-case-card {
  position: relative;
  border-radius: 28px;
  padding: 52px 56px 56px;
  overflow: hidden;
}
.lgpg .wd2-case-card .wd-case-shot,
.lgpg .wd2-case-card .wd-case-copy {
  position: relative;
  z-index: 1;
}
.lgpg .wd2-case-card.card-tint {
  background-color: var(--tint);
  background-image: radial-gradient(ellipse 60% 70% at 8% 0%, rgba(43, 166, 255, .10), transparent 60%);
}
.lgpg .wd2-case-card.card-navy {
  background-color: var(--navy-900);
  background-image: radial-gradient(ellipse 70% 80% at 85% 0%, rgba(43, 166, 255, .16), transparent 60%);
}
.lgpg .wd2-case-num {
  position: absolute;
  top: -26px;
  right: 40px;
  z-index: 0;
  font-size: 132px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(31, 155, 240, .16);
  pointer-events: none;
  user-select: none;
}
.lgpg .wd2-case-card.flip .wd2-case-num { right: auto; left: 40px; }
.lgpg .wd2-case-card.card-navy .wd2-case-num { -webkit-text-stroke-color: rgba(43, 166, 255, .20); }
.lgpg .wd2-case-card.card-tint .wd2-shot-stage {
  --wd2-block: #1F9BF0;
  --wd2-block-img: linear-gradient(135deg, rgba(43, 166, 255, .95), rgba(27, 95, 224, .95));
  --wd2-dots: rgba(14, 26, 45, .18);
}
.lgpg .wd2-case-card.card-navy .wd2-shot-stage {
  --wd2-block: rgba(43, 166, 255, .14);
  --wd2-block-img: linear-gradient(135deg, rgba(43, 166, 255, .30), rgba(27, 95, 224, .30));
  --wd2-dots: rgba(43, 166, 255, .40);
}
.lgpg .wd2-case-card.card-navy .wd-case-copy h3 { color: #fff; }
.lgpg .wd2-case-card.card-navy .wd-case-copy > p { color: rgba(255, 255, 255, .75); }
.lgpg .wd2-case-card.card-navy .wd-case-kicker { color: var(--blue-400); }
.lgpg .wd2-case-card.card-navy .wd-results-label { color: #fff; }
.lgpg .wd2-case-card.card-navy .wd-results-list li { color: rgba(255, 255, 255, .75); }
.lgpg .wd2-case-card.card-navy .wd-results-list li strong { color: #fff; }
.lgpg .wd2-case-card.card-navy .wd-check { background: rgba(43, 166, 255, .22); color: var(--blue-400); }
.lgpg .wd2-case-card.card-navy .case-link { color: var(--blue-400); }
.lgpg .page .wd-case-stat { background: #fff; box-shadow: 0 10px 28px -12px rgba(14, 26, 45, .18); }
.lgpg .page .wd-case-stat .num {
  font-size: 48px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .wd2-case-card.card-navy .wd-case-stat { background: rgba(255, 255, 255, .07); }
.lgpg .wd2-case-card.card-navy .wd-case-stat .num {
  background: linear-gradient(135deg, #7CC8FF, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .wd2-case-card.card-navy .wd-case-stat .cap { color: rgba(255, 255, 255, .7); }
.lgpg .page .value-card .icon-block {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(31, 155, 240, .6);
}
.lgpg .wd2-benefit-stage {
  position: relative;
  padding: 14px 0 18px;
}
.lgpg .wd2-benefit-stage::before {
  content: "";
  position: absolute;
  inset: 18% -5% -5% 10%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(43, 166, 255, .95), rgba(27, 95, 224, .95));
  transform: rotate(2deg);
}
.lgpg .wd2-benefit-stage .wd-results-label,
.lgpg .wd2-benefit-stage .wd-benefit-list {
  position: relative;
  z-index: 2;
}
.lgpg .wd2-benefit-stage .wd-benefit-list {
  border: none;
  box-shadow: 0 24px 48px -16px rgba(14, 26, 45, .30);
}
.lgpg .wd2-benefit-stage .wd2-dots { top: -12px; left: -14px; }
.lgpg .wd2-benefit-stage .wd2-chip { bottom: -12px; right: 5%; }
.lgpg .page .wd-pullquote {
  position: relative;
  padding-top: 56px;
  margin-bottom: 40px;
}
.lgpg .page .wd-pullquote::before {
  content: "\201C";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 150px;
  line-height: 1;
  font-weight: 700;
  color: rgba(31, 155, 240, .20);
  pointer-events: none;
}
.lgpg .page .wd-pullquote blockquote { font-size: 31px; }
.lgpg .page .wd-faq details {
  transition: border-color .2s, box-shadow .25s var(--t-base);
}
.lgpg .page .wd-faq details:hover {
  border-color: rgba(31, 155, 240, .45);
  box-shadow: 0 10px 26px -14px rgba(14, 26, 45, .16);
}
.lgpg .wd2-band {
  position: relative;
  overflow: hidden;
}
.lgpg .wd2-band .container { position: relative; z-index: 2; }
.lgpg .wd2-band-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, black, transparent); mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, black, transparent);
  pointer-events: none;
}
.lgpg .wd2-band-glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 700px;
  height: 540px;
  background: radial-gradient(ellipse at center, rgba(43, 166, 255, .16), transparent 60%);
  pointer-events: none;
}
.lgpg .wd2-ring-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lgpg .wd2-ring-wrap svg { display: block; }
.lgpg .wd2-ring-track { stroke: rgba(255, 255, 255, .08); }
.lgpg .wd2-ring-val {
  stroke: url(#wd2RingGrad);
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1.4s var(--t-base);
}
.lgpg .wd2-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.lgpg .wd2-ring-center .num {
  font-size: 84px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.lgpg .wd2-ring-center .lbl {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-400);
}
.lgpg .wd2-resp-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lgpg .wd2-resp-stat .cap {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
  max-width: 340px;
  text-align: center;
  margin: 0;
}
.lgpg .wd2-resp-stat .wd2-chip { top: 12px; right: 0; }
.lgpg .wd2-cta-card {
  position: relative;
  overflow: hidden;
}
.lgpg .wd2-cta-card > * { position: relative; z-index: 2; }
.lgpg .wd2-cta-card .wd2-band-grid { z-index: 1; }
.lgpg .wd2-cta-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(43, 166, 255, .20), transparent 62%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1024px) {
.lgpg .page .section { padding: 56px 0; }
.lgpg .wd2-case-card { padding: 36px 28px 40px; }
.lgpg .wd2-case-num { font-size: 88px; top: -18px; right: 24px; }
.lgpg .wd2-case-card.flip .wd2-case-num { left: 24px; }
.lgpg .wd2-problem-grid { grid-template-columns: 1fr; gap: 48px; }
.lgpg .wd2-folio-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
.lgpg .wd2-folio-card.span-3,
.lgpg .wd2-folio-card.span-2 { grid-column: span 1; }
.lgpg .wd2-hero-ring { display: none; }
}
@media (max-width: 600px) {
.lgpg .wd2-folio-grid { grid-template-columns: 1fr; }
.lgpg .wd2-ring-center .num { font-size: 64px; }
}

/* ===== drug-rehab-styles.css (scoped) ===== */
.lgpg .dr-press {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.lgpg .dr-press-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lgpg .dr-press-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 12px;
}
.lgpg .dr-press-inner { gap: 40px; }
.lgpg .dr-press-logo {
  height: 36px;
  width: auto;
  display: block;
}
.lgpg .dr-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.lgpg .dr-split .section-head {
  text-align: left;
  margin-bottom: 0;
}
.lgpg .dr-split .section-sub { margin-left: 0; }
.lgpg .dr-split .wd-cta-band { text-align: left; }
.lgpg .dr-support .wd-results-label { color: #fff; }
.lgpg .dr-support .wd2-benefit-stage .wd-benefit-list li {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.lgpg .dr-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lgpg .dr-process-grid .value-card h3 { font-size: 21px; }
.lgpg .dr-process-grid .value-card p { font-size: 14.5px; }
.lgpg .dr-logo-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.lgpg .dr-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.lgpg .dr-trust-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  display: block;
}
.lgpg .dr-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
  margin: 48px 0 0;
}
.lgpg .dr-care-grid li { align-items: flex-start; }
.lgpg .wd2-ba-stage image-slot {
  position: relative;
  z-index: 2;
  display: block;
  width: 94%;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 28px 56px -12px rgba(14, 26, 45, .35);
}
.lgpg .wd2-case-card.card-navy image-slot {
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .08);
}
.lgpg .dr2-hero-visual {
  position: relative;
  padding: 12px 0 64px;
}
.lgpg .dr2-hero-photo {
  display: block;
  width: 88%;
  margin-left: auto;
  border-radius: 18px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px)); clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px));
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}
.lgpg .dr2-serp {
  position: absolute;
  left: -8px;
  bottom: 8px;
  width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(14, 26, 45, .14), 0 32px 64px -12px rgba(14, 26, 45, .45);
  padding: 18px;
  z-index: 3;
}
.lgpg .dr2-serp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.lgpg .dr2-serp-bar svg { color: var(--blue-500); flex-shrink: 0; }
.lgpg .dr2-serp-results {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lgpg .dr2-serp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.lgpg .dr2-serp-row .rank {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--ink-mute);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lgpg .dr2-serp-row.hit { font-weight: 700; color: var(--ink); }
.lgpg .dr2-serp-row.hit .rank {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: #fff;
}
.lgpg .dr2-serp-row .pill {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: rgba(31, 155, 240, .14);
  padding: 3px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
.lgpg .dr2-serp-row .bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--tint);
}
.lgpg .dr2-callout {
  position: absolute;
  right: 4%;
  bottom: -18px;
  z-index: 4;
  max-width: 230px;
  background: var(--navy-950);
  border: 1px solid rgba(43, 166, 255, .35);
  color: rgba(255, 255, 255, .92);
  font-size: 12.5px;
  line-height: 1.45;
  padding: 12px 16px;
  border-radius: 12px 12px 12px 2px;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, .55);
}
.lgpg .dr2-callout strong { color: var(--blue-400); }
.lgpg .dr2-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lgpg .dr2-svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: transform .25s var(--t-base), box-shadow .25s var(--t-base), border-color .25s;
}
.lgpg .dr2-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31, 155, 240, .4);
}
.lgpg .dr2-svc-card .dr2-svc-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.lgpg .dr2-svc-card .wd-svc-icon { width: 44px; height: 44px; }
.lgpg .dr2-svc-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.lgpg .dr2-svc-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .dr2-svc-card.invert {
  background: var(--navy-900);
  background-image: radial-gradient(ellipse 80% 80% at 15% 0%, rgba(43, 166, 255, .18), transparent 60%);
  border-color: var(--navy-900);
}
.lgpg .dr2-svc-card.invert h3 { color: #fff; }
.lgpg .dr2-svc-card.invert p { color: rgba(255, 255, 255, .75); }
.lgpg .dr2-photo-stage { position: relative; }
.lgpg .dr2-photo-stage img {
  display: block;
  width: 100%;
  border-radius: 18px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px)); clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px));
}
.lgpg .dr2-photo-stage.notch-tr img {
  -webkit-clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%); clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
}
.lgpg .dr2-photo-stage::before {
  content: "";
  position: absolute;
  inset: 14% -4% -4% 12%;
  border-radius: 22px;
  background-color: var(--wd2-block);
  background-image: var(--wd2-block-img);
  transform: rotate(-2deg);
}
.lgpg .dr2-photo-stage img { position: relative; z-index: 2; filter: drop-shadow(0 24px 44px rgba(14, 26, 45, .28)); }
.lgpg .dr2-photo-stage .wd2-chip { bottom: -14px; left: 8%; }
.lgpg .dr2-photo-stage .wd2-dots { top: -10px; right: -6px; z-index: 1; }
.lgpg .dr2-stat-pair {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin: 0 0 20px;
}
.lgpg .dr2-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lgpg .dr2-stat + .dr2-stat {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 28px;
}
.lgpg .dr2-stat .num {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #7CC8FF, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .dr2-stat .lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}
.lgpg .dr2-navy-checks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lgpg .dr2-navy-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .8);
}
.lgpg .dr2-navy-checks .wd-check {
  background: rgba(43, 166, 255, .22);
  color: var(--blue-400);
}
.lgpg .dr2-care-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.lgpg .dr2-care-row + .dr2-care-row { margin-top: 64px; }
.lgpg .dr2-care-row.flip .dr2-photo-stage { order: 2; }
.lgpg .dr2-care-row .wd-results-list { margin: 0; gap: 16px; }
.lgpg .dr2-form-section {
  background: var(--tint);
  position: relative;
  overflow: hidden;
}
.lgpg .dr2-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lgpg .dr2-form-grid .section-head { text-align: left; margin-bottom: 0; }
.lgpg .dr2-form-grid .section-sub { margin-left: 0; }
.lgpg .dr-feat-section { padding: 64px 0; }
.lgpg .dr-feat-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 20px;
}
.lgpg .dr-feat {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
}
.lgpg .dr-feat-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  max-height: 560px;
  box-shadow: 0 26px 54px rgba(14, 26, 45, .2);
}
.lgpg .dr-feat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lgpg .dr-feat-media-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(8, 16, 30, .78) 0%, rgba(8, 16, 30, .38) 48%, rgba(8, 16, 30, 0) 100%);
}
.lgpg .dr-feat-client {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}
.lgpg .dr-feat-vertical {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.lgpg .dr-feat-copy {
  display: flex;
  flex-direction: column;
}
.lgpg .dr-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.lgpg .dr-feat-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
}
.lgpg .dr-feat-copy h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 9px;
}
.lgpg .dr-feat-copy h3 + p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.lgpg .dr-feat-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 16px;
}
@media (max-width: 860px) {
.lgpg .dr-feat { grid-template-columns: 1fr; gap: 32px; }
.lgpg .dr-feat-media { min-height: 0; aspect-ratio: 16 / 10; max-height: 360px; }
}
@media (max-width: 1024px) {
.lgpg .dr-split { grid-template-columns: 1fr; gap: 44px; }
.lgpg .dr-process-grid { grid-template-columns: 1fr 1fr; }
.lgpg .dr-logo-slots { grid-template-columns: 1fr 1fr; }
.lgpg .dr-care-grid { grid-template-columns: 1fr; }
.lgpg .dr2-svc-grid { grid-template-columns: 1fr; }
.lgpg .dr2-care-row { grid-template-columns: 1fr; gap: 44px; }
.lgpg .dr2-care-row.flip .dr2-photo-stage { order: 0; }
.lgpg .dr2-form-grid { grid-template-columns: 1fr; gap: 44px; }
.lgpg .dr2-hero-photo { width: 100%; }
.lgpg .dr2-serp { position: relative; left: 0; bottom: 0; margin: -48px auto 0; }
.lgpg .dr2-callout { display: none; }
}
@media (max-width: 600px) {
.lgpg .dr-process-grid { grid-template-columns: 1fr; }
.lgpg .dr2-stat-pair { flex-direction: column; gap: 16px; }
.lgpg .dr2-stat + .dr2-stat { border-left: 0; padding-left: 0; }
}

/* ===== real-estate-styles.css (scoped) ===== */
.lgpg .re-hero-stats {
  display: flex;
  align-items: stretch;
  gap: 26px;
  margin-top: 30px;
}
.lgpg .re-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lgpg .re-hero-stat + .re-hero-stat {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 26px;
}
.lgpg .re-hero-stat .num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #7CC8FF, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .re-hero-stat .lbl {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, .65);
  max-width: 160px;
}
.lgpg .re-hero-src {
  margin-top: 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}
.lgpg .re-hv { position: relative; padding: 16px 0 48px; }
.lgpg .re-listing {
  width: min(380px, 88%);
  margin-left: auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}
.lgpg .re-listing image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
}
.lgpg .re-listing-body { padding: 18px 22px 20px; }
.lgpg .re-listing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lgpg .re-listing-row strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.lgpg .re-pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: rgba(31, 155, 240, .12);
  padding: 4px 10px;
  border-radius: 999px;
}
.lgpg .re-listing-meta {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
}
.lgpg .re-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 8px 18px rgba(14, 26, 45, .14), 0 28px 56px -12px rgba(14, 26, 45, .5);
}
.lgpg .re-note strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.lgpg .re-note .sub {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.lgpg .re-note-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}
.lgpg .re-note.n1 { left: -8px; top: 24%; }
.lgpg .re-note.n2 { left: 32px; bottom: 8px; }
.lgpg .re-hv-photo image-slot {
  position: relative;
  z-index: 2;
  display: block;
  width: 88%;
  margin-left: auto;
  aspect-ratio: 600 / 396;
  border-radius: 18px;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px)); clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px));
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}
.lgpg .re-press-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
}
.lgpg .re-press-meta .stars { color: #F5A623; letter-spacing: 2px; }
.lgpg .re-press-meta .sep { color: var(--line); }
.lgpg .re-press-meta .strong { color: var(--ink); }
.lgpg .wd2-shot-stage image-slot {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 600 / 363;
  border-radius: 16px;
  overflow: hidden;
}
.lgpg .re-trust-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 28px;
  align-items: start;
}
.lgpg .re-trust-slot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lgpg .re-trust-slot image-slot {
  display: block;
  width: 100%;
  height: 104px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.lgpg .re-trust-cap {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
}
.lgpg .re-trust-cap .hl { color: var(--blue-700); }
.lgpg .re-faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lgpg .re-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 26px;
  transition: border-color .2s;
}
.lgpg .re-faq details[open] { border-color: rgba(31, 155, 240, .4); }
.lgpg .re-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 0;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lgpg .re-faq summary::-webkit-details-marker { display: none; }
.lgpg .re-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tint);
  color: var(--blue-700);
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lgpg .re-faq details[open] summary::after { content: "–"; }
.lgpg .re-faq .faq-a {
  margin: 0;
  padding: 0 36px 22px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.lgpg .re-em {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .re-em-light {
  background: linear-gradient(135deg, #7CC8FF, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .re-hv::before {
  content: "";
  position: absolute;
  top: 4px;
  right: -4%;
  width: min(380px, 94%);
  height: 72%;
  border-radius: 22px;
  background: rgba(43, 166, 255, .10);
  border: 1px solid rgba(43, 166, 255, .28);
  transform: rotate(3deg);
}
.lgpg .re-hv .wd2-dots { top: -12px; right: -10px; z-index: 1; }
.lgpg .re-listing { position: relative; z-index: 2; }
.lgpg .re-profile {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 28px 56px -12px rgba(14, 26, 45, .25);
}
.lgpg .re-profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lgpg .re-profile-head image-slot {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.lgpg .re-profile-name {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.lgpg .re-profile-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-top: 3px;
}
.lgpg .re-profile-stars {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.lgpg .re-profile-stars .st { color: #F5A623; letter-spacing: 2px; margin-right: 6px; }
.lgpg .re-profile-quote {
  margin: 22px 0 0;
  background: var(--tint);
  border-radius: 12px 12px 12px 2px;
  padding: 16px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.lgpg .re-profile-quote .who {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lgpg .re-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.lgpg .re-profile-badges span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--blue-700);
  background: rgba(31, 155, 240, .10);
  border: 1px solid rgba(31, 155, 240, .25);
  padding: 5px 12px;
  border-radius: 999px;
}
.lgpg .re-profile-stage { position: relative; }
.lgpg .re-profile-stage::before {
  content: "";
  position: absolute;
  inset: 14% -4% -4% 12%;
  border-radius: 22px;
  background-color: var(--wd2-block);
  background-image: var(--wd2-block-img);
  transform: rotate(-2deg);
}
.lgpg .re-profile-stage .wd2-dots { top: -10px; right: -6px; z-index: 1; }
.lgpg .re-pipe {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .45);
}
.lgpg .re-pipe-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.lgpg .re-pipe-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.lgpg .re-pipe-rows { display: flex; flex-direction: column; gap: 18px; }
.lgpg .re-pipe-row { display: flex; flex-direction: column; gap: 7px; }
.lgpg .re-pipe-lbls {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mute);
}
.lgpg .re-pipe-lbls .v { color: var(--ink); font-weight: 700; }
.lgpg .re-pipe-bar {
  height: 16px;
  border-radius: 8px;
  background: rgba(31, 155, 240, .12);
  overflow: hidden;
}
.lgpg .re-pipe-bar i {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
}
.lgpg .re-pipe-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.lgpg .re-pipe-foot .up { color: var(--blue-700); }
.lgpg .re-map {
  position: relative;
  z-index: 2;
  aspect-ratio: 600 / 459;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, transparent 47%, rgba(31, 155, 240, .14) 47%, rgba(31, 155, 240, .14) 53%, transparent 53%),
    linear-gradient(rgba(31, 155, 240, .09) 3px, transparent 3px),
    linear-gradient(90deg, rgba(31, 155, 240, .09) 3px, transparent 3px),
    linear-gradient(160deg, #EAF3FB, #F7FAFD);
  background-size: 100% 100%, 72px 72px, 72px 72px, 100% 100%;
  box-shadow: 0 28px 56px -12px rgba(14, 26, 45, .2);
}
.lgpg .re-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid var(--blue-500);
  box-shadow: 0 6px 14px rgba(14, 26, 45, .3);
}
.lgpg .re-pin.dim { border-color: #B9CCDD; width: 16px; height: 16px; border-width: 5px; }
.lgpg .re-pin.you::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(31, 155, 240, .45);
}
@media (prefers-reduced-motion: no-preference) {
.lgpg .re-pin.you::after { animation: re-ping 2.4s ease-out infinite; }
@keyframes re-ping {
    0% { transform: scale(.55); opacity: .9; }
    70%, 100% { transform: scale(1.25); opacity: 0; }
  }
}
.lgpg .re-map-tag {
  position: absolute;
  left: 8%;
  bottom: 10%;
  max-width: 240px;
  background: var(--navy-950);
  border: 1px solid rgba(43, 166, 255, .35);
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 16px;
  border-radius: 12px 12px 12px 2px;
  box-shadow: 0 18px 40px -10px rgba(0, 0, 0, .45);
}
.lgpg .re-map-tag strong { color: var(--blue-400); }
.lgpg .re-presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lgpg .re-pres-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: transform .25s var(--t-base), box-shadow .25s var(--t-base), border-color .25s;
}
.lgpg .re-pres-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31, 155, 240, .4);
}
.lgpg .re-pres-card .wd-svc-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}
.lgpg .re-pres-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.lgpg .re-pres-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 1024px) {
.lgpg .re-trust-slots { grid-template-columns: 1fr; }
.lgpg .re-hv-photo image-slot { width: 100%; }
.lgpg .re-presence-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
.lgpg .re-hero-stats { flex-direction: column; gap: 16px; }
.lgpg .re-hero-stat + .re-hero-stat { border-left: 0; padding-left: 0; }
.lgpg .re-presence-grid { grid-template-columns: 1fr; }
}

/* ===== shopify-styles.css (scoped) ===== */
.lgpg .sh-hv { position: relative; padding: 16px 0 272px; }
.lgpg .sh-hv::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -4%;
  width: 64%;
  height: 52%;
  border-radius: 22px;
  background: rgba(43, 166, 255, .10);
  border: 1px solid rgba(43, 166, 255, .28);
  transform: rotate(3deg);
}
.lgpg .sh-hv .wd2-dots { top: -12px; right: -10px; z-index: 1; }
.lgpg .sh-cite {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}
.lgpg .sh-hv .sh-product {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 200px;
}
.lgpg .sh-product {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}
.lgpg .sh-product image-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.lgpg .sh-product img.sh-product-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 38%;
}
.lgpg .sh-product-body { padding: 16px 20px 20px; }
.lgpg .sh-product-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.lgpg .sh-product-meta {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-mute);
}
.lgpg .sh-product-meta .st { color: #F5A623; letter-spacing: 1px; margin-right: 6px; }
.lgpg .sh-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.lgpg .sh-price-bar {
  width: 48px;
  height: 12px;
  border-radius: 6px;
  background: var(--tint);
}
.lgpg .sh-atc {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
}
.lgpg .sh-order-note {
  position: absolute;
  z-index: 4;
  left: -6px;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 8px 18px rgba(14, 26, 45, .14), 0 28px 56px -12px rgba(14, 26, 45, .5);
}
.lgpg .sh-order-note strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.lgpg .sh-order-note .sub {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.lgpg .sh-order-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}
.lgpg .sh-hero-stat {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 18px 24px;
  max-width: 540px;
  border: 1px solid rgba(43, 166, 255, .3);
  background: rgba(43, 166, 255, .08);
  border-radius: 16px;
}
.lgpg .sh-hero-stat .num {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #7CC8FF, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  flex-shrink: 0;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .sh-hero-stat .txt {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
}
.lgpg .sh-hero-stat .txt strong { color: #fff; }
.lgpg .sh-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lgpg .sh-cmp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.lgpg .sh-cmp-card.organic {
  border-color: rgba(31, 155, 240, .45);
  background: linear-gradient(180deg, rgba(31, 155, 240, .07), #fff 55%);
}
.lgpg .sh-cmp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.lgpg .sh-cmp-head h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.lgpg .sh-cmp-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--tint);
  color: var(--ink-mute);
}
.lgpg .sh-cmp-card.organic .sh-cmp-tag {
  background: rgba(31, 155, 240, .12);
  color: var(--blue-700);
}
.lgpg .sh-cmp-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 130px;
}
.lgpg .sh-cmp-bars span {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: #D9E2EC;
}
.lgpg .sh-cmp-bars span.off { background: #ECF1F6; }
.lgpg .sh-cmp-card.organic .sh-cmp-bars span {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
}
.lgpg .sh-cmp-cap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-mute);
}
.lgpg .sh-cmp-card.organic .sh-cmp-cap { color: var(--blue-700); }
.lgpg .sh-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lgpg .sh-result-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lgpg .sh-result-card .num {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #7CC8FF, var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .sh-result-card .client {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.lgpg .sh-result-card .lbl {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .68);
}
.lgpg .sh-testi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.lgpg .sh-testi {
  position: relative;
  z-index: 2;
  border: 1.5px dashed rgba(255, 255, 255, .28);
  border-radius: 16px;
  padding: 26px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
}
.lgpg .sh-report {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 28px 56px -12px rgba(14, 26, 45, .22);
}
.lgpg .sh-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.lgpg .sh-report-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.lgpg .sh-rep-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 84px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.lgpg .sh-rep-bars span {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: rgba(31, 155, 240, .16);
}
.lgpg .sh-rep-bars span.hot {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
}
.lgpg .sh-rep-rows { display: flex; flex-direction: column; gap: 14px; }
.lgpg .sh-rep-row { display: flex; align-items: center; gap: 12px; }
.lgpg .sh-rep-kw {
  flex: 1;
  height: 10px;
  border-radius: 5px;
  background: var(--tint);
}
.lgpg .sh-rep-rank {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(31, 155, 240, .12);
  color: var(--blue-700);
  white-space: nowrap;
}
.lgpg .sh-rep-delta {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-700);
  white-space: nowrap;
  min-width: 42px;
  text-align: right;
}
.lgpg .sh-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}
.lgpg .sh-rating .st { color: #F5A623; letter-spacing: 2px; }
.lgpg .sh-rating .meta { font-weight: 600; color: var(--ink-mute); }
.lgpg .sh-serif {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
}
.lgpg .sh-trusted {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.lgpg .sh-trusted img {
  height: auto;
  max-height: 26px;
  max-width: 128px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .2s, opacity .2s;
}
.lgpg .sh-trusted img:hover { filter: none; opacity: 1; }
.lgpg .sh-statement {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  padding: 84px 0;
  text-align: center;
}
.lgpg .sh-statement p {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  font-size: 31px;
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: pretty;
}
.lgpg .sh-panel {
  background: linear-gradient(180deg, #EAF4FC, #F6FAFD);
  border: 1px solid rgba(31, 155, 240, .18);
  border-radius: 24px;
  padding: 52px;
}
.lgpg .sh-faq2 {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.lgpg .sh-case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.lgpg .sh-case {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
}
.lgpg .sh-case-img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.lgpg .sh-case-body {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}
.lgpg .sh-case-logo {
  height: 42px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
}
.lgpg .sh-case-logo.mm {
  width: 100px;
  height: 60px;
  object-fit: cover;
  object-position: 50% 46%;
  border-radius: 0;
}
.lgpg .sh-case-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
}
.lgpg .sh-case-body .case-link {
  margin-left: auto;
  white-space: nowrap;
}
.lgpg .sh-quote-slot {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  border: 1.5px dashed rgba(255, 255, 255, .28);
  border-radius: 16px;
  padding: 22px 26px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
  text-align: center;
}
@media (max-width: 1024px) {
.lgpg .sh-compare { grid-template-columns: 1fr; }
.lgpg .sh-results-grid { grid-template-columns: 1fr; }
.lgpg .sh-testi-row { grid-template-columns: 1fr; }
.lgpg .sh-case-row { grid-template-columns: 1fr; }
.lgpg .sh-faq2 { grid-template-columns: 1fr; }
.lgpg .sh-statement p { font-size: 25px; }
.lgpg .sh-panel { padding: 36px 28px; }
}
@media (max-width: 600px) {
.lgpg .sh-hero-stat { flex-direction: column; align-items: flex-start; gap: 10px; }
.lgpg .sh-hv { padding-bottom: 0; }
.lgpg .sh-hv .sh-product {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -44px 16px 0 auto;
  }
.lgpg .sh-order-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
  }
}

/* ===== page-tuning overrides (scoped) ===== */
.lgpg .section { padding: 60px 0; }
.lgpg .section-tight { padding: 44px 0; }
.lgpg .section-head { margin-bottom: 34px; }
.lgpg .section-title { font-size: 33px; }
.lgpg .section-sub { font-size: 15.5px; max-width: 760px; }
.lgpg .dr-press { padding: 30px 0; }
.lgpg .wd-cta-band { margin-top: 36px; }
.lgpg .dr-split { gap: 48px; }
.lgpg .dr2-form-grid { gap: 48px; }
.lgpg .hero-sub { font-size: 16.5px; }
.lgpg .re-pres-card { padding: 22px 24px; }
.lgpg .re-pres-card .wd-svc-icon { width: 38px; height: 38px; margin-bottom: 12px; }
.lgpg .re-pres-card h3 { font-size: 16px; }
.lgpg .re-pres-card p { font-size: 13.5px; }
.lgpg .re-presence-grid { gap: 16px; }
.lgpg .dr-process-grid { gap: 16px; }
.lgpg .dr-process-grid .value-card h3 { font-size: 18px; }
.lgpg .dr-process-grid .value-card p { font-size: 13.5px; }
.lgpg .wd-case-row { padding: 30px; gap: 40px; }
.lgpg .wd-case-copy h3 { font-size: 22px; }
.lgpg .wd-case-copy p { font-size: 14px; }
.lgpg .dr2-stat .num { font-size: 38px; }
.lgpg .sh-panel { padding: 38px 40px; }
.lgpg .wd-results-list li { font-size: 14.5px; }
.lgpg .re-faq summary { font-size: 15px; padding: 16px 0; }
.lgpg .re-faq details { padding: 0 22px; }
.lgpg .re-faq .faq-a { font-size: 14px; padding-bottom: 18px; }
.lgpg .ac-hv { position: relative; padding: 16px 0 64px; }
.lgpg .ac-hv::before {
  content: "";
  position: absolute;
  top: 4px;
  right: -4%;
  width: min(400px, 94%);
  height: 72%;
  border-radius: 22px;
  background: rgba(43, 166, 255, .10);
  border: 1px solid rgba(43, 166, 255, .28);
  transform: rotate(3deg);
}
.lgpg .ac-hv .wd2-dots { top: -12px; right: -10px; z-index: 1; }
.lgpg .ac-hv .re-pipe {
  width: min(400px, 88%);
  margin-left: auto;
}
.lgpg .ac-note {
  position: absolute;
  z-index: 4;
  left: -6px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 8px 18px rgba(14, 26, 45, .14), 0 28px 56px -12px rgba(14, 26, 45, .5);
}
.lgpg .ac-note strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.lgpg .ac-note .sub {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.lgpg .ac-note-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}
.lgpg .ac-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.lgpg .ac-stat {
  text-align: center;
  padding: 0 10px;
}
.lgpg .ac-stat .num {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .ac-stat .lbl {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-mute);
}
.lgpg .ac-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.lgpg .ac-serve-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.lgpg .ac-serve-card .wd-svc-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin: 0;
}
.lgpg .ac-serve-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.lgpg .ac-serve-card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .ac-seg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.lgpg .ac-seg + .ac-seg { margin-top: 16px; }
.lgpg .ac-seg h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.lgpg .ac-seg p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .ac-seg p + p { margin-top: 10px; }
.lgpg .ac-seg .wd-results-list { margin: 0; gap: 11px; }
.lgpg .ac-seg .wd-results-list li { font-size: 14px; }
.lgpg .ac-seg .dr2-navy-checks li { font-size: 14px; }
.lgpg .ac-seg-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.lgpg .ac-seg-head .wd-svc-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  margin: 0;
}
.lgpg .ac-seg-head h3 { margin: 0; }
.lgpg .ac-seg.invert .wd-svc-icon {
  background: rgba(43, 166, 255, .18);
  border-color: rgba(43, 166, 255, .3);
  color: var(--blue-400);
}
.lgpg .ac-seg.invert {
  background: var(--navy-900);
  background-image: radial-gradient(ellipse 80% 80% at 15% 0%, rgba(43, 166, 255, .18), transparent 60%);
  border-color: var(--navy-900);
}
.lgpg .ac-seg.invert h3 { color: #fff; }
.lgpg .ac-seg.invert p { color: rgba(255, 255, 255, .75); }
.lgpg .ac-seg.invert .dr2-navy-checks { margin: 0; }
.lgpg .ac-cap-group + .ac-cap-group { margin-top: 36px; }
.lgpg .ac-cap-head {
  max-width: 820px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lgpg .ac-cap-num {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  flex-shrink: 0;
  -webkit-text-fill-color: transparent !important;
}
.lgpg .ac-cap-head h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.lgpg .ac-cap-head p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .ac-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lgpg .ac-cap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color .2s, box-shadow .25s var(--t-base);
}
.lgpg .ac-cap:hover {
  border-color: rgba(31, 155, 240, .4);
  box-shadow: var(--shadow-card);
}
.lgpg .ac-cap-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
}
.lgpg .ac-cap-top .wd-svc-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  margin: 0;
}
.lgpg .ac-cap-top h4 { margin: 0; }
.lgpg .ac-cap h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.lgpg .ac-cap p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .ac-energy {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  padding: 64px 0;
  text-align: center;
}
.lgpg .ac-energy h2 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.lgpg .ac-energy p {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto 26px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
}
@media (max-width: 1024px) {
.lgpg .ac-stats { grid-template-columns: 1fr 1fr; }
.lgpg .ac-serve-grid { grid-template-columns: 1fr; }
.lgpg .ac-seg { grid-template-columns: 1fr; gap: 28px; padding: 28px 26px; }
.lgpg .ac-cap-grid { grid-template-columns: 1fr; }
.lgpg .ac-energy h2 { font-size: 28px; }
.lgpg .section-title { font-size: 28px; }
}
@media (max-width: 600px) {
.lgpg .ac-stats { grid-template-columns: 1fr; }
.lgpg .ac-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 16px;
  }
}
/* ===== lead-gen-styles.css (scoped) ===== */

/* ---------- Hero image slot (no lead-gen photo on file yet) ---------- */
.lgpg .dr2-hero-visual image-slot {
  position: relative;
  z-index: 2;
  display: block;
  width: 88%;
  margin-left: auto;
  aspect-ratio: 600 / 396;
  border-radius: 18px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px));
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}

/* ---------- Image slots inside notched photo stages ---------- */
.lgpg .dr2-photo-stage image-slot {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 600 / 459;
  border-radius: 18px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 44px 100%, 0 calc(100% - 44px));
}
.lgpg .dr2-photo-stage.notch-tr image-slot {
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
}

/* ---------- Definition cards (What is Lead Gen / SEO Lead Gen) ---------- */
.lgpg .lg-def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.lgpg .lg-def-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}
.lgpg .lg-def-card .eyebrow { display: block; margin-bottom: 10px; }
.lgpg .lg-def-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.lgpg .lg-def-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.lgpg .lg-def-card p + p { margin-top: 14px; }

/* ---------- Inbound funnel card (navy band) ---------- */
.lgpg .lg-funnel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 18px 30px;
  display: flex;
  flex-direction: column;
}
.lgpg .lg-funnel-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
}
.lgpg .lg-funnel-step + .lg-funnel-step {
  border-top: 1px dashed rgba(255, 255, 255, .16);
}
.lgpg .lg-funnel-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(43, 166, 255, .22);
  color: var(--blue-400);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lgpg .lg-funnel-step h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lgpg .lg-funnel-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .7);
}

/* ---------- Strategy closing note ---------- */
.lgpg .lg-note {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.lgpg .lg-note strong { color: var(--ink); font-weight: 700; }

/* ---------- Client logo slots ---------- */
.lgpg .lg-client-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 340px));
  justify-content: center;
  gap: 28px;
}
.lgpg .lg-client-slot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lgpg .lg-client-slot image-slot,
.lgpg .lg-client-logo {
  display: block;
  width: 100%;
  height: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.lgpg .lg-client-logo {
  object-fit: contain;
  padding: 18px 24px;
}
.lgpg .lg-client-domain {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ---------- Other components grid ---------- */
.lgpg .lg-other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lgpg .lg-other-grid .value-card h3 { font-size: 20px; }
.lgpg .lg-other-grid .value-card p { font-size: 14.5px; }
.lgpg .lg-other-grid .value-card p + p { margin-top: 12px; }

/* ---------- Contact row in form section ---------- */
.lgpg .lg-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 22px;
}
.lgpg .lg-contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-700);
  text-decoration: none;
}
.lgpg .lg-contact-row a:hover { text-decoration: underline; }
.lgpg .lg-contact-row svg { flex-shrink: 0; }

/* ---------- Hero visual: lead flow panel ---------- */
.lgpg .lg-hv-leads {
  position: relative;
  padding: 16px 0 48px;
}
.lgpg .lg-hv-panel {
  width: min(400px, 88%);
  margin-left: auto;
  background: #fff;
  border-radius: 18px;
  padding: 24px 24px 20px;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, .5);
}
.lgpg .lg-hv-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lgpg .lg-hv-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.lgpg .lg-hv-pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: rgba(31, 155, 240, .12);
  padding: 4px 10px;
  border-radius: 999px;
}
.lgpg .lg-hv-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
  margin-top: 22px;
}
.lgpg .lg-hv-bars span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: rgba(31, 155, 240, .16);
}
.lgpg .lg-hv-bars span.hot {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
}
.lgpg .lg-hv-baseline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
}
.lgpg .lg-hv-baseline .up { color: var(--blue-700); }
.lgpg .lg-hv-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 8px 18px rgba(14, 26, 45, .14), 0 28px 56px -12px rgba(14, 26, 45, .5);
}
.lgpg .lg-hv-note strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.lgpg .lg-hv-note .sub {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.lgpg .lg-hv-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
}
.lgpg .lg-hv-note.n1 { left: -8px; top: 26%; }
.lgpg .lg-hv-note.n2 { left: 36px; bottom: 10px; }

/* ---------- Hero visual: photo only ---------- */
.lgpg .lg-hv-photo image-slot {
  width: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
.lgpg .lg-def-grid { grid-template-columns: 1fr; }
.lgpg .lg-other-grid { grid-template-columns: 1fr; }
.lgpg .lg-client-slots { grid-template-columns: 1fr; }
.lgpg .dr2-hero-visual image-slot { width: 100%; }
}

/* ===== Responsive fix: inline grid-template-columns removed from the markup ===== */
.lgpg .lg-two-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .lgpg .lg-two-grid { grid-template-columns: 1fr; } }

/* ===== Continuum case study: real HTML Before/After labels =====
   The old image had these words baked in as BLACK text on a transparent background, so on
   the navy card they were unreadable and left a white anti-aliasing halo. The artwork now
   ships with that text erased and the labels are rendered here instead - crisp at any size. */
.lgpg .wd-case-shot .lg-ba-wrap {
  position: relative;
  width: 92%;
  margin: 0 auto;
  container-type: inline-size;
  z-index: 2;
}
.lgpg .wd-case-shot .lg-ba-wrap img { width: 100%; height: auto; display: block; }
.lgpg .lg-ba {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
  pointer-events: none;
  font-size: 22px;      /* fallback for browsers without container queries */
  font-size: 4.6cqw;    /* scales exactly with the artwork */
}
/* positions match where the words sat in the original artwork */
.lgpg .lg-ba-before { left: 6%;    top: 1.2%; }
.lgpg .lg-ba-after  { left: 71.3%; top: 28.6%; }
