/* Page Tarifs — alignée visuellement sur template_html_claude/JSX/pricing-app.jsx */

.zh-pricing-page {
  background: #ede9fe;
  min-height: 100vh;
}

/* Nav : même comportement que Content / Shop / Drop (landing-home.css —
   fond vitré au repos, violet renforcé au scroll). Ne pas surcharger ici. */

/* Pas de padding-top sur .zh-page : comme Shop, le hero commence en haut du
   flux (nav en position:fixed) pour que le dégradé passe derrière la barre. */

.zh-pricing-alert {
  max-width: 1100px;
  margin: calc(62px + env(safe-area-inset-top, 0px) + 12px) auto 20px;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}
.zh-pricing-alert--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #14532d;
}
.zh-pricing-alert--cancel {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

.zh-pricing-hero {
  position: relative;
  padding: 0 32px 100px;
  padding-top: calc(120px + env(safe-area-inset-top, 0px));
  background: linear-gradient(
    150deg,
    #1a0840 0%,
    #2e1065 25%,
    #4c1d95 55%,
    #6d28d9 80%,
    #5b21b6 100%
  );
  color: #fff;
  overflow: hidden;
}

/* Bandeau animé (mesh conique + orbes) — même esprit que Shop / Drop */
.zh-pricing-hero-mesh {
  position: absolute;
  inset: -28%;
  background: conic-gradient(
    from 200deg at 50% 38%,
    rgba(167, 139, 245, 0.22) 0deg,
    rgba(249, 115, 22, 0.1) 130deg,
    rgba(34, 197, 94, 0.09) 260deg,
    rgba(236, 72, 153, 0.08) 320deg,
    rgba(167, 139, 245, 0.18) 360deg
  );
  animation: zh-pricing-mesh-drift 44s linear infinite;
  pointer-events: none;
  opacity: 0.48;
  z-index: 0;
}

.zh-pricing-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.zh-pricing-hero-orbs::before,
.zh-pricing-hero-orbs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.zh-pricing-hero-orbs::before {
  top: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 245, 0.52), transparent 65%);
  animation: zh-pricing-hero-orb-a 22s ease-in-out infinite alternate;
}
.zh-pricing-hero-orbs::after {
  bottom: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.48), transparent 60%);
  animation: zh-pricing-hero-orb-b 26s ease-in-out infinite alternate;
}

.zh-pricing-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.zh-pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.zh-pricing-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: zh-pricing-badge-pulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
}
@keyframes zh-pricing-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
    opacity: 0.92;
  }
}
.zh-pricing-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -1.8px;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.zh-pricing-hero p {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15px, 1.4vw, 17.5px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.55;
  margin: 0;
}
@keyframes zh-pricing-mesh-drift {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.05);
  }
}

@keyframes zh-pricing-hero-orb-a {
  0% {
    opacity: 0.72;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(18px, 14px) scale(1.07);
  }
}
@keyframes zh-pricing-hero-orb-b {
  0% {
    opacity: 0.75;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-16px, -10px) scale(1.06);
  }
}
@keyframes zh-pricing-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zh-pricing-hero-inner > * {
  animation: zh-pricing-fade-up 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.zh-pricing-hero-inner > *:nth-child(1) {
  animation-delay: 0.03s;
}
.zh-pricing-hero-inner > *:nth-child(2) {
  animation-delay: 0.09s;
}
.zh-pricing-hero-inner > *:nth-child(3) {
  animation-delay: 0.15s;
}
.zh-pricing-hero-inner > *:nth-child(4) {
  animation-delay: 0.2s;
}

.zh-pricing-grid .zh-pricing-card {
  animation: zh-pricing-fade-up 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.zh-pricing-grid .zh-pricing-card:nth-child(1) {
  animation-delay: 0.06s;
}
.zh-pricing-grid .zh-pricing-card:nth-child(2) {
  animation-delay: 0.12s;
}
.zh-pricing-grid .zh-pricing-card:nth-child(3) {
  animation-delay: 0.18s;
}
.zh-pricing-hero-pill {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.3px;
}

.zh-pricing-grid-wrap {
  position: relative;
  margin-top: -48px;
  padding: 0 24px 64px;
  z-index: 2;
}
.zh-pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1023px) {
  .zh-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .zh-pricing-card--featured {
    transform: none;
  }
  .zh-pricing-card--featured:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .zh-pricing-compare-table {
    min-width: 680px;
  }
}

.zh-pricing-card {
  position: relative;
  border-radius: 24px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid #e2d9fa;
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.zh-pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(109, 40, 217, 0.12);
}
.zh-pricing-card--featured {
  background: linear-gradient(170deg, #2e1065 0%, #4c1d95 60%, #6d28d9 100%);
  color: #fff;
  border: none;
  box-shadow: 0 24px 50px rgba(76, 29, 149, 0.4);
  transform: translateY(-8px);
}
.zh-pricing-card--featured:hover {
  transform: translateY(-10px);
}
.zh-pricing-card-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 100px;
  background: linear-gradient(90deg, #f97316, #ec4899);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(236, 72, 153, 0.4);
  z-index: 2;
}
.zh-pricing-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.zh-pricing-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.18);
  color: #6d28d9;
}
.zh-pricing-card-icon--dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.zh-pricing-card-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  color: #6b54a8;
  margin: 2px 0 0;
}
.zh-pricing-card--featured .zh-pricing-card-tag {
  color: rgba(255, 255, 255, 0.7);
}
.zh-pricing-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: #1a0a3d;
}
.zh-pricing-card--featured h2 {
  color: #fff;
}
.zh-pricing-card .zh-pitch {
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  min-height: 42px;
  margin: 0;
  color: #6b54a8;
}
.zh-pricing-card--featured .zh-pitch {
  color: rgba(255, 255, 255, 0.8);
}
.zh-pricing-price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2d9fa;
}
.zh-pricing-card--featured .zh-pricing-price-block {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.zh-pricing-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  color: #1a0a3d;
  line-height: 1.1;
}
.zh-pricing-price--free {
  font-size: clamp(2rem, 5vw, 2.5rem);
}
.zh-pricing-card--featured .zh-pricing-price {
  color: #fff;
}
.zh-pricing-billed {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: #8c7cc0;
  margin: 0;
}
.zh-pricing-card--featured .zh-pricing-billed {
  color: rgba(255, 255, 255, 0.6);
}
.zh-pricing-benefits-kicker {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #6b54a8;
  margin: 0 0 4px;
}
.zh-pricing-card--featured .zh-pricing-benefits-kicker {
  color: rgba(255, 255, 255, 0.65);
}
.zh-pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  margin-top: 1px;
}
.zh-pricing-check--dark {
  background: rgba(34, 197, 94, 0.18);
}
.zh-pricing-check svg path {
  stroke: #16a34a;
}
.zh-pricing-check--dark svg path {
  stroke: #86efac;
}
.zh-pricing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  border: none;
  width: 100%;
  transition: transform 0.15s;
}
.zh-pricing-cta:hover:not(:disabled) {
  transform: translateY(-1px);
}
.zh-pricing-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.zh-pricing-cta--outline {
  background: rgba(109, 40, 217, 0.08);
  color: #6d28d9;
  border: 1.5px solid rgba(109, 40, 217, 0.25);
}
.zh-pricing-cta--solid {
  background: #6d28d9;
  color: #fff;
  box-shadow: 0 8px 22px rgba(109, 40, 217, 0.32);
}
.zh-pricing-cta--featured {
  background: #fff;
  color: #6d28d9;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.zh-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zh-pricing-features li {
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1a0a3d;
  line-height: 1.45;
}
.zh-pricing-card--featured .zh-pricing-features li {
  color: rgba(255, 255, 255, 0.92);
}
.zh-pricing-benefits {
  margin-top: 4px;
}

.zh-pricing-note {
  max-width: 1180px;
  margin: 18px auto 0;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #6b54a8;
}

.zh-pricing-compare {
  padding: 80px 20px 80px;
  background: #e4dcfc;
}
.zh-pricing-compare-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.zh-pricing-compare-head {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.zh-pricing-compare-kicker {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.2);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  color: #6d28d9;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.zh-pricing-compare-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  color: #1a0a3d;
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin: 0;
  max-width: 640px;
}
.zh-pricing-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -8px;
  padding: 0 8px 8px;
}
.zh-pricing-compare-table {
  min-width: 720px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e2d9fa;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(109, 40, 217, 0.08);
}
.zh-pricing-compare-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(3, minmax(100px, 1fr));
  align-items: stretch;
}
.zh-pricing-compare-grid--head {
  background: linear-gradient(180deg, #faf8fe, #fff);
  border-bottom: 1px solid #e2d9fa;
  position: sticky;
  top: 62px;
  z-index: 3;
}
@media (max-width: 600px) {
  .zh-pricing-compare-grid--head {
    top: 56px;
  }
}
.zh-pricing-compare-feature-col {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #1a0a3d;
  border-right: 1px solid #f0ebff;
}
.zh-pricing-compare-grid--head .zh-pricing-compare-feature-col {
  align-items: flex-end;
  padding-bottom: 20px;
}
.zh-pricing-compare-hlabel {
  font-family: "DM Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b54a8;
}
.zh-pricing-compare-plan-col {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid #e2d9fa;
  min-height: 52px;
}
.zh-pricing-compare-plan-col--featured {
  background: rgba(109, 40, 217, 0.06);
}
.zh-pricing-compare-grid--row .zh-pricing-compare-plan-col--featured {
  background: rgba(109, 40, 217, 0.04);
}
.zh-pricing-compare-grid--row {
  border-bottom: 1px solid #f0ebff;
  transition: background 0.15s;
}
.zh-pricing-compare-grid--row:hover {
  background: rgba(109, 40, 217, 0.03);
}
.zh-pricing-compare-grid--row:hover .zh-pricing-compare-plan-col--featured {
  background: rgba(109, 40, 217, 0.09);
}

.zh-pricing-compare.zh-reveal--visible .zh-pricing-compare-head > * {
  animation: zh-pricing-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.zh-pricing-compare.zh-reveal--visible .zh-pricing-compare-head > *:nth-child(2) {
  animation-delay: 0.06s;
}

.zh-pricing-faq.zh-reveal--visible .zh-pricing-faq-head > * {
  animation: zh-pricing-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-faq-head > *:nth-child(2) {
  animation-delay: 0.06s;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-details:nth-child(2) {
  animation: zh-pricing-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-details:nth-child(3) {
  animation: zh-pricing-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-details:nth-child(4) {
  animation: zh-pricing-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-details:nth-child(5) {
  animation: zh-pricing-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-details:nth-child(6) {
  animation: zh-pricing-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.zh-pricing-faq.zh-reveal--visible .zh-pricing-details:nth-child(7) {
  animation: zh-pricing-fade-up 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}
.zh-pricing-compare-plan-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #1a0a3d;
  letter-spacing: -0.4px;
}
.zh-pricing-compare-mini-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 40, 217, 0.1);
  color: #6d28d9;
}
.zh-pricing-compare-plan-col--featured .zh-pricing-compare-mini-icon {
  background: #6d28d9;
  color: #fff;
}
.zh-pricing-compare-plan-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #6d28d9;
  letter-spacing: -0.4px;
  margin-top: 4px;
}
.zh-pricing-compare-groupbar {
  background: #faf8fe;
  border-bottom: 1px solid #e2d9fa;
  padding: 12px 18px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6d28d9;
}
.zh-cmp-dash {
  color: #c4b0f5;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.zh-cmp-txt {
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a0a3d;
  white-space: nowrap;
}
.zh-cmp-soon {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(167, 139, 245, 0.18);
  border: 1px solid rgba(167, 139, 245, 0.4);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #6d28d9;
  white-space: nowrap;
}

.zh-pricing-faq {
  padding: 80px 20px;
  background: #ede9fe;
}
.zh-pricing-faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.zh-pricing-faq-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.zh-pricing-faq-kicker {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.2);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  color: #6d28d9;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.zh-pricing-faq-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 38px);
  color: #1a0a3d;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0;
  max-width: 520px;
}
.zh-pricing-details {
  background: #fff;
  border: 1px solid #e2d9fa;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.zh-pricing-details:hover {
  border-color: #c4b0f5;
  box-shadow: 0 6px 22px rgba(109, 40, 217, 0.08);
}
.zh-pricing-details summary {
  cursor: pointer;
  padding: 18px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: #1a0a3d;
}
.zh-pricing-details-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(109, 40, 217, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.zh-pricing-details[open] .zh-pricing-details-chevron {
  transform: rotate(180deg);
}
.zh-pricing-details summary::-webkit-details-marker {
  display: none;
}
.zh-pricing-details p {
  margin: 0;
  padding: 0 22px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #6b54a8;
  line-height: 1.65;
}

.zh-pricing-enterprise {
  padding: 40px 24px 56px;
  background: #ede9fe;
}
.zh-pricing-enterprise-inner {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 24px;
  background: linear-gradient(120deg, #2e1065 0%, #4c1d95 60%, #6d28d9 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 28px 60px rgba(76, 29, 149, 0.35);
}
.zh-pricing-enterprise-inner::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 62%
  );
  animation: zh-pricing-enterprise-shine 11s ease-in-out infinite;
  pointer-events: none;
}
@keyframes zh-pricing-enterprise-shine {
  0%,
  100% {
    transform: translateX(-12%) rotate(6deg);
  }
  50% {
    transform: translateX(12%) rotate(6deg);
  }
}
.zh-pricing-enterprise-inner > * {
  position: relative;
  z-index: 1;
}

.zh-pricing-enterprise.zh-reveal--visible .zh-pricing-enterprise-inner {
  animation: zh-pricing-scale-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes zh-pricing-scale-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zh-pricing-enterprise-inner h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.zh-pricing-enterprise-inner p {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 520px;
  line-height: 1.55;
}
.zh-pricing-enterprise-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #fff;
  color: #6d28d9;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.zh-pricing-plans-error {
  max-width: 720px;
  margin: calc(62px + env(safe-area-inset-top, 0px) + 16px) auto 32px;
  padding: 20px;
  border-radius: 16px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .zh-pricing-hero {
    padding: 0 16px 88px;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }
  .zh-pricing-alert {
    margin-top: calc(62px + env(safe-area-inset-top, 0px) + 10px);
  }
  .zh-pricing-plans-error {
    margin-top: calc(62px + env(safe-area-inset-top, 0px) + 12px);
  }
}

@media (max-width: 600px) {
  .zh-pricing-grid-wrap {
    padding: 0 16px 48px;
    margin-top: -36px;
  }
  .zh-pricing-compare {
    padding: 56px 12px 64px;
  }
  .zh-pricing-compare-scroll {
    margin: 0 -12px;
    padding: 0 12px 8px;
  }
  .zh-pricing-compare-table {
    min-width: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zh-pricing-hero-mesh,
  .zh-pricing-hero-orbs::before,
  .zh-pricing-hero-orbs::after,
  .zh-pricing-hero-badge-dot,
  .zh-pricing-enterprise-inner::before {
    animation: none !important;
  }
  .zh-pricing-hero-inner > *,
  .zh-pricing-grid .zh-pricing-card,
  .zh-pricing-compare.zh-reveal--visible .zh-pricing-compare-head > *,
  .zh-pricing-faq.zh-reveal--visible .zh-pricing-faq-head > *,
  .zh-pricing-faq.zh-reveal--visible .zh-pricing-details,
  .zh-pricing-enterprise.zh-reveal--visible .zh-pricing-enterprise-inner {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
