.jz-select-section {
  background: #221b3e;
  background-image: radial-gradient(ellipse at top, rgba(247,148,50,0.10), transparent 60%);
  padding: 80px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
}
.jz-select-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.jz-select-eyebrow {
  display: inline-block;
  background: rgba(247,148,50,0.15);
  color: #F79432;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.jz-select-title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px;
}
.jz-select-lead {
  max-width: 780px;
  margin: 0 auto 20px;
  text-align: center;
  color: #d6d3e5;
  font-size: 17px;
  line-height: 1.6;
}
.jz-select-lead a {
  color: #F79432;
  font-weight: 600;
  text-decoration: underline;
}
.jz-select-lead a:hover { color: #f7a54a; }
.jz-select-copy {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
  color: #d6d3e5;
  font-size: 17px;
  line-height: 1.6;
}
.jz-select-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 40px 32px;
  backdrop-filter: blur(4px);
  text-align: left;
}
.jz-select-benefits {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.jz-select-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #f0eef7;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.jz-select-benefits li:last-child { margin-bottom: 0; }
.jz-check { flex: 0 0 22px; margin-top: 2px; }
.jz-select-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  background: linear-gradient(135deg, #F79432, #f7a54a);
  color: #221b3e;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(247,148,50,0.30);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.jz-select-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(247,148,50,0.42);
  color: #221b3e;
  text-decoration: none;
}
.jz-select-cta-arrow {
  transition: transform 0.15s ease;
}
.jz-select-cta:hover .jz-select-cta-arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .jz-select-section { padding: 56px 16px; }
  .jz-select-title { font-size: 28px; }
  .jz-select-copy { font-size: 15px; }
  .jz-select-card { padding: 28px 20px 24px; }
  .jz-select-benefits li { font-size: 15px; }
  .jz-select-cta { width: 100%; justify-content: center; }
}
.jz-select-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: #fff;
}
.jz-select-sub {
  text-align: center;
  color: #CECECE;
  margin: 0 0 24px;
  font-size: 16px;
}
.jz-select-banner {
  text-align: center;
  color: #F79432;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 40px;
}
.jz-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .jz-cards { grid-template-columns: 1fr; }
  .jz-select-heading { font-size: 28px; }
  .jz-select-banner { font-size: 22px; }
}
.jz-loading,
.jz-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: #CECECE;
  font-size: 16px;
}
.jz-error a { color: #F79432; }

.jz-card {
  position: relative;
  width: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  border-radius: 20px;
  padding: 48px 24px 32px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0A141B, #0A141B) padding-box,
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.10)) border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  box-sizing: border-box;
}
.jz-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1400px) { .jz-title { font-size: 22px; } }
@media (max-width: 1200px) { .jz-title { font-size: 20px; } }
@media (max-width: 900px)  { .jz-title { font-size: 22px; white-space: normal; overflow: visible; } }
.jz-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.jz-strike-row { display: flex; align-items: center; }
.jz-strike {
  color: #8C8C8C;
  text-decoration: line-through;
  font-size: 15px;
}
.jz-strike-annual {
  color: #E87F72;
  margin-left: 8px;
}
.jz-price-row { display: flex; align-items: baseline; }
.jz-price {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.jz-discount {
  color: #72E876;
  font-size: 20px;
  font-weight: 600;
  margin-left: 12px;
}
.jz-trial {
  color: #F79432;
  font-size: 22px;
  font-weight: 600;
}
.jz-billing {
  font-size: 14px;
  color: #fff;
}
.jz-desc {
  color: #CECECE;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
}
.jz-cta {
  display: block;
  text-align: center;
  background: #F79432;
  color: #0A141B;
  font-weight: 600;
  border-radius: 9999px;
  padding: 13px 10px;
  text-decoration: none;
  font-size: 16px;
}
.jz-cta:hover { opacity: 0.92; color: #0A141B; text-decoration: none; }
.jz-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.jz-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
}
.jz-features svg { flex: 0 0 18px; margin-top: 2px; }
.jz-ribbon {
  position: absolute;
  top: 24px;
  right: -84px;
  width: 280px;
  height: 40px;
  background: #F79432;
  color: #0A141B;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(35deg);
  letter-spacing: 0.05em;
}
