/*
 * Codenixo Home V2 — visual alignment patch
 * Scope: Home page only. Keeps the existing new-app shell/header/footer.
 */

.home-v2 {
  --hv2-ink: #071127;
  --hv2-copy: #5f6f8f;
  --hv2-line: rgba(148, 163, 184, .19);
  --hv2-soft: #f8faff;
  --hv2-card: rgba(255,255,255,.94);
  --hv2-shadow: 0 20px 52px -38px rgba(15, 23, 42, .28);
  color: var(--hv2-ink);
  background: #fff;
}

html.dark .home-v2 {
  --hv2-ink: #f8fafc;
  --hv2-copy: #cbd5e1;
  --hv2-line: rgba(255,255,255,.09);
  --hv2-soft: rgba(15,23,42,.44);
  --hv2-card: rgba(15,23,42,.86);
  background: #020617;
}

.home-v2 p { color: var(--hv2-copy); }
.home-v2 .icon, .home-v2 .icon svg { width: 20px; height: 20px; }
.home-v2 .icon svg {
  display: block; fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.home-v2-brand { color: var(--brand); }

.home-v2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--brand-dark) !important;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.home-v2-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg,var(--brand),transparent);
}
html.dark .home-v2-eyebrow { color: var(--brand-light) !important; }

.home-v2-section { padding: 82px 0; }
.home-v2-section-title {
  margin: 0;
  color: var(--hv2-ink);
  font-family: var(--font-display);
  font-size: clamp(32px,3.25vw,48px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.052em;
}
.home-v2-section-intro { max-width: 650px; margin: 14px 0 0; font-size: 15px; line-height: 1.68; }
.home-v2-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}
.home-v2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
}
html.dark .home-v2-text-link { color: var(--brand-light); }

/* Hero: image is no longer a card. It is the visual field behind the copy. */
.home-v2-hero {
  position: relative;
  min-height: clamp(690px,82vh,820px);
  overflow: hidden;
  background: #f7f9ff;
}
.home-v2-hero__background {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
.home-v2-hero__background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: none;
}
.home-v2-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.995) 0%,
      rgba(255,255,255,.985) 31%,
      rgba(255,255,255,.83) 44%,
      rgba(255,255,255,.24) 59%,
      rgba(255,255,255,0) 76%);
}
html.dark .home-v2-hero__veil {
  background:
    linear-gradient(90deg,
      rgba(2,6,23,.99) 0%,
      rgba(2,6,23,.96) 32%,
      rgba(2,6,23,.78) 46%,
      rgba(2,6,23,.18) 65%,
      rgba(2,6,23,0) 82%);
}
.home-v2-hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(690px,82vh,820px);
  display: flex;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 44px;
}
.home-v2-hero__copy {
  width: min(48%,620px);
}
.home-v2-hero__copy .home-v2-eyebrow { margin-bottom: 24px; }
.home-v2-hero__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 24px;
  color: var(--hv2-ink);
  font-family: var(--font-display);
  font-size: clamp(62px,7.15vw,104px);
  font-style: italic;
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.home-v2-hero__title--bn {
  font-family: var(--font-bn);
  font-size: clamp(44px,5.7vw,76px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -.015em;
  text-transform: none;
}
.home-v2-hero__lead {
  max-width: 555px;
  margin: 0 0 30px;
  color: var(--hv2-copy) !important;
  font-size: clamp(18px,1.55vw,22px);
  line-height: 1.58;
}
.home-v2-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.home-v2-actions .app-button,
.home-v2-actions .btn-secondary {
  min-height: 50px;
  padding-inline: 27px;
}
.home-v2-secondary {
  border-color: rgba(99,102,241,.15);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}
.home-v2-hero__trust {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 40px;
}
.home-v2-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #53627f;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}
.home-v2-mini-icon { color: var(--brand); flex: none; }

/* Services */
.home-v2-services { background: #fff; }
html.dark .home-v2-services { background: #020617; }
.home-v2-service-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.home-v2-service-card {
  min-height: 178px;
  padding: 22px 24px 24px;
  border: 1px solid var(--hv2-line);
  border-radius: 18px;
  background: var(--hv2-card);
  box-shadow: var(--hv2-shadow);
  transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.home-v2-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.22);
  box-shadow: 0 24px 58px -38px rgba(79,70,229,.28);
}
.home-v2-card-top { display: flex; justify-content: space-between; align-items: center; }
.home-v2-icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  color: var(--brand);
  background: linear-gradient(145deg,#eef2ff,#e0e7ff);
}
html.dark .home-v2-icon-box { background: rgba(99,102,241,.14); }
.home-v2-icon-box--small { width: 42px; height: 42px; border-radius: 12px; }
.home-v2-card-arrow {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 999px; background: #f4f6ff; color: var(--brand);
  font-size: 15px; font-weight: 800;
}
.home-v2-service-card h3 {
  margin: 20px 0 7px;
  color: var(--hv2-ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.home-v2-service-card p { margin: 0; font-size: 14px; line-height: 1.6; }

/* Process: compact horizontal rail rather than boxed cards. */
.home-v2-process {
  padding-top: 78px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 10% 10%,rgba(99,102,241,.055),transparent 28%),
    var(--hv2-soft);
  border-top: 1px solid var(--hv2-line);
  border-bottom: 1px solid var(--hv2-line);
}
.home-v2-process__grid {
  display: grid;
  grid-template-columns: minmax(240px,.7fr) minmax(0,1.7fr);
  gap: clamp(44px,6vw,84px);
  align-items: start;
}
.home-v2-process__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  color: var(--hv2-ink);
  font-family: var(--font-display);
  font-size: clamp(36px,3.8vw,54px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
html[lang="bn"] .home-v2-process__title {
  font-family: var(--font-bn);
  font-size: clamp(34px,3.7vw,50px);
  line-height: 1.2;
  letter-spacing: -.015em;
  text-transform: none;
}
.home-v2-process__intro > p {
  max-width: 390px;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.68;
}
.home-v2-soft-button {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 42px; padding: 0 16px;
  border: 1px solid var(--hv2-line); border-radius: 10px;
  background: #fff; color: var(--hv2-ink);
  font-size: 12px; font-weight: 800;
  box-shadow: 0 12px 30px -26px rgba(15,23,42,.45);
}
html.dark .home-v2-soft-button { background: rgba(15,23,42,.74); }
.home-v2-process__steps {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-v2-process-step { min-width: 0; }
.home-v2-process-step__rail {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}
.home-v2-process-step__connector {
  flex: 1;
  height: 1px;
  margin-left: 12px;
  background: linear-gradient(90deg,rgba(99,102,241,.38),rgba(99,102,241,.08));
  position: relative;
}
.home-v2-process-step__connector::after {
  content: "›";
  position: absolute;
  right: -2px; top: 50%; transform: translateY(-55%);
  color: var(--brand); font-size: 22px; line-height: 1;
}
.home-v2-step-number {
  display: block; margin-bottom: 7px;
  color: var(--brand);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
}
.home-v2-process-step h3 {
  margin: 0 0 7px; color: var(--hv2-ink);
  font-size: 16px; line-height: 1.25;
}
.home-v2-process-step p { margin: 0; font-size: 13px; line-height: 1.58; }

/* Why Codenixo */
.home-v2-why { background: #fff; }
html.dark .home-v2-why { background: #020617; }
.home-v2-why__grid {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  gap: clamp(46px,6vw,78px);
  align-items: center;
}
.home-v2-why__media {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border: 1px solid var(--hv2-line);
  border-radius: 24px;
  background: #f1f5f9;
  box-shadow: 0 24px 68px -44px rgba(15,23,42,.36);
}
.home-v2-why__media img {
  display: block; width: 100%; height: 350px;
  object-fit: cover; object-position: center;
  filter: none;
}
.home-v2-media-label {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: 11px;
  background: rgba(255,255,255,.9); color: #111827;
  font-size: 11px; font-weight: 800;
  box-shadow: 0 16px 34px -24px rgba(15,23,42,.52);
  backdrop-filter: blur(12px);
}
.home-v2-play {
  display: grid; place-items: center; width: 29px; height: 29px;
  border-radius: 999px; background: var(--brand); color: #fff;
  font-size: 10px;
}
.home-v2-why__copy .home-v2-section-title { max-width: 720px; }
.home-v2-why__lead {
  max-width: 680px; margin: 15px 0 20px;
  font-size: 15px; line-height: 1.68;
}
.home-v2-why__points {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px 24px;
  margin-top: 8px;
}
.home-v2-why-point {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 0;
}
.home-v2-why-point h3 {
  margin: 0 0 3px; color: var(--hv2-ink);
  font-size: 14px; line-height: 1.3;
}
.home-v2-why-point p { margin: 0; font-size: 12px; line-height: 1.5; }

/* Truthful trust strip: same premium shape as the reference, no fabricated metrics. */
.home-v2-trust { padding: 0 0 78px; background: #fff; }
html.dark .home-v2-trust { background: #020617; }
.home-v2-trust__panel {
  display: grid;
  grid-template-columns: minmax(215px,.65fr) minmax(0,1.75fr);
  gap: 34px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--hv2-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 0%,rgba(99,102,241,.08),transparent 28%),
    var(--hv2-soft);
}
.home-v2-trust__intro .home-v2-eyebrow { margin-bottom: 7px; }
.home-v2-trust__intro h2 {
  margin: 0; color: var(--hv2-ink);
  font-family: var(--font-display);
  font-size: clamp(23px,2.3vw,32px);
  line-height: 1.05; letter-spacing: -.04em;
}
.home-v2-trust__items {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
}
.home-v2-trust-stat {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 0 18px;
  border-left: 1px solid var(--hv2-line);
}
.home-v2-trust-stat strong {
  display: block; color: var(--hv2-ink);
  font-size: 18px; line-height: 1.05; letter-spacing: -.03em;
}
.home-v2-trust-stat span:last-child {
  display: block; margin-top: 3px;
  color: var(--hv2-copy); font-size: 11px; line-height: 1.35;
}

/* Work options: uses existing real service structure instead of fake testimonials. */
.home-v2-work {
  padding-top: 0;
  background: #fff;
}
html.dark .home-v2-work { background: #020617; }
.home-v2-work .home-v2-section-head { margin-bottom: 28px; }
.home-v2-work-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;
}
.home-v2-work-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 24px;
  border: 1px solid var(--hv2-line);
  border-radius: 19px;
  background: var(--hv2-card);
  box-shadow: var(--hv2-shadow);
}
.home-v2-work-card.is-featured {
  border-color: rgba(99,102,241,.3);
  box-shadow: 0 24px 58px -40px rgba(79,70,229,.34);
}
.home-v2-work-card__label {
  color: var(--brand-dark); font-size: 10px; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
}
.home-v2-work-card h3 {
  margin: 9px 0 8px; color: var(--hv2-ink);
  font-size: 19px; line-height: 1.16; letter-spacing: -.03em;
}
.home-v2-work-card > p { margin: 0 0 15px; font-size: 13px; line-height: 1.55; }
.home-v2-work-card ul {
  display: grid; gap: 7px; margin: 0 0 18px; padding: 0; list-style: none;
}
.home-v2-work-card li {
  display: grid; grid-template-columns: 16px 1fr; gap: 7px;
  color: var(--hv2-copy); font-size: 12px; line-height: 1.4;
}
.home-v2-work-card li > span:first-child { color: var(--brand); }
.home-v2-work-card__cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 42px; margin-top: auto;
  border: 1px solid var(--hv2-line); border-radius: 10px;
  background: #f8fafc; color: var(--hv2-ink);
  font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase;
}
.home-v2-work-card.is-featured .home-v2-work-card__cta {
  border-color: var(--brand); background: var(--brand); color: #fff;
}

/* FAQ */
.home-v2-faq {
  padding-top: 74px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 3% 35%,rgba(99,102,241,.07),transparent 24%),
    var(--hv2-soft);
}
.home-v2-faq__panel {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
  gap: clamp(50px,7vw,90px);
  align-items: center;
}
.home-v2-faq__intro > p:not(.home-v2-eyebrow) {
  max-width: 390px; margin: 14px 0 0;
  font-size: 14px; line-height: 1.62;
}
.home-v2-faq-art {
  position: relative; width: 190px; height: 105px; margin-top: 22px;
}
.home-v2-faq-art span {
  position: absolute; display: grid; place-items: center;
  box-shadow: 0 20px 50px -30px rgba(79,70,229,.55);
}
.home-v2-faq-art span:first-child {
  left: 0; top: 0; width: 82px; height: 72px;
  border-radius: 22px; background: linear-gradient(145deg,#818cf8,#4f46e5);
  color: #fff; font-size: 35px; font-weight: 800;
}
.home-v2-faq-art span:last-child {
  left: 70px; bottom: 0; width: 102px; height: 62px;
  border-radius: 20px; background: linear-gradient(145deg,#eef2ff,#dfe5ff);
  color: var(--brand); font-size: 20px; font-weight: 800; letter-spacing: .08em;
}
.home-v2-faq__items { display: grid; gap: 9px; }
.home-v2-faq-item {
  overflow: hidden;
  border: 1px solid var(--hv2-line);
  border-radius: 14px;
  background: var(--hv2-card);
}
.home-v2-faq-item summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 13px 13px 13px 17px;
  color: var(--hv2-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.home-v2-faq-item summary::-webkit-details-marker { display: none; }
.home-v2-faq-plus {
  position: relative; width: 28px; height: 28px;
  border-radius: 999px; background: #f1f5f9;
}
.home-v2-faq-plus::before,.home-v2-faq-plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 1.5px; background: #111827;
  transform: translate(-50%,-50%);
}
.home-v2-faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.home-v2-faq-item[open] .home-v2-faq-plus::after { transform: translate(-50%,-50%); }
.home-v2-faq-item > div { padding: 0 56px 15px 17px; }
.home-v2-faq-item > div p { margin: 0; font-size: 13px; line-height: 1.6; }

/* CTA */
.home-v2-cta { padding: 0 0 68px; background: var(--hv2-soft); }
.home-v2-cta__panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 34px 38px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 75% 140%,rgba(255,255,255,.2),transparent 34%),
    linear-gradient(110deg,#6366f1 0%,#5c5df0 52%,#4f46e5 100%);
  box-shadow: 0 28px 66px -36px rgba(79,70,229,.55);
}
.home-v2-cta__panel::after {
  content: "";
  position: absolute; right: 12%; bottom: -74px;
  width: 360px; height: 125px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.home-v2-cta__panel > * { position: relative; z-index: 1; }
.home-v2-cta__eyebrow {
  margin: 0 0 7px; color: rgba(255,255,255,.75) !important;
  font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
}
.home-v2-cta h2 {
  margin: 0 0 7px; color: #fff;
  font-family: var(--font-display);
  font-size: clamp(29px,3.1vw,42px);
  line-height: 1.03; letter-spacing: -.045em;
}
.home-v2-cta p { margin: 0; color: rgba(255,255,255,.86) !important; font-size: 14px; line-height: 1.55; }
.home-v2-cta .btn-white { min-height: 48px; border-radius: 11px; white-space: nowrap; }

/* Bangla */
html[lang="bn"] .home-v2-eyebrow,
html[lang="bn"] .home-v2-work-card__label,
html[lang="bn"] .home-v2-cta__eyebrow {
  font-family: var(--font-bn); letter-spacing: 0; text-transform: none;
}
html[lang="bn"] .home-v2-section-title,
html[lang="bn"] .home-v2-trust__intro h2,
html[lang="bn"] .home-v2-work-card h3,
html[lang="bn"] .home-v2-cta h2 {
  font-family: var(--font-bn); letter-spacing: -.01em; line-height: 1.2;
}

/* Responsive */
@media (max-width: 1080px) {
  .home-v2-hero__copy { width: 54%; }
  .home-v2-hero__title { font-size: clamp(58px,7.4vw,88px); }
  .home-v2-hero__trust { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 500px; }
  .home-v2-process__grid { grid-template-columns: 1fr; }
  .home-v2-process__steps { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .home-v2-trust__panel { grid-template-columns: 1fr; }
  .home-v2-trust__items { border-top: 1px solid var(--hv2-line); padding-top: 18px; }
  .home-v2-trust-stat:first-child { border-left: 0; }
}
@media (max-width: 820px) {
  .home-v2-section { padding: 68px 0; }
  .home-v2-hero {
    min-height: auto;
    padding-top: 112px;
    background: linear-gradient(180deg,#f9faff,#f3f5ff);
  }
  .home-v2-hero__inner { min-height: 0; display: block; padding-top: 30px; padding-bottom: 0; }
  .home-v2-hero__copy { width: 100%; max-width: 680px; padding-bottom: 34px; }
  .home-v2-hero__veil {
    background: linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.96) 44%,rgba(255,255,255,.2) 72%,rgba(255,255,255,0) 100%);
  }
  .home-v2-hero__background {
    position: relative;
    height: min(78vw,620px);
    margin-top: 0;
  }
  .home-v2-hero__background img { object-position: 63% center; }
  .home-v2-hero__title { font-size: clamp(54px,12vw,82px); }
  .home-v2-hero__trust { max-width: none; }
  .home-v2-service-grid,.home-v2-work-grid { grid-template-columns: 1fr 1fr; }
  .home-v2-service-card:last-child,.home-v2-work-card:last-child { grid-column: 1 / -1; }
  .home-v2-process__steps { grid-template-columns: 1fr 1fr; gap: 26px 22px; }
  .home-v2-process-step__connector { display: none; }
  .home-v2-why__grid,.home-v2-faq__panel { grid-template-columns: 1fr; }
  .home-v2-why__media,.home-v2-why__media img { min-height: 330px; height: 330px; }
  .home-v2-trust__items { grid-template-columns: 1fr 1fr; }
  .home-v2-trust-stat:nth-child(odd) { border-left: 0; }
  .home-v2-faq-art { display: none; }
  .home-v2-cta__panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .home-v2-section { padding: 58px 0; }
  .home-v2-hero { padding-top: 96px; }
  .home-v2-hero__title { font-size: clamp(48px,15vw,68px); line-height: .92; }
  .home-v2-hero__lead { font-size: 17px; }
  .home-v2-actions { align-items: stretch; }
  .home-v2-actions .app-button,.home-v2-actions .btn-secondary { flex: 1 1 100%; justify-content: center; }
  .home-v2-hero__trust { grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 30px; }
  .home-v2-hero__background { height: 92vw; max-height: 520px; }
  .home-v2-section-head { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 26px; }
  .home-v2-service-grid,.home-v2-work-grid,.home-v2-process__steps { grid-template-columns: 1fr; }
  .home-v2-service-card:last-child,.home-v2-work-card:last-child { grid-column: auto; }
  .home-v2-process-step { display: grid; grid-template-columns: 45px 1fr; column-gap: 12px; }
  .home-v2-process-step__rail { grid-row: 1 / span 3; margin: 0; align-items: start; }
  .home-v2-step-number,.home-v2-process-step h3,.home-v2-process-step p { grid-column: 2; }
  .home-v2-why__points { grid-template-columns: 1fr; }
  .home-v2-trust__panel { padding: 22px 20px; }
  .home-v2-trust__items { grid-template-columns: 1fr; }
  .home-v2-trust-stat,.home-v2-trust-stat:nth-child(odd) { border-left: 0; border-top: 1px solid var(--hv2-line); padding: 13px 0; }
  .home-v2-trust-stat:first-child { border-top: 0; }
  .home-v2-faq-item summary { font-size: 12.5px; }
  .home-v2-cta { padding-bottom: 54px; }
  .home-v2-cta__panel { padding: 28px 24px; border-radius: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-v2-service-card { transition: none; }
}
