/* ============================================================================
   TradeFront Ghost Theme - Main Stylesheet
   Dark mode default. All pages: homepage, how-it-works, pricing, about, pilot.
   ============================================================================ */

/* ============================================================================
   CSS Custom Properties
   ============================================================================ */
:root {
  --charcoal: #1a1d23;
  --charcoal-light: #24272e;
  --slate: #2d3139;
  --steel: #8b919a;
  --silver: #c4c9d1;
  --white: #f5f5f5;
  --burnt-orange: #d4722c;
  --amber: #e89b3f;
  --amber-glow: rgba(212, 114, 44, 0.12);
  --navy: #151820;
  --green: #3dba6f;
  --red: #d44;
}

/* ============================================================================
   GHOST KOENIG EDITOR — required width classes
   ============================================================================ */
.gh-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 5%;
}

.gh-content .kg-width-wide {
  max-width: 1040px;
  margin-left: calc(50% - 520px);
  margin-right: calc(50% - 520px);
}

.gh-content .kg-width-full {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}

/* ============================================================================
   GLOBAL / RESET
   ============================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
  background: var(--charcoal);
  color: var(--silver);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================================
   NAVIGATION (shared across all pages)
   ============================================================================ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-hex {
  display: block;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0;
}

.logo-wordmark .wm-t {
  font-weight: 400;
}

.logo-wordmark .wm-f {
  font-weight: 900;
}

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

.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--burnt-orange);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #c06424;
}

/* ============================================================================
   MODE TOGGLE
   ============================================================================ */
.mode-toggle {
  border: 1px solid var(--slate);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  color: var(--white);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}

.mode-toggle:hover {
  border-color: var(--burnt-orange);
  background: rgba(212, 114, 44, 0.08);
  color: var(--burnt-orange);
}

/* ============================================================================
   MOBILE NAV (hamburger)
   ============================================================================ */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
  min-width: 44px;
  min-height: 44px;
}

.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 29, 35, 0.98);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  min-height: 48px;
  min-width: 220px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.mobile-nav a.nav-cta {
  background: var(--burnt-orange);
  margin-top: 1rem;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 5%;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  min-width: 48px;
  min-height: 48px;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-nav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================================
   FOOTER (shared)
   ============================================================================ */
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  border-top: 1px solid var(--slate);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 0.85rem;
  color: var(--steel);
}

.footer-right {
  font-size: 0.85rem;
  color: var(--steel);
}

.footer-right a {
  color: var(--burnt-orange);
  text-decoration: none;
}

/* ============================================================================
   PAGE HEADER (used on how-it-works, pricing)
   ============================================================================ */
.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5% 3rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.page-header h1 em {
  font-style: normal;
  color: var(--burnt-orange);
}

.page-header p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--steel);
  line-height: 1.7;
}

/* ============================================================================
   BOTTOM CTA (shared)
   ============================================================================ */
.bottom-cta {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 5% 5rem;
  text-align: center;
}

.bottom-cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.bottom-cta p {
  font-size: 1.05rem;
  color: var(--steel);
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  background: var(--burnt-orange);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn:hover {
  background: #c06424;
  transform: translateY(-1px);
}

/* ============================================================================
   HOMEPAGE STYLES
   ============================================================================ */

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 0;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 6rem 0 5rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21, 24, 32, 0.88) 0%, rgba(21, 24, 32, 0.82) 50%, rgba(21, 24, 32, 0.92) 100%);
  z-index: 2;
}

.hero-bg picture,
.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 114, 44, 0.08) 0%, rgba(21, 24, 32, 0.9) 50%, rgba(212, 114, 44, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-placeholder span {
  color: var(--slate);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px dashed var(--slate);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.hero-badge {
  display: inline-block;
  background: var(--amber-glow);
  color: var(--amber);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 114, 44, 0.25);
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  max-width: 750px;
  margin: 0 auto 1.5rem;
  letter-spacing: -1.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--burnt-orange);
}

.hero p {
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--steel);
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  background: var(--burnt-orange);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: #c06424;
  transform: translateY(-1px);
}

.hero-sub {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--steel);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-cta.secondary {
  background: transparent;
  border: 1px solid var(--burnt-orange);
  color: var(--burnt-orange);
}

.hero-cta.secondary:hover {
  background: rgba(212, 114, 44, 0.1);
}

.section-link {
  display: inline-block;
  text-align: center;
  margin-top: 2rem;
  color: var(--burnt-orange);
  text-decoration: none;
  font-weight: 500;
}

.section-link:hover {
  text-decoration: underline;
}

/* Stats Bar */
.stats {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  border-top: 1px solid var(--slate);
  border-bottom: 1px solid var(--slate);
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--burnt-orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--steel);
  margin-top: 0.25rem;
}

/* Social Proof / Testimonial */
.social-proof {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 5%;
  text-align: center;
}

.social-proof-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--steel);
  margin-bottom: 1.5rem;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--burnt-orange);
  opacity: 0.4;
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  color: var(--silver);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--steel);
  border: 2px solid var(--burnt-orange);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar .placeholder {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel);
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--steel);
}

.testimonial-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--steel);
  font-style: italic;
  border: 1px dashed var(--slate);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  display: inline-block;
}

/* Problem Section */
.problem {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.problem h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.problem > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--steel);
}

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

.problem-card {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.problem-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.problem-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.problem-card-img-placeholder .img-icon {
  font-size: 2rem;
  opacity: 0.5;
}

.problem-card-img-placeholder span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
}

.problem-card-body {
  padding: 1.75rem;
}

.problem-card h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.6;
}

/* How It Works (homepage section) */
.how {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.how h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

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

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--amber-glow);
  border: 2px solid var(--burnt-orange);
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--burnt-orange);
  margin-bottom: 1.25rem;
}

.step h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.6;
}

/* Services */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.services h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.services > p {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 3rem;
  color: var(--steel);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-item {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--amber-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.service-item h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 5%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--steel);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Pilot CTA (homepage) */
.pilot {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 5%;
  text-align: center;
}

.pilot-box {
  background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--slate) 100%);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.pilot-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.06;
}

.pilot-box > * {
  position: relative;
  z-index: 2;
}

.pilot-box h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.pilot-box p {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.pilot-terms {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pilot-term {
  text-align: center;
}

.pilot-term .val {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--burnt-orange);
}

.pilot-term .lbl {
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 0.2rem;
}

/* Territory (homepage) */
.territory {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.territory h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.territory > p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--steel);
}

.territory-highlight {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.territory-map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--slate);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.territory-map-placeholder .map-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.territory-map-placeholder span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
}

.territory-highlight p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
}

.territory-highlight strong {
  color: var(--white);
}

.territory-highlight a {
  color: var(--burnt-orange);
  text-decoration: none;
}

/* Image Annotation */
.img-note {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
  border: 1px dashed var(--slate);
  border-radius: 4px;
  padding: 0.35rem 0.6rem;
  display: inline-block;
}

/* ============================================================================
   HOW IT WORKS PAGE STYLES
   ============================================================================ */

/* Timeline */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 5% 5rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--charcoal);
  border: 3px solid var(--burnt-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--burnt-orange);
  z-index: 2;
}

.timeline-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--burnt-orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}

.timeline-content .detail-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--silver);
}

.detail-item .check {
  color: var(--burnt-orange);
  flex-shrink: 0;
  font-weight: 700;
}

.timeline-img {
  width: 100%;
  height: 140px;
  background: var(--slate);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  overflow: hidden;
}

.timeline-img span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
}

.timeline-img .img-icon {
  font-size: 1.5rem;
  opacity: 0.5;
}

/* Your Day section */
.your-day {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
  border-top: 1px solid var(--slate);
}

.your-day h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.your-day > p {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 3rem;
  color: var(--steel);
}

.day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.day-card {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 1.75rem;
}

.day-card .time {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--burnt-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.day-card h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.day-card p {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.6;
}

.day-card.highlight {
  border-color: var(--burnt-orange);
  background: linear-gradient(135deg, var(--charcoal-light) 0%, rgba(212, 114, 44, 0.06) 100%);
}

/* Comparison Table */
.comparison {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.comparison h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

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

.compare-table th,
.compare-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--slate);
}

.compare-table th {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
  font-weight: 600;
}

.compare-table td {
  font-size: 0.9rem;
  color: var(--silver);
}

.compare-table td:first-child {
  color: var(--white);
  font-weight: 600;
}

.col-without {
  color: var(--steel) !important;
  opacity: 0.7;
}

.col-with {
  color: var(--burnt-orange) !important;
  font-weight: 600 !important;
}

/* ============================================================================
   PRICING PAGE STYLES
   ============================================================================ */

/* Pricing Cards */
.pricing-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 5% 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--burnt-orange);
  background: linear-gradient(135deg, var(--charcoal-light) 0%, rgba(212, 114, 44, 0.06) 100%);
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burnt-orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 50px;
}

.card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pricing-card .price {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--steel);
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--steel);
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--silver);
}

.feature-item .check {
  color: var(--burnt-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.card-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}

.card-cta.primary {
  background: var(--burnt-orange);
  color: var(--white);
}

.card-cta.primary:hover {
  background: #c06424;
}

.card-cta.secondary {
  background: transparent;
  color: var(--burnt-orange);
  border: 2px solid var(--burnt-orange);
}

.card-cta.secondary:hover {
  background: var(--amber-glow);
}

/* Pilot Banner */
.pilot-banner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5%;
}

.pilot-banner-inner {
  background: var(--amber-glow);
  border: 1px solid rgba(212, 114, 44, 0.3);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pilot-banner-inner h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}

.pilot-banner-inner p {
  font-size: 0.9rem;
  color: var(--silver);
  margin-top: 0.25rem;
}

.pilot-badge {
  flex-shrink: 0;
  background: var(--burnt-orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  white-space: nowrap;
}

/* What's Included */
.included {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.included h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.included > p {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 3rem;
  color: var(--steel);
}

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

.included-item {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

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

.included-item h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.included-item p {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.5;
}

/* ROI Calculator */
.roi {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 5%;
  border-top: 1px solid var(--slate);
}

.roi h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.roi > p {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: var(--steel);
}

.roi-box {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 2.5rem;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate);
}

.roi-row:last-child {
  border-bottom: none;
}

.roi-label {
  font-size: 0.95rem;
  color: var(--silver);
}

.roi-value {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.roi-value.orange {
  color: var(--burnt-orange);
}

.roi-value.big {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--burnt-orange);
}

.roi-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--steel);
  font-style: italic;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.faq h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.faq-item {
  border-bottom: 1px solid var(--slate);
  padding: 1.5rem 0;
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ============================================================================
   ABOUT PAGE STYLES
   ============================================================================ */

/* About Hero */
.about-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5% 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-hero-text h1 em {
  font-style: normal;
  color: var(--burnt-orange);
}

.about-hero-text p {
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-hero-img {
  width: 100%;
  height: 400px;
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-hero-img .img-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.about-hero-img span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel);
  border: 1px dashed var(--slate);
  padding: 0.35rem 0.6rem;
  border-radius: 4px;
}

/* Values */
.values {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
  border-top: 1px solid var(--slate);
}

.values h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

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

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--amber-glow);
  border: 1px solid rgba(212, 114, 44, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.value-card h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
}

/* Why CT */
.why-ct {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.why-ct-box {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-ct-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.why-ct-text p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

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

.ct-stat {
  background: var(--charcoal);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.ct-stat .num {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--burnt-orange);
  line-height: 1;
}

.ct-stat .label {
  font-size: 0.75rem;
  color: var(--steel);
  margin-top: 0.35rem;
}

/* Founder */
.founder {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 5%;
  border-top: 1px solid var(--slate);
}

.founder h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.founder-card {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.founder-photo {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: var(--slate);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  overflow: hidden;
  border: 2px solid var(--burnt-orange);
}

.founder-photo .img-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.founder-photo span {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel);
}

.founder-info h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.85rem;
  color: var(--burnt-orange);
  font-weight: 600;
  margin-bottom: 1rem;
}

.founder-info p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* Trades We Serve */
.trades {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5%;
  border-top: 1px solid var(--slate);
}

.trades h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.trades > p {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 3rem;
  color: var(--steel);
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trade-card {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
}

.trade-card:hover {
  border-color: var(--burnt-orange);
}

.trade-card .trade-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.trade-card h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

.trade-card .trade-status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  font-weight: 600;
}

.trade-card .trade-status.open {
  color: var(--burnt-orange);
}

.trade-card .trade-status.soon {
  color: var(--steel);
}

/* ============================================================================
   PILOT PAGE STYLES
   ============================================================================ */

/* Pilot Page Layout */
.pilot-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-side h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.form-side h1 em {
  font-style: normal;
  color: var(--burnt-orange);
}

.form-side > p {
  font-size: 1rem;
  color: var(--steel);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 0.4rem;
}

.form-group .required {
  color: var(--burnt-orange);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--burnt-orange);
}

.form-group input::placeholder {
  color: var(--steel);
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

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

/* Territory Selector */
.territory-section {
  margin-bottom: 1.5rem;
}

.territory-section label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 0.75rem;
}

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

.town-chip {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.town-chip:hover {
  border-color: var(--burnt-orange);
  color: var(--white);
}

.town-chip.selected {
  background: var(--amber-glow);
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
  font-weight: 600;
}

.town-chip.taken {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.town-chip .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.town-chip .status-dot.open {
  background: var(--green);
}

.town-chip .status-dot.taken {
  background: var(--red);
}

.territory-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--steel);
}

.territory-legend span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Submit Button & Form Note */
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--burnt-orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  background: #c06424;
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 0.75rem;
}

/* Value Side */
.value-side {
  padding-top: 1rem;
}

.pilot-terms-box {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.pilot-terms-box h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pilot-term-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--slate);
}

.pilot-term-row:last-child {
  border-bottom: none;
}

.pilot-term-label {
  font-size: 0.9rem;
  color: var(--steel);
}

.pilot-term-value {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--burnt-orange);
  font-size: 1rem;
}

.included-box {
  background: var(--charcoal-light);
  border: 1px solid var(--slate);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.included-box h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.included-box .included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--silver);
  text-align: left;
}

.included-box .included-item .check {
  color: var(--burnt-orange);
  font-weight: 700;
  flex-shrink: 0;
}

.trust-box {
  background: var(--amber-glow);
  border: 1px solid rgba(212, 114, 44, 0.25);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.trust-box p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
}

.trust-box strong {
  color: var(--white);
}

/* Pilot Testimonial */
.pilot-testimonial {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 5% 4rem;
  text-align: center;
}

.pilot-testimonial blockquote {
  font-size: 1.1rem;
  color: var(--silver);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pilot-testimonial .author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.pilot-testimonial .role {
  font-size: 0.8rem;
  color: var(--steel);
}

.pilot-testimonial .note {
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--steel);
  font-style: italic;
  border: 1px dashed var(--slate);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  display: inline-block;
}

/* ============================================================================
   GHOST-SPECIFIC / POST STYLES
   ============================================================================ */
.gh-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 5%;
}

.gh-content h1,
.gh-content h2,
.gh-content h3 {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  margin-bottom: 1rem;
}

.gh-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.gh-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

.gh-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.gh-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.gh-content a {
  color: var(--burnt-orange);
  text-decoration: underline;
}

.gh-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.gh-content blockquote {
  border-left: 3px solid var(--burnt-orange);
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: var(--steel);
  font-style: italic;
}

.gh-content ul,
.gh-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.gh-content li {
  margin-bottom: 0.5rem;
}

.gh-content code {
  background: var(--charcoal-light);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
}

.gh-content pre {
  background: var(--charcoal-light);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}

.gh-content pre code {
  background: none;
  padding: 0;
}

.gh-post-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 5% 2rem;
  text-align: center;
}

.gh-post-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.gh-post-meta {
  font-size: 0.85rem;
  color: var(--steel);
}

/* ============================================================================
   RESPONSIVE — MOBILE BREAKPOINTS
   ============================================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Homepage */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.85rem 2rem;
  }

  .hero-content {
    padding: 3rem 0 3rem;
  }

  .section-link {
    margin-top: 1.5rem;
  }

  .problem-grid,
  .steps,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pilot-terms {
    flex-direction: column;
    gap: 1rem;
  }

  .problem-card-img {
    height: 140px;
  }

  .trust-badges {
    gap: 1.5rem;
  }

  .territory-map-placeholder {
    height: 150px;
  }

  /* How It Works */
  .page-header h1 {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 1.5rem;
  }

  .timeline-dot {
    left: 1.5rem;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }

  .timeline-content {
    width: calc(100% - 4rem);
    margin-left: 4rem !important;
    margin-right: 0 !important;
  }

  .day-grid {
    grid-template-columns: 1fr;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.75rem;
  }

  /* Pricing */
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .pilot-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .roi-row {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  /* About */
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-text h1 {
    font-size: 2.2rem;
  }

  .about-hero-img {
    height: 250px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .why-ct-box {
    grid-template-columns: 1fr;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
  }

  .founder-photo {
    margin: 0 auto;
  }

  .trades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pilot */
  .pilot-page {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-side h1 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .town-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
