/* ─── CONTAINER (editor) ─────────────────────────────────────── */
.wp-block-kipo-kipo-hero {
  container-type: inline-size;
}

/* ─── HERO SECTION ───────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero {
  background: var(--hero-bg);
  padding: 80px 80px 0;
  position: relative;
  overflow: hidden;
}


:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ─── LEFT ───────────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline {
  font-family: 'Ubuntu Sans', sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.15;
  color: #0d1b2d;
  margin-bottom: 24px;
  position: relative;
  padding-left: 41px;
}

@media (min-width: 1280px){
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline::before {
  content: '';
  position: absolute;
  top: -23px;
  left: 0px;
  width: 80%;
  height: 70%;
  background: #CCDEF9;
  border-radius: 12px;
  z-index: -1;
}
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline strong {
  font-weight: 700;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-sub {
  font-size: 19px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
  padding-left: 41px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-sub strong {
  color: #0d1b2d;
  font-weight: 700;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-btn-primary {
  width: 77%;
  margin-left: 41px;
  justify-content: center;
  margin-bottom: 20px;
}

/* ─── PERKS ──────────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-perks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-perk {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-gray);
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-perk-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-perk-icon svg {
  width: 16px;
  height: 16px;
}

/* ─── SOCIAL PROOF ───────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-avatars {
  display: flex;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-avatars img:first-child {
  margin-left: 0;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-rating {
  height: 20px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-reviews {
  font-size: 16px;
  color: var(--navy);
}

/* ─── RIGHT / VISUAL WRAP ────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 72px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual {
  width: 100%;
  max-width: 626px;
  aspect-ratio: 626 / 487;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
  box-shadow: none;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual-placeholder {
  background: var(--blue);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual-placeholder span {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ─── FEATURE CARDS ──────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(1) { transform: translateX(0); }
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-40px); }
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-80px); }
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-120px); }

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-cards {
  position: absolute;
  right: -14%;
  top: 23%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card {
  background: #fff;
  border-radius: 100px;
  padding: 4px 21px 4px 7px;
  display: flex;
  align-items: center;
  gap: 19px;
  box-shadow: 0 4px 24px rgba(13,27,45,0.1);
  white-space: nowrap;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  overflow: hidden;
  color: #fff;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  display: block;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon > span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0d1b2d;
  max-width: 180px;
  white-space: normal;
  line-height: 1.3;
}

/* ─── STAT BOX ───────────────────────────────────────────────── */
:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box {
  position: absolute;
  bottom: 15%;
  left: 0;
  background: #fff;
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 24px rgba(13,27,45,0.1);
  max-width: 220px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number {
  font-family: 'Ubuntu Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--yellow);
  line-height: 1;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  color: var(--text-gray);
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-divider {
  width: 1px;
  align-self: stretch;
  background: #e9ecf7;
  flex-shrink: 0;
  margin-left: 10px;
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  color: var(--text-gray);
}

:is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified {
  font-family: 'Ubuntu Sans', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--yellow);
  line-height: 1;
}

/* ─── RESPONSIVE (< 1440px) ─────────────────────────────────── */
@media (max-width: 1440px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 48px; height: 48px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 28px; height: 28px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 15px; max-width: 170px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 16px; padding: 4px 18px 4px 6px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-35px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-70px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-105px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { padding: 10px 14px; transform: translateX(-15px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number { font-size: 22px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified { font-size: 22px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label,
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label { font-size: 13px; }
}

/* ─── RESPONSIVE (< 1280px) ─────────────────────────────────── */
@media (max-width: 1280px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 46px; height: 46px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 26px; height: 26px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 14px; max-width: 160px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 14px; padding: 4px 16px 4px 6px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-30px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-60px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-90px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { padding: 8px 12px; max-width: 200px; transform: translateX(-30px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number { font-size: 20px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified { font-size: 20px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label,
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label { font-size: 12px; }
}

/* ─── RESPONSIVE (< 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero {
    padding: 60px 40px 0;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero::after {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline { font-size: 38px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-sub { font-size: 17px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 38px; height: 38px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 22px; height: 22px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 12px; max-width: 130px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 10px; padding: 3px 12px 3px 5px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-20px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-40px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-60px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { padding: 7px 10px; max-width: 180px; gap: 8px; transform: translateX(-45px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number { font-size: 17px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified { font-size: 17px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label,
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label { font-size: 11px; }
}

/* ─── MOBILE (< 768px) ───────────────────────────────────────── */
@media (max-width: 768px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero {
    padding: 48px 24px 0;
    align-items: center;
    text-align: center;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero::after {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-left { display: flex; flex-direction: column; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline { font-size: 32px;
    padding-left: 0px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-sub { font-size: 16px; max-width: 100%; padding-left: 0px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-btn-primary { width: 100%; margin-left: 0; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-perks { justify-content: center; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-social-proof { justify-content: center; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-right { align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual-wrap { padding-bottom: 16px; display: flex; flex-direction: column; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-cards {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    justify-content: center;
    align-items: center;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(1),
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2),
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3),
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: none; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 32px; height: 32px; font-size: 14px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 18px; height: 18px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 11px; max-width: 110px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 8px; padding: 3px 10px 3px 4px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { position: static; margin-top: 12px; width: fit-content; align-self: center; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════
   EDITOR — container queries
   ═══════════════════════════════════════════════════════════════ */
@container (max-width: 1440px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 48px; height: 48px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 28px; height: 28px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 15px; max-width: 170px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 16px; padding: 4px 18px 4px 6px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-35px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-70px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-105px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { padding: 10px 14px; transform: translateX(-15px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number { font-size: 22px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified { font-size: 22px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label,
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label { font-size: 13px; }
}

@container (max-width: 1280px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 46px; height: 46px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 26px; height: 26px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 14px; max-width: 160px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 14px; padding: 4px 16px 4px 6px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-30px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-60px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-90px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { padding: 8px 12px; max-width: 200px; transform: translateX(-30px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number { font-size: 20px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified { font-size: 20px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label,
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label { font-size: 12px; }
}

@container (max-width: 1024px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero {
    padding: 60px 40px 0;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero::after {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline { font-size: 38px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-sub { font-size: 17px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 38px; height: 38px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 22px; height: 22px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 12px; max-width: 130px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 10px; padding: 3px 12px 3px 5px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2) { transform: translateX(-20px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3) { transform: translateX(-40px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: translateX(-60px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { padding: 7px 10px; max-width: 180px; gap: 8px; transform: translateX(-45px); }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-number { font-size: 17px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified { font-size: 17px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-label,
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-unified-label { font-size: 11px; }
}

@container (max-width: 768px) {
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero {
    padding: 48px 24px 0;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero::after {
    width: calc(100% + 48px);
    margin-left: -24px;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-left { display: flex; flex-direction: column; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-headline { font-size: 32px;
    padding-left: 0px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-sub { font-size: 16px; max-width: 100%; padding-left: 0px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-btn-primary { width: 100%; margin-left: 0; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-right { align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-perks { justify-content: center; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-social-proof { justify-content: center; align-items: center; }

  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-visual-wrap { padding-bottom: 16px; display: flex; flex-direction: column; align-items: center; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-cards {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    justify-content: center;
  }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(1),
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(2),
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(3),
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card:nth-child(4) { transform: none; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon { width: 32px; height: 32px; font-size: 14px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-icon img { width: 18px; height: 18px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-text { font-size: 11px; max-width: 110px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-feature-card { gap: 8px; padding: 3px 10px 3px 4px; }
  :is(#kipo-landing, .wp-block-kipo-kipo-hero) .hero-stat-box { position: static; margin-top: 12px; width: fit-content; align-self: center; transform: none; }
}