/* =============================================
   BLEND 2 VEND — SHARED STYLESHEET
   ============================================= */

/* 1. DESIGN TOKENS */
:root {
  --gold:        #E8B547;
  --gold-hover:  #C9960A;
  --gold-dim:    rgba(232,181,71,0.12);
  --bg:          #0B0F0C;
  --surface-1:   #111710;
  --surface-2:   #161C15;
  --text:        #FFFFFF;
  --text-mid:    #9EB5A6;
  --text-faint:  #526058;
  --rule:        #1E2A20;
  --max-w:       1160px;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --radius-btn:  6px;
  --radius-card: 10px;
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

em { font-style: italic; color: var(--gold); }

/* 4. LAYOUT */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.section--dark { background: var(--surface-1); }
.section--darker { background: var(--surface-2); }

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s;
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover { background: var(--gold-hover); }

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
}

.btn-ghost {
  color: var(--text-mid);
  border: 1.5px solid var(--rule);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* 6. NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 4px 0;
  background: rgba(11,15,12,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(11,15,12,0.5) 0%, rgba(11,15,12,0.15) 50%, transparent 100%);
  pointer-events: none;
  z-index: 99;
}

.nav.scrolled {
  background: rgba(11,15,12,0.95);
  backdrop-filter: blur(12px);
  border-color: var(--rule);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.nav__logo img {
  height: 110px;
  width: 330px;
  object-fit: cover;
  object-position: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav__cta { margin-left: 32px; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: rgba(11,15,12,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
  padding: 24px clamp(20px,5vw,60px) 32px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}

.nav__drawer.open { display: flex; }

.nav__drawer a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}

.nav__drawer a:hover,
.nav__drawer a.active { color: var(--gold); }

.nav__drawer .btn { align-self: flex-start; margin-top: 8px; }

/* 7. HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: -120px;
  padding-top: 120px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(20,35,25,0.9) 0%, var(--bg) 70%);
  z-index: 0;
}

.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.25;
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-mid);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__trust {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* 8. PROOF BAR */
.proof-bar {
  background: var(--surface-1);
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proof-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
  justify-content: center;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.proof-item__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.proof-item__label {
  font-size: 13px;
  color: var(--text-mid);
  max-width: 130px;
  line-height: 1.3;
}

/* 9. SECTION HEADINGS */
.section-head {
  margin-bottom: 56px;
}

.section-head--center {
  text-align: center;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 560px;
}

.section-head--center p { margin: 0 auto; }

/* 10. CARDS */
.card {
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.card:hover {
  border-color: rgba(232,181,71,0.3);
  transform: translateY(-2px);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 8px;
  margin-bottom: 16px;
  color: var(--gold);
}

.card__icon svg { width: 22px; height: 22px; fill: var(--gold); }

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

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

/* 11. TESTIMONIAL CARDS */
.testimonial-card {
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(232,181,71,0.3);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.testimonial-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

.testimonial-card__logo {
  height: 26px;
  width: auto;
  filter: grayscale(1) invert(1);
  opacity: 0.6;
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-card__title {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* 12. IMAGE STRIP */
.image-strip {
  position: relative;
  height: clamp(240px, 35vw, 420px);
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.image-strip::before,
.image-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

.image-strip::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.image-strip::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* 13. NUMBERED STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}

.step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* 14. CTA BLOCK */
.cta-block {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.cta-block__rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
  border-radius: 1px;
}

.cta-block h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-block p {
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-block__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* 15. PROBLEM / PAIN LIST */
.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
}

.pain-item__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(232,181,71,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.pain-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* 16. CHECKLIST */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.checklist li::before {
  content: '✓';
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* 17. CONTACT FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

/* 18. BREADCRUMB */
.breadcrumb {
  padding: 14px 0;
  font-size: 12px;
  color: var(--text-faint);
}

.breadcrumb a {
  color: var(--text-mid);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* 19. BLOG CARD */
.blog-card {
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(232,181,71,0.3);
  transform: translateY(-2px);
}

.blog-card__img {
  height: 200px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 10px;
  border-radius: 3px;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.blog-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card__link { gap: 9px; }

/* 20. PAGE HERO (inner pages) */
.page-hero {
  padding: clamp(12px, 1.5vw, 24px) 0 clamp(28px, 3.5vw, 44px);
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  max-width: 720px;
}

.page-hero p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 580px;
}

/* 21. ABOUT / VALUE CARDS */
.value-card {
  padding: 28px;
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  border-top: 3px solid var(--gold);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* 22. STAT BAR */
.stat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 56px;
}

.stat-bar__item {
  flex: 1;
  min-width: 160px;
  background: var(--surface-1);
  border: 1px solid var(--rule);
  padding: 24px 20px;
  text-align: center;
}

.stat-bar__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.stat-bar__label {
  font-size: 12px;
  color: var(--text-mid);
}

/* 23. CONTACT INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
}

.contact-row__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-row__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.contact-row__value {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-row__value a {
  color: var(--text);
  transition: color 0.2s;
}

.contact-row__value a:hover { color: var(--gold); }

/* 24. FAQ ACCORDION */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-item + .faq-item { margin-top: 2px; }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--surface-1);
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
  gap: 16px;
}

.faq-btn:hover { background: var(--surface-2); }

.faq-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.3s;
  padding: 0 22px;
}

.faq-item.open .faq-body {
  max-height: 400px;
  padding: 0 22px 20px;
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-top: 2px;
}

/* 25. FOOTER */
.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--rule);
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}

.footer__brand img {
  height: 216px;
  width: 648px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 14px;
  max-width: 100%;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
}

/* 26. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* 27. DIVIDER */
.divider {
  width: 100%;
  height: 1px;
  background: var(--rule);
}

/* 28. ROI CALLOUT */
.roi-callout {
  background: var(--gold-dim);
  border: 1px solid rgba(232,181,71,0.3);
  border-radius: var(--radius-card);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.roi-callout__num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.roi-callout__label {
  font-size: 1rem;
  color: var(--text);
  max-width: 360px;
}

.roi-callout__label span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 4px;
}

/* 28b. RENTAL VS LEASE COMPARISON */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.vs-col {
  background: var(--surface-1);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 36px;
}

.vs-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--rule);
}

.vs-divider span {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  border-radius: 50%;
}

.vs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.vs-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.vs-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vs-list strong {
  display: block;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .vs-grid {
    grid-template-columns: 1fr;
  }
  .vs-divider {
    padding: 4px 0;
  }
  .vs-divider::before {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}

/* 29. SCREEN READER ONLY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* 30. RESPONSIVE */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .nav {
    position: sticky;
    top: 0;
  }

  .nav__logo img {
    height: 55px;
    width: 165px;
  }

  .hero {
    margin-top: -65px;
    padding-top: 100px;
  }

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

  .hero { min-height: auto; padding: 40px 0 80px; }
}

@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .proof-bar__inner { gap: 24px 32px; }
  .stat-bar { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  .roi-callout { flex-direction: column; align-items: flex-start; }
}
