/* ============================================================
   VideoRep Home v2 Section Styles.
   Scoped additions for index-v2.html. Uses only existing
   tokens from styles.css (--brand, --bg-navy, --r-*, etc).
   ============================================================ */


/* ------------------------------------------------------------
   DISPLAY FONT: Cal Sans (headers + nav) — body stays Plus Jakarta Sans.
   ------------------------------------------------------------ */
.hero-v2__heading,
.section__header h2,
.svc-card h3,
.why-card h3,
.path-card__cond,
.process-step h3,
.proof-row__head h3,
.team-preview__text h2,
.guarantee-section__content h2,
.final-cta__content h2,
.testimonial-video__caption strong,
.nav__logo span,
.nav__link,
.nav__link--dropdown,
.uc-card__text strong,
.footer__logo span {
  font-family: 'Cal Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  letter-spacing: -0.015em;
}

.nav__link,
.nav__link--dropdown {
  font-weight: 600;
  font-size: 15px;
}

.nav--mega .nav__link--dropdown {
  font-family: 'Cal Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}


/* ------------------------------------------------------------
   Section base tweaks for v2 home
   ------------------------------------------------------------ */
@media (min-width: 768px) {
  .section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }
}


/* ------------------------------------------------------------
   Eyebrow variant for dark sections
   ------------------------------------------------------------ */
.eyebrow--white {
  color: rgba(255, 255, 255, 0.75);
}


/* ------------------------------------------------------------
   Two Paths
   ------------------------------------------------------------ */
.two-paths {
  background-color: var(--bg-white);
}

.two-paths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
  max-width: 960px;
  margin: 0 auto;
}

.path-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.path-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.path-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-text);
  background: var(--brand-light);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.path-card h3 {
  margin-bottom: 12px;
  color: var(--text-primary);
}

.path-card p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 24px;
  flex-grow: 1;
}

@media (min-width: 900px) {
  .two-paths__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ------------------------------------------------------------
   Link CTA (inline arrow-style text link)
   ------------------------------------------------------------ */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.link-cta::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.2s ease;
}

.link-cta:hover {
  color: var(--brand-hover);
  gap: 10px;
}

.link-cta:hover::after {
  transform: translateX(2px);
}


/* ------------------------------------------------------------
   Trust Thesis (charcoal w/ blue gradient moment — brand punch)
   ------------------------------------------------------------ */
.trust-thesis {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 113, 231, 0.35) 0%, rgba(30, 113, 231, 0) 55%),
    radial-gradient(ellipse at 50% 100%, rgba(11, 61, 145, 0.55) 0%, rgba(11, 61, 145, 0) 60%),
    var(--bg-navy);
  color: var(--text-white);
  isolation: isolate;
}

.trust-thesis__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 113, 231, 0.28) 0%, rgba(30, 113, 231, 0) 60%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.trust-thesis .container {
  position: relative;
  z-index: 1;
}

.trust-thesis__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.trust-thesis__text h2 {
  color: var(--text-white);
  margin-bottom: 24px;
}

.trust-thesis__text p {
  color: var(--text-white-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: 16px;
}

.trust-thesis__text p:last-child {
  margin-bottom: 0;
}


/* ------------------------------------------------------------
   Services v2. __list parallel to __features.
   ------------------------------------------------------------ */
.service-v2-card__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-v2-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.service-v2-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}


/* ------------------------------------------------------------
   Durability Proof
   ------------------------------------------------------------ */
.durability {
  background: var(--bg-primary);
}

.durability__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.durability__text p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 16px;
}

.durability__text p:last-child {
  margin-bottom: 0;
}

.durability__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.durability__stat {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.durability__stat-number {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: var(--lh-tight);
}

.durability__stat-label {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

@media (min-width: 900px) {
  .durability__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}


/* ------------------------------------------------------------
   Results Featured
   ------------------------------------------------------------ */
.results-featured {
  background: var(--bg-white);
}

.results-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

.result-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.result-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.result-card__client {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-text);
}

.result-card__stat {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  line-height: var(--lh-tight);
}

.result-card__outcome {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.section__cta-center {
  text-align: center;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .results-featured__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .results-featured__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ------------------------------------------------------------
   Team Preview
   ------------------------------------------------------------ */
.team-preview {
  background: var(--bg-primary);
}

.team-preview__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.team-preview__text h2 {
  margin-bottom: 20px;
}

.team-preview__text p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-body);
}


/* ------------------------------------------------------------
   Guarantee Section (home v2 scoped override for the
   __content + __badge pattern this page uses)
   ------------------------------------------------------------ */
.guarantee-section__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-section__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--success);
  color: var(--text-white);
  margin: 14px auto 20px;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

.guarantee-section__badge svg {
  width: 22px;
  height: 22px;
}

.guarantee-section__content .eyebrow {
  margin-bottom: 0;
}

.guarantee-section__content .eyebrow {
  color: var(--success-text);
}

.guarantee-section__content h2 {
  color: var(--success-text);
  margin-bottom: 16px;
}

.guarantee-section__content p {
  font-size: var(--fs-body);
  color: var(--text-primary);
  line-height: var(--lh-relaxed);
  max-width: 640px;
  margin: 0 auto;
}


/* ------------------------------------------------------------
   Final CTA (home v2 override for the narrow .final-cta
   from funnel page; here it's the full dark section)
   ------------------------------------------------------------ */
.section.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 113, 231, 0.22) 0%, rgba(30, 113, 231, 0) 55%),
    radial-gradient(ellipse at 50% 120%, rgba(11, 61, 145, 0.45) 0%, rgba(11, 61, 145, 0) 60%),
    var(--bg-navy);
  color: var(--text-white);
  max-width: none;
  text-align: left;
  isolation: isolate;
}

.section.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__content h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.final-cta__content p {
  color: var(--text-white-muted);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-body);
  margin-bottom: 32px;
}

.final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.section.final-cta .btn--secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  background: transparent;
}

.section.final-cta .btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}


/* ------------------------------------------------------------
   Footer (home v2 __col pattern) — shares the blue-wave treatment
   so all dark surfaces on the page read as one system.
   ------------------------------------------------------------ */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 113, 231, 0.18) 0%, rgba(30, 113, 231, 0) 50%),
    radial-gradient(ellipse at 20% 100%, rgba(11, 61, 145, 0.35) 0%, rgba(11, 61, 145, 0) 55%),
    var(--bg-navy);
  color: var(--text-white-muted);
  padding-top: 112px;
  padding-bottom: 56px;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__tagline {
  line-height: 1.55;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  max-width: 360px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  text-decoration: none;
  font-weight: var(--fw-extra-bold);
  font-size: 20px;
  margin-bottom: 16px;
}

.footer__logo:hover {
  color: var(--text-white);
}

.footer__logo svg {
  color: var(--brand);
}

.footer__tagline {
  color: var(--text-white-muted);
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
}

.footer__col h4 {
  color: var(--text-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  color: var(--text-white-muted);
  text-decoration: none;
  font-size: var(--fs-small);
  transition: color 0.2s ease;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-white-muted);
  font-size: var(--fs-small);
  margin: 0;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}


/* ------------------------------------------------------------
   Proof By Category — horizontal row bands (v6)
   ------------------------------------------------------------ */
.proof-by-category {
  background: var(--bg-primary);
}

.proof-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px 28px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 900px) {
  .proof-row {
    grid-template-columns: 260px 1fr;
    gap: 28px;
  }
}

.proof-row__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proof-row__head h3 {
  font-size: 18px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 4px;
}

.proof-row__sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.proof-row__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 700px) {
  .proof-row__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.proof-row .proof-stat {
  padding: 14px 16px;
  background: var(--bg-primary);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.proof-row .proof-stat__num {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.proof-row .proof-stat__client {
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

.proof-row .proof-stat__detail {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}


/* Legacy 4-column proof grid (not used on home anymore but keep for other pages) */

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 56px;
}

@media (min-width: 760px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.proof-col {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-col__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.proof-col__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-col__icon--blue {
  background: rgba(30, 113, 231, 0.1);
  color: var(--brand);
}

.proof-col__icon--red {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.proof-col__icon--green {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.proof-col__icon--violet {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.proof-col__head h3 {
  font-size: 17px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-stat__num {
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.proof-stat__client {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.proof-stat__detail {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.proof-brands {
  margin-bottom: 48px;
  padding: 32px 24px;
  background: var(--bg-primary);
  border-radius: var(--r-lg);
  text-align: center;
}

.proof-brands__label {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.proof-brands__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
}

.proof-brands__logo {
  height: 24px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.proof-brands__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}


/* ------------------------------------------------------------
   THE PROBLEM (agitation, three pain cards)
   ------------------------------------------------------------ */
.problem {
  background: var(--bg-primary);
}

.problem__lead {
  font-size: clamp(17px, 1.6vw, 19px);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 740px;
  margin: 16px auto 0;
}

.problem__lead em {
  color: var(--text-primary);
  font-style: italic;
  font-weight: var(--fw-bold);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
  margin-top: 48px;
}

@media (min-width: 760px) {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-card__icon {
  color: var(--brand);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(30, 113, 231, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.problem-card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 14px;
}

.problem-card p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  text-align: left;
  margin: 0;
  width: 100%;
}

.problem__transition {
  text-align: center;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: var(--lh-relaxed);
  max-width: 720px;
  margin: 48px auto 0;
}


/* ------------------------------------------------------------
   INDUSTRIES WE SERVE (tag grid)
   ------------------------------------------------------------ */
.industries {
  background: var(--bg-white);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .industries__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1000px) {
  .industries__grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

.industry-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-tag:hover {
  border-color: rgba(30, 113, 231, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.industry-tag__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 113, 231, 0.1);
  color: var(--brand);
}


/* ------------------------------------------------------------
   WHICH PATH FITS YOUR TEAM? (decision tree, dark charcoal + blue wash)
   ------------------------------------------------------------ */
.which-path {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 113, 231, 0.22) 0%, rgba(30, 113, 231, 0) 55%),
    radial-gradient(ellipse at 50% 100%, rgba(11, 61, 145, 0.40) 0%, rgba(11, 61, 145, 0) 60%),
    var(--bg-navy);
  color: var(--text-white);
  isolation: isolate;
}

.which-path__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 113, 231, 0.22) 0%, rgba(30, 113, 231, 0) 60%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.which-path .container {
  position: relative;
  z-index: 1;
}

.which-path .section__header h2 {
  color: var(--text-white);
}

.which-path .section__header p {
  color: rgba(255, 255, 255, 0.75);
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

@media (min-width: 900px) {
  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.path-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-lg);
  padding: 40px 36px 36px;
  text-decoration: none;
  color: var(--text-white);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

.path-card:hover {
  border-color: rgba(30, 113, 231, 0.55);
  background: rgba(30, 113, 231, 0.08);
  transform: translateY(-4px);
}

.path-card__image {
  width: calc(100% + 72px);
  margin: -40px -36px 28px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 113, 231, 0.25), rgba(10, 22, 40, 0.85));
}

.path-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.9;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.path-card:hover .path-card__image img {
  transform: scale(1.04);
  opacity: 1;
}

.path-card__verb {
  font-size: 13px;
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.path-card__cond {
  font-size: 20px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 16px;
}

.path-card p {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
  margin: 0 0 28px;
  flex-grow: 1;
}

.path-card__cta {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--brand);
  transition: color 0.2s ease;
}

.path-card:hover .path-card__cta {
  color: #4f94ed;
}


/* ------------------------------------------------------------
   PROCESS (3-step)
   ------------------------------------------------------------ */
.process {
  background: var(--bg-white);
}

.process__flow {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

@media (min-width: 900px) {
  .process__flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }
}

.process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.process-node__num {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: rgba(10, 22, 40, 0.32);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.process-node__circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1.5px dashed rgba(30, 113, 231, 0.38);
  background: rgba(30, 113, 231, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(30, 113, 231, 0.08);
}

.process-node h3 {
  font-size: clamp(20px, 2.2vw, 22px);
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 10px;
}

.process-node p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.process__connector {
  display: none;
}

@media (min-width: 900px) {
  .process__connector {
    display: block;
    width: 140px;
    min-width: 80px;
    height: 40px;
    align-self: start;
    margin-top: 70px;
    color: rgba(30, 113, 231, 0.4);
  }

  .process__connector svg {
    width: 100%;
    height: 100%;
    display: block;
  }
}


/* ------------------------------------------------------------
   GUARANTEE (extended copy rhythm)
   ------------------------------------------------------------ */
.guarantee-section__content p {
  max-width: 640px;
  margin: 0 auto 16px;
}

.guarantee-section__punch {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: var(--fw-extra-bold);
  color: var(--success-text) !important;
  line-height: 1.3;
  margin-top: 16px !important;
}

.guarantee-section__signoff {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 12px !important;
}


/* ------------------------------------------------------------
   SERVICES — 6-tile grid (3x2) with visual top slot
   ------------------------------------------------------------ */
.services-six-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

@media (min-width: 700px) {
  .services-six-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-six-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(30, 113, 231, 0.45);
}

.svc-card__visual {
  position: relative;
  height: 140px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(30, 113, 231, 0.14) 0%, rgba(30, 113, 231, 0) 70%),
    linear-gradient(180deg, rgba(30, 113, 231, 0.04) 0%, rgba(10, 22, 40, 0) 100%),
    var(--bg-primary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.svc-card__icon {
  width: 72px;
  height: 72px;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card__icon svg {
  width: 100%;
  height: 100%;
}

.svc-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: var(--text-white);
  font-size: 11px;
  font-weight: var(--fw-extra-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.svc-card__body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card h3 {
  font-size: 20px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0 0 8px;
}

.svc-card__lede {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 14px;
}

.svc-card__proof {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.svc-card__proof li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.svc-card__proof li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.svc-card__proof strong {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.svc-card__cta {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--brand);
  transition: color 0.2s ease;
}

.svc-card:hover .svc-card__cta {
  color: var(--brand-hover);
}


/* ------------------------------------------------------------
   TESTIMONIALS (6 video grid + quote cards)
   ------------------------------------------------------------ */
.testimonials {
  background: var(--bg-white);
}

.testimonial-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 700px) {
  .testimonial-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .testimonial-videos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.testimonial-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-primary);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-video__frame iframe {
  border-radius: 22px;
  display: block;
  width: 100%;
  height: 100%;
}

.testimonial-video__placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-video__caption {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}

.testimonial-video__caption strong {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.testimonial-video__caption span {
  color: var(--text-secondary);
  font-size: 13px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 700px) {
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .testimonial-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.testimonial-card {
  margin: 0;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__footer {
  margin-top: auto;
}

.testimonials__more {
  text-align: center;
  margin-top: 40px;
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0;
}

.testimonial-card__quote::before {
  content: '"';
  color: var(--brand);
  font-weight: var(--fw-extra-bold);
  margin-right: 2px;
}

.testimonial-card__quote::after {
  content: '"';
  color: var(--brand);
  font-weight: var(--fw-extra-bold);
}

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

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 113, 231, 0.18), rgba(11, 61, 145, 0.2));
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-card__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  letter-spacing: 0.02em;
}

.testimonial-card__avatar--logo {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card__avatar-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.85;
}

.testimonial-card__footer strong {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.testimonial-card__footer span {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
}


/* ------------------------------------------------------------
   TEAM (text + photo frame)
   ------------------------------------------------------------ */
.team-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .team-preview__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
  }
}

.team-preview__text {
  max-width: none;
  text-align: left;
  margin: 0;
}

.team-preview__text h2 {
  margin-bottom: 16px;
}

.team-preview__text p {
  text-align: left;
  margin: 0 0 14px;
}

.team-preview__roster {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 600px) {
  .team-preview__roster {
    grid-template-columns: 1fr 1fr;
  }
}

.team-preview__role {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  padding: 10px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm, 8px);
}

.team-preview__role span {
  display: block;
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  margin-top: 2px;
}

.team-preview__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-preview__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-preview__photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  background: var(--bg-primary);
}

.team-preview__photo-fallback p {
  font-size: 13px;
  margin: 0;
}


/* ------------------------------------------------------------
   COMPARISON (TAYA-style table)
   ------------------------------------------------------------ */
.comparison {
  background: var(--bg-white);
}

.comparison--dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 113, 231, 0.22) 0%, rgba(30, 113, 231, 0) 55%),
    radial-gradient(ellipse at 50% 100%, rgba(11, 61, 145, 0.4) 0%, rgba(11, 61, 145, 0) 60%),
    var(--bg-navy);
  color: var(--text-white);
  isolation: isolate;
}

.comparison--dark .comparison__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30, 113, 231, 0.22) 0%, rgba(30, 113, 231, 0) 60%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.comparison--dark .container {
  position: relative;
  z-index: 1;
}

.comparison--dark .section__header h2 {
  color: var(--text-white);
}

.comparison--dark .section__header p {
  color: rgba(255, 255, 255, 0.78);
}

.comparison--dark .comparison__table-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison--dark .comparison__table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.comparison--dark .comparison__table thead th.comparison__us {
  background: rgba(30, 113, 231, 0.22);
  color: var(--text-white);
}

.comparison--dark .comparison__table tbody th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison--dark .comparison__table tbody td {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison--dark .comparison__table tbody td.comparison__us {
  background: rgba(30, 113, 231, 0.14);
  color: var(--text-white);
  font-weight: var(--fw-bold);
}

.comparison--dark .comparison__note {
  color: rgba(255, 255, 255, 0.72);
}

/* Framer-style comparison with check/X icons */
.comparison__accent {
  color: var(--brand);
}

.comparison__table--framer td,
.comparison__table--framer th {
  font-size: 13px;
  padding: 14px 14px;
  white-space: nowrap;
}

.comparison__table--framer thead th {
  font-size: 12px;
}

.cmp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: -3px;
  flex-shrink: 0;
}

.cmp-icon--yes {
  background: var(--brand);
  position: relative;
}

.cmp-icon--yes::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 7px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: translate(-50%, -60%) rotate(45deg);
}

.cmp-icon--no {
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}

.cmp-icon--no::before,
.cmp-icon--no::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 1px;
}

.cmp-icon--no::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cmp-icon--no::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* X-cells should fade the text */
.comparison__table--framer tbody td:not(.comparison__us):has(.cmp-icon--no) {
  color: rgba(255, 255, 255, 0.4);
}

.comparison__table-wrap {
  max-width: 1120px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-secondary);
}

.comparison__table thead th {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: var(--fw-extra-bold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 18px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison__table thead th.comparison__us {
  background: rgba(30, 113, 231, 0.1);
  color: var(--brand-text);
}

.comparison__table tbody th {
  text-align: left;
  padding: 18px 18px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  width: 20%;
  vertical-align: top;
}

.comparison__table tbody td {
  padding: 18px 18px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.comparison__table tbody td.comparison__us {
  background: rgba(30, 113, 231, 0.05);
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.comparison__table tbody tr:last-child th,
.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.comparison__table th:last-child,
.comparison__table td:last-child {
  border-right: none;
}

.comparison__feature-head {
  width: 20%;
}

.comparison__note {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}


/* ------------------------------------------------------------
   FAQ (accordion)
   ------------------------------------------------------------ */
.faq {
  background: var(--bg-primary);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(30, 113, 231, 0.35);
  box-shadow: var(--shadow-card);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::marker {
  display: none;
  content: '';
}

.faq-item__chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--brand);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-item__chev {
  transform: rotate(180deg);
}

.faq-item__a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}

.faq-item[open] .faq-item__a {
  padding-top: 16px;
}

.faq-item__a p {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0;
}


/* ------------------------------------------------------------
   Focus-visible (accessibility guardrail)
   ------------------------------------------------------------ */
.path-card a:focus-visible,
.result-card a:focus-visible,
.link-cta:focus-visible,
.footer__col a:focus-visible,
.tri-card:focus-visible,
.mode-card a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}


/* ============================================================
   HOME V2 REBRAND.
   Dark-hero 511-style home. Scoped to body.home-v2 so
   these rules only apply to the home page.
   ============================================================ */


/* ------------------------------------------------------------
   Body wrapper
   ------------------------------------------------------------ */
body.home-v2 {
  background: var(--bg-white);
}


/* ------------------------------------------------------------
   Navigation on dark hero.
   Nav sits over the dark hero without a box-shadow or white bg.
   Logo, links, and toggle all become white.
   ------------------------------------------------------------ */
body.home-v2 .nav.nav--on-dark {
  background: var(--bg-navy);
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.home-v2 .nav--on-dark .nav__logo,
body.home-v2 .nav--on-dark .nav__logo:hover {
  color: var(--text-white);
}

body.home-v2 .nav--on-dark .nav__logo svg {
  color: var(--text-white);
}

body.home-v2 .nav--on-dark .nav__logo svg path {
  fill: currentColor;
}

body.home-v2 .nav--on-dark .nav__link,
body.home-v2 .nav--on-dark .nav__link--dropdown {
  color: rgba(255, 255, 255, 0.75);
}

body.home-v2 .nav--on-dark .nav__link:hover,
body.home-v2 .nav--on-dark .nav__link--dropdown:hover,
body.home-v2 .nav--on-dark .nav__link--dropdown:focus-visible {
  color: var(--text-white);
}

body.home-v2 .nav--on-dark .nav__dropdown-chevron {
  color: rgba(255, 255, 255, 0.75);
}

body.home-v2 .nav--on-dark .nav__hamburger span {
  background: var(--text-white);
}

/* Mega-menu panel keeps its light card treatment for readability */
body.home-v2 .nav--on-dark .nav__mega-panel {
  background: var(--bg-white);
  color: var(--text-primary);
}



/* ------------------------------------------------------------
   HERO V2 (dark navy gradient, blue glow, white copy)
   Matches the 511 funnel page palette and rhythm.
   ------------------------------------------------------------ */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #18181b 0%, #1f2230 35%, #0b3d91 75%, #1e71e7 100%);
  color: var(--text-white);
  padding: 80px 0 96px;
  isolation: isolate;
}

.hero-v2__bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(circle, rgba(30, 113, 231, 0.35) 0%, rgba(11, 61, 145, 0) 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-v2 .container {
  position: relative;
  z-index: 1;
}

.hero-v2__grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}

/* Centered hero layout (511-style) */
.hero-v2--center .hero-v2__centered {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-v2--center .hero-v2__heading,
.hero-v2--center .hero-v2__sub,
.hero-v2--center .hero-v2__ctas,
.hero-v2--center .hero-v2__badge,
.hero-v2--center .hero-v2__upwork {
  margin-left: auto;
  margin-right: auto;
}

.hero-v2--center .hero-v2__heading {
  max-width: 900px;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.08;
  margin: 4px auto 0;
}

.hero-v2--center .hero-v2__sub {
  max-width: 720px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto;
}

.hero-v2--center .hero-v2__sub--second {
  margin-top: 10px;
}

.hero-v2--center .hero-v2__badge {
  margin: 0 auto;
}

.hero-v2--center .hero-v2__ctas {
  justify-content: center;
  margin: 6px auto 0;
}

.hero-v2--center .hero-v2__image {
  margin: 20px auto 0;
  max-width: 1040px;
  width: 100%;
}

.hero-v2--center .hero-v2__image-frame {
  aspect-ratio: 16 / 9;
}

.hero-v2--center .hero-v2__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Plain, 3-line centered Upwork proof (no bubble) */
.hero-v2__upwork--plain {
  margin: 0 auto !important;
  max-width: 720px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  text-align: center;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero-v2__upwork--plain .hero-v2__upwork-stars {
  line-height: 0;
}

.hero-v2__upwork--plain .hero-v2__upwork-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text-white);
}

.hero-v2__upwork-strong {
  font-weight: var(--fw-extra-bold);
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.hero-v2__upwork-on {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--fw-medium);
}

.hero-v2__upwork--plain .hero-v2__upwork-logo {
  height: 22px;
  width: auto;
  display: inline-block;
  vertical-align: -4px;
  line-height: 1;
  color: #14a800;
  filter: none;
}

/* Upwork inline text mark: green "up" + white "work" */
.hero-v2__upwork-mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-sans), 'Plus Jakarta Sans', -apple-system, Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-v2__upwork-up {
  color: #14a800;
}

.hero-v2__upwork-work {
  color: var(--text-white);
}

.hero-v2__upwork--plain .hero-v2__upwork-detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  border: none;
  padding: 0;
}

@media (max-width: 600px) {
  .hero-v2__upwork--plain .hero-v2__upwork-line {
    font-size: 16px;
    gap: 8px;
  }
  .hero-v2__upwork--plain .hero-v2__upwork-logo {
    height: 24px;
  }
  .hero-v2__upwork--plain .hero-v2__upwork-detail {
    font-size: 13px;
  }
}

.hero-v2__text {
  max-width: 640px;
  width: 100%;
}

.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-v2__badge svg {
  color: #22d3a8;
}

.hero-v2__heading {
  color: var(--text-white);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: var(--fw-extra-bold);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.hero-v2__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  margin-bottom: 32px;
}

.hero-v2__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-v2__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
}

.hero-v2__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.hero-v2__image {
  width: 100%;
  max-width: 640px;
}

.hero-v2__image-frame {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45),
              0 0 80px rgba(30, 113, 231, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-v2__image-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.5),
              0 0 100px rgba(30, 113, 231, 0.35);
}

.hero-v2__image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-v2__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.25s ease;
  pointer-events: none;
}

.hero-v2__image-frame:hover .hero-v2__play {
  transform: translate(-50%, -50%) scale(1.06);
}

.hero-v2__play svg {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .hero-v2:not(.hero-v2--center) {
    padding: 120px 0 80px;
  }

  .hero-v2:not(.hero-v2--center) .hero-v2__grid {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }

  .hero-v2:not(.hero-v2--center) .hero-v2__text {
    flex: 0 0 52%;
  }

  .hero-v2:not(.hero-v2--center) .hero-v2__image {
    flex: 0 0 48%;
    max-width: none;
  }

  .hero-v2--center {
    padding: 96px 0 64px;
  }
}

/* Enforce 1-2 line centered section headings */
.section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
}

.section__header h2 {
  margin: 0 auto 14px;
  max-width: 820px;
  text-wrap: balance;
  line-height: 1.15;
}

.section__header p,
.section__header .text-secondary {
  max-width: 680px;
  margin: 0 auto;
  text-wrap: balance;
}


/* ------------------------------------------------------------
   Upwork proof block (inside hero)
   ------------------------------------------------------------ */
.hero-v2__upwork {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 540px;
}

.hero-v2__upwork-stars {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.hero-v2__upwork-stars svg {
  display: block;
}

.hero-v2__upwork-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--text-white);
  line-height: 1.2;
}

.hero-v2__upwork-text strong {
  font-weight: var(--fw-extra-bold);
}

.hero-v2__upwork-text span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: var(--fw-medium);
}

.hero-v2__upwork-logo {
  height: 22px;
  width: auto;
  vertical-align: middle;
  filter: brightness(1.15);
}

.hero-v2__upwork-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}


/* ------------------------------------------------------------
   Trusted-By strip inside hero (one-line)
   ------------------------------------------------------------ */
.hero-v2__trustedby {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-v2__trustedby-label {
  font-size: 12px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px;
  text-align: center;
}

.hero-v2__trustedby-track {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 4px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-v2__trustedby-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
}

.hero-v2__trustedby-cell {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-v2__trustedby-logo {
  height: 20px;
  width: auto;
  display: block;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.hero-v2__trustedby-logo:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-v2__trustedby-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
  }
  .hero-v2__trustedby-logo {
    height: 18px;
  }
}


/* ------------------------------------------------------------
   USECLIP-STYLE MEGA PANEL
   3-column grid of cards, each: icon + title + description.
   Applied to Services and Learn dropdowns.
   ------------------------------------------------------------ */
.nav__mega-panel--uc {
  min-width: 620px;
  padding: 14px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  background: var(--bg-white);
}

.nav__mega-panel--uc.nav__mega-panel--uc-3 {
  min-width: 760px;
  grid-template-columns: repeat(3, 1fr);
}

.nav__mega-panel--uc.nav__mega-panel--open {
  display: grid;
}

/* Anchor first dropdown (Services) to its button's left edge
   so the wide panel opens to the RIGHT instead of overflowing left. */
.nav__dropdown:first-of-type > .nav__mega-panel--uc {
  left: 0;
  transform: none;
  top: calc(100% + 12px);
}

/* Anchor last dropdown (Learn) to its button's right edge
   so the panel opens to the LEFT instead of overflowing right. */
.nav__dropdown:last-of-type > .nav__mega-panel--uc {
  left: auto;
  right: 0;
  transform: none;
  top: calc(100% + 12px);
}

.uc-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 14px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.uc-card:hover {
  background: var(--bg-primary);
}

.uc-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: transparent;
  border-radius: 0;
}

/* Color variants retained as class hooks but all render charcoal (useclip style) */
.uc-card__icon--blue,
.uc-card__icon--teal,
.uc-card__icon--red,
.uc-card__icon--green,
.uc-card__icon--violet,
.uc-card__icon--amber,
.uc-card__icon--linkedin {
  color: var(--text-primary);
  background: transparent;
}

.uc-card__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.uc-card__text strong {
  font-family: 'Cal Sans', 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.uc-card__text span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}


/* ------------------------------------------------------------
   Wide mega panel (legacy — kept for fallback)
   ------------------------------------------------------------ */
.nav__mega-panel--wide {
  min-width: 640px;
  padding: 22px 22px 18px;
}

.mega-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.mega-panel__head .eyebrow {
  margin: 0;
  color: var(--text-muted);
}

.mega-panel__all {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--brand);
  text-decoration: none;
}

.mega-panel__all:hover {
  color: var(--brand-hover);
}

.mega-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.nav__mega-panel--wide .mega-card {
  padding: 10px 12px;
}

.nav__mega-panel--wide .mega-card__icon {
  width: 36px;
  height: 36px;
}

.nav__mega-panel--wide .mega-card strong {
  font-size: 14px;
}

.nav__mega-panel--wide .mega-card span {
  font-size: 12px;
}

.mega-card__icon--red {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}


/* ------------------------------------------------------------
   Ghost button on dark hero (secondary CTA pairs with primary)
   ------------------------------------------------------------ */
.btn--ghost-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--text-white);
}


/* ------------------------------------------------------------
   Logo bar visibility boost (was washed out at 0.7 opacity)
   ------------------------------------------------------------ */
body.home-v2 .logo-bar__img {
  opacity: 0.95;
}

body.home-v2 .logo-bar__img:hover {
  opacity: 1;
}

body.home-v2 .logo-bar__label {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.14em;
}


/* ------------------------------------------------------------
   Three Modes section (partner umbrella with 3 mode cards)
   ------------------------------------------------------------ */
.three-modes {
  background: var(--bg-white);
}

.three-modes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

.mode-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mode-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.mode-card__num {
  font-size: 14px;
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.mode-card h3 {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: var(--fw-extra-bold);
  line-height: 1.2;
  margin-bottom: 14px;
}

.mode-card p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 24px;
  flex-grow: 1;
}

@media (min-width: 900px) {
  .three-modes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ------------------------------------------------------------
   Services v2 (3 outcome tiles)
   ------------------------------------------------------------ */
.services-v2 {
  background: var(--bg-primary);
}

.services-tri-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
  margin-bottom: 48px;
}

/* Five-tile services grid (Home: 5 services per positioning.md) */
.services-five-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
  margin-bottom: 0;
}

@media (min-width: 700px) {
  .services-five-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-five-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .services-five-grid > .tri-card {
    grid-column: span 2;
  }
  .services-five-grid > .tri-card--feature {
    grid-column: span 3;
  }
  .services-five-grid > .tri-card:nth-of-type(2) {
    grid-column: span 3;
  }
}

.tri-card {
  position: relative;
}

.tri-card--feature {
  border: 1px solid rgba(30, 113, 231, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.tri-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--brand);
  color: var(--text-white);
  font-size: 11px;
  font-weight: var(--fw-extra-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}

.tri-card__icon--red {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.tri-card__icon--violet {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.tri-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.tri-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(30, 113, 231, 0.4);
}

.tri-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tri-card__icon--blue {
  background: rgba(30, 113, 231, 0.1);
  color: var(--brand);
}

.tri-card__icon--teal {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.tri-card__icon--green {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.tri-card h3 {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: var(--fw-extra-bold);
  line-height: 1.2;
  margin-bottom: 10px;
}

.tri-card__lede {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  margin-bottom: 20px;
}

.tri-card__proof {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.tri-card__proof li {
  position: relative;
  padding-left: 26px;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.tri-card__proof li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

.tri-card__proof strong {
  color: var(--text-primary);
  font-weight: var(--fw-bold);
}

.tri-card__cta {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--brand);
  transition: color 0.2s ease;
}

.tri-card:hover .tri-card__cta {
  color: var(--brand-hover);
}

@media (min-width: 900px) {
  .services-tri-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ------------------------------------------------------------
   Fractional Umbrella Band (below the 3 tiles)
   ------------------------------------------------------------ */
.fractional-band {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-navy);
  color: var(--text-white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
}

.fractional-band__text {
  flex: 1;
}

.fractional-band .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.fractional-band h3 {
  color: var(--text-white);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: var(--fw-extra-bold);
  line-height: 1.25;
  margin-bottom: 10px;
}

.fractional-band p {
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
  margin: 0;
  max-width: 640px;
}

.fractional-band .btn {
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .fractional-band {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 48px 48px;
  }
}
