/* ============================================================
   Legacy Trade Holdings — Main Stylesheet
   Colors: Charcoal (#2C2C2C) + Orange (#E8750A)
   Fonts: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #2C2C2C;
  background: #ffffff;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8750A;
  margin-bottom: 0.75rem;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  border: none;
}

.btn-primary {
  background: #E8750A;
  color: #ffffff;
}
.btn-primary:hover {
  background: #CF6809;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* ── Navigation ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: #1A1A1A;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.nav-logo span { color: #E8750A; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: #E8750A; }

.nav-links .nav-cta {
  background: #E8750A;
  color: #ffffff;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-links .nav-cta:hover { background: #CF6809; color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 60%, #3a2a1a 100%);
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,117,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,117,10,0.15);
  border: 1px solid rgba(232,117,10,0.4);
  color: #E8750A;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  max-width: 750px;
  margin-bottom: 1.25rem;
}

#hero h1 em {
  color: #E8750A;
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}
.hero-contact-line a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.hero-contact-line a:hover { color: #E8750A; }
.hero-contact-divider { color: rgba(255,255,255,0.3); }

.hero-trust {
  margin-top: 4rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,117,10,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Stats Bar ────────────────────────────────────────────── */
#stats {
  background: #E8750A;
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── How It Works ─────────────────────────────────────────── */
#how-it-works { background: #F7F7F7; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #1A1A1A; }
.section-header p { color: #666; margin-top: 0.75rem; max-width: 540px; margin-left: auto; margin-right: auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2.25rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: relative;
  border-top: 4px solid #E8750A;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232,117,10,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-card h3 { font-size: 1.05rem; color: #1A1A1A; margin-bottom: 0.6rem; }
.step-card p { font-size: 0.9rem; color: #666; line-height: 1.7; }

/* ── What We Buy ──────────────────────────────────────────── */
#what-we-buy { background: #ffffff; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.what-we-buy-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1.25rem; }
.what-we-buy-text p { color: #555; margin-bottom: 1rem; }

.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.75rem 0;
}

.chip {
  background: #FFF4EC;
  border: 1px solid rgba(232,117,10,0.3);
  color: #C96A09;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.criteria-box {
  background: #1A1A1A;
  border-radius: 10px;
  padding: 2.25rem;
  color: #ffffff;
}

.criteria-box h3 {
  font-size: 1rem;
  color: #E8750A;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.criteria-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.criteria-item:last-child { margin-bottom: 0; }

.criteria-icon {
  width: 38px;
  height: 38px;
  background: rgba(232,117,10,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.criteria-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.criteria-text span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── Trades Photo Strip ───────────────────────────────────── */
#trades-photos {
  background: #1A1A1A;
  padding: 5rem 0 4rem;
}

#trades-photos .section-header h2 { color: #ffffff; }
#trades-photos .section-header p  { color: rgba(255,255,255,0.6); max-width: 620px; margin: 0.75rem auto 0; }
#trades-photos .section-label     { color: #E8750A; }

.photo-strip-wrap {
  position: relative;
  margin-top: 2.5rem;
}

.photo-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}

.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip.dragging { cursor: grabbing; user-select: none; }

.photo-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 calc(20% - 0.85rem);
  scroll-snap-align: start;
}

.photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
  background: #2C2C2C;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.photo-card:hover .photo-wrap img { transform: scale(1.05); }

.photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  padding: 2rem 0.75rem 0.75rem;
  display: flex;
  align-items: flex-end;
}

.photo-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(232,117,10,0.85);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.photo-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.03em;
}

.photo-credit {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin-top: 1.5rem;
  font-style: italic;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: #E8750A;
  border-color: #E8750A;
  color: #ffffff;
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .photo-card { flex: 0 0 calc(33.333% - 0.7rem); }
}

@media (max-width: 600px) {
  .photo-card { flex: 0 0 calc(62% - 0.5rem); }
}

/* ── Why Sell To Us ───────────────────────────────────────── */
#why-us {
  background: #F7F7F7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.why-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-3px); }

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}
.why-card p { font-size: 0.88rem; color: #666; line-height: 1.7; }

/* ── Intake Form ──────────────────────────────────────────── */
#get-started {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
}

#get-started .section-header h2 { color: #ffffff; }
#get-started .section-header p { color: rgba(255,255,255,0.65); }
#get-started .section-label { color: #E8750A; }

.form-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #444;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #DDDDDD;
  border-radius: 5px;
  padding: 0.7rem 0.9rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #2C2C2C;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E8750A;
  box-shadow: 0 0 0 3px rgba(232,117,10,0.12);
  background: #ffffff;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-disclaimer {
  font-size: 0.78rem;
  color: #999;
  text-align: center;
  margin-top: 1.25rem;
  line-height: 1.6;
}

.form-submit { width: 100%; margin-top: 0.5rem; font-size: 1rem; padding: 1rem; }

/* ── About ────────────────────────────────────────────────── */
#about { background: #ffffff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: #F0F0F0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.85rem;
  text-align: center;
  gap: 0.5rem;
  border: 2px dashed #DDD;
}

.about-photo-placeholder .photo-icon { font-size: 2.5rem; }

.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1.25rem; }
.about-text p { color: #555; margin-bottom: 1rem; line-height: 1.8; }

.about-promise {
  background: #FFF4EC;
  border-left: 4px solid #E8750A;
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-top: 1.5rem;
}

.about-promise p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #C96A09;
  font-size: 0.95rem;
  margin: 0;
}

/* ── CTA Banner ───────────────────────────────────────────── */
#cta-banner {
  background: #E8750A;
  padding: 4rem 0;
  text-align: center;
}

#cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #ffffff;
  margin-bottom: 0.75rem;
}

#cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.btn-dark {
  background: #1A1A1A;
  color: #ffffff;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #111111;
  color: rgba(255,255,255,0.55);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand .nav-logo { font-size: 1.05rem; margin-bottom: 0.5rem; }

.footer-brand p {
  font-size: 0.82rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #E8750A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-contact p {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: #E8750A; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}

.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-nav a:hover { color: #E8750A; }

/* ── Stats Intro Label ────────────────────────────────────── */
.stats-intro {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

/* ── Nav / Footer Logo Image ──────────────────────────────── */
.nav-logo-img {
  height: 50px;
  width: 50px;
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  object-fit: cover;
}

.footer-logo-img {
  height: 72px;
  width: 72px;
  display: block;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  object-fit: cover;
}

/* ── NDA Trust Banner ─────────────────────────────────────── */
#nda-banner {
  background: #1A1A1A;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(232,117,10,0.15);
  border-bottom: 1px solid rgba(232,117,10,0.15);
}

.nda-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nda-seal {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(232,117,10,0.12);
  border: 2px solid rgba(232,117,10,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.nda-content strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.nda-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 580px;
}

.nda-content a {
  color: #E8750A;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.nda-content a:hover { color: #CF6809; }

/* ── Comparison Table ─────────────────────────────────────── */
#comparison { background: #ffffff; }

.compare-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

table.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.compare-table thead th {
  padding: 1.1rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table th.col-label {
  background: #F7F7F7;
  color: #999;
  text-align: left;
  width: 28%;
}

.compare-table th.col-us {
  background: #1A1A1A;
  color: #E8750A;
  text-align: center;
}

.compare-table th.col-other {
  background: #F0F0F0;
  color: #999;
  text-align: center;
}

.compare-table td {
  padding: 1rem 1.4rem;
  border-top: 1px solid #F0F0F0;
  vertical-align: middle;
  font-size: 0.88rem;
}

.compare-table td.col-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  color: #333;
  background: #FAFAFA;
}

.compare-table td.col-us {
  text-align: center;
  font-weight: 700;
  color: #1A1A1A;
  background: rgba(232,117,10,0.04);
  border-left: 3px solid rgba(232,117,10,0.25);
  border-right: 3px solid rgba(232,117,10,0.25);
}

.compare-table tr:last-child td.col-us {
  border-bottom: 3px solid rgba(232,117,10,0.25);
}

.compare-table td.col-other {
  text-align: center;
  color: #999;
}

.c-yes  { color: #219653; font-weight: 700; }
.c-no   { color: #CC3333; }
.c-warn { color: #E8750A; font-weight: 600; }

/* ── After We Buy ─────────────────────────────────────────── */
#after-we-buy { background: #1A1A1A; }

#after-we-buy .section-header h2 { color: #ffffff; }
#after-we-buy .section-header p  { color: rgba(255,255,255,0.6); }

.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.after-card {
  background: #2C2C2C;
  border-radius: 10px;
  padding: 1.75rem;
  border-top: 3px solid #E8750A;
  transition: transform 0.2s, box-shadow 0.2s;
}

.after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.after-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.after-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.after-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq { background: #F7F7F7; }

.faq-list {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1A1A1A;
  text-align: left;
  line-height: 1.4;
  transition: background 0.15s;
}

.faq-q:hover { background: #FFF8F3; }
.faq-item.open .faq-q { background: #FFF8F3; color: #C96A09; }

.faq-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232,117,10,0.1);
  color: #E8750A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(232,117,10,0.2);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a p {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.85;
  margin: 0;
}

/* ── Valuation ────────────────────────────────────────────── */
#valuation { background: #ffffff; }

.val-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.val-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }

.val-text p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.val-note {
  background: #FFF4EC;
  border-left: 4px solid #E8750A;
  border-radius: 0 6px 6px 0;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.val-note p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C96A09;
  margin: 0;
  line-height: 1.6;
}

.val-box {
  background: #1A1A1A;
  border-radius: 12px;
  padding: 2.25rem;
}

.val-box-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8750A;
  margin-bottom: 1.5rem;
}

.val-multiples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.val-multiple {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.1rem;
  text-align: center;
}

.val-multiple .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #E8750A;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.val-multiple .lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.val-example-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.85rem;
}

.val-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.88rem;
}

.val-row:last-child { border-bottom: none; padding-bottom: 0; }
.val-row .r-label { color: rgba(255,255,255,0.55); }
.val-row .r-value { font-weight: 700; color: #ffffff; font-family: 'Montserrat', sans-serif; }
.val-row.val-total .r-label { color: rgba(255,255,255,0.85); font-weight: 700; }
.val-row.val-total .r-value { color: #E8750A; font-size: 1.05rem; }

/* ── Service Area ─────────────────────────────────────────── */
#service-area {
  background: #F7F7F7;
  padding: 3.5rem 0;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 2rem;
}

.area-chip {
  background: #ffffff;
  border: 1.5px solid #E5E5E5;
  border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.area-chip:hover {
  border-color: #E8750A;
  box-shadow: 0 2px 8px rgba(232,117,10,0.15);
}

.area-dot {
  width: 8px;
  height: 8px;
  background: #E8750A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Stay in Touch ─────────────────────────────────────────── */
#stay-in-touch {
  background: #2C2C2C;
  padding: 4.5rem 0;
}

.stay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stay-text .section-label { color: rgba(232,117,10,0.9); }

.stay-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.stay-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}

.stay-form-wrap {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.stay-form-wrap .form-group label { color: rgba(255,255,255,0.65); }

.stay-form-wrap input {
  background: rgba(255,255,255,0.08) !important;
  border: 1.5px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
}

.stay-form-wrap input::placeholder { color: rgba(255,255,255,0.3) !important; }

.stay-form-wrap input:focus {
  border-color: #E8750A !important;
  box-shadow: 0 0 0 3px rgba(232,117,10,0.15) !important;
  background: rgba(255,255,255,0.11) !important;
}

.stay-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.85rem;
  font-style: italic;
  line-height: 1.5;
}

/* ── Pre-launch Notice (remove before going live) ─────────── */
.dev-notice {
  background: #fff3cd;
  border-bottom: 2px solid #E8750A;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #7a4f00;
  position: relative;
  z-index: 1000;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-placeholder { max-width: 280px; margin: 0 auto; }
  .after-grid { grid-template-columns: 1fr 1fr; }
  .val-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stay-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .after-grid { grid-template-columns: 1fr; }
  .compare-table thead th, .compare-table td { padding: 0.75rem 0.85rem; font-size: 0.8rem; }
  section { padding: 3.5rem 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 70px; left: 0; right: 0; background: #1A1A1A; padding: 1rem 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { padding: 0.9rem 1.5rem; display: block; }
  .nav-links .nav-cta { margin: 0.5rem 1.5rem; display: inline-block; border-radius: 4px; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.25rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  #hero { padding: 7rem 0 4rem; }
  .hero-trust { gap: 1.25rem; }
}

/* ── Blog ─────────────────────────────────────────────────────── */

.blog-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 60%, #3a2a1a 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,117,10,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  max-width: 800px;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; line-height: 1.8; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #E8750A; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

.blog-index-section { background: #F7F7F7; padding: 4rem 0 6rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid #E8750A;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.blog-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }

.blog-card-tag {
  display: inline-block;
  background: #FFF4EC;
  border: 1px solid rgba(232,117,10,0.3);
  color: #C96A09;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.blog-card-tag.tag-hub { background: #1A1A1A; color: #E8750A; border-color: #E8750A; }
.blog-card-tag.tag-location { background: #EEF6FF; color: #1A5CA8; border-color: rgba(26,92,168,0.3); }
.blog-card-tag.tag-objection { background: #F0FFF4; color: #1A7A3A; border-color: rgba(26,122,58,0.3); }
.blog-card-tag.tag-faq { background: #FFF8EC; color: #A05C00; border-color: rgba(160,92,0,0.3); }

.blog-card h2 { font-size: 1rem; font-weight: 700; color: #1A1A1A; line-height: 1.45; margin-bottom: 0.75rem; }
.blog-card p { font-size: 0.88rem; color: #666; line-height: 1.75; margin-bottom: 1.25rem; flex: 1; }
.blog-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #E8750A;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card-link:hover { color: #CF6809; }

.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  border-top: none;
  border-left: 6px solid #E8750A;
}
.blog-card.featured .blog-card-body { padding: 2.25rem; }
.blog-card.featured h2 { font-size: 1.25rem; }

.blog-post-wrap { background: #ffffff; padding: 4rem 0 6rem; }

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-post-content { min-width: 0; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: #999;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.post-meta-tag {
  background: #FFF4EC;
  color: #C96A09;
  border: 1px solid rgba(232,117,10,0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post-meta-divider { color: #DDD; }

.blog-post-content h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: #1A1A1A; line-height: 1.2; margin-bottom: 1.5rem; }
.blog-post-content h2 { font-size: 1.35rem; font-weight: 700; color: #1A1A1A; margin: 2.5rem 0 1rem; padding-top: 0.5rem; }
.blog-post-content h3 { font-size: 1.1rem; font-weight: 700; color: #1A1A1A; margin: 1.75rem 0 0.75rem; }
.blog-post-content p { color: #444; line-height: 1.9; margin-bottom: 1.25rem; font-size: 0.97rem; }
.blog-post-content strong { color: #1A1A1A; }
.blog-post-content em { font-style: italic; color: #555; }
.blog-post-content ul, .blog-post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post-content li { color: #444; font-size: 0.97rem; line-height: 1.9; margin-bottom: 0.4rem; }
.blog-post-content hr { border: none; border-top: 1px solid #EEE; margin: 2.5rem 0; }

.post-callout {
  background: #FFF4EC;
  border-left: 4px solid #E8750A;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.post-callout p { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #C96A09; font-size: 0.95rem; margin: 0; line-height: 1.6; }

.post-cta-box {
  background: #1A1A1A;
  border-radius: 10px;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
  text-align: center;
}
.post-cta-box h3 { color: #ffffff; font-size: 1.15rem; margin-bottom: 0.75rem; }
.post-cta-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 1.25rem; }

.blog-sidebar { position: sticky; top: 90px; }

.sidebar-card {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border-top: 3px solid #E8750A;
}
.sidebar-card h4 { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #E8750A; margin-bottom: 1rem; }
.sidebar-card p { font-size: 0.85rem; color: #555; line-height: 1.7; margin-bottom: 1rem; }
.sidebar-card .btn { width: 100%; text-align: center; font-size: 0.85rem; padding: 0.75rem; }

.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links li a { font-size: 0.85rem; color: #444; font-weight: 600; transition: color 0.2s; display: flex; align-items: center; gap: 0.4rem; }
.sidebar-links li a:hover { color: #E8750A; }
.sidebar-links li a::before { content: '→'; color: #E8750A; font-size: 0.75rem; }

.post-industries { background: #F7F7F7; border-radius: 10px; padding: 2rem; margin-top: 3rem; }
.post-industries h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: #999; margin-bottom: 1rem; }
.post-industries .industry-chips { margin: 0; }
.post-industries .chip:hover { background: #E8750A; color: #fff; border-color: #E8750A; }

.blog-cta-section { background: #E8750A; padding: 4rem 0; text-align: center; }
.blog-cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; margin-bottom: 0.75rem; }
.blog-cta-section p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-card.featured { flex-direction: column; border-left: none; border-top: 4px solid #E8750A; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── Lead Magnet Capture Widget ──────────────────────────── */
.capture-widget {
  background: #1A1A1A;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.capture-widget .capture-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8750A;
  margin-bottom: 0.5rem;
}
.capture-widget h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.capture-widget p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.capture-widget .capture-form input {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  outline: none;
  transition: border-color 0.15s;
}
.capture-widget .capture-form input::placeholder { color: rgba(255,255,255,0.35); }
.capture-widget .capture-form input:focus { border-color: #E8750A; }
.capture-widget .capture-form .btn-capture {
  width: 100%;
  background: #E8750A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.25rem;
}
.capture-widget .capture-form .btn-capture:hover { background: #C96A09; }
.capture-widget .capture-form .btn-capture:disabled { background: #555; cursor: default; }
.capture-widget .capture-success {
  display: none;
  text-align: center;
  padding: 0.5rem 0;
}
.capture-widget .capture-success .success-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.capture-widget .capture-success p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}
.capture-widget .capture-success a {
  display: inline-block;
  background: #E8750A;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.capture-widget .capture-error {
  font-size: 0.78rem;
  color: #FCA5A5;
  margin-top: 0.35rem;
  display: none;
}

/* Inline capture widget (homepage banner version) */
.capture-banner {
  background: #F7F7F5;
  border: 1px solid #E5E5E5;
  border-left: 4px solid #E8750A;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.capture-banner-text { flex: 1; min-width: 220px; }
.capture-banner-text .capture-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8750A;
  margin-bottom: 0.3rem;
}
.capture-banner-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1A1A1A;
  display: block;
  margin-bottom: 0.3rem;
}
.capture-banner-text span { font-size: 0.85rem; color: #666; }
.capture-banner-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  flex: 2; min-width: 280px;
}
.capture-banner-form input {
  flex: 1; min-width: 130px;
  padding: 0.6rem 0.85rem;
  border: 1px solid #DDD;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.15s;
}
.capture-banner-form input:focus { border-color: #E8750A; }
.capture-banner-form .btn-capture {
  background: #E8750A;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.capture-banner-form .btn-capture:hover { background: #C96A09; }
@media (max-width: 640px) {
  .capture-banner { flex-direction: column; gap: 1rem; }
  .capture-banner-form { width: 100%; }
}

/* ── Success Message ──────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: #1A1A1A; margin-bottom: 0.5rem; }
.form-success p { color: #666; font-size: 0.9rem; }
