/* RoadHero public — CarVaidya-style city / RSA marketplace layout */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --cv-teal: #0d9488;
  --cv-teal-dark: #0f766e;
  --cv-orange: #e66239;
  --cv-ink: #1e293b;
  --cv-mute: #64748b;
  --cv-line: #e2e8f0;
  --cv-bg: #f8fafc;
  --cv-white: #fff;
  --cv-shell: min(1140px, calc(100% - 1.5rem));
  --cv-font: "Poppins", system-ui, sans-serif;
}

body.rh-body.rh-cv {
  margin: 0;
  font-family: var(--cv-font);
  color: var(--cv-ink);
  background: var(--cv-white);
  -webkit-font-smoothing: antialiased;
}
body.rh-cv a { color: inherit; text-decoration: none; }
body.rh-cv img { max-width: 100%; display: block; }
body.rh-cv .rh-shell { width: var(--cv-shell); margin-inline: auto; }

/* Header — flex: logo · nav · actions (even spacing, no giant gap) */
body.rh-cv .rh-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--cv-line);
}
body.rh-cv .rh-site-header-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 1.25rem !important;
  min-height: 64px !important;
  padding-block: 0 !important;
  grid-template-columns: none !important;
}
body.rh-cv .rh-site-left {
  display: flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  justify-self: auto !important;
  grid-column: auto !important;
  min-width: 0;
}
body.rh-cv .rh-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-weight: 700;
  color: var(--cv-ink);
  line-height: 1;
  white-space: nowrap;
}
body.rh-cv .rh-brand-mark {
  display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--cv-orange) !important;
  flex: 0 0 32px;
}
body.rh-cv .rh-brand-mark img {
  width: 17px;
  height: 17px;
  display: block;
}
body.rh-cv .rh-brand-name {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}
body.rh-cv .rh-site-nav {
  display: none !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 1 1 auto !important;
  min-width: 0;
  margin: 0 !important;
  gap: 0.15rem !important;
  flex-wrap: nowrap;
  justify-self: auto !important;
  grid-column: auto !important;
}
@media (min-width: 1100px) {
  body.rh-cv .rh-site-nav { display: flex !important; }
}
body.rh-cv .rh-site-nav a {
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  color: var(--cv-mute) !important;
  padding: 0.4rem 0.55rem !important;
  border-radius: 7px;
  white-space: nowrap;
  background: transparent !important;
  line-height: 1.2;
}
body.rh-cv .rh-site-nav a:hover {
  color: var(--cv-teal-dark) !important;
  background: #f0fdfa !important;
}
body.rh-cv .rh-site-nav a.is-active {
  color: var(--cv-teal-dark) !important;
  background: #ccfbf1 !important;
  font-weight: 700 !important;
}
body.rh-cv .rh-site-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 0 0 auto !important;
  margin: 0 0 0 auto !important;
  gap: 0.65rem !important;
  flex-wrap: nowrap;
  min-width: 0;
  justify-self: auto !important;
  grid-column: auto !important;
}
body.rh-cv .rh-site-city {
  display: none !important;
  align-items: center !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--cv-teal-dark) !important;
  background: #ccfbf1 !important;
  padding: 0.38rem 0.7rem !important;
  border-radius: 999px !important;
  border: 0 !important;
  margin: 0 !important;
  white-space: nowrap;
  line-height: 1;
  height: 32px;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  body.rh-cv .rh-site-city { display: inline-flex !important; }
}
/* Phone already in top strip — hide in header to avoid crowding */
body.rh-cv .rh-site-phone {
  display: none !important;
}
body.rh-cv .rh-site-login {
  display: none !important;
  align-items: center !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: var(--cv-mute) !important;
  padding: 0 !important;
  white-space: nowrap;
  line-height: 1;
  height: 32px;
}
@media (min-width: 520px) {
  body.rh-cv .rh-site-login { display: inline-flex !important; }
}
body.rh-cv .rh-btn,
body.rh-cv .rh-site-book {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem;
  border-radius: 8px !important;
  font-weight: 600 !important;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.55rem 1rem !important;
  font-size: 0.84rem !important;
  white-space: nowrap;
  line-height: 1.2;
  height: 36px;
  box-sizing: border-box;
}
body.rh-cv .rh-btn-sm,
body.rh-cv .rh-site-book {
  padding: 0 0.95rem !important;
  font-size: 0.84rem !important;
  border-radius: 8px !important;
  height: 36px;
}
body.rh-cv .rh-btn-lg {
  padding: 0.8rem 1.25rem !important;
  height: auto;
}
body.rh-cv .rh-btn-ink,
body.rh-cv .rh-site-book {
  background: var(--cv-teal) !important;
  color: #fff !important;
  border-color: var(--cv-teal) !important;
  box-shadow: none !important;
}
body.rh-cv .rh-btn-ink:hover,
body.rh-cv .rh-site-book:hover { background: var(--cv-teal-dark) !important; }
body.rh-cv .rh-btn-orange {
  background: var(--cv-orange) !important;
  color: #fff !important;
}
body.rh-cv .rh-btn-ghost {
  background: #fff;
  border: 1px solid var(--cv-line) !important;
  color: var(--cv-ink);
}
body.rh-cv .rh-btn-ghost-dark {
  background: #fff;
  border: 1px solid var(--cv-line);
  color: var(--cv-ink);
}
body.rh-cv .rh-site-menu-btn {
  display: inline-flex !important;
  margin-left: 0;
  flex: 0 0 auto;
}
@media (min-width: 1100px) {
  body.rh-cv .rh-site-menu-btn { display: none !important; }
}

/* Top strip */
.cv-topstrip {
  background: #0f766e;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
  padding: 0.45rem 1rem;
}
.cv-topstrip a { color: #fff; text-decoration: underline; font-weight: 700; }

/* Hero — full-bleed, no white card box */
.cv-hero {
  background: transparent;
  padding: 0;
}
.cv-hero-bleed {
  position: relative;
  min-height: min(78vh, 560px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 118, 110, 0.72) 48%, rgba(15, 23, 42, 0.35) 100%),
    url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
}
.cv-hero-inner {
  width: var(--cv-shell);
  margin-inline: auto;
  padding: 3.25rem 0 3rem;
}
.cv-hero-copy {
  max-width: 34rem;
  padding: 0;
}
.cv-hero-brand {
  margin: 0 0 0.35rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}
.cv-hero-loc {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
}
.cv-hero-copy h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.cv-hero-copy > p {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32rem;
}
.cv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.cv-hero-actions .rh-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.cv-hero-actions .rh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.cv-hero-services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 1.1rem;
}
.cv-hero-services li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.cv-hero-services .ti {
  font-size: 1.25rem;
  color: #5eead4;
  line-height: 1;
}
.cv-hero-eta {
  margin: 0.9rem 0 0 !important;
  font-size: 0.84rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
}

@media (max-width: 640px) {
  .cv-hero-bleed { min-height: 0; }
  .cv-hero-inner { padding: 2.25rem 0 2rem; }
  .cv-hero-actions .rh-btn-lg { width: 100%; justify-content: center; }
}

/* Section */
.cv-sec { padding: 2.75rem 0; }
.cv-sec-alt { background: var(--cv-bg); }
.cv-sec-head { margin-bottom: 1.35rem; }
.cv-sec-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 800;
}
.cv-sec-head p { margin: 0; color: var(--cv-mute); font-size: 0.95rem; max-width: 44rem; }

/* Service cards — CarVaidya style */
.cv-svc-card {
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--cv-line);
  border-radius: 0;
  padding: 1.1rem 0.35rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: color 0.15s ease, transform 0.15s ease;
  box-shadow: none;
}
.cv-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 1.5rem;
  border-top: 1px solid var(--cv-line);
}
@media (max-width: 900px) {
  .cv-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cv-svc-grid { grid-template-columns: 1fr; }
}
.cv-svc-card:hover {
  border-color: var(--cv-line);
  box-shadow: none;
  color: var(--cv-teal-dark);
}
.cv-svc-card .ico {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--cv-teal);
  display: inline-flex;
  place-items: unset;
  font-size: 1.55rem;
  margin-bottom: 0.15rem;
  border: 0;
  padding: 0;
}
.cv-svc-card .ico .ti {
  font-size: 1.55rem;
  line-height: 1;
}
.cv-svc-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.cv-svc-card p {
  margin: 0;
  color: var(--cv-mute);
  font-size: 0.86rem;
  line-height: 1.45;
  flex: 1;
}
.cv-svc-card .meta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cv-teal-dark);
}
.cv-svc-card .book {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--cv-orange);
}

/* Brands — logo strip, light dividers */
.cv-brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--cv-line);
  border-bottom: 1px solid var(--cv-line);
}
@media (max-width: 900px) {
  .cv-brands { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cv-brands { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.cv-brand {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--cv-line);
  border-radius: 0;
  padding: 1rem 0.5rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 96px;
  text-align: center;
  transition: background 0.15s ease;
}
.cv-brand:nth-child(6n) { border-right: 0; }
@media (max-width: 900px) {
  .cv-brand:nth-child(6n) { border-right: 1px solid var(--cv-line); }
  .cv-brand:nth-child(4n) { border-right: 0; }
}
@media (max-width: 560px) {
  .cv-brand:nth-child(4n) { border-right: 1px solid var(--cv-line); }
  .cv-brand:nth-child(3n) { border-right: 0; }
}
.cv-brand:hover {
  border-color: var(--cv-line);
  box-shadow: none;
  background: #f8fffd;
}
.cv-brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.cv-brand-fallback {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  color: #fff;
  background: #334155;
}
.cv-brand span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cv-mute);
  line-height: 1.2;
}

/* Benefits checklist two-col */
.cv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 860px) {
  .cv-split { grid-template-columns: 1fr; }
}
.cv-plan-box {
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 14px;
  padding: 1.35rem;
}
.cv-plan-box h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.cv-plan-box .sub { color: var(--cv-mute); font-size: 0.9rem; margin-bottom: 1rem; }
.cv-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}
@media (max-width: 520px) {
  .cv-checks { grid-template-columns: 1fr; }
}
.cv-checks li {
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
}
.cv-checks li::before {
  content: "✓";
  color: var(--cv-teal);
  font-weight: 800;
}

/* Plan inclusions with icons */
.cv-include {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.85rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}
@media (max-width: 520px) {
  .cv-include { grid-template-columns: 1fr; }
}
.cv-include li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cv-ink);
}
.cv-include .ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f0fdfa;
  color: var(--cv-teal);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid #99f6e4;
}
.cv-include .ico .ti {
  font-size: 1.05rem;
  line-height: 1;
}

/* Callback form — key CarVaidya pattern */
.cv-callback {
  background: linear-gradient(135deg, #0f766e, #134e4a);
  color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
}
.cv-callback h3 { margin: 0 0 0.35rem; font-size: 1.2rem; color: #fff; }
.cv-callback p { margin: 0 0 1rem; opacity: 0.9; font-size: 0.9rem; }
.cv-callback .phone {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: block;
  color: #fff;
}
.cv-callback .or {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
  margin: 0.75rem 0;
}
.cv-callback form {
  display: grid;
  gap: 0.55rem;
}
.cv-callback input,
.cv-callback select {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}
.cv-callback button {
  background: var(--cv-orange);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

/* How steps — connected Step 1 → Step 2 rail (not square cards) */
.cv-how {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  background: transparent;
  border: 0;
  padding: 0.25rem 0 0.5rem;
}
@media (max-width: 900px) {
  .cv-how {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 0.25rem;
  }
}
.cv-how-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0 1rem 0.35rem;
  position: relative;
  text-align: center;
  box-shadow: none;
}
.cv-how-item .ico {
  display: none; /* step circle carries the visual */
}
.cv-how-item .num {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--cv-teal);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #f0fdfa;
}
.cv-how-item .num::before {
  content: "Step";
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.cv-how-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 700;
}
.cv-how-item p {
  margin: 0;
  color: var(--cv-mute);
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Horizontal connectors between steps */
.cv-how-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: linear-gradient(90deg, #2dd4bf, #99f6e4);
  z-index: 0;
}
.cv-how-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 22px;
  right: -6px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #2dd4bf;
  border-top: 2px solid #2dd4bf;
  transform: rotate(45deg);
  z-index: 1;
  background: transparent;
}

/* Mobile: vertical timeline */
@media (max-width: 900px) {
  .cv-how-item {
    text-align: left;
    padding: 0 0 1.5rem 4.25rem;
    min-height: 4.5rem;
  }
  .cv-how-item .num {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }
  .cv-how-item:not(:last-child)::after {
    left: 25px;
    top: 56px;
    width: 2px;
    height: calc(100% - 56px);
    background: linear-gradient(180deg, #2dd4bf, #99f6e4);
  }
  .cv-how-item:not(:last-child)::before {
    left: 21px;
    right: auto;
    top: auto;
    bottom: 0.35rem;
    transform: rotate(135deg);
  }
  .cv-how-item:last-child {
    padding-bottom: 0.25rem;
  }
}

/* Why choose — open rows, not boxed cards */
.cv-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cv-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .cv-why-grid { grid-template-columns: 1fr; }
}
.cv-why-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1.25rem 1.2rem;
  border-right: 1px solid var(--cv-line);
  border-bottom: 1px solid var(--cv-line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cv-why-card:nth-child(3n) { border-right: 0; }
.cv-why-card:nth-last-child(-n + 3) { border-bottom: 0; }
@media (max-width: 900px) {
  .cv-why-card:nth-child(3n) { border-right: 1px solid var(--cv-line); }
  .cv-why-card:nth-child(2n) { border-right: 0; }
  .cv-why-card:nth-last-child(-n + 3) { border-bottom: 1px solid var(--cv-line); }
  .cv-why-card:nth-last-child(-n + 2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .cv-why-card { border-right: 0; }
  .cv-why-card:nth-last-child(-n + 2) { border-bottom: 1px solid var(--cv-line); }
  .cv-why-card:last-child { border-bottom: 0; }
}
.cv-why-card .ico {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: 0;
  color: var(--cv-teal);
  display: inline-flex;
  place-items: unset;
  margin-bottom: 0.2rem;
}
.cv-why-card .ico .ti {
  font-size: 1.45rem;
  line-height: 1;
}
.cv-why-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}
.cv-why-card p {
  margin: 0;
  color: var(--cv-mute);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Models / areas chips */
.cv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cv-chip {
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cv-ink);
}
.cv-chip:hover { border-color: var(--cv-teal); color: var(--cv-teal); }

/* SEO text block */
.cv-seo {
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
}
.cv-seo h2 { margin: 0 0 0.65rem; font-size: 1.2rem; }
.cv-seo p { margin: 0 0 0.75rem; color: var(--cv-mute); font-size: 0.92rem; line-height: 1.65; }
.cv-seo p:last-child { margin-bottom: 0; }

/* Why table */
.cv-why-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--cv-line);
}
.cv-why-table th,
.cv-why-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--cv-line);
  font-size: 0.9rem;
  vertical-align: top;
}
.cv-why-table th {
  background: #f0fdfa;
  font-weight: 700;
  width: 32%;
}
.cv-why-table tr:last-child td,
.cv-why-table tr:last-child th { border-bottom: 0; }

/* Testimonials — open columns, no card boxes */
.cv-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--cv-line);
}
@media (max-width: 860px) {
  .cv-quotes { grid-template-columns: 1fr; }
}
.cv-quote {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--cv-line);
  border-radius: 0;
  padding: 1.25rem 1.2rem 1.25rem 0;
  margin-right: 1.2rem;
}
.cv-quote:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
@media (max-width: 860px) {
  .cv-quote {
    border-right: 0;
    border-bottom: 1px solid var(--cv-line);
    margin-right: 0;
    padding: 1.15rem 0;
  }
  .cv-quote:last-child { border-bottom: 0; }
}
.cv-quote p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--cv-ink);
}
.cv-quote strong { font-size: 0.88rem; }
.cv-quote span { display: block; color: var(--cv-mute); font-size: 0.8rem; }

/* FAQ — stacked list, not separate pills */
.cv-faq details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--cv-line);
  border-radius: 0;
  padding: 0.95rem 0;
  margin-bottom: 0;
}
.cv-faq details:first-child { border-top: 1px solid var(--cv-line); }
.cv-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  list-style: none;
}
.cv-faq summary::-webkit-details-marker { display: none; }
.cv-faq details[open] summary { color: var(--cv-teal-dark); margin-bottom: 0.45rem; }
.cv-faq details p {
  margin: 0;
  color: var(--cv-mute);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Footer */
body.rh-cv .rh-trust-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.72);
  padding: 2.75rem 0 1.5rem;
}
body.rh-cv .rh-trust-footer h4 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
body.rh-cv .rh-trust-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}
body.rh-cv .rh-trust-footer a:hover { color: #5eead4; }
body.rh-cv .rh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

/* ─── Rich footer ─── */
.cv-footer {
  background: #0b1220;
  color: rgba(255,255,255,.72);
  margin-top: 0;
}
.cv-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.cv-footer a:hover { color: #5eead4; }
.cv-footer-cta {
  background: linear-gradient(120deg, #0f766e 0%, #134e4a 55%, #c74d28 140%);
  padding: 1.75rem 0;
}
.cv-footer-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cv-footer-cta h2 {
  margin: 0 0 .35rem;
  color: #fff;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
}
.cv-footer-cta p { margin: 0; color: rgba(255,255,255,.88); font-size: .92rem; }
.cv-footer-cta-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cv-footer-main {
  display: grid;
  grid-template-columns: 1.15fr 2.2fr;
  gap: 2rem;
  padding: 2.75rem 0 2rem;
}
@media (max-width: 900px) {
  .cv-footer-main { grid-template-columns: 1fr; gap: 1.75rem; }
}
.cv-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .75rem;
  color: #fff !important;
}
.cv-footer-logo strong {
  font-size: 1.2rem;
  font-weight: 800;
}
.cv-footer-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--cv-orange);
}
.cv-footer-brand p {
  margin: 0 0 1rem;
  font-size: .9rem;
  line-height: 1.55;
  max-width: 28rem;
  color: rgba(255,255,255,.65);
}
.cv-footer-contact {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
  font-size: .92rem;
}
.cv-footer-contact strong { color: #fff; font-size: 1.15rem; }
.cv-footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .86rem;
  font-weight: 700;
}
.cv-footer-apps a { color: #5eead4; }
.cv-footer-cols {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .cv-footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .cv-footer-cols { grid-template-columns: 1fr; }
}
.cv-footer-cols h4 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cv-footer-cols a {
  display: block;
  font-size: .86rem;
  margin-bottom: .4rem;
  color: rgba(255,255,255,.62);
}
.cv-footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.cv-footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  font-size: .82rem;
  font-weight: 600;
}
.cv-footer-copy {
  display: grid;
  gap: .2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  text-align: right;
}
.cv-footer-built {
  margin: 0.85rem 0 0;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.48);
}
.cv-footer-built a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.cv-footer-built a:hover {
  border-bottom-color: #fff;
}
@media (max-width: 700px) {
  .cv-footer-copy { text-align: left; }
}

/* Legacy footer class map (safety) */
body.rh-cv .rh-trust-footer { display: none; }

/* ─── Inner pages ─── */
.cv-page { padding: 2.5rem 0 0; }
.cv-page > .rh-shell { padding-bottom: 2.5rem; }
.cv-page .cv-sec:first-of-type { padding-top: 0.5rem; }
.cv-page-head { margin-bottom: 2rem; }
.cv-page-kicker {
  font-size: .78rem;
  font-weight: 700;
  color: var(--cv-teal-dark);
  margin: 0 0 .4rem;
}
.cv-page-kicker a { color: var(--cv-teal-dark); }
.cv-page-head h1 {
  margin: 0 0 .45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}
.cv-page-head p {
  margin: 0;
  color: var(--cv-mute);
  max-width: 44rem;
  font-size: .98rem;
}
.cv-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.15rem;
}
.cv-panel {
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
}
.cv-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .cv-meta { grid-template-columns: 1fr; }
}
.cv-meta .lbl {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--cv-mute);
  margin-bottom: .2rem;
}
.cv-meta strong { font-size: 1.05rem; }
.cv-bullets {
  margin: 0 0 1rem;
  padding: 0 0 0 1.1rem;
  color: var(--cv-mute);
  display: grid;
  gap: .4rem;
  font-size: .92rem;
}
.cv-split {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1rem;
  align-items: start;
}
@media (max-width: 860px) {
  .cv-split { grid-template-columns: 1fr; }
}
.cv-side-list a {
  display: block;
  padding: .55rem 0;
  border-bottom: 1px solid var(--cv-line);
  font-weight: 600;
  font-size: .9rem;
  color: var(--cv-ink);
}
.cv-side-list a:last-child { border-bottom: 0; }
.cv-side-list a:hover { color: var(--cv-teal); }
.cv-table-wrap { overflow-x: auto; border: 1px solid var(--cv-line); border-radius: 14px; background: #fff; }
.cv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
.cv-table th,
.cv-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cv-line);
}
.cv-table th {
  background: #f0fdfa;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--cv-mute);
}
.cv-table tr:last-child td { border-bottom: 0; }
.cv-note {
  margin: .85rem 0 0;
  color: var(--cv-mute);
  font-size: .86rem;
}
.cv-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--cv-line);
}
@media (max-width: 860px) {
  .cv-offer-grid { grid-template-columns: 1fr; }
}
.cv-offer {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--cv-line);
  border-radius: 0;
  padding: 1.25rem 1.2rem 1.25rem 0;
  margin-right: 1.15rem;
}
.cv-offer:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
@media (max-width: 860px) {
  .cv-offer {
    border-right: 0;
    border-bottom: 1px solid var(--cv-line);
    margin-right: 0;
    padding: 1.15rem 0;
  }
  .cv-offer:last-child { border-bottom: 0; }
}
.cv-offer .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--cv-orange);
  background: rgba(230,98,57,.12);
  padding: .2rem .5rem;
  border-radius: 999px;
  margin-bottom: .5rem;
}
.cv-offer h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.cv-offer p { margin: 0 0 .75rem; color: var(--cv-mute); font-size: .9rem; }
.cv-offer code {
  display: inline-block;
  font-weight: 800;
  background: #f0fdfa;
  color: var(--cv-teal-dark);
  padding: .35rem .65rem;
  border-radius: 8px;
  font-size: .95rem;
}
.cv-legal {
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  line-height: 1.65;
  color: var(--cv-ink);
  font-size: .95rem;
}
.cv-legal p { color: var(--cv-mute); }
.cv-chips-wrap { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }

/* Partner register page under marketing */
body.rh-cv .rh-partner-landing { background: var(--cv-bg); }
body.rh-cv .rh-partner-hero {
  background: linear-gradient(120deg, #0f766e, #134e4a);
  color: #fff;
  padding: 3rem 0;
}
body.rh-cv .rh-partner-hero h1,
body.rh-cv .rh-partner-hero .rh-hero-brand { color: #fff; }
body.rh-cv .rh-partner-body { padding: 2rem 0 3rem; }

/* Inner-page CTA band */
.cv-cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f0fdfa, #fff);
  border: 1px solid #99f6e4;
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 2.5rem;
}
.cv-cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.cv-cta-band p {
  margin: 0;
  color: var(--cv-mute);
  max-width: 36rem;
  font-size: 0.92rem;
}

/* Slightly roomier sections on inner pages */
.cv-page .cv-sec { padding: 3rem 0; }
.cv-page .cv-svc-grid,
.cv-page .cv-how,
.cv-page .cv-why-grid { margin-bottom: 0.25rem; }


/* Inner-page CTA band */
.cv-cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--cv-line);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
}
.cv-cta-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.cv-cta-band p {
  margin: 0;
  color: var(--cv-mute);
  font-size: 0.92rem;
  max-width: 36rem;
}

/* Extra breathing room between stacked sections on inner pages */
.cv-page .cv-sec { padding: 3rem 0; }
.cv-page .cv-block { margin-bottom: 2.25rem; }
.cv-page .cv-block:last-child { margin-bottom: 0; }

/* Membership plans — 3-up comparison */
.cv-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--cv-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 0.85rem;
}
@media (max-width: 860px) {
  .cv-plans {
    grid-template-columns: 1fr;
  }
}
.cv-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.35rem 1.4rem;
  border-right: 1px solid var(--cv-line);
  background: #fff;
  min-width: 0;
}
.cv-plan:last-child { border-right: 0; }
@media (max-width: 860px) {
  .cv-plan {
    border-right: 0;
    border-bottom: 1px solid var(--cv-line);
  }
  .cv-plan:last-child { border-bottom: 0; }
}
.cv-plan.is-hot {
  background: linear-gradient(180deg, #f0fdfa 0%, #fff 42%);
}
.cv-plan-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cv-orange);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.cv-plan h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cv-ink);
  padding-right: 5.5rem;
}
.cv-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.cv-plan-price strong {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cv-teal-dark);
  line-height: 1;
}
.cv-plan-price small {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cv-mute);
}
.cv-plan-points {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
.cv-plan-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--cv-ink);
  line-height: 1.4;
}
.cv-plan-points .ti {
  color: var(--cv-teal);
  font-size: 1.05rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.cv-plan .rh-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

