/* ── City Landing Page Styles ────────────────────────────────────────────── */
/* Dark-hero, calculator-first conversion pages for geo-targeted SEO.       */
/* Used alongside shared.css (nav, footer, buttons).                        */

/* ── Base ─────────────────────────────────────────────────────────────── */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'IBM Plex Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  color:#E2E8F0;background:#080E18;line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
button,a,input,select{min-height:48px}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.city-hero{
  min-height:100svh;display:flex;align-items:center;justify-content:center;
  padding:100px 24px 48px;
  background:radial-gradient(ellipse at 50% 20%,#0F2847 0%,#080E18 70%);
  position:relative;overflow:hidden;
}
.city-hero::before{
  content:'';position:absolute;top:-40%;left:-20%;width:140%;height:140%;
  background:radial-gradient(circle at 30% 30%,rgba(37,99,235,0.08) 0%,transparent 60%);
  pointer-events:none;
}
.city-hero-inner{
  max-width:1100px;width:100%;margin:0 auto;
  display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:center;
  position:relative;z-index:1;
}
.city-hero-copy h1{
  font-size:2rem;font-weight:800;color:white;line-height:1.2;margin-bottom:12px;
}
.city-hero-copy h1 em{font-style:normal;color:#60A5FA}
.city-hero-sub{
  font-size:1rem;color:#94A3B8;max-width:480px;line-height:1.6;margin-bottom:24px;
}
.city-hero-pills{
  display:flex;flex-wrap:wrap;gap:10px;
}
.city-hero-pill{
  display:inline-flex;align-items:center;gap:5px;
  padding:6px 14px;border-radius:20px;font-size:0.78rem;font-weight:600;
  background:rgba(37,99,235,0.12);color:#60A5FA;border:1px solid rgba(37,99,235,0.2);
}

/* ── Calculator Card (in hero) ────────────────────────────────────────── */
.city-calc{
  background:white;border-radius:20px;padding:28px 24px;
  box-shadow:0 12px 48px rgba(0,0,0,0.15);border:1px solid rgba(255,255,255,0.1);
}
.city-calc h3{
  font-size:1.1rem;font-weight:700;color:#0B1F3A;margin-bottom:4px;text-align:center;
}
.city-calc .calc-note{
  font-size:0.78rem;color:#64748B;text-align:center;margin-bottom:16px;
}
.city-calc label{
  display:block;font-weight:600;font-size:0.85rem;color:#0B1F3A;
  margin-bottom:5px;margin-top:14px;
}
.city-calc label:first-of-type{margin-top:0}
.city-calc select,
.city-calc input[type="text"]{
  width:100%;padding:13px 14px;border:2px solid #E2E8F0;border-radius:12px;
  font-size:1rem;font-family:inherit;background:#FAFCFE;color:#1E293B;
  transition:border-color 0.2s;-webkit-appearance:none;
}
.city-calc select:focus,
.city-calc input:focus{outline:none;border-color:#2563EB}

.city-calc-results{
  display:none;margin-top:20px;padding:20px;border-radius:14px;
  background:linear-gradient(135deg,#EFF6FF,#DBEAFE);border:2px solid #93C5FD;
  animation:citySlideUp 0.4s ease;
}
.city-calc-results.visible{display:block}
@keyframes citySlideUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}

.calc-result-hero{text-align:center;margin-bottom:16px}
.calc-result-hero .amount{font-size:2.4rem;font-weight:800;color:#1D4ED8}
.calc-result-hero .label{font-size:0.82rem;font-weight:500;color:#475569;margin-top:2px}

.calc-result-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-bottom:16px}
.calc-result-item{text-align:center;padding:10px 6px;background:white;border-radius:8px}
.calc-result-item .val{font-size:1rem;font-weight:700;color:#0B1F3A}
.calc-result-item .lbl{font-size:0.68rem;color:#64748B;font-weight:500}

.calc-order-btn{
  display:flex;align-items:center;justify-content:center;
  width:100%;padding:14px;border-radius:12px;border:none;
  background:linear-gradient(135deg,#2563EB,#1D4ED8);color:white;
  font-weight:700;font-size:0.95rem;text-decoration:none;cursor:pointer;
  box-shadow:0 4px 16px rgba(37,99,235,0.3);transition:all 0.2s;
}
.calc-order-btn:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(37,99,235,0.4)}
.calc-disclaimer{margin:8px 0 0;font-size:0.68rem;color:#94A3B8;text-align:center}
.calc-disclaimer a{color:#64748B}

/* ── Trust Strip ──────────────────────────────────────────────────────── */
.city-trust-strip{
  background:#0B1220;border-top:1px solid rgba(37,99,235,0.1);
  border-bottom:1px solid rgba(37,99,235,0.1);
  padding:16px 24px;
}
.city-trust-strip-inner{
  max-width:900px;margin:0 auto;
  display:flex;flex-wrap:wrap;justify-content:center;gap:20px;
}
.city-trust-strip-inner span{
  display:flex;align-items:center;gap:6px;
  font-size:0.82rem;font-weight:600;color:#94A3B8;white-space:nowrap;
}
.city-trust-strip-inner svg{flex-shrink:0;color:#60A5FA}

/* ── Light Sections ───────────────────────────────────────────────────── */
.city-section-light{background:#F8FAFC;padding:56px 24px;color:#1E293B}
.city-section-white{background:#FFFFFF;padding:56px 24px;color:#1E293B}
.city-section-dark{background:#080E18;padding:56px 24px;color:#E2E8F0}

.city-section-inner{max-width:900px;margin:0 auto}

.city-section-light h2,
.city-section-white h2{
  font-size:1.6rem;font-weight:800;color:#0B1F3A;margin-bottom:16px;
}
.city-section-dark h2{
  font-size:1.6rem;font-weight:800;color:white;margin-bottom:16px;
}

/* ── Local Proof ──────────────────────────────────────────────────────── */
.local-proof{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start;
}
.local-stats{list-style:none;padding:0}
.local-stats li{
  padding:12px 0;border-bottom:1px solid #E2EAF0;
  font-size:0.95rem;color:#334155;line-height:1.5;
}
.local-stats li:last-child{border-bottom:none}
.local-stats strong{color:#0B1F3A;font-weight:700}
.local-example{
  background:linear-gradient(135deg,#EFF6FF,#DBEAFE);
  border:1px solid #BFDBFE;border-radius:14px;padding:24px;
}
.local-example .example-label{
  font-size:0.78rem;font-weight:700;text-transform:uppercase;
  letter-spacing:0.05em;color:#2563EB;margin-bottom:8px;
}
.local-example p{font-size:0.95rem;color:#334155;line-height:1.6;margin:0}

/* ── What You Get ─────────────────────────────────────────────────────── */
.what-you-get{
  display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:20px;
}
.wyg-item{
  display:flex;align-items:flex-start;gap:12px;
  padding:16px;border-radius:10px;background:#F1F5F9;
}
.wyg-item svg{flex-shrink:0;color:#2563EB;margin-top:2px}
.wyg-item .wyg-text{font-size:0.92rem;color:#334155;line-height:1.5}
.wyg-item .wyg-text strong{color:#0B1F3A}

.wyg-price{
  margin-top:20px;text-align:center;
  font-size:1.1rem;color:#0B1F3A;font-weight:700;
}
.wyg-price span{color:#2563EB}

.pdf-cta{
  margin-top:20px;text-align:center;
}
.pdf-cta a{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 28px;border-radius:10px;
  background:#0B1F3A;color:white;font-weight:600;font-size:0.92rem;
  transition:all 0.2s;
}
.pdf-cta a:hover{background:#1A3A5C}

/* ── Comparison Table ─────────────────────────────────────────────────── */
.compare-table{
  width:100%;border-collapse:collapse;margin-top:20px;
  border-radius:12px;overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,0.04);
}
.compare-table th{
  padding:14px 20px;text-align:left;font-size:0.82rem;font-weight:700;
  text-transform:uppercase;letter-spacing:0.05em;
}
.compare-table th:first-child{background:#F8FAFC;color:#64748B}
.compare-table th:nth-child(2){background:#F1F5F9;color:#64748B}
.compare-table th:nth-child(3){background:#EFF6FF;color:#2563EB}
.compare-table td{
  padding:14px 20px;font-size:0.92rem;border-top:1px solid #E2EAF0;
}
.compare-table td:first-child{color:#64748B;font-weight:500;background:#FAFCFE}
.compare-table td:nth-child(2){color:#475569;background:#FAFCFE}
.compare-table td:nth-child(3){color:#0B1F3A;font-weight:600;background:#F0F7FF}

/* ── Video Section ────────────────────────────────────────────────────── */
.video-embed{
  max-width:640px;margin:20px auto 0;border-radius:14px;overflow:hidden;
  box-shadow:0 8px 32px rgba(0,0,0,0.1);
}
.video-embed-ratio{padding-bottom:56.25%;position:relative;height:0;background:#0B1F3A}
.video-embed-ratio iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0}

/* ── Founder Section ──────────────────────────────────────────────────── */
.founder-block{
  max-width:640px;margin:0 auto;
  border-left:3px solid #2563EB;padding-left:24px;
}
.founder-block p{font-size:0.95rem;color:#475569;line-height:1.7;margin-bottom:12px}
.founder-block p:last-child{margin-bottom:0}

/* ── Internal Links ───────────────────────────────────────────────────── */
.internal-links{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:20px;
}
.internal-link{
  display:flex;align-items:center;gap:10px;
  padding:14px 18px;border-radius:10px;background:white;
  border:1px solid #E2EAF0;color:#0B1F3A;font-weight:600;font-size:0.9rem;
  transition:all 0.2s;
}
.internal-link:hover{border-color:#2563EB;box-shadow:0 2px 8px rgba(37,99,235,0.1)}
.internal-link svg{flex-shrink:0;color:#2563EB}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.city-faq-list{max-width:720px;margin:20px auto 0}
.city-faq-item{border-bottom:1px solid #E2EAF0}
.city-faq-q{
  width:100%;text-align:left;background:none;border:none;
  padding:18px 0;font-size:1rem;font-weight:600;color:#0B1F3A;
  cursor:pointer;display:flex;justify-content:space-between;align-items:center;
  font-family:inherit;line-height:1.4;
}
.city-faq-q::after{
  content:'+';font-size:1.3rem;color:#94A3B8;transition:transform 0.2s;
  flex-shrink:0;margin-left:16px;
}
.city-faq-item.open .city-faq-q::after{content:'\2212'}
.city-faq-a{
  max-height:0;overflow:hidden;transition:max-height 0.3s ease;
}
.city-faq-item.open .city-faq-a{max-height:400px}
.city-faq-a p{
  padding:0 0 18px;font-size:0.92rem;color:#475569;line-height:1.6;
}

/* ── Final CTA ────────────────────────────────────────────────────────── */
.final-cta{text-align:center}
.final-cta h2{margin-bottom:8px}
.final-cta p{
  color:#94A3B8;font-size:0.95rem;max-width:480px;margin:0 auto 24px;
}
.final-cta .calc-order-btn{
  max-width:400px;margin:0 auto;font-size:1.05rem;padding:16px;
}

/* ── Breadcrumb ───────────────────────────────────────────────────────── */
.city-breadcrumb{
  max-width:1100px;margin:0 auto;padding:12px 24px 0;
  font-size:0.78rem;color:#64748B;position:relative;z-index:1;
}
.city-breadcrumb a{color:#94A3B8;text-decoration:none}
.city-breadcrumb a:hover{color:#60A5FA}
.city-breadcrumb span{margin:0 6px;color:#475569}

/* ── Sticky Mobile CTA ────────────────────────────────────────────────── */
.city-sticky-cta{
  position:fixed;bottom:0;left:0;right:0;z-index:999;
  background:rgba(8,14,24,0.95);backdrop-filter:blur(12px);
  padding:12px 16px;border-top:1px solid rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;
}
.city-sticky-cta a{
  display:flex;align-items:center;justify-content:center;
  width:100%;max-width:400px;padding:14px 24px;border-radius:12px;
  background:linear-gradient(135deg,#2563EB,#1D4ED8);color:white;
  font-weight:700;font-size:0.95rem;
  box-shadow:0 4px 20px rgba(37,99,235,0.4);transition:all 0.2s;
}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media(max-width:768px){
  body{padding-bottom:72px}

  .city-hero{padding:88px 16px 32px;min-height:auto}
  .city-hero-inner{grid-template-columns:1fr;gap:24px;text-align:center}
  .city-hero-copy h1{font-size:1.5rem}
  .city-hero-sub{margin:0 auto 20px}
  .city-hero-pills{justify-content:center}

  .city-calc{padding:20px 16px}
  .calc-result-grid{grid-template-columns:1fr 1fr 1fr}

  .city-section-light,.city-section-white,.city-section-dark{padding:40px 16px}

  .local-proof{grid-template-columns:1fr;gap:24px}
  .what-you-get{grid-template-columns:1fr}
  .internal-links{grid-template-columns:1fr}

  .compare-table{font-size:0.85rem}
  .compare-table th,.compare-table td{padding:10px 12px}

  .founder-block{padding-left:16px}
}

@media(min-width:768px){
  .city-sticky-cta{display:none}
}

@media(min-width:1024px){
  .city-hero-copy h1{font-size:2.4rem}
  .city-hero-inner{grid-template-columns:1fr 440px}
}

/* ── State Hub Overrides ──────────────────────────────────────────────── */
.state-hero{
  background:#F8FAFC;padding:120px 24px 56px;text-align:center;color:#1E293B;
}
.state-hero h1{
  font-size:2rem;font-weight:800;color:#0B1F3A;margin-bottom:12px;
}
.state-hero p{
  font-size:1rem;color:#475569;max-width:640px;margin:0 auto 24px;line-height:1.6;
}

.state-example{
  max-width:640px;margin:0 auto 32px;
  padding:20px 24px;border-radius:12px;
  background:linear-gradient(135deg,#EFF6FF,#DBEAFE);
  border:1px solid #BFDBFE;text-align:left;
}
.state-example .label{
  font-size:0.75rem;font-weight:700;text-transform:uppercase;
  letter-spacing:0.05em;color:#2563EB;margin-bottom:6px;
}
.state-example p{font-size:0.92rem;color:#334155;line-height:1.5;margin:0}
.state-example .savings{
  font-size:1rem;font-weight:700;color:#0B1F3A;margin-top:8px;
}

.state-cta-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 32px;border-radius:12px;
  background:linear-gradient(135deg,#2563EB,#1D4ED8);color:white;
  font-weight:700;font-size:1rem;
  box-shadow:0 4px 16px rgba(37,99,235,0.3);transition:all 0.2s;
}
.state-cta-btn:hover{transform:translateY(-1px)}

.city-cards{
  display:grid;grid-template-columns:1fr 1fr;gap:20px;
  max-width:800px;margin:32px auto 0;
}
.city-card{
  background:white;border-radius:14px;padding:24px;
  border:1px solid #E2EAF0;transition:all 0.2s;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.city-card:hover{border-color:#2563EB;box-shadow:0 4px 16px rgba(37,99,235,0.1)}
.city-card h3{font-size:1.1rem;font-weight:700;color:#0B1F3A;margin-bottom:8px}
.city-card .meta{font-size:0.85rem;color:#64748B;margin-bottom:4px}
.city-card .savings{font-size:1rem;font-weight:700;color:#2563EB;margin-bottom:12px}
.city-card .card-link{
  font-size:0.88rem;font-weight:600;color:#2563EB;
}

.state-blog-links{
  max-width:640px;margin:32px auto 0;text-align:center;
}
.state-blog-links h3{
  font-size:1.1rem;font-weight:700;color:#0B1F3A;margin-bottom:12px;
}
.state-blog-links a{
  display:block;padding:8px 0;font-size:0.92rem;color:#2563EB;font-weight:500;
}
.state-blog-links a:hover{text-decoration:underline}

@media(max-width:768px){
  .state-hero{padding:100px 16px 40px}
  .state-hero h1{font-size:1.5rem}
  .city-cards{grid-template-columns:1fr}
}

/* ── Scroll Reveal ────────────────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}


/* ================================================================
   STATE HUB v2 — Rich informational landing pages
   Prefixed sh- to avoid collision with city page styles
   ================================================================ */

/* ── Hero (2-col: text left, photo right) ── */
.sh-hero {
  background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
  color: white;
  padding: 100px 24px 56px;
}
.sh-hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sh-breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.sh-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.sh-breadcrumb a:hover { color: white; }
.sh-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.sh-hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.sh-hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2563EB;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.sh-hero-btn:hover { background: #1D4ED8; transform: translateY(-1px); }
.sh-hero-photo img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ── Trust Strip ── */
.sh-trust-strip {
  background: #0a1929;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
}
.sh-trust-strip-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.sh-trust-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.sh-trust-strip svg { color: #2563EB; flex-shrink: 0; }
@media (max-width: 768px) {
  .sh-trust-strip-inner { gap: 12px 24px; justify-content: flex-start; }
  .sh-trust-strip span { font-size: 0.78rem; }
}

/* ── Shared section rhythm ── */
.sh-section { padding: 56px 24px; }
.sh-section-gray { background: #F8FAFC; }
.sh-section-inner { max-width: 820px; margin: 0 auto; }
.sh-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0B1F3A;
  margin-bottom: 24px;
}

/* ── Intro + Example ── */
.sh-intro { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.sh-intro-text p { font-size: 0.95rem; line-height: 1.75; color: #334155; margin-bottom: 16px; }
.sh-intro-example {
  background: #F0F5FA;
  border: 1px solid #D4E0ED;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 80px;
}
.sh-example-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563EB;
  margin-bottom: 8px;
}
.sh-intro-example p { font-size: 0.9rem; line-height: 1.6; color: #334155; margin: 0 0 8px; }
.sh-example-savings { font-weight: 700; color: #0B1F3A; margin-top: 8px; }

/* ── Body text (how it works section) ── */
.sh-body-text { font-size: 0.95rem; line-height: 1.75; color: #334155; margin-bottom: 16px; }
.sh-body-text:last-child { margin-bottom: 0; }

/* ── Numeric Example ── */
.sh-numeric-example {
  background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
  border-radius: 14px;
  padding: 32px;
  color: white;
}
.sh-ne-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.sh-ne-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}
.sh-ne-item { text-align: center; }
.sh-ne-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.sh-ne-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.sh-ne-footnote {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}

/* ── Intro photo (after first paragraph) ── */
.sh-intro-photo {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin: 8px 0 16px;
  object-fit: cover;
}

/* ── "Who this is for" block ── */
.sh-who-for {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
}
.sh-who-for strong { display: block; color: rgba(255,255,255,0.9); margin-bottom: 10px; font-size: 0.92rem; }
.sh-who-for ul { list-style: none; padding: 0; margin: 0; }
.sh-who-for li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding: 4px 0 4px 16px;
  position: relative;
}
.sh-who-for li::before { content: "\2013"; position: absolute; left: 0; color: rgba(255,255,255,0.4); }

/* ── Inline CTA (after numeric example) ── */
.sh-inline-cta {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748B;
  text-align: center;
}
.sh-inline-cta a { color: #2563EB; font-weight: 600; text-decoration: none; }
.sh-inline-cta a:hover { text-decoration: underline; }

/* ── Investor Notes (accent-bordered list) ── */
.sh-notes { display: flex; flex-direction: column; gap: 20px; }
.sh-note {
  border-left: 3px solid #2563EB;
  padding-left: 20px;
}
.sh-note-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 4px;
}
.sh-note p { font-size: 0.9rem; line-height: 1.65; color: #475569; margin: 0; }

/* ── Investor Notes with Sticky Video ── */
.sh-notes-with-video {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.sh-sticky-video {
  position: sticky;
  top: 80px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
}
.sh-sv-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2563EB;
  margin-bottom: 10px;
}
.sh-sv-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.sh-sv-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.sh-sv-caption {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.5;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .sh-notes-with-video {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sh-sticky-video {
    position: static;
  }
}

/* ── Featured Markets (horizontal media cards) ── */
.sh-markets { display: flex; flex-direction: column; gap: 32px; }
.sh-market {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
.sh-market img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
.sh-market-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 8px;
}
.sh-market-text h3 a { color: inherit; text-decoration: none; }
.sh-market-text h3 a:hover { color: #2563EB; }
.sh-market-text p { font-size: 0.9rem; line-height: 1.65; color: #475569; margin: 0 0 12px; }
.sh-market-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
}
.sh-market-link:hover { text-decoration: underline; }

/* ── Property Types (compact list) ── */
.sh-prop-types { display: flex; flex-direction: column; gap: 20px; }
.sh-prop-type { padding-bottom: 16px; border-bottom: 1px solid #E2E8F0; }
.sh-prop-type:last-child { border-bottom: none; padding-bottom: 0; }
.sh-pt-name { font-size: 0.95rem; font-weight: 700; color: #0B1F3A; margin-bottom: 4px; }
.sh-pt-link { color: #0B1F3A; text-decoration: none; border-bottom: 1px dotted #2563EB; }
.sh-pt-link:hover { color: #2563EB; border-bottom-style: solid; }
.sh-pt-context { font-weight: 400; color: #64748B; font-size: 0.88rem; }
.sh-prop-type p { font-size: 0.9rem; line-height: 1.6; color: #475569; margin: 0; }

/* ── When It Makes Sense (two-column) ── */
.sh-timing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.sh-timing-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2563EB;
}
.sh-timing-no .sh-timing-label { border-bottom-color: #94A3B8; }
.sh-timing ul { list-style: none; padding: 0; margin: 0; }
.sh-timing li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  padding: 8px 0;
  border-bottom: 1px solid #F1F5F9;
}
.sh-timing li:last-child { border-bottom: none; }

/* ── Blog + Internal Links ── */
.sh-blog-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.sh-blog-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: #2563EB;
  text-decoration: none;
  font-weight: 500;
}
.sh-blog-link:hover { text-decoration: underline; }
.sh-blog-link svg { flex-shrink: 0; color: #2563EB; }
.sh-internal-links { display: flex; flex-wrap: wrap; gap: 12px; }
.sh-internal-links a {
  font-size: 0.85rem;
  color: #64748B;
  text-decoration: none;
  padding: 6px 14px;
  background: #F1F5F9;
  border-radius: 6px;
  transition: all 0.2s;
}
.sh-internal-links a:hover { background: #E2E8F0; color: #0B1F3A; }

/* ── CTA ── */
.sh-cta {
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
  color: white;
}
.sh-cta h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; color: white; }
.sh-cta p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.sh-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: #2563EB;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.sh-cta-btn:hover { background: #1D4ED8; transform: translateY(-1px); }
.sh-cta-sub { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 16px; }
.sh-directory-intro { font-size: 0.92rem; color: #64748B; margin-bottom: 24px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .sh-hero { padding: 100px 16px 48px; }
  .sh-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .sh-hero-photo img { max-height: 240px; }
  .sh-intro { grid-template-columns: 1fr; gap: 24px; }
  .sh-intro-example { position: static; }
  .sh-market { grid-template-columns: 1fr; }
  .sh-market img { height: 180px; }
  .sh-timing { grid-template-columns: 1fr; gap: 24px; }
  .sh-section { padding: 40px 16px; }
}
@media (max-width: 480px) {
  .sh-hero { padding: 88px 12px 36px; }
  .sh-hero h1 { font-size: 1.6rem; }
  .sh-section h2 { font-size: 1.3rem; }
}
