

:root {
  --brand: #52bac5;
  --brand-dk: #3a9faa;
  --brand-glow: rgba(82, 186, 197, 0.28);
  --navy: #2e3e58;
  --dark: #1a2333;
  --dark2: #0f1720;
  --white: #ffffff;
  --off: #f5f8fb;
  --off2: #edf1f7;
  --border: #e2e8f0;
  --text: #1e2d3d;
  --text2: #4a6078;
  --text3: #7f96ae;
  --green: #22c55e;
  --yellow: #f59e0b;
  --orange: #f97316;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --sky: #0ea5e9;
  --font: "Inter", system-ui, sans-serif;
  --font-h: "Plus Jakarta Sans", "Inter", sans-serif;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --sh: 0 2px 16px rgba(30, 45, 61, 0.07);
  --sh-lg: 0 12px 48px rgba(30, 45, 61, 0.13);
  --sh-xl: 0 24px 80px rgba(30, 45, 61, 0.18);
  --max: 1500px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.26s var(--ease);
}

.hp {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
.hp a {
  text-decoration: none;
}

.hpInner {
  width: 94% !important;
  max-width: var(--max) !important;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ── LABEL ── */
.hpLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.hpLabel::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  display: block;
}

/* ── BADGE (pill) ── */
.hpBadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(82, 186, 197, 0.12);
  border: 1px solid rgba(82, 186, 197, 0.3);
  color: #8fd8e2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px 5px 9px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hpBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: hpPulse 2s infinite;
}
@keyframes hpPulse {
  0%,
  100% {
    box-shadow: 0 0 5px var(--brand);
  }
  50% {
    box-shadow: 0 0 14px var(--brand);
  }
}

/* ────────────────────────────────────────────
   01 · HERO — dark full-width, unified style
──────────────────────────────────────────── */
.hpHero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #0d1320 0%, #111b2e 50%, #0c1a2a 100%);
  padding: 88px 24px 80px;
  text-align: center;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.hpHero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dk));
}
.hpHeroDots {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(82, 186, 197, 0.12) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.hpHeroGrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hpHeroBlob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hpHeroBlob1 {
  width: 700px;
  height: 700px;
  top: -260px;
  right: -180px;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.13) 0%,
    transparent 65%
  );
}
.hpHeroBlob2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(13, 131, 141, 0.1) 0%,
    transparent 65%
  );
}

.hpHeroInner {
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT */
.hpHeroCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hpHeroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 190, 43, 0.1);
  border: 1px solid rgba(255, 190, 43, 0.28);
  color: #ffd166;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  width: fit-content;
}
.hpHeroBadgeDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffbe2b;
  box-shadow: 0 0 8px #ffbe2b;
  flex-shrink: 0;
  animation: hpBadgePulse 2s ease-in-out infinite;
}
@keyframes hpBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 6px #ffbe2b;
  }
  50% {
    box-shadow: 0 0 18px #ffbe2b;
  }
}

.hpHeroTitleThin {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.hpHeroTitleBold {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #fff 0%, #a0eaf3 40%, #52bac5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin:0px;
  padding:0px;
  padding-bottom:20px;
}

.hpHeroSub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: center;
}

.hpHeroCtas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  flex-direction: row;
  justify-content: center;
}
.hpHeroBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #52bac5 0%, #0d838d 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(82, 186, 197, 0.4);
  transition: opacity 0.22s, transform 0.22s, box-shadow 0.22s;
}
.hpHeroBtnPrimary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(82, 186, 197, 0.55);
}
.hpHeroBtnSecondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.hpHeroBtnSecondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.hpHeroTrustPills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}
.hpHeroTrustPill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.hpHeroTrustPill svg {
  color: #52bac5;
  flex-shrink: 0;
}

.hpHeroStats {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 36px;
  backdrop-filter: blur(12px);
}
.hpHeroStat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}
.hpHeroStatNum {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #52bac5;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hpHeroStatNum span {
  font-size: 14px;
  color: #52bac5;
  font-weight: 700;
}
.hpHeroStatLabel {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hpHeroStatDivider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* RIGHT: plugin grid */
.hpHeroRight {
  position: relative;
}
.hpHeroPluginGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hpHeroPluginCard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  backdrop-filter: blur(8px);
  text-align: center;
}
.hpHeroPluginCard:hover {
  background: rgba(82, 186, 197, 0.1);
  border-color: rgba(82, 186, 197, 0.3);
  transform: translateY(-3px);
}
.hpHeroPluginCard img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 5px;
}
.hpHeroPluginCard span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.2;
}
.hpHeroPluginCard:hover span {
  color: rgba(255, 255, 255, 0.9);
}

.hpHeroPluginCardFeat {
  grid-column: span 2;
  flex-direction: row;
  justify-content: flex-start;
  padding: 14px 18px;
  background: rgba(82, 186, 197, 0.08);
  border-color: rgba(82, 186, 197, 0.2);
}
.hpHeroPluginCardFeat img {
  width: 52px;
  height: 52px;
}
.hpHeroPluginCardFeat span {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.hpHeroPluginCardMore {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hpHeroPluginCardMore span {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
.hpHeroPluginCardMore a {
  font-size: 11px;
  font-weight: 600;
  color: #52bac5;
  text-decoration: none;
  transition: color 0.22s;
}
.hpHeroPluginCardMore a:hover {
  color: #0d838d;
}

/* keep old hero classes that are still referenced but update them */
.hpBtnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  box-shadow: 0 6px 24px var(--brand-glow);
  transition: var(--t);
}
.hpBtnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(82, 186, 197, 0.44);
  color: #fff;
}
.hpBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: var(--t);
}
.hpBtnGhost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

/* ────────────────────────────────────────────
   02 · LOGOS BAR — social proof strip──────────────────────────────────────────── */
.hpLogos {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.hpLogosInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hpLogosSep {
  font-size: 12px;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hpLogosStats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.hpLogosStat {
  text-align: center;
}
.hpLogosStatNum {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hpLogosStatNum span {
  color: var(--brand);
}
.hpLogosStatLabel {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 2px;
}

/* ────────────────────────────────────────────
   03 · PLUGINS — 4-col grid (white)
──────────────────────────────────────────── */
.hpPlugins {
  background: var(--white);
  padding: 96px 0;
}
.hpPluginsHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.hpPluginsHeadLeft {
}
.hpPluginsTitle {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.hpPluginsSub {
  font-size: 17px;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.65;
}
.hpPluginsViewAll {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dk);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  transition: var(--t);
  white-space: nowrap;
}
.hpPluginsViewAll:hover {
  border-color: var(--brand);
  background: rgba(82, 186, 197, 0.06);
}
.hpPluginsViewAll svg {
  width: 14px;
  height: 14px;
}

.hpPluginsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hpPluginCard {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border: 1.5px solid transparent;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.hpPluginCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent, var(--brand));
  opacity: 0;
  transition: var(--t);
}
.hpPluginCard:hover {
  background: var(--white);
  box-shadow: var(--sh-lg);
  border-color: rgba(82, 186, 197, 0.2);
  transform: translateY(-3px);
}
.hpPluginCard:hover::before {
  opacity: 1;
}
.hpPluginCardIcon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.hpPluginCardName {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.hpPluginCardDesc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  flex: 1;
}
.hpPluginCardFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hpPluginCardTag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--off2);
  color: var(--text3);
}
.hpPluginCardArrow {
  color: var(--text3);
  transition: var(--t);
}
.hpPluginCard:hover .hpPluginCardArrow {
  color: var(--brand);
  transform: translateX(3px);
}
.hpPluginCardArrow svg {
  width: 14px;
  height: 14px;
}

/* bundle highlight card */
.hpPluginCardBundle {
  background: linear-gradient(145deg, var(--dark) 0%, var(--navy) 100%);
  border: 1px solid rgba(82, 186, 197, 0.2);
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 30px 28px;
}
.hpPluginCardBundle::before {
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 1;
}
.hpPluginCardBundle .hpPluginCardName {
  font-size: 20px;
  color: var(--white);
}
.hpPluginCardBundle .hpPluginCardDesc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.hpPluginCardBundle .hpPluginCardArrow {
  color: rgba(255, 255, 255, 0.3);
}
.hpPluginCardBundle:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(10, 18, 30, 0.4);
  border-color: rgba(82, 186, 197, 0.35);
}
.hpPluginCardBundleLeft {
  flex: 1;
}
.hpPluginCardBundleIcons {
  display: flex;
  gap: -8px;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.hpPluginCardBundleIcons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px;
}
.hpPluginCardBundleRight {
}
.hpBundleBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 18px var(--brand-glow);
  transition: var(--t);
  white-space: nowrap;
}
.hpBundleBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(82, 186, 197, 0.45);
  color: #fff;
}
.hpBundleBtn svg {
  width: 14px;
  height: 14px;
}

/* ────────────────────────────────────────────
   04 · WHY SUPSYSTIC — dark bento grid
──────────────────────────────────────────── */
.hpWhy {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hpWhy::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(82, 186, 197, 0.09) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
.hpWhy::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.12) 0%,
    transparent 68%
  );
}
.hpWhyHead {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}
.hpWhyTitle {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.hpWhyTitle em {
  font-style: normal;
  color: var(--brand);
}
.hpWhySub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.52);
  max-width: 540px;
  line-height: 1.68;
}

/* bento grid */
.hpWhyBento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.hpWhyTile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.hpWhyTile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
  opacity: 0;
  transition: var(--t);
}
.hpWhyTile:hover {
  background: rgba(82, 186, 197, 0.08);
  border-color: rgba(82, 186, 197, 0.25);
  transform: translateY(-3px);
}
.hpWhyTile:hover::before {
  opacity: 1;
}
/* wide tiles */
.hpWhyTile.w2 {
  grid-column: span 2;
}
.hpWhyTileIcon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(82, 186, 197, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hpWhyTileIcon svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
}
.hpWhyTileTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.hpWhyTileDesc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  flex: 1;
}
.hpWhyTileStat {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  bottom: 12px;
  right: 18px;
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* ────────────────────────────────────────────
   05 · HOW IT WORKS — light, 4 steps
──────────────────────────────────────────── */
.hpHiw {
  background: var(--off);
  padding: 96px 0;
}
.hpHiwHead {
  text-align: center;
  margin-bottom: 56px;
}
.hpHiwTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.hpHiwSub {
  font-size: 17px;
  color: var(--text2);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.65;
}
.hpHiwSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* connector line */
.hpHiwSteps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(82, 186, 197, 0.15));
  pointer-events: none;
  z-index: 0;
}
.hpHiwStep {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hpHiwStepNum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
  color: #fff;
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px var(--brand-glow);
}
.hpHiwStepTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.hpHiwStepDesc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
}

/* ────────────────────────────────────────────
   06 · TESTIMONIALS — white, staggered
──────────────────────────────────────────── */
.hpTestimonials {
  background: var(--white);
  padding: 96px 0;
}
.hpTestimonialsHead {
  text-align: center;
  margin-bottom: 56px;
}
.hpTestimonialsTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.hpTestimonialsSub {
  font-size: 17px;
  color: var(--text2);
}

.hpTestimonialsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hpTestCard {
  background: var(--off);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hpTestCard:hover {
  border-color: rgba(82, 186, 197, 0.22);
  box-shadow: var(--sh-lg);
  background: var(--white);
  transform: translateY(-3px);
}
.hpTestCardStars {
  display: flex;
  gap: 3px;
}
.hpTestCardStars svg {
  width: 14px;
  height: 14px;
  fill: var(--yellow);
}
.hpTestCardText {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.72;
  flex: 1;
  font-style: italic;
}
.hpTestCardText::before {
  content: '"';
  color: var(--brand);
  font-size: 24px;
  font-style: normal;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 2px;
}
.hpTestCardAuthor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hpTestCardAvatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
}
.hpTestCardName {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.hpTestCardRole {
  font-size: 12px;
  color: var(--text3);
}
/* featured testimonial */
.hpTestCardFeatured {
  background: linear-gradient(145deg, var(--dark) 0%, var(--navy) 100%);
  border-color: rgba(82, 186, 197, 0.2);
}
.hpTestCardFeatured .hpTestCardText {
  color: rgba(255, 255, 255, 0.68);
}
.hpTestCardFeatured .hpTestCardName {
  color: var(--white);
}
.hpTestCardFeatured .hpTestCardRole {
  color: rgba(255, 255, 255, 0.4);
}
.hpTestCardFeatured:hover {
  background: linear-gradient(145deg, var(--dark) 0%, var(--navy) 100%);
}
.hpTestCardFeatured:hover .hpTestCardText {
  color: rgba(255, 255, 255, 0.68);
}
.hpTestCardFeatured:hover .hpTestCardName {
  color: var(--white);
}
.hpTestCardFeatured:hover .hpTestCardRole {
  color: rgba(255, 255, 255, 0.4);
}

/* ────────────────────────────────────────────
   07 · PRICING TEASER — dark, conversion
──────────────────────────────────────────── */
.hpPricing {
  background: var(--off);
  padding: 96px 0;
}
.hpPricingHead {
  text-align: center;
  margin-bottom: 52px;
}
.hpPricingTitle {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.hpPricingSub {
  font-size: 17px;
  color: var(--text2);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.65;
}

.hpPricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hpPriceTier {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hpPriceTier:hover {
  border-color: rgba(82, 186, 197, 0.3);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.hpPriceTierPro {
  background: linear-gradient(145deg, var(--dark) 0%, #1e344e 100%);
  border: 1.5px solid rgba(82, 186, 197, 0.25);
  position: relative;
  overflow: hidden;
}
.hpPriceTierPro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dk));
}
.hpPriceTierLabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(82, 186, 197, 0.14);
  border: 1px solid rgba(82, 186, 197, 0.25);
  color: var(--brand);
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.hpPriceTierName {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.hpPriceTierPro .hpPriceTierName {
  color: var(--white);
}
.hpPriceTierPrice {
  line-height: 1;
}
.hpPriceTierPrice strong {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.hpPriceTierPro .hpPriceTierPrice strong {
  color: var(--white);
}
.hpPriceTierPrice span {
  font-size: 15px;
  color: var(--text3);
  font-weight: 500;
}
.hpPriceTierPro .hpPriceTierPrice span {
  color: rgba(255, 255, 255, 0.45);
}
.hpPriceTierDesc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}
.hpPriceTierPro .hpPriceTierDesc {
  color: rgba(255, 255, 255, 0.52);
}
.hpPriceTierFeatures {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.hpPriceTierFeature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text2);
}
.hpPriceTierPro .hpPriceTierFeature {
  color: rgba(255, 255, 255, 0.68);
}
.hpPriceTierFeature svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex-shrink: 0;
}
.hpPriceTierBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 100px;
  transition: var(--t);
}
.hpPriceTierBtnOutline {
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: transparent;
}
.hpPriceTierBtnOutline:hover {
  border-color: var(--brand);
  color: var(--brand-dk);
  background: rgba(82, 186, 197, 0.06);
}
.hpPriceTierBtnFilled {
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
  color: #fff;
  box-shadow: 0 6px 24px var(--brand-glow);
}
.hpPriceTierBtnFilled:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(82, 186, 197, 0.44);
  color: #fff;
}

.hpPriceTierPriceAlt {
  font-size: 12.5px;
  color: var(--text3);
  margin: -8px 0 14px;
}
.hpPriceTierPriceAlt strong {
  font-weight: 700;
  color: var(--text2);
}
.hpPricingNote a {
  color: var(--brand-dk);
}

/* ────────────────────────────────────────────
   08 · STATS — brand dark, animated numbers
──────────────────────────────────────────── */
.hpStats {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hpStatsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.hpStatItem {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.hpStatItem + .hpStatItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.hpStatNum {
  font-family: var(--font-h);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(90deg, var(--white) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.hpStatLabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ────────────────────────────────────────────
   09 · FINAL CTA — dark gradient, full bleed
──────────────────────────────────────────── */
.hpCta {
  background: linear-gradient(
    145deg,
    var(--dark2) 0%,
    var(--dark) 45%,
    #1b2e47 100%
  );
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hpCta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      rgba(82, 186, 197, 0.14) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(82, 186, 197, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 186, 197, 0.04) 1px, transparent 1px);
  background-size: 28px 28px, 56px 56px, 56px 56px;
}
.hpCta::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(82, 186, 197, 0.16) 0%,
    transparent 65%
  );
}
.hpCtaInner {
  position: relative;
  z-index: 1;
}
.hpCtaTitle {
  font-family: var(--font-h);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.07;
  margin-bottom: 20px;
}
.hpCtaTitle em {
  font-style: normal;
  color: var(--brand);
}
.hpCtaSub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.68;
}
.hpCtaBtns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hpCtaSecondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--t);
}
.hpCtaSecondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hpCtaNote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}
.hpCtaNote a {
  color: rgba(82, 186, 197, 0.65);
}

/* ── Plugins section centered head ── */
.hpPluginsHead {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hpPluginsSub {
  max-width: 560px;
}

/* ── Why section centered head ── */
.hpWhyHead {
  text-align: center;
}
.hpWhySub {
  margin-inline: auto;
}
.hpWhyHead .hpLabel {
  justify-content: center;
  display: flex;
}

/* ── CTA buttons equal size ── */
.hpCtaBtns .hpBtnPrimary,
.hpCtaBtns .hpCtaSecondary {
  font-size: 16px;
  padding: 16px 36px;
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hpPluginsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hpPluginCardBundle {
    grid-column: span 3;
    flex-direction: column;
  }
  .hpWhyBento {
    grid-template-columns: repeat(2, 1fr);
  }
  .hpWhyTile.w2 {
    grid-column: span 2;
  }
}
@media (max-width: 860px) {
  .hpHeroInner {
    grid-template-columns: 1fr;
  }
  .hpHeroMosaic {
    display: none;
  }
  .hpHeroRight {
    max-width: 100%;
  }
  .hpHeroPluginGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hpHeroPluginCardFeat {
    grid-column: span 2;
  }
  .hpPluginsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hpPluginCardBundle {
    grid-column: span 2;
  }
  .hpHiwSteps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .hpHiwSteps::before {
    display: none;
  }
  .hpTestimonialsGrid {
    grid-template-columns: 1fr;
  }
  .hpPricingGrid {
    grid-template-columns: 1fr;
  }
  .hpStatsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .hpHero {
    padding: 76px 0 64px;
  }
  .hpHeroStats {
    padding: 20px 24px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .hpHeroStat {
    padding: 0;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .hpHeroStatDivider { display: none; }
  .hpPluginsGrid {
    grid-template-columns: 1fr;
  }
  .hpPluginCardBundle {
    grid-column: span 1;
  }
  .hpPluginsHead {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hpWhyBento {
    grid-template-columns: 1fr;
  }
  .hpWhyTile.w2 {
    grid-column: span 1;
  }
  .hpHiwSteps {
    grid-template-columns: 1fr;
  }
  .hpStatsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hpCtaBtns {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  :root {
    --r-xl: 18px;
  }
  .hpHeroTrust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hpStatsGrid {
    grid-template-columns: 1fr 1fr;
  }
}
