/* Clear first-step choice: courses or a personal consultation */
.home-v2 .home-help-chooser {
  position: relative;
  z-index: 4;
  margin-top: -18px;
  padding: 28px;
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 34px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 70px rgba(68,44,42,.12);
}

.home-v2 .home-help-heading {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, .7fr);
  align-items: end;
  gap: 18px 28px;
  padding: 4px 4px 24px;
}

.home-v2 .home-help-heading > span,
.home-v2 .home-help-card-label span {
  color: var(--v2-rose-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.home-v2 .home-help-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: .95;
}

.home-v2 .home-help-heading p {
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.6;
}

.home-v2 .home-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-v2 .home-help-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 28px;
}

.home-v2 .home-help-card.is-course {
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.88), transparent 32%),
    linear-gradient(145deg, #fae8eb, #f6eee8);
}

.home-v2 .home-help-card.is-consult {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(255,255,255,.12), transparent 34%),
    linear-gradient(145deg, #2b405a, var(--v2-navy));
}

.home-v2 .home-help-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-v2 .home-help-card-label b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--v2-rose-dark);
  font-size: 11px;
}

.home-v2 .home-help-card.is-consult .home-help-card-label b {
  color: var(--v2-navy);
  background: var(--v2-gold-soft);
}

.home-v2 .home-help-card.is-consult .home-help-card-label span { color: #f5d79d; }

.home-v2 .home-help-card h3 {
  max-width: 570px;
  margin-top: 22px;
  font-size: clamp(36px, 3.7vw, 52px);
  line-height: .96;
}

.home-v2 .home-help-card.is-consult h3 { color: #fff; }

.home-v2 .home-help-card > p {
  max-width: 590px;
  margin-top: 14px;
  color: #59677a;
  font-size: 15px;
  line-height: 1.65;
}

.home-v2 .home-help-card.is-consult > p { color: rgba(255,255,255,.80); }

.home-v2 .home-course-links,
.home-v2 .home-consult-links {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.home-v2 .home-course-links a,
.home-v2 .home-consult-links a {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 17px 18px;
  border: 1px solid rgba(23,40,63,.10);
  border-radius: 17px;
  background: rgba(255,255,255,.84);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-v2 .home-course-links a:hover,
.home-v2 .home-consult-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(185,94,112,.32);
  box-shadow: 0 13px 30px rgba(68,44,42,.09);
}

.home-v2 .home-course-links span,
.home-v2 .home-consult-links span {
  color: var(--v2-navy);
  font-size: 16px;
  font-weight: 800;
}

.home-v2 .home-course-links small {
  color: var(--v2-muted);
  font-size: 12px;
  line-height: 1.45;
}

.home-v2 .home-course-links b {
  margin-top: 7px;
  color: var(--v2-rose-dark);
  font-size: 12px;
}

.home-v2 .home-consult-links {
  margin-bottom: 10px;
}

.home-v2 .home-consult-links a {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.09);
}

.home-v2 .home-consult-links span,
.home-v2 .home-consult-links b { color: #fff; }

.home-v2 .home-consult-links b {
  color: #f5d79d;
  font-size: 13px;
  white-space: nowrap;
}

.home-v2 .home-consult-cta {
  width: 100%;
  margin-top: auto;
}

.home-v2 .home-help-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 22px 8px 2px;
  color: var(--v2-muted);
  font-size: 13px;
}

.home-v2 .home-help-secondary span { font-weight: 800; }
.home-v2 .home-help-secondary a { color: var(--v2-rose-dark); font-weight: 750; }
.home-v2 .v2-footer-brand img { filter: brightness(0) invert(1); opacity: .88; }

@media (max-width: 1100px) {
  .home-v2 .home-help-heading {
    grid-template-columns: auto 1fr;
  }
  .home-v2 .home-help-heading p {
    grid-column: 1 / -1;
    max-width: 700px;
  }
}

@media (max-width: 960px) {
  .home-v2 .home-help-chooser { margin-top: 22px; }
  .home-v2 .home-help-grid { grid-template-columns: 1fr; }
  .home-v2 .home-help-card h3 { max-width: 760px; }
  .home-v2 .v2-mobile-cta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .home-v2 .v2-consult-hero-visual { display: none; }
  .home-v2 .v2-consult-hero .v2-hero-copy h1 {
    font-size: clamp(39px, 12vw, 50px);
  }
  .home-v2 .v2-consult-hero-subtitle {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  .home-v2 .home-help-chooser {
    margin-top: 18px;
    padding: 10px;
    border-radius: 24px;
  }
  .home-v2 .home-help-heading {
    display: block;
    padding: 14px 10px 20px;
  }
  .home-v2 .home-help-heading h2 {
    margin-top: 7px;
    font-size: 39px;
  }
  .home-v2 .home-help-heading p {
    margin-top: 10px;
    font-size: 14px;
  }
  .home-v2 .home-help-card {
    padding: 25px 18px;
    border-radius: 21px;
  }
  .home-v2 .home-help-card h3 {
    margin-top: 18px;
    font-size: 38px;
  }
  .home-v2 .home-help-card > p { font-size: 15px; }
  .home-v2 .home-course-links a,
  .home-v2 .home-consult-links a { padding: 15px; }
  .home-v2 .home-consult-links a {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .home-v2 .home-consult-links b { white-space: normal; }
  .home-v2 .home-help-secondary {
    display: grid;
    justify-content: stretch;
    padding: 18px 10px 12px;
  }
  .home-v2 .home-help-secondary a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid var(--v2-line);
  }
}
