:root {
  --navy: #0F2540;
  --navy-dark: #081625;
  --orange: #FF6B35;
  --orange-dark: #E0551F;
  --slate: #4A5A6A;
  --offwhite: #F7F8FA;
  --border: #E1E6EC;
  --success: #1E8E5A;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--offwhite);
  line-height: 1.6;
}
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.for-sale-banner {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 600;
}
.for-sale-banner a { color: #fff; text-decoration: underline; }

.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo { color: #fff; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--orange); }
.main-nav a {
  color: #E7ECF2;
  margin-left: 22px;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--orange); text-decoration: none; }

.social-share-bar {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 12px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.share-label { font-weight: 700; color: var(--slate); font-size: 0.9rem; }
.share-icon {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--offwhite);
  border: 1px solid var(--border);
}
.share-icon.bookmark { background: #FFF1EA; border-color: var(--orange); color: var(--orange-dark); }

.hero {
  max-width: 1180px;
  margin: 30px auto 0;
  padding: 0 20px;
}
.hero h1 { font-size: 2.1rem; margin-bottom: 8px; }
.stat-line {
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 1.02rem;
  color: var(--navy);
  margin: 14px 0 22px;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px 60px; }

.tool-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(15,37,64,0.06);
}
.step { display: none; }
.step.active { display: block; }
.field-group { margin-bottom: 18px; }
.field-group label { display: block; font-weight: 700; margin-bottom: 6px; }
.field-group select, .field-group input[type=number], .field-group input[type=text] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
}
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 10px; }
.choice-btn {
  padding: 12px; border: 2px solid var(--border); border-radius: 10px;
  background: #fff; cursor: pointer; font-weight: 600; text-align: center;
}
.choice-btn.selected { border-color: var(--orange); background: #FFF1EA; }
.btn-primary {
  background: var(--orange); color: #fff; border: none; padding: 13px 26px;
  border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  background: none; border: 2px solid var(--border); padding: 11px 22px;
  border-radius: 8px; font-weight: 700; cursor: pointer; margin-right: 10px;
}
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; margin-bottom: 24px; overflow:hidden; }
.progress-fill { height: 100%; background: var(--orange); transition: width .3s; }

#results-panel { margin-top: 20px; }
.channel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.channel-bar-bg { flex: 1; height: 10px; background: var(--offwhite); border-radius: 5px; margin: 0 14px; overflow: hidden; }
.channel-bar-fill { height: 100%; background: var(--orange); }
.timeline-item { border-left: 3px solid var(--orange); padding: 6px 0 6px 16px; margin-bottom: 10px; }

.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; margin-top: 20px; }
.article-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 20px;
}
.article-card h3 { margin-top: 0; font-size: 1.1rem; }
.article-card .meta { color: var(--slate); font-size: 0.85rem; }

.faq-block { margin: 30px 0; }
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item h3 { font-size: 1.02rem; margin: 0 0 6px; }

.facts-list { columns: 2; column-gap: 30px; }
@media (max-width: 720px) { .facts-list { columns: 1; } }
.facts-list li { margin-bottom: 10px; break-inside: avoid; }

.newsletter-inline {
  background: var(--navy); color: #fff; border-radius: 12px; padding: 26px; margin: 40px 0;
}
.newsletter-inline h3 { margin-top: 0; color: #fff; }
.newsletter-inline form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.newsletter-inline input[type=email] { flex: 1; min-width: 220px; padding: 11px; border-radius: 8px; border: none; }
.newsletter-inline button { background: var(--orange); color: #fff; border: none; padding: 11px 20px; border-radius: 8px; font-weight: 700; cursor: pointer; }

.site-footer { background: var(--navy-dark); color: #C7D0DA; margin-top: 60px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 40px 20px 20px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 30px;
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: repeat(2,1fr); } }
.footer-col h4 { color: #fff; margin-top: 0; font-size: 0.95rem; }
.footer-col a { display: block; color: #C7D0DA; margin-bottom: 8px; font-size: 0.9rem; }
.footer-newsletter { display: flex; gap: 6px; }
.footer-newsletter input { flex: 1; padding: 8px; border-radius: 6px; border: none; }
.footer-newsletter button { background: var(--orange); color: #fff; border: none; padding: 8px 12px; border-radius: 6px; font-weight: 700; }
.footer-bottom { border-top: 1px solid #1C3350; text-align: center; padding: 16px; font-size: 0.8rem; }

.breadcrumb { font-size: 0.85rem; color: var(--slate); margin: 20px auto 0; max-width: 1180px; padding: 0 20px; }
