/* ── LIGHT THEME (matches article pages) ── */
body {
  background: var(--soft-white);
  color: #444;
  overflow-x: hidden;
}

/* Keep hero & topbar dark — explicit white text */
.guide-hero {
  color: #fff;
}
.guide-hero h1 {
  color: #fff;
}
.guide-hero .hero-tagline {
  color: rgba(255, 255, 255, 0.75);
}

/* ── HERO ───────────────────────────── */
.guide-hero {
  background: linear-gradient(
    160deg,
    var(--deep-navy) 0%,
    #0f1e38 60%,
    #0a1525 100%
  );
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guide-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 97, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--sand-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.5rem;
}

.guide-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.guide-hero h1 span {
  color: var(--sand-gold);
}

.guide-hero .hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ── SECTION WRAPPER ────────────────── */
.guide-section {
  padding: 4rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* ── WHY INVEST ─────────────────────── */
.why-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--sand-gold);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition:
    background 0.2s,
    transform 0.2s;
}

.why-card:hover {
  background: rgba(201, 169, 97, 0.06);
  transform: translateY(-2px);
}

.why-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(201, 169, 97, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sand-gold);
}

.why-card h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.3px;
}

.dark-table-wrapper{
  border-radius: 0 !important;
}
.message-box {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.1) 0%,
    rgba(201, 169, 97, 0.04) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 1.75rem 2rem;
  text-align: center;
}

.message-box .quote-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 700;
  color: var(--sand-gold);
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}


/* ── HOW TO BUY: TABS ───────────────── */
.plan-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.35rem;
  width: fit-content;
}

.plan-tab-btn {
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Montserrat", sans-serif;
  background: transparent;
  color: var(--text-muted);
}

.plan-tab-btn.active {
  background: var(--sand-gold);
  color: var(--deep-navy);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.4);
}

.plan-tab-btn:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.plan-content {
  display: none;
}

.plan-content.active {
  display: block;
}

/* ── STEPS ──────────────────────────── */
.steps-wrapper {
  position: relative;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--sand-gold),
    rgba(201, 169, 97, 0.15)
  );
}

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-num {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--sand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--sand-gold);
  z-index: 1;
  position: relative;
}

.step-item.step-final .step-num {
  background: var(--sand-gold);
  color: var(--deep-navy);
  border-color: var(--gold-light);
}

.step-body {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.step-item.step-final .step-body {
  background: rgba(201, 169, 97, 0.08);
  border-color: rgba(201, 169, 97, 0.25);
}

.step-label {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand-gold);
  margin-bottom: 0.3rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}



.step-amount {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--sand-gold);

  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-top: 0.6rem;
}

/* ── PLAN SUMMARY BOX ───────────────── */
.plan-summary {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.summary-item {
  text-align: center;
}

.summary-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.summary-value {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sand-gold);
  letter-spacing: 0.5px;
}

.summary-note {
  margin-top: 0.2rem;
}

/* ── ROI FULL BREAKDOWN ─────────────── */
.roi-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
  .roi-breakdown {
    grid-template-columns: 1fr;
  }
}
.dark-table tbody tr{
  border-radius: 0 !important;
}
.roi-block {background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 1.5rem;
}

.roi-block-title {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
}

.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roi-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}



.roi-line .lval {
  font-weight: 600;
  color: #e2e8f0;
}

.roi-line .lval.deduct {
  color: #f87171;
}

.roi-line.total-line {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  border-bottom: none;
}

.roi-line.total-line .lkey,
.roi-line.total-line .lval {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sand-gold);
}

/* ── SCENARIO CARDS ─────────────────── */
.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 560px) {
  .scenario-grid {
    grid-template-columns: 1fr;
  }
}

.scenario-card {
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.scenario-card.base {
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.12) 0%,
    rgba(201, 169, 97, 0.04) 100%
  );
  border: 1px solid rgba(201, 169, 97, 0.35);
}

.scenario-card.low {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.scenario-card.base .scenario-badge {
  background: rgba(201, 169, 97, 0.2);
  color: var(--sand-gold);
}

.scenario-card.low .scenario-badge {
  background: rgba(148, 163, 184, 0.15);
  color: var(--text-muted);
}

.scenario-adr {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.scenario-yield {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.scenario-card.base .scenario-yield {
  color: var(--sand-gold);
}

.scenario-card.low .scenario-yield {
  color: #cbd5e1;
}

.scenario-yield-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.scenario-stats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.scenario-stat {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}

.scenario-stat .sk {
  color: var(--text-muted);
}

.scenario-stat .sv {
  font-weight: 600;
  color: #e2e8f0;
}

/* ── METRICS ROW ────────────────────── */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 1.5rem;
}

@media (max-width: 480px) {
  .metrics-row {
    grid-template-columns: 1fr;
  }
}

.metric-item {
  text-align: center;
  padding: 0.5rem 0;
}

.metric-item + .metric-item {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 480px) {
  .metric-item + .metric-item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
}

.metric-label {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--sand-gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.metric-sub {
  font-size: 0.7rem;
  color: #64748b;
}

/* ── DISCLAIMER ─────────────────────── */
.guide-disclaimer {
  padding: 2rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.disclaimer-text {
  font-size: 0.85rem;
  line-height: 1.7;
  text-align: center;
}

/* ── CTA FOOTER ─────────────────────── */
.guide-footer-cta {
  background: linear-gradient(160deg, #0f1e38 0%, var(--deep-navy) 100%);
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--sand-gold);
}

.cta-sub {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* ── FEATURE DARK GRID ──────────────── */
.feature-dark-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* ── LOCATION CARDS ─────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s;
}

.location-card:hover {
  background: rgba(201, 169, 97, 0.05);
}

.location-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.location-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.location-card p strong {
  color: var(--sand-gold);
}

/* ── RENTAL STRATEGY BLOCKS ─────────── */
.strategy-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.strategy-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
}

.strategy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.15);
  color: var(--sand-gold);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.strategy-card h3 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.strategy-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.strategy-row .sk {
  min-width: 75px;
  font-weight: 600;
}


/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 600px) {
  .guide-topbar {
    padding: 0.85rem 1.25rem;
  }

  .guide-section {
    padding: 2.5rem 1rem;
  }

  .steps-wrapper::before {
    left: 19px;
  }

  .step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.875rem;
  }

  .plan-tabs {
    width: 100%;
    justify-content: center;
  }

  .plan-tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
  }

  .feature-dark-grid {
    grid-template-columns: 1fr;
  }

  .topbar-logo .brand-svg {
    height: 34px;
  }
}

/* ── CONTENT LIGHT THEME OVERRIDES ──── */

/* Cards → white on cream */
.why-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-left: 3px solid var(--sand-gold);
}

/* Cancel article.css counter — this page uses .step-num divs */
.step-item::before {
  content: none;
  display: none;
}

.step-body {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.12);
}
.step-item.step-final .step-body {
  background: rgba(201, 169, 97, 0.06);
  border-color: rgba(201, 169, 97, 0.25);
}
.step-num {
  background: #fff;
  border: 2px solid var(--sand-gold);
  color: var(--deep-navy);
}
.step-item.step-final .step-num {
  background: var(--sand-gold);
  color: var(--deep-navy);
}
.step-title {
  color: var(--deep-navy);
}
.step-detail {
  color: #666;
}
.steps-wrapper::before {
  background: linear-gradient(
    to bottom,
    var(--sand-gold),
    rgba(201, 169, 97, 0.15)
  );
}

.plan-tabs {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.plan-tab-btn {
  color: #666;
}

.plan-summary {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.15);
}

.roi-block {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.roi-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.roi-line .lval {
  color: var(--deep-navy);
}
.roi-line .lval.deduct {
  color: #dc3545;
}
.roi-line.total-line {
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.scenario-card.low {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.scenario-card.low .scenario-yield {
  color: var(--deep-navy);
}
.scenario-stat .sk {
  color: #666;
}
.scenario-stat .sv {
  color: var(--deep-navy);
}

.metrics-row {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.15);
}


.metric-sub {
  color: #999;
}



.location-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.15);
}
.location-card h4 {
  color: var(--deep-navy);
}
.location-card p {
  color: #666;
}

.strategy-card {
  background: #fff;
  border: 1px solid rgba(201, 169, 97, 0.15);
}


/* Dark utility → light overrides */
.dark-body-text {
  color: #555;
}
.dark-warning-box h4{
  font-size: 1rem;
}
.dark-success-box h4{
  font-size: 1rem;
}
.dark-h3 {
  color: var(--deep-navy);
}
.dark-list li {
  color: #555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.dark-list li strong {
  color: var(--deep-navy);
}
.dark-ordered-list li {
  color: #555;
}
.dark-ordered-list li strong {
  color: var(--deep-navy);
}

.dark-info-box{
  border-radius: 0 !important;
  margin-top: 1.5rem;
}
.dark-warning-box{
  border-radius: 0 !important;
}
.dark-warning-box p,
.dark-warning-box ul,
.dark-warning-box ol {
  color: #555;
}
.dark-success-box{
  border-radius: 0 !important;
}
.dark-success-box p,
.dark-success-box ul {
  color: #555;
}
.dark-table tbody td {
  color: #555;
  text-align: center;
}
.dark-table tbody td:first-child {
  color: var(--deep-navy);
}
.dark-table thead tr {
  background: var(--deep-navy);
}

/* Related articles → warm beige */
.related-articles-dark {
  background: var(--warm-beige);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.related-articles-dark h2 {
  color: var(--deep-navy);
}
.related-dark-card {
  background: #fff;
  border: 2px solid rgba(201, 169, 97, 0.15);
}
.related-dark-card:hover {
  border-color: var(--sand-gold);
}
.related-dark-card h3 {
  color: var(--deep-navy);
}
.related-dark-card p {
  color: #666;
}

/* Section divider */
.section-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.guide-disclaimer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
