/* Sales engine — conversion layer on top of brand landers */
.hero-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-urgency {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-stats-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat {
  background: rgba(8,12,10,0.78);
  padding: 18px 14px;
  text-align: center;
  color: #fff;
}
.hero-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--accent);
}
.hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 720px) {
  .hero-stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--ivory);
  border: 1px solid rgba(12,20,16,0.1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12,20,16,0.28);
}
.price-card.is-featured {
  background: var(--forest);
  color: #fff;
  border-color: transparent;
}
.price-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}
.price-card .price-tag {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.price-card.is-featured .price-tag { color: var(--accent); }
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(12,20,16,0.08);
  font-size: 0.92rem;
  line-height: 1.45;
  color: #3a433c;
}
.price-card.is-featured li {
  border-bottom-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
}
.price-card li:last-child { border-bottom: 0; }
.price-card .btn { width: 100%; margin-top: 8px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px 20px;
}
.why-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--accent);
}
.why-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-size: 0.95rem;
}

.loc-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}
@media (max-width: 800px) {
  .loc-groups { grid-template-columns: 1fr; }
}
.loc-group {
  background: #fff;
  border: 1px solid rgba(12,20,16,0.08);
  padding: 20px;
}
.loc-group h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}
.loc-group ul { list-style: none; margin: 0; padding: 0; }
.loc-group li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(12,20,16,0.08);
  font-size: 0.92rem;
}
.loc-group li:last-child { border-bottom: 0; }
.loc-group .time { color: var(--sage); white-space: nowrap; }

.dev-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .dev-block { grid-template-columns: 1fr; gap: 24px; }
}
.dev-points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.dev-points li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(12,20,16,0.08);
  line-height: 1.5;
}
.dev-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

.sticky-inner.is-triple {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 520px) {
  .sticky-inner.is-triple { grid-template-columns: 1fr 1fr; }
  .sticky-inner.is-triple .btn:first-child { grid-column: 1 / -1; }
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8,12,10,0.72);
  backdrop-filter: blur(6px);
}
.lead-popup.open { display: flex; }
.lead-popup-card {
  width: min(440px, 100%);
  background: var(--ivory);
  color: var(--ink);
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.lead-popup-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
}
.lead-popup-card p {
  margin: 0 0 18px;
  color: #3a433c;
  line-height: 1.5;
  font-size: 0.95rem;
}
.lead-popup-card label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 14px 0 8px;
}
.lead-popup-card input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(12,20,16,0.2);
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.lead-popup-card .btn { width: 100%; margin-top: 20px; }
.lead-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
body.has-sticky-pad { padding-bottom: 76px; }

/* —— Mobile / small-screen hero + top nav cleanup —— */
@media (max-width: 720px) {
  .nav {
    padding: 14px 0 !important;
  }
  .nav .shell {
    gap: 10px !important;
    align-items: center !important;
  }
  .nav-brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 108px);
    font-size: 0.95rem !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }
  .nav-cta {
    flex: 0 0 auto;
    padding: 10px 12px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
  }
  .nav-cta .nav-cta-full { display: none; }
  .nav-cta .nav-cta-short { display: inline; }

  .breadcrumbs {
    display: none !important;
  }

  .hero-copy {
    padding: 0 0 28px !important;
    max-width: none !important;
  }
  .hero-line {
    margin-bottom: 8px !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.14em !important;
  }
  .hero-brand {
    margin: 0 0 10px !important;
    font-size: clamp(2.15rem, 11vw, 2.85rem) !important;
    line-height: 0.98 !important;
  }
  .hero-urgency {
    margin: 0 0 10px !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.35;
  }
  .hero-sub {
    margin: 0 0 14px !important;
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    max-width: none !important;
  }
  .hero-offer {
    gap: 6px !important;
    margin: 0 0 14px !important;
  }
  .hero-chip {
    padding: 6px 9px !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.02em !important;
  }
  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px !important;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 13px 10px !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.1em !important;
  }
  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .hero-stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .hero-stat {
    padding: 12px 8px !important;
  }
  .hero-stat strong {
    font-size: 1.05rem !important;
  }
  .hero-stat span {
    font-size: 0.58rem !important;
    letter-spacing: 0.06em !important;
  }
}

@media (max-width: 380px) {
  .nav-brand {
    max-width: calc(100% - 96px);
    font-size: 0.88rem !important;
  }
  .nav-cta {
    padding: 9px 10px !important;
  }
  .hero-brand {
    font-size: 1.95rem !important;
  }
}

/* Desktop/default: short label hidden */
.nav-cta .nav-cta-short { display: none; }
.nav-cta .nav-cta-full { display: inline; }
