footer {
    background: var(--navy);
    padding: 64px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer-brand em {
    color: var(--gold);
    font-style: italic;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 5px;
    line-height: 1.5;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.rv-hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 72px 0 80px;
    text-align: center;
}

.rv-hero h1 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.18;
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.rv-body {
    padding: 64px 0;
}

.rv-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
}

.rv-prompts-box {
    background: var(--cream);
    border-radius: 3px;
    padding: 32px;
    border: 1px solid var(--border);
}

.rv-prompts-box h3 {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 16px;
}

.rv-prompt-list {
    list-style: none;
}

.rv-prompt-list li {
    font-size: 15px;
    color: var(--text-mid);
    padding: 10px 0 10px 24px;
    position: relative;
    border-bottom: 1px solid var(--border);
    line-height: 1.6;
}

.rv-prompt-list li:last-child {
    border-bottom: none;
}

.rv-prompt-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 10px;
    font-family: var(--serif);
    font-size: 17px;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}

.rv-cta-box {
    background: var(--navy);
    border-radius: 3px;
    padding: 36px;
    text-align: center;
    position: sticky;
    top: 110px;
}

.rv-cta-box h3 {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.rv-cta-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    line-height: 1.7;
}

.rv-btn {
    display: block;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 24px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 24px;
}

.rv-btn:hover {
    background: var(--gold-light);
}

.rv-sign {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}
@media (max-width: 1024px) {
  .inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid, .book-grid, .bpd-grid, .hub-grid, .members-grid, .wb-grid { gap: 40px; }
  .who-card { padding: 28px 24px; }
}
@media (max-width: 768px) {
  .nav-inner { flex-direction: column; height: auto; padding: 16px 0; gap: 16px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-grid, .book-grid, .get-grid, .bpd-grid, .hub-grid, .members-grid, .wb-grid, .hub-nav { grid-template-columns: 1fr; gap: 32px; }
  .hub-nav { gap: 12px; }
  h2 { font-size: 32px; margin-bottom: 16px; }
  .hero-headline { font-size: 34px; margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 16px; text-align: center; }
  .hero-cta-btn { width: 100%; text-align: center; display: block; }
  .proof-bar-inner { flex-direction: column; }
  .proof-stat+.proof-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .problem-section, .testi-section, .book-section, .who-section, .get-section, .about-section, .faq-section, .cta-section { padding: 56px 0; }
  .partners-inner { flex-direction: column; gap: 16px; padding: 16px 0; }
  .partners-label { border-right: none; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
  .partners-logos { padding-left: 0; flex-wrap: wrap; justify-content: center; gap: 24px; }
  .testi-quote { font-size: 18px; }
  .book-cover-wrap { position: relative; top: auto; max-width: 220px; margin: 0 auto; }
  .bpd-order-box, .wb-box { position: relative; top: auto; padding: 24px; }
  .inside-num { font-size: 24px; }
  .endorsement-block { padding: 24px; margin: 40px 0; border-radius: 3px; border-left: none; border-top: 4px solid var(--gold); }
  .endorsement-inner { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .cta-form-wrap { padding: 24px; }
  .price-amount, .bpd-price, .plan-price, .upsell-h1, .ds-h1, .hub-title { font-size: 36px; }
  .ds-wrap, .upsell-wrap, .review-wrap, .wb-wrap, .hub-wrap { padding: 40px 24px; }
  .feature-list { padding: 20px; }
  .price-row { flex-direction: column; gap: 8px; }
  .about-photo-half { max-width: 100%; }
  img, video { max-width: 100%; height: auto; }
}
@media (max-width: 768px) {
  .confirm-grid, .rv-grid, .card-grid, .welcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .portal-shell { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: relative; top: auto; }
  .portal-main { padding: 24px; }
  .page-header { margin-bottom: 24px; padding-bottom: 20px; }
}
