/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.page-home-scroll-lock,
html:has(body.page-home) { scroll-behavior: auto; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #c41e2a; color: #fff; }
.btn-primary:hover { background: #a31822; }
.btn-secondary { background: #222; color: #fff; }
.btn-secondary:hover { background: #444; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 48px;
}


/* ===== TOP BAR ===== */
.top-bar {
  background: #111;
  color: #ccc;
  font-size: .85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: #fff; }
.top-bar .hours { color: #f0c040; font-weight: 600; }

/* ===== HEADER / NAV ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 #e8e8e8, 0 4px 16px rgba(0,0,0,.06);
}
.header .container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 24px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-text .name {
  font-size: 1.65rem;
  font-weight: 900;
  color: #111;
  letter-spacing: -.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-text .name span { color: #c41e2a; }
.logo-text .tag {
  font-size: .8rem;
  font-weight: 700;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #c41e2a;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
}
.nav-menu {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 4px;
}
.nav-menu a {
  color: #c41e2a;
  font-size: .95rem;
  font-weight: 700;
  padding: 12px 16px;
  display: block;
  border-radius: 4px;
  transition: background .2s, color .2s;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: #c41e2a;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url('assets/images/highway-products-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 24px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 2px 2px 6px rgba(0,0,0,.4);
}
.hero-content .tagline {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: .5px;
}
.hero-content .badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 36px;
  flex-wrap: wrap;
}
.hero-content .badge {
  background: rgba(196,30,42,.85);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
}
.hero-content .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== INFO BAR ===== */
.info-bar {
  background: #c41e2a;
  color: #fff;
  padding: 0;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.info-card {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.info-card:last-child { border-right: none; }
.info-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 800;
}
.info-card p { font-size: .95rem; }
.info-card a { color: #fff; text-decoration: underline; }

/* ===== WHEEL SHOWCASE ===== */
.wheel-showcase {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}
.wheel-showcase-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.wheel-showcase-eyebrow {
  display: inline-block;
  background: #111;
  color: #f0c040;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.wheel-showcase-intro h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.15;
}
.wheel-showcase-intro p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}
.wheel-gallery {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 40px;
}
.wheel-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  background: #111;
}
.wheel-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.wheel-card:hover img { transform: scale(1.04); }
.wheel-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.wheel-card--feature {
  transform: translateY(-24px);
  box-shadow: 0 20px 48px rgba(196,30,42,.22);
  border: 3px solid #c41e2a;
}
.wheel-card--feature img { height: 400px; }
.wheel-showcase-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.wheel-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.wheel-tags span {
  background: #fff;
  border: 2px solid #e5e5e5;
  color: #333;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}
.wheel-showcase-note {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .wheel-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wheel-card--feature {
    transform: none;
    order: -1;
  }
  .wheel-card img,
  .wheel-card--feature img { height: 300px; }
  .wheel-showcase-intro h2 { font-size: 2rem; }
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 80px 0;
}
.content-section:nth-child(even) {
  background: #f5f5f5;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split.reverse .split-image { order: -1; }
.split-image img {
  border-radius: 6px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.split-image img.storefront-crop {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 35%;
}
.split-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
}
.split-text p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.financing-badge {
  background: #f0c040;
  color: #111;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 20px;
}

/* ===== STOREFRONT SHOWCASE ===== */
.storefront-section {
  padding: 60px 0;
  background: #f5f5f5;
  text-align: center;
}
.storefront-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-section {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 0;
}
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: #aaa; }
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 8px; }

/* ===== VIDEO SECTION ===== */
.video-section {
  background: #f5f5f5;
  padding: 80px 0;
  text-align: center;
}
.video-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  aspect-ratio: 16/9;
  background: #000;
}
.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 72px; height: 72px;
  background: rgba(196,30,42,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

/* ===== PRODUCTS PAGE ===== */
.page-hero {
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),
              url('assets/images/lee-tires-storefront.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: .9;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 80px 0;
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}
.product-card-img-accessories {
  object-fit: cover;
  object-position: center center;
}
.product-card-body {
  padding: 24px;
}
.product-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-card-body p {
  color: #666;
  font-size: .95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-card-body .btn {
  padding: 10px 24px;
  font-size: .85rem;
}
.service-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.service-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #555;
  font-size: 1.05rem;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c41e2a;
  font-weight: 800;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #aaa;
  padding: 4px 0;
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: #c41e2a; }
.footer-col p {
  font-size: .9rem;
  line-height: 1.6;
  color: #aaa;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: #777;
}
.footer-bottom a { color: #777; }
.footer-bottom a:hover { color: #ccc; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-image { order: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards { grid-template-columns: 1fr; }
  .info-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .info-card:last-child { border-bottom: none; }
}
@media (max-width: 992px) {
  .logo-text .name { font-size: 1.35rem; }
  .logo-icon { width: 64px; height: 64px; }
}
@media (max-width: 768px) {
  .header .container {
    gap: 12px;
    padding: 10px 16px;
    flex-wrap: wrap;
  }
  .logo {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }
  .logo-icon { width: 56px; height: 56px; }
  .logo-text .name { font-size: 1.15rem; }
  .logo-text .tag {
    font-size: .62rem;
    letter-spacing: 1px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
  }
  .nav-menu {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    border-top: 1px solid #eee;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
  }
  .hero-content h1 { font-size: 1.85rem; }
  .hero-content .tagline { font-size: 1rem; }
  .hero { padding: 64px 20px; min-height: 360px; }
  .page-hero { padding: 56px 20px; }
  .page-hero h1 { font-size: 1.65rem; }
  .page-hero p { font-size: 1rem; }
  .products-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-card img { height: 240px; }
  .section-title {
    font-size: 1.45rem;
    line-height: 1.25;
    padding: 0 4px;
  }
  .section-subtitle {
    font-size: .92rem;
    margin-bottom: 32px;
    padding: 0 4px;
  }
  .content-section { padding: 48px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content .badges { gap: 8px; }
  .hero-content .badge { font-size: .78rem; padding: 6px 12px; }
  .hero-content .cta-group { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-content .cta-group .btn { width: 100%; text-align: center; }
  .top-bar { font-size: .78rem; }
  .top-bar .container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4px;
    padding: 8px 12px;
  }
  .wheel-showcase { padding: 48px 0 56px; }
  .wheel-showcase-intro h2 { font-size: 1.65rem; }
  .wheel-showcase-intro p { font-size: 1rem; }
  .split-text h2 { font-size: 1.5rem; }
  .contact-popup-shell:not(.is-visible) {
    transform: translate(-50%, -50%) translate(-40vw, 40vh) scale(0.92);
  }
}
@media (max-width: 480px) {
  .logo-text .tag { display: none; }
  .logo-text .name { font-size: 1rem; }
  .hero-content h1 { font-size: 1.55rem; }
  .contact-popup-header { font-size: 1.25rem; padding: 14px 16px; }
}

/* ===== CONTACT POPUP (Highway Autoworks style) ===== */
.contact-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.contact-popup-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.contact-popup-shell {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: min(500px, calc(100vw - 40px));
  background: #111;
  padding: 7px;
  box-sizing: border-box;
  transform: translate(-50%, -50%) translate(-46vw, 46vh) scale(0.94);
  opacity: 0;
  transition:
    transform .7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity .55s ease;
  pointer-events: none;
}
.contact-popup-shell.is-visible {
  transform: translate(-50%, -50%) translate(0, 0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.contact-popup {
  background: #fff;
  overflow: hidden;
  font-family: Helvetica, Arial, sans-serif;
}
.contact-popup-header {
  background: #c41e2a;
  color: #fff;
  text-align: center;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 18px 20px;
  line-height: 1.2;
}
.contact-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(180, 180, 180, 0.55);
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: background .2s;
}
.contact-popup-close::before,
.contact-popup-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #111;
  border-radius: 1px;
}
.contact-popup-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.contact-popup-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.contact-popup-close:hover { background: rgba(160, 160, 160, 0.75); }
.contact-popup-body {
  padding: 28px 32px 32px;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
}
.contact-popup-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 18px;
}
.contact-popup-line {
  margin: 0 0 6px;
  color: #222;
}
.contact-popup-line a {
  color: #c41e2a;
  font-weight: 400;
  text-decoration: underline;
}
.contact-popup-line a:hover { color: #a31822; }
.contact-popup-hours-title {
  font-weight: 700;
  color: #111;
  margin: 18px 0 6px;
}
.contact-popup-phone {
  display: block;
  margin-top: 28px;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  text-decoration: none;
  letter-spacing: .3px;
}
.contact-popup-phone:hover { color: #c41e2a; }
@media (max-width: 480px) {
  .contact-popup-shell {
    width: calc(100vw - 24px);
  }
  .contact-popup-body {
    padding: 22px 20px 26px;
  }
  .contact-popup-phone { font-size: 1.65rem; }
}

/* ===== PITCH AUTH MODAL ===== */
body.pitch-auth-open { overflow: hidden; }
.pitch-auth-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 2000;
  opacity: 0;
  transition: opacity .25s ease;
}
.pitch-auth-backdrop.is-visible { opacity: 1; }
.pitch-auth-shell {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(.96);
  width: min(420px, calc(100vw - 32px));
  z-index: 2001;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.pitch-auth-shell.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.pitch-auth-card {
  background: #fff;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
}
.pitch-auth-header {
  background: #c41e2a;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 18px 20px;
}
.pitch-auth-body { padding: 28px 32px 32px; }
.pitch-auth-lead {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pitch-auth-hint {
  color: #666;
  margin-bottom: 20px;
  font-size: .95rem;
}
.pitch-auth-form { display: flex; flex-direction: column; gap: 12px; }
.pitch-auth-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.pitch-auth-input:focus {
  outline: none;
  border-color: #c41e2a;
}
.pitch-auth-input--error { border-color: #c41e2a; background: #fff5f5; }
.pitch-auth-error {
  color: #c41e2a;
  font-size: .9rem;
  font-weight: 600;
  margin: 0;
}
.pitch-auth-submit { width: 100%; text-align: center; }
.pitch-auth-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(180, 180, 180, 0.55);
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.pitch-auth-close::before,
.pitch-auth-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #111;
  border-radius: 1px;
}
.pitch-auth-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.pitch-auth-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* ===== PITCH / OWNER PAGES ===== */
.pitch-top-bar {
  background: #111;
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.pitch-top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pitch-refs-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #c41e2a;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 4px;
  transition: background .2s;
}
.pitch-refs-btn:hover { background: #a31822; color: #fff; }
.pitch-top-bar-note {
  color: #888;
  font-size: .8rem;
}
.pitch-paypal-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 10px 14px;
  background: #0070ba;
  color: #fff !important;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none !important;
  transition: background .2s;
}
.pitch-paypal-btn:hover { background: #005ea6; color: #fff !important; }
.pitch-paypal-btn--pro { background: #ffc439; color: #111 !important; }
.pitch-paypal-btn--pro:hover { background: #f0b429; color: #111 !important; }
.pitch-header .container { justify-content: space-between; }
.pitch-back-btn {
  padding: 10px 20px;
  font-size: .85rem;
  white-space: nowrap;
}
.pitch-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1518 50%, #1a1a1a 100%);
  color: #fff;
  padding: 72px 24px 80px;
  text-align: center;
}
.pitch-eyebrow {
  display: inline-block;
  background: #c41e2a;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.pitch-hero h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}
.pitch-hero-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ddd;
}
.pitch-narrow { max-width: 820px; }
.pitch-section { padding: 64px 0; }
.pitch-section--accent { background: #faf8f5; }
.pitch-section--dark { background: #111; color: #eee; }
.pitch-callout {
  background: #fff;
  border-left: 4px solid #c41e2a;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  line-height: 1.7;
}
.pitch-callout p + p { margin-top: 12px; }
.pitch-note { color: #555; font-size: .95rem; margin-top: 16px !important; }
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pitch-card {
  background: #fff;
  padding: 28px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid #eee;
}
.pitch-card--highlight {
  border-color: #c41e2a;
  background: linear-gradient(180deg, #fff 0%, #fff8f8 100%);
}
.pitch-tier {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c41e2a;
  margin-bottom: 10px;
}
.pitch-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.pitch-card p { color: #555; font-size: .95rem; line-height: 1.65; }
.pitch-value { margin-top: 16px; color: #111; }
.pitch-offer-banner {
  background: #111;
  color: #fff;
  padding: 32px 36px;
  border-radius: 4px;
  margin-bottom: 40px;
  text-align: center;
}
.pitch-offer-tag {
  color: #f0c040;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  margin-bottom: 12px;
}
.pitch-offer-banner h2 { font-size: 1.5rem; margin-bottom: 12px; }
.pitch-offer-banner p { color: #ccc; line-height: 1.7; max-width: 640px; margin: 0 auto; }
.pitch-tier-block {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  padding: 40px;
  border: 1px solid #e8e8e8;
}
.pitch-tier-block--featured {
  border: 2px solid #c41e2a;
  box-shadow: 0 8px 40px rgba(196, 30, 42, .12);
}
.pitch-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.pitch-tier-label {
  display: inline-block;
  background: #c41e2a;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.pitch-tier-head h2 { font-size: 1.75rem; font-weight: 900; margin-bottom: 8px; }
.pitch-tier-sub { color: #666; font-size: 1rem; }
.pitch-price-tag {
  text-align: center;
  background: #f5f5f5;
  padding: 16px 24px;
  border-radius: 4px;
  min-width: 140px;
}
.pitch-price-tag--pro { background: #111; color: #fff; }
.pitch-price {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #c41e2a;
  line-height: 1;
}
.pitch-price-tag--pro .pitch-price { color: #f0c040; }
.pitch-price-note {
  display: block;
  font-size: .75rem;
  color: #888;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.pitch-price-tag--pro .pitch-price-note { color: #aaa; }
.pitch-feature-list { display: flex; flex-direction: column; gap: 24px; }
.pitch-feature h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}
.pitch-feature p { color: #555; line-height: 1.7; }
.pitch-inline-link {
  display: inline-block;
  margin-top: 10px;
  color: #c41e2a;
  font-weight: 600;
  text-decoration: underline;
}
.pitch-inline-link:hover { color: #a31822; }
.pitch-demo-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: #111;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none !important;
  font-size: .9rem;
}
.pitch-demo-link:hover { background: #c41e2a; color: #fff !important; }
.pitch-cta-row { margin-top: 32px; padding-top: 24px; border-top: 1px solid #eee; }
.pitch-cta-copy { font-size: 1.1rem; font-weight: 600; color: #111; }
.pitch-pro-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
}
.pitch-demo-note {
  margin-top: 10px;
  font-size: .9rem;
  color: #777;
  font-style: italic;
}
.pitch-refs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.pitch-ref-card {
  display: block;
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 28px;
  border-radius: 4px;
  transition: border-color .2s, transform .15s;
}
.pitch-ref-card:hover {
  border-color: #c41e2a;
  transform: translateY(-3px);
}
.pitch-ref-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.pitch-ref-card p { color: #aaa; font-size: .9rem; line-height: 1.6; margin-bottom: 14px; }
.pitch-ref-link { color: #c41e2a; font-weight: 600; font-size: .85rem; }
.pitch-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: .95rem;
}
.pitch-summary-table th,
.pitch-summary-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e8e8e8;
}
.pitch-summary-table th {
  background: #111;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .5px;
}
.pitch-summary-highlight { background: #fff8f8; }
.pitch-closing {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}
.pitch-signature {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}
.pitch-signature span { font-weight: 400; color: #666; font-size: .95rem; }
.pitch-prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 16px;
}
.pitch-prose h2:first-child { margin-top: 0; }
.pitch-prose p { line-height: 1.75; color: #444; margin-bottom: 16px; }
.pitch-bullet-list,
.pitch-numbered-list {
  margin: 16px 0;
  padding-left: 24px;
  color: #555;
  line-height: 1.75;
}
.pitch-bullet-list { list-style: disc; }
.pitch-numbered-list { list-style: decimal; }
.pitch-hero--seo { background: linear-gradient(135deg, #0d1f0d 0%, #1a2e1a 40%, #1a1a1a 100%); }
.pitch-callout--big { padding: 32px 36px; }
.pitch-stat-line { font-size: 1.05rem; color: #111; margin-top: 16px !important; }
.pitch-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.pitch-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid #333;
}
.pitch-step:last-child { border-bottom: none; padding-bottom: 0; }
.pitch-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #c41e2a;
  color: #fff;
  font-weight: 900;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.pitch-step h3 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.pitch-step p { color: #aaa; line-height: 1.7; font-size: .95rem; }
.pitch-timeline { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
.pitch-timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
}
.pitch-timeline-item--highlight {
  background: linear-gradient(90deg, #fff8f8 0%, #fff 40%);
  margin: 0 -24px;
  padding: 28px 24px;
  border-left: 4px solid #c41e2a;
}
.pitch-timeline-when {
  font-weight: 900;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #c41e2a;
}
.pitch-timeline-what h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.pitch-timeline-what p { color: #555; line-height: 1.7; }
.pitch-money-banner {
  background: #111;
  color: #fff;
  padding: 40px 36px;
  border-radius: 6px;
  text-align: center;
  margin-top: 40px;
}
.pitch-money-eyebrow {
  color: #f0c040;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  margin-bottom: 12px;
}
.pitch-money-banner h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.pitch-money-banner p { color: #ccc; line-height: 1.75; margin-bottom: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.pitch-money-banner p:last-child { margin-bottom: 0; color: #f0c040; font-weight: 700; }
.pitch-cta-row--center { text-align: center; }
.pitch-cta-row--center .btn { margin-top: 16px; }
.pitch-tier-block--pro { border-color: #111; }
.pitch-roi-banner {
  background: linear-gradient(135deg, #1a3a1a 0%, #0d2b0d 100%);
  color: #fff;
  padding: 32px 36px;
  border-radius: 6px;
  margin-bottom: 28px;
  text-align: center;
}
.pitch-roi-eyebrow {
  color: #7ddf7d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  margin-bottom: 10px;
}
.pitch-roi-banner h3 { font-size: 1.45rem; font-weight: 900; margin-bottom: 14px; }
.pitch-roi-banner p { color: #cce8cc; line-height: 1.75; max-width: 680px; margin: 0 auto; }
.pitch-urgency-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1518 100%);
  color: #fff;
  padding: 36px 32px;
  border-radius: 6px;
  margin-bottom: 40px;
  border-left: 5px solid #c41e2a;
}
.pitch-urgency-eyebrow {
  color: #f0c040;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  margin-bottom: 12px;
}
.pitch-urgency-banner h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}
.pitch-urgency-banner p {
  color: #ddd;
  line-height: 1.75;
  margin-bottom: 14px;
}
.pitch-urgency-foot {
  margin-bottom: 0 !important;
  color: #fff !important;
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid #444;
}
.pitch-partnership-banner {
  background: #faf8f5;
  border: 2px solid #c41e2a;
  padding: 32px 36px;
  border-radius: 6px;
  margin-top: 32px;
}
.pitch-partnership-banner h3 { font-size: 1.25rem; font-weight: 900; margin-bottom: 14px; color: #111; }
.pitch-partnership-banner p { color: #444; line-height: 1.75; margin-bottom: 12px; }
.pitch-partnership-banner p:last-child { margin-bottom: 0; }
.pitch-national-banner {
  background: #111;
  color: #fff;
  padding: 36px;
  border-radius: 6px;
  margin-top: 24px;
  text-align: center;
}
.pitch-national-eyebrow {
  color: #f0c040;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  margin-bottom: 12px;
}
.pitch-national-banner h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 16px; }
.pitch-national-banner p { color: #ccc; line-height: 1.75; max-width: 680px; margin: 0 auto 12px; }
.pitch-national-banner p:last-child { margin-bottom: 0; color: #fff; }
/* ===== GHL PORTAL DEMO ===== */
.ghl-demo-body {
  margin: 0;
  background: #f0f2f5;
  min-height: 100vh;
}
.ghl-demo-app {
  display: flex;
  min-height: 100vh;
}
.ghl-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #1e2132;
  color: #b8bcc8;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
.ghl-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 24px;
  border-bottom: 1px solid #2d3148;
  margin-bottom: 16px;
}
.ghl-sidebar-logo { width: 36px; height: 36px; border-radius: 6px; }
.ghl-sidebar-brand strong {
  display: block;
  color: #fff;
  font-size: .85rem;
  line-height: 1.3;
}
.ghl-sidebar-brand span { font-size: .7rem; color: #7a7f94; text-transform: uppercase; letter-spacing: .5px; }
.ghl-sidebar-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; padding: 0 12px; }
.ghl-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  color: #b8bcc8;
  transition: background .15s, color .15s;
}
.ghl-nav-item:hover { background: #2d3148; color: #fff; }
.ghl-nav-item--active { background: #c41e2a; color: #fff; }
.ghl-badge {
  font-size: .7rem;
  font-weight: 700;
  background: #2d3148;
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
}
.ghl-nav-item--active .ghl-badge { background: rgba(0,0,0,.25); }
.ghl-badge--alert { background: #f0c040; color: #111; }
.ghl-sidebar-foot {
  padding: 16px 20px 0;
  font-size: .75rem;
  color: #7a7f94;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ghl-live-dot {
  width: 8px;
  height: 8px;
  background: #3ddc84;
  border-radius: 50%;
  animation: ghl-pulse 2s infinite;
}
@keyframes ghl-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.ghl-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.ghl-topbar {
  background: #fff;
  border-bottom: 1px solid #e4e6eb;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.ghl-back-link {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: #c41e2a;
  margin-bottom: 8px;
}
.ghl-back-link:hover { color: #a31822; }
.ghl-topbar h1 { font-size: 1.5rem; font-weight: 800; color: #111; margin: 0 0 4px; }
.ghl-topbar-sub { font-size: .85rem; color: #666; margin: 0; }
.ghl-user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 600;
  color: #444;
}
.ghl-avatar {
  width: 36px;
  height: 36px;
  background: #c41e2a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
}
.ghl-content { padding: 24px 28px 40px; flex: 1; }
.ghl-demo-banner {
  background: #fff8e6;
  border: 1px solid #f0d878;
  border-left: 4px solid #f0c040;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: .9rem;
  color: #554a20;
  margin-bottom: 24px;
  line-height: 1.5;
}
.ghl-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.ghl-kpi-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid #e8eaed;
}
.ghl-kpi-card--accent { border-color: #c41e2a; background: linear-gradient(180deg, #fff 0%, #fff8f8 100%); }
.ghl-kpi-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #888;
  margin-bottom: 8px;
}
.ghl-kpi-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 8px;
}
.ghl-kpi-change { font-size: .78rem; font-weight: 600; color: #666; }
.ghl-kpi-change--up { color: #1a8f4a; }
.ghl-panels {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  margin-bottom: 20px;
}
.ghl-panel {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid #e8eaed;
}
.ghl-panel--wide { grid-column: span 1; }
.ghl-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.ghl-panel-head h2 { font-size: 1rem; font-weight: 800; color: #111; margin: 0; }
.ghl-panel-meta { font-size: .78rem; color: #888; }
.ghl-chart { height: 180px; padding-top: 10px; }
.ghl-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 140px;
  gap: 8px;
  padding: 0 8px;
}
.ghl-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, #e85d68 0%, #c41e2a 100%);
  border-radius: 4px 4px 0 0;
  min-height: 12px;
  position: relative;
  opacity: .85;
}
.ghl-bar--peak { opacity: 1; box-shadow: 0 -4px 12px rgba(196,30,42,.3); }
.ghl-bar span {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  color: #888;
  font-weight: 600;
}
.ghl-campaign-list { list-style: none; margin: 0; padding: 0; }
.ghl-campaign-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .88rem;
}
.ghl-campaign-list li:last-child { border-bottom: none; }
.ghl-campaign-name { font-weight: 600; color: #333; }
.ghl-campaign-status {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 3px 10px;
  border-radius: 12px;
}
.ghl-status--live { background: #e6f7ed; color: #1a8f4a; }
.ghl-status--pending { background: #f0f0f0; color: #666; }
.ghl-table-wrap { overflow-x: auto; }
.ghl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.ghl-table th {
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #888;
  padding: 10px 12px;
  border-bottom: 2px solid #eee;
}
.ghl-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: top;
}
.ghl-table-sub { font-size: .78rem; color: #888; }
.ghl-pill {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.ghl-pill--new { background: #e8f0fe; color: #1a56db; }
.ghl-pill--contacted { background: #f0f0f0; color: #555; }
.ghl-pill--hot { background: #fff0e6; color: #c41e2a; }
.ghl-pill--booked { background: #e6f7ed; color: #1a8f4a; }
.ghl-pill--won { background: #111; color: #f0c040; }
.ghl-funnel { display: flex; flex-direction: column; gap: 14px; }
.ghl-funnel-step { display: grid; grid-template-columns: 110px 1fr 40px; align-items: center; gap: 10px; }
.ghl-funnel-label { font-size: .8rem; font-weight: 600; color: #555; }
.ghl-funnel-bar {
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.ghl-funnel-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--w);
  background: #6b7a99;
  border-radius: 5px;
}
.ghl-funnel-bar--accent::after { background: #c41e2a; }
.ghl-funnel-num { font-size: .85rem; font-weight: 800; color: #111; text-align: right; }
.ghl-funnel-note { font-size: .8rem; color: #888; margin-top: 16px; line-height: 1.5; }
.ghl-panel--explain {
  margin-top: 4px;
  background: #111;
  color: #ccc;
  border-color: #333;
}
.ghl-panel--explain h2 { color: #fff; font-size: 1.2rem; margin-bottom: 20px; }
.ghl-explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.ghl-panel--explain h3 { color: #fff; font-size: .95rem; font-weight: 800; margin-bottom: 8px; }
.ghl-panel--explain p { font-size: .88rem; line-height: 1.65; color: #aaa; }
.ghl-cta-btn { margin-top: 8px; }
@media (max-width: 1024px) {
  .ghl-panels { grid-template-columns: 1fr; }
  .ghl-sidebar { display: none; }
}
@media (max-width: 768px) {
  .pitch-hero { padding: 48px 20px 56px; }
  .pitch-hero h1 { font-size: 1.65rem; }
  .pitch-tier-block { padding: 24px 20px; }
  .pitch-tier-head { flex-direction: column; }
  .pitch-back-btn { font-size: .75rem; padding: 8px 14px; }
  .pitch-summary-table { font-size: .85rem; }
  .pitch-summary-table th,
  .pitch-summary-table td { padding: 10px 8px; }
  .pitch-timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .pitch-step { flex-direction: column; gap: 12px; }
  .pitch-roi-banner,
  .pitch-partnership-banner,
  .pitch-national-banner,
  .pitch-money-banner { padding: 24px 20px; }
  .ghl-content { padding: 16px; }
  .ghl-topbar { padding: 14px 16px; }
  .ghl-kpi-value { font-size: 1.6rem; }
  .ghl-funnel-step { grid-template-columns: 90px 1fr 36px; }
}
