/**
 * V2 Component Styles
 *
 * @package InnovatScale
 */

/* ═══ V2 Component Styles ═══ */

/* ─── Bento grid ─── */
.v2-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.v2-bento--2col {
    grid-template-columns: repeat(2, 1fr);
}
.v2-bento--3col {
    grid-template-columns: repeat(3, 1fr);
}
.v2-bento--4col {
    grid-template-columns: repeat(4, 1fr);
}
.v2-bento__card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.v2-bento__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.v2-bento__card--span2 {
    grid-column: span 2;
}
.v2-bento__card--accent {
    background: var(--gradient-primary);
    color: #fff;
}
.v2-bento__card--dark {
    background: var(--color-text-navy);
    color: #fff;
}

/* ─── Pillar cards strip ─── */
.v2-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0;
}
.v2-pillar-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid transparent;
    border-image: var(--gradient-primary) 1;
    transition: transform 0.25s ease;
    text-decoration: none;
    display: block;
}
.v2-pillar-card:hover {
    transform: translateY(-6px);
}
.v2-pillar-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.v2-pillar-card__icon svg {
    stroke: #fff;
}
.v2-pillar-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-navy);
    margin: 0 0 10px;
}
.v2-pillar-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}
.v2-pillar-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Industry band ─── */
.v2-industry-band {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0;
}
.v2-industry-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-navy);
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.v2-industry-chip:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}
.v2-industry-chip svg {
    width: 18px;
    height: 18px;
}

/* ─── Product card ─── */
.v2-product-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.v2-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.v2-product-logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    line-height: 1.2;
}
.v2-product-tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.v2-product-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--gradient-primary);
    color: #fff;
    margin-bottom: 16px;
}
.v2-product-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 24px;
}

/* ─── Process steps horizontal ─── */
.v2-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 40px 0;
    position: relative;
}
.v2-steps--3col {
    grid-template-columns: repeat(3, 1fr);
}
.v2-steps--6col {
    grid-template-columns: repeat(6, 1fr);
}
.v2-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: 0;
}
.v2-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}
.v2-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}
.v2-step__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-text-navy);
    margin-bottom: 6px;
}
.v2-step__desc {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ─── Cross-link banner ─── */
.v2-crosslink {
    background: var(--color-light-bg);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
    border-left: 4px solid var(--color-primary-start);
}
.v2-crosslink p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}
.v2-crosslink strong {
    color: var(--color-text-navy);
    display: block;
    margin-bottom: 4px;
}

/* ─── Stats row ─── */
.v2-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 48px 0;
}
.v2-stat {
    background: var(--color-white);
    padding: 32px 24px;
    text-align: center;
}
.v2-stat__num {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.v2-stat__label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ─── How we help 3-col ─── */
.v2-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}
.v2-how-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    text-align: center;
}
.v2-how-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.v2-how-card__icon svg {
    stroke: #fff;
    width: 24px;
    height: 24px;
}
.v2-how-card h3 {
    font-size: 1.125rem;
    color: var(--color-text-navy);
    margin: 0 0 10px;
}
.v2-how-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0 0 16px;
    line-height: 1.6;
}

/* ─── Check list ─── */
.v2-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}
.v2-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text-body);
}
.v2-checklist li svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--color-primary-start);
}

/* ─── Insight card ─── */
.v2-insight-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}
.v2-insight-card:hover {
    transform: translateY(-4px);
}
.v2-insight-card__body {
    padding: 28px;
}
.v2-insight-card__date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}
.v2-insight-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-navy);
    margin: 0 0 10px;
    line-height: 1.4;
}
.v2-insight-card__excerpt {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
}
.v2-insight-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* ─── Differentiator numbered cards ─── */
.v2-differentiator {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
    position: relative;
}
.v2-differentiator:hover {
    transform: translateY(-4px);
}
.v2-differentiator__num {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.3;
    position: absolute;
    top: 24px;
    right: 28px;
}
.v2-differentiator__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.v2-differentiator__icon svg {
    stroke: #fff;
}
.v2-differentiator__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-navy);
    margin: 0 0 10px;
}
.v2-differentiator__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─── Section utilities ─── */
.v2-section-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.v2-section-center h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-navy);
    margin: 0 0 16px;
    line-height: 1.2;
}
.v2-section-center p {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}
.v2-btn-center {
    text-align: center;
    margin-top: 40px;
}

/* ─── Partner intro block ─── */
.v2-partner-intro {
    background: var(--color-light-bg);
    border-radius: 20px;
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}
.v2-partner-intro p {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* ─── Product section split layout ─── */
.v2-product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin: 48px 0;
}
.v2-product-split--reverse {
    direction: rtl;
}
.v2-product-split--reverse > * {
    direction: ltr;
}
.v2-product-visual {
    border-radius: 24px;
    background: var(--gradient-primary);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    text-align: center;
}
.v2-product-visual__logo {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}
.v2-product-visual__sub {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ─── Story 2-col ─── */
.v2-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin: 48px 0;
}
.v2-story-deco {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 48px 40px;
    color: #fff;
    text-align: center;
}
.v2-story-deco__at {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.9;
}
.v2-story-deco__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ─── Careers dark block ─── */
.v2-careers {
    background: var(--color-text-navy);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin: 48px 0;
}
.v2-careers h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}
.v2-careers p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .v2-bento,
    .v2-bento--3col,
    .v2-pillars,
    .v2-how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .v2-steps,
    .v2-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .v2-bento__card--span2 {
        grid-column: span 1;
    }
    .v2-steps--6col {
        grid-template-columns: repeat(3, 1fr);
    }
    .v2-product-split,
    .v2-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .v2-product-split--reverse {
        direction: ltr;
    }
    .v2-bento--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .v2-bento,
    .v2-bento--2col,
    .v2-bento--3col,
    .v2-bento--4col,
    .v2-pillars,
    .v2-how-grid {
        grid-template-columns: 1fr;
    }
    .v2-steps,
    .v2-steps--3col,
    .v2-steps--6col,
    .v2-stats {
        grid-template-columns: 1fr;
    }
    .v2-crosslink {
        flex-direction: column;
    }
    .v2-checklist {
        grid-template-columns: 1fr;
    }
    .v2-steps::before {
        display: none;
    }
    .v2-product-card {
        padding: 28px 24px;
    }
    .v2-pillar-card {
        padding: 28px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════
   CONSULTING LANDING — Service Nav Tabs
   ═══════════════════════════════════════════════════════════ */
.v2-service-nav {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 72px;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.v2-service-nav .container {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.v2-service-nav .container::-webkit-scrollbar {
  display: none;
}

.v2-service-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.v2-service-nav__item:hover,
.v2-service-nav__item.is-active {
  color: var(--color-text-navy);
  border-bottom-color: var(--color-primary-start);
}

.v2-service-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-primary);
}

.v2-service-nav__icon svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   CONSULTING LANDING — Service Split Layout
   ═══════════════════════════════════════════════════════════ */
.v2-service-section {
  scroll-margin-top: 120px;
}

.v2-service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.v2-service-split--reverse {
  direction: rtl;
}

.v2-service-split--reverse > * {
  direction: ltr;
}

/* Image block */
.v2-service-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.v2-service-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.v2-service-img:hover img {
  transform: scale(1.04);
}

.v2-service-img__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,25,54,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 18px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

.v2-service-img__badge svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary-start);
  flex-shrink: 0;
}

/* Content block */
.v2-service-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--color-text-navy);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.v2-service-content__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.v2-service-content__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Check list */
.v2-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-text-body, #374151);
  line-height: 1.5;
}

.v2-check-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary-start);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   CONSULTING LANDING — Why cards
   ═══════════════════════════════════════════════════════════ */
.v2-why-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-left: 4px solid transparent;
  border-image: var(--gradient-primary) 1;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease;
}

.v2-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.11);
}

.v2-why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.v2-why-card__icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.v2-why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text-navy);
  margin: 0 0 10px;
}

.v2-why-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Consulting landing
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .v2-service-split,
  .v2-service-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }

  .v2-service-split--reverse > * {
    direction: ltr;
  }

  .v2-service-img img {
    height: 280px;
  }

  .v2-service-nav__item {
    padding: 14px 18px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 600px) {
  .v2-why-card {
    padding: 24px 20px;
  }

  .v2-service-content__ctas {
    flex-direction: column;
  }

  .v2-service-content__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   CAPABILITY CARDS GRID
   Used on: all 5 solution domain pages
═══════════════════════════════════════════════ */
.dai-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.dai-capability-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  border: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.dai-capability-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.dai-capability-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(124, 237, 185, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.dai-capability-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a0c1c;
  line-height: 1.3;
  margin: 0;
}

.dai-capability-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.dai-capability-card__bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.dai-capability-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.45;
}

.dai-capability-card__bullets li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7cedb9, #3b82f6);
}

/* Section light background for capability section */
.section--light .dai-capability-card {
  background: #fff;
}

@media (max-width: 960px) {
  .dai-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .dai-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dai-capability-card {
    padding: 22px 18px 18px;
  }
}


/* ─────────────────────────────────────────────────────────────
   INDUSTRIES PAGE — Industry image cards
   ───────────────────────────────────────────────────────────── */

.v2-industry-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.v2-industry-img-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  background: #0a0c1c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.v2-industry-img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.v2-industry-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.28s ease, transform 0.4s ease;
}

.v2-industry-img-card:hover img {
  opacity: 0.45;
  transform: scale(1.04);
}

.v2-industry-img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 12, 28, 0) 30%,
    rgba(10, 12, 28, 0.85) 100%
  );
  z-index: 1;
}

.v2-industry-img-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.v2-industry-img-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7cedb9;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.v2-industry-img-card__icon svg {
  width: 18px;
  height: 18px;
}

.v2-industry-img-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}

.v2-industry-img-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v2-industry-img-card__cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7cedb9;
  letter-spacing: 0.02em;
  margin-top: 4px;
  transition: letter-spacing 0.2s ease;
}

.v2-industry-img-card:hover .v2-industry-img-card__cta {
  letter-spacing: 0.06em;
}

@media (max-width: 960px) {
  .v2-industry-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .v2-industry-img-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v2-industry-img-card {
    aspect-ratio: 16 / 9;
  }
}


/* ─────────────────────────────────────────────────────────────
   INDUSTRIES PAGE — Partner / Technology cards
   ───────────────────────────────────────────────────────────── */

.v2-partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Row 1: 3 cards, each spanning 2 of 6 columns */
.v2-partner-grid > :nth-child(1),
.v2-partner-grid > :nth-child(2),
.v2-partner-grid > :nth-child(3) {
  grid-column: span 2;
}

/* Row 2: 2 cards centred (cols 2–4 and 4–6) */
.v2-partner-grid > :nth-child(4) { grid-column: 2 / 4; }
.v2-partner-grid > :nth-child(5) { grid-column: 4 / 6; }

.v2-partner-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  border: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.v2-partner-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.v2-partner-card__logo {
  height: 52px;
  display: flex;
  align-items: center;
}

.v2-partner-card__logo img {
  max-height: 48px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.v2-partner-card__domain {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(124, 237, 185, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.v2-partner-card__desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.v2-partner-card__link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #059669;
  text-decoration: none;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  letter-spacing: 0.01em;
}

.v2-partner-card__link:hover {
  color: #047857;
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
  .v2-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .v2-partner-grid > :nth-child(1),
  .v2-partner-grid > :nth-child(2),
  .v2-partner-grid > :nth-child(3),
  .v2-partner-grid > :nth-child(4),
  .v2-partner-grid > :nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .v2-partner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ─────────────────────────────────────────────────────────────
   INDUSTRIES PAGE — Three capabilities pillar row
   ───────────────────────────────────────────────────────────── */

.v2-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.v2-pillar-simple {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px 28px;
  border: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.v2-pillar-simple:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.v2-pillar-simple--accent {
  background: linear-gradient(145deg, #0a0c1c 0%, #141830 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(10, 12, 28, 0.25);
}

.v2-pillar-simple--accent h3,
.v2-pillar-simple--accent p {
  color: #fff;
}

.v2-pillar-simple--accent p {
  color: rgba(255, 255, 255, 0.7);
}

.v2-pillar-simple__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7cedb9 0%, #3b82f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.v2-pillar-simple__icon svg {
  width: 24px;
  height: 24px;
}

.v2-pillar-simple h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a0c1c;
  margin: 0;
  line-height: 1.25;
}

.v2-pillar-simple p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.v2-pillar-simple .btn {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .v2-pillars-row {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ─────────────────────────────────────────────────────────────
   INDUSTRY PAGE — Prev / Next navigation
   ───────────────────────────────────────────────────────────── */

.v2-industry-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid #e8eaf0;
}

.v2-industry-nav__item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #e8eaf0;
  background: #fff;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  min-width: 0;
  flex: 1;
  max-width: 280px;
}

.v2-industry-nav__item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  border-color: #c7d2e7;
}

.v2-industry-nav__item--prev {
  flex-direction: row;
}

.v2-industry-nav__item--next {
  flex-direction: row-reverse;
  text-align: right;
}

.v2-industry-nav__item--empty {
  flex: 1;
  max-width: 280px;
  visibility: hidden;
  pointer-events: none;
}

.v2-industry-nav__arrow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(124,237,185,0.12), rgba(59,130,246,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.v2-industry-nav__item:hover .v2-industry-nav__arrow {
  background: linear-gradient(135deg, #7cedb9, #3b82f6);
  color: #fff;
}

.v2-industry-nav__arrow svg {
  width: 18px;
  height: 18px;
}

.v2-industry-nav__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.v2-industry-nav__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.v2-industry-nav__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0a0c1c;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-industry-nav__all {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(5, 150, 105, 0.25);
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.v2-industry-nav__all svg {
  width: 16px;
  height: 16px;
}

.v2-industry-nav__all:hover {
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.5);
}

@media (max-width: 700px) {
  .v2-industry-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .v2-industry-nav__item,
  .v2-industry-nav__item--empty {
    max-width: none;
    flex: 1 1 calc(50% - 8px);
  }
  .v2-industry-nav__all {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   PARTNER PRODUCT PAGES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Hero badge (logo + partner tag) ─── */
.v2-partner-hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.v2-partner-hero-badge img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.v2-partner-hero-badge__tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7cedb9;
  background: rgba(124, 237, 185, 0.15);
  border: 1px solid rgba(124, 237, 185, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── Impact stats bar ─── */
.v2-impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #e8eaf0;
  border-radius: 16px;
  overflow: hidden;
}

.v2-impact-stat {
  background: #fff;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.v2-impact-stat__num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7cedb9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.v2-impact-stat__label {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}

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

@media (max-width: 600px) {
  .v2-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Blockquote inside split sections ─── */
.v2-partner-quote {
  margin: 8px 0 0;
  padding: 16px 20px;
  border-left: 3px solid #7cedb9;
  background: rgba(124, 237, 185, 0.06);
  border-radius: 0 10px 10px 0;
}

.v2-partner-quote p {
  font-size: 0.95rem;
  font-style: italic;
  color: #334155;
  margin: 0 0 6px;
  line-height: 1.6;
}

.v2-partner-quote cite {
  font-size: 0.8rem;
  color: #94a3b8;
  font-style: normal;
  font-weight: 600;
}

/* ─── Module groups ─── */
.v2-module-group {
  margin-top: 40px;
  border: 1px solid #e8eaf0;
  border-radius: 20px;
  overflow: hidden;
}

.v2-module-group__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid #e8eaf0;
}

.v2-module-group__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7cedb9, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.v2-module-group__icon svg {
  width: 18px;
  height: 18px;
}

.v2-module-group__header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0c1c;
  margin: 0;
  letter-spacing: 0.01em;
}

.v2-module-group__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}

.v2-module-card {
  padding: 24px 28px;
  border-right: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v2-module-card:last-child {
  border-right: none;
}

.v2-module-card__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(124, 237, 185, 0.15);
  padding: 2px 8px;
  border-radius: 20px;
  align-self: flex-start;
}

.v2-module-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0a0c1c;
  margin: 0;
  line-height: 1.3;
}

.v2-module-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .v2-module-group__cards {
    grid-template-columns: 1fr;
  }
  .v2-module-card {
    border-right: none;
    border-bottom: 1px solid #e8eaf0;
  }
  .v2-module-card:last-child {
    border-bottom: none;
  }
}

/* ─── Persona cards ─── */
.v2-persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.v2-persona-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.v2-persona-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.v2-persona-card--accent {
  background: linear-gradient(145deg, #0a0c1c, #141830);
  border-color: transparent;
}

.v2-persona-card--accent h3,
.v2-persona-card--accent p {
  color: #fff;
}

.v2-persona-card--accent p {
  color: rgba(255, 255, 255, 0.7);
}

.v2-persona-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7cedb9, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.v2-persona-card__icon svg {
  width: 26px;
  height: 26px;
}

.v2-persona-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0a0c1c;
  margin: 0;
}

.v2-persona-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.v2-persona-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 16px;
}

.v2-persona-card--accent .v2-persona-card__list {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.v2-persona-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.45;
}

.v2-persona-card--accent .v2-persona-card__list li {
  color: rgba(255, 255, 255, 0.8);
}

.v2-persona-card__list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7cedb9, #3b82f6);
}

@media (max-width: 640px) {
  .v2-persona-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Pricing grid ─── */
.v2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.v2-pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.v2-pricing-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
  transform: translateY(-4px);
}

.v2-pricing-card--featured {
  background: linear-gradient(145deg, #0a0c1c, #141830);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(10, 12, 28, 0.3);
  transform: translateY(-8px);
}

.v2-pricing-card--featured:hover {
  transform: translateY(-12px);
}

.v2-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #7cedb9, #3b82f6);
  color: #0a0c1c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.v2-pricing-card__header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #0a0c1c;
}

.v2-pricing-card--featured .v2-pricing-card__header h3 {
  color: #fff;
}

.v2-pricing-card__header p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.v2-pricing-card--featured .v2-pricing-card__header p {
  color: rgba(255, 255, 255, 0.6);
}

.v2-pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 1px solid #e8eaf0;
  padding-top: 20px;
}

.v2-pricing-card--featured .v2-pricing-card__features {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.v2-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.45;
}

.v2-pricing-card--featured .v2-pricing-card__features li {
  color: rgba(255, 255, 255, 0.85);
}

.v2-pricing-card__features li::before {
  content: '✓';
  display: block;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  color: #059669;
  margin-top: 1px;
}

.v2-pricing-card--featured .v2-pricing-card__features li::before {
  color: #7cedb9;
}

.v2-pricing-card .btn {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .v2-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .v2-pricing-card--featured {
    transform: none;
  }
  .v2-pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ─── Integrations split block ─── */
.v2-integrations-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.v2-integrations-block__content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0a0c1c;
  margin: 12px 0 16px;
  line-height: 1.2;
}

.v2-integrations-block__content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 28px;
}

.v2-integrations-block__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v2-integrations-block__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e8eaf0;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.v2-integrations-block__feature svg {
  width: 18px;
  height: 18px;
  color: #059669;
  flex-shrink: 0;
}

.v2-integrations-block__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

@media (max-width: 900px) {
  .v2-integrations-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v2-integrations-block__img img {
    height: 280px;
  }
}

/* ─── Partner CTA block ─── */
.v2-partner-cta {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e8eaf0;
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.v2-partner-cta__logo img {
  max-height: 36px;
  width: auto;
}

.v2-partner-cta h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0a0c1c;
  margin: 0;
  line-height: 1.2;
}

.v2-partner-cta p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 580px;
  margin: 0;
}

.v2-partner-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.v2-partner-cta__note {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
}

@media (max-width: 600px) {
  .v2-partner-cta {
    padding: 36px 24px;
  }
  .v2-partner-cta h2 {
    font-size: 1.4rem;
  }
}

/* ── Capability card image header ─────────────────── */
.dai-capability-card__img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.dai-capability-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* ── Bento card image header ──────────────────────── */
.v2-bento__card-img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 4px;
}

.v2-bento__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
