/* ═══════════════════════════════════════════════════════════════════
   v3.css  —  Shared layout + component styles for the v3 design system
   Used by homepage_v3.html AND v3_base.html (all marketing pages)
   ═══════════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

/* ── Palette ── */
:root {
  --v3-navy:        #0a1628;
  --v3-navy-light:  #132036;
  --v3-gold:        #c9973a;
  --v3-gold-hover:  #e0aa49;
  --v3-right-bg:    #f8f9fa;
  --v3-right-text:  #1a1a2e;
  --v3-right-mute:  #5a5f7a;
  --v3-sidebar-bg:  #f0f4f8;
  --v3-sidebar-txt: #1a2840;
  --v3-sidebar-w:   256px;
}

/* ── Body ── */
body.v3-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--v3-right-bg);
  color: var(--v3-right-text);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
}

/* ── Main wrapper — fills space below the shared navbar ── */
.v3-wrapper {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* ── LEFT SIDEBAR ── */
.v3-sidebar {
  width: var(--v3-sidebar-w);
  flex-shrink: 0;
  background: var(--v3-sidebar-bg);
  border-right: 1px solid rgba(10,22,40,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.v3-sidebar-top {
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  flex-shrink: 0;
}

.v3-autoplay-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(201,151,58,0.10);
  border: 1px solid rgba(201,151,58,0.35);
  color: #8a6420;
  border-radius: 20px;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.v3-autoplay-btn:hover {
  background: rgba(201,151,58,0.20);
  border-color: var(--v3-gold);
}
.v3-autoplay-icon { font-size: 0.8rem; }

/* Sidebar brand (shown on non-homepage pages) */
.v3-sidebar-brand {
  display: flex; align-items: center; gap: 7px;
  text-decoration: none; padding: 2px 0;
}
.v3-sidebar-brand img { height: 30px; width: auto; }
.v3-sidebar-brand span { font-size: 0.88rem !important; }

/* Nav list */
.v3-nav {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(10,22,40,0.1) transparent;
}
.v3-nav::-webkit-scrollbar { width: 3px; }
.v3-nav::-webkit-scrollbar-track { background: transparent; }
.v3-nav::-webkit-scrollbar-thumb { background: rgba(10,22,40,0.12); border-radius: 3px; }

.v3-nav-item {
  display: block; width: 100%;
  text-align: left; border: none;
  background: none; cursor: pointer;
  padding: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.v3-nav-item:hover { background: rgba(10,22,40,0.06); }
.v3-nav-item.active {
  border-left-color: var(--v3-gold);
  border-left-width: 5px;
  background: rgba(201,151,58,0.20);
  box-shadow: inset 0 1px 0 rgba(201,151,58,0.20), inset 0 -1px 0 rgba(201,151,58,0.20);
}
.v3-nav-item-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 13px;
}
.v3-nav-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.4px;
  color: var(--v3-gold); opacity: 0.8;
  min-width: 18px;
  transition: opacity 0.2s;
}
.v3-nav-item.active .v3-nav-num { opacity: 1; color: #7a5010; }
.v3-nav-label {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.88rem; font-weight: 600; line-height: 1.25;
  color: rgba(26,40,64,0.60);
  transition: color 0.2s, font-weight 0.1s;
}
.v3-nav-item:hover .v3-nav-label { color: rgba(26,40,64,0.95); }
.v3-nav-item.active .v3-nav-label { color: var(--v3-navy); font-weight: 800; }

/* Referrals link */
.v3-nav-link {
  display: block; width: 100%;
  text-align: left; border: none;
  background: none; cursor: pointer;
  padding: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.v3-nav-link:hover { background: rgba(10,22,40,0.04); border-left-color: rgba(201,151,58,0.4); }
.v3-nav-link .v3-nav-label { color: rgba(26,40,64,0.70); }
.v3-nav-link:hover .v3-nav-label { color: rgba(26,40,64,0.95); }
.v3-nav-link .v3-nav-num { color: var(--v3-gold); opacity: 0.8; }
.v3-nav-link.active {
  border-left-color: var(--v3-gold);
  border-left-width: 5px;
  background: rgba(201,151,58,0.20);
  box-shadow: inset 0 1px 0 rgba(201,151,58,0.20), inset 0 -1px 0 rgba(201,151,58,0.20);
}
.v3-nav-link.active .v3-nav-label { color: var(--v3-navy); font-weight: 800; }
.v3-nav-link.active .v3-nav-num { opacity: 1; color: #7a5010; }

/* Progress bar strip */
.v3-progress-strip {
  position: absolute; left: 3px; right: 0; bottom: 0;
  height: 2px; background: transparent;
}
.v3-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--v3-gold), var(--v3-gold-hover));
  border-radius: 0 2px 2px 0;
  transition: none;
}
.v3-progress-fill.running {
  width: 100%;
  transition: width 4s linear;
}

/* Sidebar footer */
.v3-sidebar-footer {
  flex-shrink: 0;
  padding: 10px 14px;
  border-top: 1px solid rgba(10,22,40,0.08);
}
.v3-sidebar-phone {
  display: block;
  color: #5a6878;
  font-size: 0.78rem;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.v3-sidebar-phone:hover { color: var(--v3-gold); }
.v3-sidebar-copyright {
  color: #8a96a8;
  font-size: 0.7rem;
}

/* ── RIGHT CONTENT PANEL ── */
.v3-content {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  background: var(--v3-right-bg);
  position: relative;
}

/* Sections (homepage: one shown at a time) */
.v3-section {
  display: none;
  padding: 24px 40px 32px;
  animation: v3FadeIn 0.3s ease;
}
.v3-section.active { display: block; }

@keyframes v3FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Non-homepage page content wrapper */
.v3-page-wrap {
  padding: 18px 36px 24px;
}

/* Section typography */
.v3-section-eyebrow {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--v3-gold);
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.25);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.v3-section h1, .v3-page-wrap h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--v3-right-text);
  margin-bottom: 14px;
  max-width: 700px;
}
.v3-section h1 em { font-style: normal; color: var(--v3-gold); }
.v3-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 700; line-height: 1.2;
  color: var(--v3-right-text);
  margin-bottom: 12px;
  max-width: 680px;
}
.v3-section p {
  font-size: 0.9rem; line-height: 1.65;
  color: var(--v3-right-mute);
  max-width: 640px;
  margin-bottom: 14px;
}
.v3-section p strong { color: var(--v3-right-text); }
.v3-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--v3-gold), var(--v3-gold-hover));
  border-radius: 3px; margin: 14px 0;
}

/* ─ CTA Buttons ─ */
.v3-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s;
  white-space: nowrap;
}
.v3-btn.primary {
  background: #C0392B;
  color: #fff;
  border: 1px solid #A93226;
  box-shadow: 0 3px 14px rgba(192,57,43,0.35);
}
.v3-btn.primary:hover {
  background: #A93226;
  box-shadow: 0 5px 20px rgba(192,57,43,0.5);
  transform: translateY(-1px);
}
.v3-btn.outline {
  background: transparent;
  border: 2px solid var(--v3-gold);
  color: #8a6420;
}
.v3-btn.outline:hover {
  background: rgba(201,151,58,0.08);
}
.v3-btn.v3-btn-red {
  background: #C0392B;
  color: #fff;
  border: 1px solid #A93226;
  box-shadow: 0 3px 12px rgba(192,57,43,0.35);
  font-size: 0.95rem;
  padding: 13px 26px;
}
.v3-btn.v3-btn-red:hover {
  background: #A93226;
  box-shadow: 0 5px 18px rgba(192,57,43,0.5);
  transform: translateY(-2px);
}
.v3-btn-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 20px;
}

/* ─ Trust pills ─ */
.v3-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.v3-trust-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.76rem; font-weight: 600;
  color: #2d6a40;
  background: #edf7f1; border: 1px solid #b6dfc5;
  padding: 4px 11px; border-radius: 20px;
}

/* ─ Stat cards ─ */
.v3-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px; margin: 20px 0;
  max-width: 680px;
}
.v3-stat-card {
  background: #fff; border: 1px solid #e4e0d8;
  border-radius: 10px; padding: 18px 14px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10,22,40,0.06);
}
.v3-stat-icon { font-size: 1.6rem; margin-bottom: 7px; }
.v3-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--v3-navy); line-height: 1.1;
}
.v3-stat-label {
  font-size: 0.76rem; color: var(--v3-right-mute);
  margin-top: 3px; line-height: 1.35;
}

/* ─ Before/After grid ─ */
.v3-ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 18px 0; max-width: 720px;
}
.v3-ba-card {
  border-radius: 10px; padding: 20px 18px;
}
.v3-ba-card.before {
  background: #fff5f5; border: 1px solid #f5c6c6;
}
.v3-ba-card.after {
  background: #f0faf3; border: 1px solid #a8d8b4;
}
.v3-ba-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 10px; margin-bottom: 10px;
}
.before .v3-ba-badge { background: #f5c6c6; color: #7a1a1a; }
.after  .v3-ba-badge { background: #a8d8b4; color: #1a5a2a; }
.v3-ba-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 8px;
}
.before .v3-ba-card h3 { color: #7a1a1a; }
.after  .v3-ba-card h3 { color: #1a5a2a; }
.v3-ba-card ul {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
}
.v3-ba-card ul li {
  font-size: 0.82rem; display: flex; align-items: flex-start; gap: 7px;
  color: var(--v3-right-mute);
}
.v3-ba-card ul li::before { flex-shrink: 0; margin-top: 1px; }
.before ul li::before { content: "✗"; color: #c0392b; font-weight: 700; }
.after  ul li::before { content: "✓"; color: #27ae60; font-weight: 700; }

/* ─ Process steps ─ */
.v3-steps { display: flex; flex-direction: column; gap: 16px; margin: 18px 0; max-width: 600px; }
.v3-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.v3-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--v3-navy);
  color: var(--v3-gold);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.v3-step-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--v3-right-text); margin-bottom: 3px;
}
.v3-step-body p {
  font-size: 0.84rem; margin-bottom: 0;
  color: var(--v3-right-mute);
}

/* ─ Comparison table (v3 component) ─ */
.v3-compare-table {
  width: 100%; max-width: 680px;
  border-collapse: collapse; margin: 20px 0;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(10,22,40,0.08);
}
.v3-compare-table th {
  padding: 10px 14px; text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.4px;
}
.v3-compare-table th:first-child { background: #f0f0f5; color: #555; }
.v3-compare-table th.col-them { background: #ffeaea; color: #8a2020; }
.v3-compare-table th.col-us   { background: var(--v3-navy); color: var(--v3-gold); }
.v3-compare-table td {
  padding: 9px 14px;
  font-size: 0.84rem; color: var(--v3-right-mute);
  border-top: 1px solid #eee;
  background: #fff;
}
.v3-compare-table td:first-child { font-weight: 600; color: var(--v3-right-text); }
.v3-compare-table td.col-them { color: #c0392b; }
.v3-compare-table td.col-us   { color: #27ae60; font-weight: 600; }
.v3-compare-table tr:last-child td { border-bottom: none; }

/* ─ FAQ accordion ─ */
.v3-faq-list { display: flex; flex-direction: column; gap: 9px; max-width: 660px; margin: 18px 0; }
.v3-faq-item {
  background: #fff; border: 1px solid #e4e0d8;
  border-radius: 8px; overflow: hidden;
}
.v3-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: none; border: none;
  text-align: left; cursor: pointer;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.92rem; font-weight: 700;
  color: var(--v3-right-text);
  gap: 10px;
}
.v3-faq-q:hover { background: #fafafa; }
.v3-faq-chevron { flex-shrink: 0; font-size: 0.8rem; color: var(--v3-gold); transition: transform 0.25s; }
.v3-faq-item.open .v3-faq-chevron { transform: rotate(180deg); }
.v3-faq-a {
  display: none;
  padding: 0 16px 13px;
  font-size: 0.87rem; line-height: 1.65;
  color: var(--v3-right-mute);
}
.v3-faq-item.open .v3-faq-a { display: block; }

/* ─ About section ─ */
.v3-about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; max-width: 720px;
  margin: 20px 0;
}
.v3-about-value {
  display: flex; gap: 12px; align-items: flex-start;
}
.v3-about-icon {
  font-size: 1.3rem; flex-shrink: 0; margin-top: 2px;
}
.v3-about-value h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.92rem; font-weight: 700;
  color: var(--v3-right-text); margin-bottom: 3px;
}
.v3-about-value p {
  font-size: 0.82rem; margin-bottom: 0;
}

/* ─ Contact section ─ */
.v3-contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; max-width: 680px; margin: 20px 0;
}
.v3-contact-card {
  background: #fff; border: 1px solid #e4e0d8;
  border-radius: 10px; padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(10,22,40,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.v3-contact-card:hover {
  box-shadow: 0 5px 18px rgba(10,22,40,0.1);
  transform: translateY(-2px);
}
.v3-contact-icon { font-size: 1.7rem; margin-bottom: 9px; }
.v3-contact-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--v3-right-text); margin-bottom: 5px;
}
.v3-contact-card p {
  font-size: 0.82rem; margin-bottom: 10px;
}
.v3-contact-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--v3-gold); font-weight: 700; font-size: 0.84rem;
  text-decoration: none;
}
.v3-contact-link:hover { color: #8a6420; }

/* ─ Hero section specific ─ */
.v3-hero-price {
  display: inline-flex; align-items: baseline; gap: 7px;
  background: rgba(201,151,58,0.08);
  border-left: 4px solid var(--v3-gold);
  border-radius: 0 7px 7px 0;
  padding: 10px 16px;
  margin: 18px 0;
}
.v3-hero-price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem; font-weight: 800; color: var(--v3-navy);
}
.v3-hero-price-note { font-size: 0.84rem; color: var(--v3-right-mute); }

/* ─ Footer inside right scroll panel ─ */
.v3-footer-wrap { margin-top: 24px; }
.v3-footer-wrap .hp2-footer { padding: 20px 20px 14px; }
.v3-footer-wrap .hp2-footer-inner { max-width: 100%; }
.v3-footer-wrap .hp2-footer-grid {
  grid-template-columns: 1.2fr 1.2fr 1.2fr 1.4fr;
  gap: 14px;
  margin-bottom: 14px;
}
.v3-footer-wrap .hp2-footer-col ul { columns: 2; column-gap: 8px; }
.v3-footer-wrap .hp2-footer-col ul li { margin-bottom: 3px; break-inside: avoid; }
.v3-footer-wrap .hp2-footer-col h4 { margin-bottom: 6px; font-size: 10px; }
.v3-footer-wrap .hp2-footer-col ul li a { font-size: 11px; }
.v3-footer-wrap .hp2-footer-tagline { font-size: 10px; margin-bottom: 2px; }
.v3-footer-wrap .hp2-footer-tx { font-size: 10px; margin-bottom: 5px; }
.v3-footer-wrap .hp2-footer-logo { font-size: 14px; margin-bottom: 3px; }
.v3-footer-wrap .hp2-footer-email { font-size: 10px; margin-bottom: 3px; }
.v3-footer-wrap .hp2-footer-notlaw { font-size: 9px; margin-top: 5px; }
.v3-footer-wrap .hp2-footer-divider { margin: 10px 0; }
.v3-footer-wrap .hp2-footer-bottom {
  padding-top: 8px;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}
.v3-footer-wrap .hp2-footer-copyright { font-size: 9px; line-height: 1.5; }
.v3-footer-wrap .hp2-footer-legal-links { font-size: 10px; white-space: nowrap; }
.v3-footer-wrap p.hp2-footer-email { line-height: 1.4; font-size: 10px; }

/* ─ Guarantee note ─ */
.v3-guarantee-note {
  font-size: 0.82rem !important;
  color: #2d6a40 !important;
  background: #edf7f1;
  border: 1px solid #b6dfc5;
  border-radius: 7px;
  padding: 8px 14px;
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  max-width: 100% !important;
}

/* ─ hp2 comparison table — compact when inside v3 panel ─ */
.v3-section .hp2-compare-table-wrap,
.v3-page-wrap .hp2-compare-table-wrap { overflow-x: auto; margin: 14px 0; }
/* Override the 880px min-width so the table can shrink to fit */
.v3-section .hp2-compare-table-wrap table.hp2-compare-table,
.v3-page-wrap .hp2-compare-table-wrap table.hp2-compare-table {
  min-width: 0 !important;
  table-layout: auto !important;
  font-size: 0.74rem;
}
.v3-section .hp2-compare-table thead th:first-child,
.v3-section .hp2-compare-table tbody td:first-child,
.v3-page-wrap .hp2-compare-table thead th:first-child,
.v3-page-wrap .hp2-compare-table tbody td:first-child { width: 130px !important; }
.v3-section .hp2-compare-table,
.v3-page-wrap .hp2-compare-table { max-width: 100%; font-size: 0.74rem; }
.v3-section .hp2-compare-table-wrap thead th,
.v3-page-wrap .hp2-compare-table-wrap thead th { padding: 7px 9px !important; font-size: 0.7rem !important; white-space: nowrap; }
.v3-section .hp2-compare-table-wrap tbody td,
.v3-page-wrap .hp2-compare-table-wrap tbody td { padding: 6px 9px !important; font-size: 0.73rem !important; }
.v3-section .hp2-compare-table tr.hp2-compare-divider td,
.v3-page-wrap .hp2-compare-table tr.hp2-compare-divider td { padding: 5px 9px !important; font-size: 0.66rem !important; }
.v3-section .hp2-compare-swipe-hint,
.v3-page-wrap .hp2-compare-swipe-hint { display: none; }
.v3-section .hp2-compare-callouts {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px;
}
.v3-section .hp2-compare-callout {
  flex: 1; min-width: 200px;
  background: rgba(201,151,58,0.06);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: 7px; padding: 10px 13px;
  font-size: 0.8rem; line-height: 1.55;
  color: var(--v3-right-mute);
}

/* ─ Pricing cards — compact inside v3 panel ─ */
.v3-section .hp2-pkg-grid,
.v3-page-wrap .hp2-pkg-grid { max-width: 100% !important; gap: 14px !important; margin-bottom: 12px !important; }
.v3-section .hp2-pkg-card,
.v3-page-wrap .hp2-pkg-card { padding: 16px 14px !important; border-radius: 10px !important; }
.v3-section .hp2-packages-section,
.v3-page-wrap .hp2-packages-section { padding: 0 !important; }
.v3-section .hp2-pkg-title,
.v3-page-wrap .hp2-pkg-title { font-size: 0.95rem !important; margin-bottom: 3px !important; }
.v3-section .hp2-pkg-tagline,
.v3-page-wrap .hp2-pkg-tagline { font-size: 0.78rem !important; margin-bottom: 8px !important; }
.v3-section .hp2-pkg-price-row,
.v3-page-wrap .hp2-pkg-price-row { margin-bottom: 6px !important; }
.v3-section .hp2-pkg-price-main,
.v3-page-wrap .hp2-pkg-price-main { font-size: 1.9rem !important; }
.v3-section .hp2-pkg-price-note,
.v3-page-wrap .hp2-pkg-price-note { font-size: 0.72rem !important; }
.v3-section .hp2-pkg-individual,
.v3-page-wrap .hp2-pkg-individual { font-size: 0.72rem !important; margin-bottom: 8px !important; }
.v3-section .hp2-doc-count,
.v3-page-wrap .hp2-doc-count { font-size: 0.72rem !important; margin-bottom: 8px !important; padding: 4px 9px !important; }
.v3-section .hp2-pkg-doc-list,
.v3-page-wrap .hp2-pkg-doc-list { margin-bottom: 8px !important; columns: 2; column-gap: 8px; }
.v3-section .hp2-pkg-doc-list li,
.v3-page-wrap .hp2-pkg-doc-list li { font-size: 0.72rem !important; margin-bottom: 2px !important; gap: 4px !important; break-inside: avoid; }
.v3-section .hp2-pkg-doc-list li .chk,
.v3-page-wrap .hp2-pkg-doc-list li .chk { font-size: 0.76rem !important; }
.v3-section .hp2-pkg-highlight,
.v3-page-wrap .hp2-pkg-highlight { font-size: 0.72rem !important; padding: 6px 10px !important; margin-bottom: 8px !important; }
.v3-section .hp2-pkg-save,
.v3-page-wrap .hp2-pkg-save { font-size: 0.76rem !important; margin-top: 6px !important; }
.v3-section .hp2-pkg-top-badge,
.v3-page-wrap .hp2-pkg-top-badge { font-size: 0.66rem !important; padding: 4px 14px !important; top: -11px !important; }
.v3-page-wrap .hp2-compare-section { padding: 16px 0 0; }
.v3-page-wrap .section-inner { padding: 0; }
.v3-page-wrap .section-header { margin-bottom: 12px; }
.v3-page-wrap .section-title { font-size: 1.4rem !important; margin-bottom: 6px !important; }
.v3-page-wrap .section-sub { font-size: 0.84rem !important; }
.v3-page-wrap .section-label { font-size: 0.64rem !important; margin-bottom: 6px !important; }
.v3-section .section-inner { padding: 0; }
.v3-section .section-header { margin-bottom: 14px; }
.v3-section .section-title { font-size: 1.4rem !important; margin-bottom: 6px !important; }
.v3-section .section-sub { font-size: 0.84rem !important; }
.v3-section .section-label { font-size: 0.64rem !important; margin-bottom: 6px !important; }

/* ─ hp2 FAQ within v3 panel ─ */
.v3-section .hp2-faq-list,
.v3-page-wrap .hp2-faq-list { gap: 7px; margin-top: 12px; }
.v3-section .hp2-faq-question,
.v3-page-wrap .hp2-faq-question { padding: 11px 16px; font-size: 0.88rem; }
.v3-section .hp2-faq-answer-inner,
.v3-page-wrap .hp2-faq-answer-inner { font-size: 0.84rem; line-height: 1.6; padding-bottom: 10px; }
.v3-section .hp2-faq-contact,
.v3-page-wrap .hp2-faq-contact { font-size: 0.86rem; margin-top: 16px; padding: 14px 18px; }

/* ─ About page within v3 panel ─ */
.v3-section .about-page p,
.v3-page-wrap .about-page p { font-size: 0.88rem; line-height: 1.65; max-width: none; margin-bottom: 10px; }
.v3-section .about-hero,
.v3-page-wrap .about-hero { padding: 16px 0 10px; }
.v3-section .about-hero-headline,
.v3-page-wrap .about-hero-headline { font-size: clamp(1.1rem, 1.8vw, 1.5rem) !important; max-width: none; margin-bottom: 8px; }
.v3-section .about-hero-sub,
.v3-page-wrap .about-hero-sub { font-size: 0.86rem; }
.v3-section .about-section h2,
.v3-page-wrap .about-section h2 { font-size: 1.1rem; max-width: none; margin-bottom: 7px; }
.v3-section .about-section,
.v3-page-wrap .about-section { margin-bottom: 16px; }
.v3-section .about-features,
.v3-page-wrap .about-features { gap: 12px; }
.v3-section .about-feature-card,
.v3-page-wrap .about-feature-card { padding: 14px; }
.v3-section .about-feature-card h3,
.v3-page-wrap .about-feature-card h3 { font-size: 0.9rem; margin-bottom: 4px; }
.v3-section .about-checklist li,
.v3-page-wrap .about-checklist li { font-size: 0.86rem; padding: 10px 0 10px 38px; }
.v3-section .about-cta,
.v3-page-wrap .about-cta { margin-top: 16px; }
.v3-section .about-notice,
.v3-page-wrap .about-notice { padding: 12px 16px; font-size: 0.84rem; }
.v3-section .about-page-title,
.v3-page-wrap .about-page-title { margin-bottom: 10px; }
.v3-section .about-page-h1,
.v3-page-wrap .about-page-h1 { font-size: 1.6rem !important; margin-bottom: 4px !important; }
.v3-section .about-page-subtitle,
.v3-page-wrap .about-page-subtitle { font-size: 0.86rem !important; }

/* ─ How It Works within v3 panel ─ */
.v3-section .hp2-steps-grid,
.v3-page-wrap .hp2-steps-grid { gap: 16px; }
.v3-section .hp2-step-card h3,
.v3-page-wrap .hp2-step-card h3 { font-size: 0.95rem; margin: 10px 0 5px; }
.v3-section .hp2-step-card p,
.v3-page-wrap .hp2-step-card p { font-size: 0.82rem; }
.v3-section .hp2-how-section,
.v3-page-wrap .hp2-how-section { padding: 0; }

/* ─ Contact page cards — compact ─ */
.v3-page-wrap .contact-card,
.v3-section .contact-card {
  padding: 18px 16px !important;
}
.v3-page-wrap .contact-card h2,
.v3-section .contact-card h2 {
  font-size: 1rem !important;
  margin-bottom: 7px !important;
}
.v3-page-wrap .contact-card p,
.v3-section .contact-card p {
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
}
.v3-page-wrap .contact-card .btn-gold,
.v3-section .contact-card .btn-gold {
  margin-top: 10px !important;
  padding: 8px 14px !important;
  font-size: 0.82rem !important;
}
.v3-page-wrap .contact-card div[aria-hidden],
.v3-section .contact-card div[aria-hidden] {
  font-size: 26px !important;
  margin-bottom: 8px !important;
}

/* ─ Contact page grid — 2×2 layout, override inline style ─ */
.v3-page-wrap .contact-grid,
.v3-section .contact-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  margin-top: 14px !important;
}
/* Contact send-form below cards */
.v3-page-wrap #lv-contact-form,
.v3-section #lv-contact-form {
  padding: 18px 20px 16px !important;
}
.v3-page-wrap #lv-contact-form textarea,
.v3-section #lv-contact-form textarea {
  rows: 3;
}
/* Tighten the "send us a message" title area */
.v3-page-wrap > section > div > div[style*="margin-top:48px"],
.v3-section > div > div > div[style*="margin-top:48px"] {
  margin-top: 20px !important;
}

/* ── Responsive — mobile ── */
@media (max-width: 768px) {
  body.v3-body { overflow: auto; height: auto; flex-direction: column; }
  .v3-wrapper { flex-direction: column; flex: none; height: auto; overflow: visible; }
  .v3-sidebar { display: none; }
  .v3-content { height: auto; overflow-y: visible; }
  .v3-section {
    display: block !important;
    padding: 28px 20px 36px;
    animation: none;
    border-bottom: 1px solid rgba(10,22,40,0.08);
  }
  .v3-section:last-child { border-bottom: none; }
  .v3-page-wrap { padding: 28px 20px 36px; }
  .v3-ba-grid { grid-template-columns: 1fr; }
  .v3-about-grid { grid-template-columns: 1fr; }
  .v3-btn-row { flex-direction: column; }
  .v3-btn { width: 100%; justify-content: center; }
  .v3-compare-table { font-size: 0.76rem; }
  .v3-compare-table th,
  .v3-compare-table td { padding: 7px 9px; }
}

/* ── Navbar alignment for v3 sidebar layout ──────────────────────────
   Logo is flush-left; all action items (state dropdown, phone, chat,
   sign-in, CTA) cluster immediately to the right of the logo with no
   spacer, so everything reads left-to-right from the same starting edge.
   ─────────────────────────────────────────────────────────────────── */
body.v3-body .hp2-nav-inner {
  max-width: none !important;
  margin: 0 !important;
  justify-content: flex-start !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  gap: 12px !important;
}
body.v3-body .hp2-nav-actions {
  margin-left: 0 !important;
  gap: 8px !important;
}

/* ── CTA button always red on v3 pages ── */
body.v3-body .btn-gold {
  background: #C0392B !important;
  background-image: none !important;
  color: #fff !important;
  border-color: #A93226 !important;
  box-shadow: 0 3px 12px rgba(192,57,43,0.35) !important;
}
body.v3-body .btn-gold:hover {
  background: #A93226 !important;
  box-shadow: 0 5px 18px rgba(192,57,43,0.5) !important;
}

/* ── Phone & chat always visible in navbar — never hidden by media queries ── */
body.v3-body .hp2-nav-phone,
body.v3-body .hp2-nav-chat {
  display: inline-flex !important;
}
