/* =============================
   PREZZI — Completo e curato
   ============================= */

/* ══════════ HERO ══════════ */
#pz-hero {
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}
#pz-hero .glow-1,
#pz-hero .glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
#pz-hero .glow-1 {
  top: -100px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: rgba(0, 229, 255, 0.08);
}
#pz-hero .glow-2 {
  top: 200px;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(124, 77, 255, 0.06);
}
.pz-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top, black 40%, transparent 80%);
  pointer-events: none;
}
.pz-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.pz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 100px;
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pz-hero-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pz-pulse 2s ease-in-out infinite;
}
@keyframes pz-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.pz-hero-inner h1 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.pz-hero-inner h1 .gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, #7C4DFF 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.pz-hero-inner > p {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
}
.pz-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: 700px;
  margin: 0 auto;
}
.pz-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: 13px;
  font-weight: 500;
}
.pz-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

/* ══════════ BILLING TOGGLE ══════════ */
.pz-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 40px;
}
.pz-billing-toggle button {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text2);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.pz-billing-toggle button.active {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.2);
}
.pz-billing-toggle button .save-badge {
  background: rgba(0, 230, 118, 0.15);
  color: var(--green);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
  font-weight: 700;
}

/* ══════════ PLANS GRID ══════════ */
#pz-plans {
  padding: 20px 0 100px;
  position: relative;
}
.pz-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.pz-plan {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pz-plan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.pz-plan:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.pz-plan.featured {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.08) 0%, rgba(124, 77, 255, 0.04) 50%, rgba(17, 24, 39, 0.6) 100%);
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 10px 80px rgba(0, 229, 255, 0.08), inset 0 1px 0 rgba(0, 229, 255, 0.1);
  transform: scale(1.03);
}
.pz-plan.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.pz-plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}
.pz-plan-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.pz-plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.pz-plan-icon svg { width: 26px; height: 26px; }
.pz-plan-icon.basic {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15), rgba(107, 114, 128, 0.05));
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.2);
}
.pz-plan-icon.medium {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.25);
}
.pz-plan-icon.rocket {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(255, 64, 129, 0.05));
  color: var(--purple);
  border: 1px solid rgba(124, 77, 255, 0.25);
}
.pz-plan-title-group {
  flex: 1;
  min-width: 0;
}
.pz-plan-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.pz-plan-subline {
  font-size: 12px;
  color: var(--text2);
  font-weight: 500;
  margin-top: 2px;
}
.pz-plan-description {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 65px;
}
.pz-plan-price-block {
  margin-bottom: 8px;
}
.pz-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pz-plan-price .currency {
  font-size: 22px;
  color: var(--text2);
  font-weight: 600;
}
.pz-plan-price .amount {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pz-plan-price .period {
  font-size: 14px;
  color: var(--text2);
  margin-left: 4px;
}
.pz-plan-billed {
  font-size: 12px;
  color: var(--text2);
  margin-top: 6px;
}
.pz-plan-billed .annual-saving {
  color: var(--green);
  font-weight: 700;
}
.pz-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 24px 0;
}
.pz-plan-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}
.pz-plan.featured .pz-plan-cta {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
}
.pz-plan.featured .pz-plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.35);
}
.pz-features-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pz-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pz-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.pz-features li > span,
.pz-features li > .feat-text {
  flex: 1;
  min-width: 0;
}
.pz-features li.disabled {
  color: var(--text3);
  opacity: 0.4;
}
.pz-features li .check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
  background: rgba(0, 230, 118, 0.1);
  padding: 3px;
  border-radius: 6px;
  box-sizing: border-box;
}
.pz-features li.disabled .check {
  color: var(--text3);
  background: rgba(255,255,255,0.03);
}
.pz-features li strong {
  color: var(--text);
  font-weight: 700;
}
.pz-features li .hl {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ══════════ SPECIAL PLANS ROW ══════════ */
.pz-special-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}
.pz-special {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pz-special::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.3;
}
.pz-special.enterprise::before { background: var(--orange); }
.pz-special.autopilot::before { background: var(--green); }
.pz-special:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.1);
}
.pz-special-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pz-special-icon.enterprise {
  background: linear-gradient(135deg, rgba(255, 109, 0, 0.15), rgba(255, 109, 0, 0.05));
  color: var(--orange);
  border: 1px solid rgba(255, 109, 0, 0.3);
}
.pz-special-icon.autopilot {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 230, 118, 0.05));
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}
.pz-special-icon svg { width: 30px; height: 30px; }
.pz-special-info { flex: 1; position: relative; z-index: 1; }
.pz-special-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pz-special.enterprise .pz-special-tag {
  background: rgba(255, 109, 0, 0.1);
  color: var(--orange);
}
.pz-special.autopilot .pz-special-tag {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
}
.pz-special-info h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.pz-special-info p {
  font-size: 14px;
  color: var(--text2);
  margin: 0 0 18px;
  line-height: 1.6;
}
.pz-special-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}
.pz-special-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(2px);
}

/* ══════════ VARIABLE COSTS ══════════ */
#pz-variable {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.02) 50%, transparent 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pz-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.pz-section-header .section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 20px;
  font-size: 11px;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pz-section-header h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pz-section-header h2 .hl {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pz-section-header p {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.6;
}
.pz-var-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pz-var-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pz-var-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}
.pz-var-card.voice::before { background: var(--orange); }
.pz-var-card.email::before { background: var(--green); }
.pz-var-card.linkedin::before { background: var(--blue); }
.pz-var-card.scraping::before { background: var(--cyan); }
.pz-var-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}
.pz-var-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.pz-var-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid;
}
.pz-var-icon svg { width: 22px; height: 22px; }
.pz-var-icon.voice { background: rgba(255, 109, 0, 0.1); color: var(--orange); border-color: rgba(255, 109, 0, 0.2); }
.pz-var-icon.email { background: rgba(0, 230, 118, 0.1); color: var(--green); border-color: rgba(0, 230, 118, 0.2); }
.pz-var-icon.linkedin { background: rgba(68, 138, 255, 0.1); color: var(--blue); border-color: rgba(68, 138, 255, 0.2); }
.pz-var-icon.scraping { background: rgba(0, 229, 255, 0.1); color: var(--cyan); border-color: rgba(0, 229, 255, 0.2); }
.pz-var-title-block h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}
.pz-var-title-block p {
  font-size: 12px;
  color: var(--text2);
  margin: 0;
}
.pz-var-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pz-var-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.pz-var-row:last-child { border-bottom: none; }
.pz-var-row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: 13px;
}
.pz-var-row .label svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.pz-var-row .value {
  color: var(--text);
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
}
.pz-var-row .value small {
  color: var(--text2);
  font-size: 11px;
  font-weight: 500;
  margin-left: 4px;
}
.pz-var-example {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(0, 229, 255, 0.04);
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  font-size: 12.5px;
  color: var(--text2);
  line-height: 1.6;
}
.pz-var-example strong { color: var(--cyan); font-weight: 700; }
.pz-var-card.voice .pz-var-example { border-color: var(--orange); background: rgba(255, 109, 0, 0.04); }
.pz-var-card.voice .pz-var-example strong { color: var(--orange); }
.pz-var-card.email .pz-var-example { border-color: var(--green); background: rgba(0, 230, 118, 0.04); }
.pz-var-card.email .pz-var-example strong { color: var(--green); }
.pz-var-card.linkedin .pz-var-example { border-color: var(--blue); background: rgba(68, 138, 255, 0.04); }
.pz-var-card.linkedin .pz-var-example strong { color: var(--blue); }

/* ══════════ HOW IT WORKS (PAY-PER-USE) ══════════ */
#pz-how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#pz-how::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.06), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.pz-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pz-how-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.pz-how-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.2);
}
.pz-how-step-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 44px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  opacity: 0.3;
  line-height: 1;
}
.pz-how-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.25);
}
.pz-how-icon svg { width: 24px; height: 24px; }
.pz-how-step h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.pz-how-step p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.pz-how-step p strong {
  color: var(--cyan);
  font-weight: 700;
}
.pz-how-step-small {
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text2);
}
.pz-how-step-small span {
  color: var(--cyan);
  font-weight: 700;
}

/* ══════════ PHONE NUMBERS ══════════ */
#pz-phone {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 109, 0, 0.02), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#pz-phone::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 109, 0, 0.08), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.pz-phone-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pz-phone-left {
  display: flex;
  flex-direction: column;
}
.pz-phone-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 109, 0, 0.08);
  border: 1px solid rgba(255, 109, 0, 0.2);
  border-radius: 100px;
  font-size: 11px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pz-phone-left h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.pz-phone-left h2 .hl {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pz-phone-left > p {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.pz-phone-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pz-phone-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.pz-phone-features li .phf-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 109, 0, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 109, 0, 0.2);
}
.pz-phone-features li .phf-icon svg { width: 14px; height: 14px; }
.pz-phone-features li strong {
  color: var(--text);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.pz-phone-features li .phf-desc {
  color: var(--text2);
  font-size: 13px;
}

.pz-phone-card {
  background: linear-gradient(180deg, rgba(255, 109, 0, 0.06), rgba(255, 64, 129, 0.03));
  border: 1px solid rgba(255, 109, 0, 0.2);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.pz-phone-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 109, 0, 0.2), transparent 70%);
  pointer-events: none;
}
.pz-phone-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pz-phone-number-display {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 109, 0, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
}
.pz-phone-number-display .flag {
  font-size: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.pz-phone-number-display .number {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  vertical-align: middle;
}
.pz-phone-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
}
.pz-phone-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pz-pulse 2s infinite;
}
.pz-phone-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pz-phone-stat {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 18px;
  text-align: left;
}
.pz-phone-stat .stat-label {
  font-size: 11px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pz-phone-stat .stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.5px;
}
.pz-phone-stat .stat-value .suffix {
  font-size: 12px;
  color: var(--text2);
  font-weight: 500;
  margin-left: 2px;
}
.pz-phone-stat.cyan .stat-value { color: var(--cyan); }
.pz-phone-stat.green .stat-value { color: var(--green); }

@media (max-width: 1000px) {
  .pz-how-grid { grid-template-columns: 1fr; }
  .pz-phone-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .pz-phone-left h2 { font-size: 32px; }
}

/* ══════════ CALCULATOR ══════════ */
#pz-calc {
  padding: 100px 0;
  position: relative;
}
.pz-calc-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), rgba(124, 77, 255, 0.02));
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.pz-calc-wrapper::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1), transparent 70%);
  pointer-events: none;
}
.pz-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.pz-calc-sliders h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.pz-calc-slider-group {
  margin-bottom: 24px;
}
.pz-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.pz-slider-label .label-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}
.pz-slider-label .label-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pz-slider-label .label-icon svg { width: 12px; height: 12px; }
.pz-slider-label .value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan);
}
.pz-calc-slider-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  outline: none;
}
.pz-calc-slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  border: 2px solid rgba(255,255,255,0.9);
}
.pz-calc-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.pz-calc-result-label {
  font-size: 13px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pz-calc-result-total {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -3px;
  font-variant-numeric: tabular-nums;
}
.pz-calc-result-period {
  font-size: 15px;
  color: var(--text2);
  margin-top: 8px;
  margin-bottom: 24px;
}
.pz-calc-breakdown {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 12px;
}
.pz-calc-break-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--text2);
}
.pz-calc-break-row span:last-child {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}
.pz-calc-break-row.total {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
  padding-top: 12px;
  color: var(--text);
  font-weight: 700;
}

/* ══════════ COMPARE — FEATURE GRID ══════════ */
#pz-compare {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.015), transparent);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#pz-compare::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.04), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.pz-cmp-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Sticky header with 3 plan cards */
.pz-cmp-header {
  position: sticky;
  top: 70px;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.pz-cmp-header-label {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 12px;
  color: var(--text2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pz-cmp-plan-pill {
  padding: 14px 16px;
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.pz-cmp-plan-pill.featured {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(124, 77, 255, 0.06));
  border: 1px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.1);
}
.pz-cmp-plan-pill .plan-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pz-cmp-plan-pill.featured .plan-name {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pz-cmp-plan-pill .plan-price {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
  margin-top: 4px;
}
.pz-cmp-plan-pill.featured .plan-price { color: var(--cyan); }
.pz-cmp-plan-pill .featured-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--cyan);
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
}

/* Categories */
.pz-cmp-category {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pz-cmp-category-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.15);
}
.pz-cmp-category-icon svg { width: 16px; height: 16px; }
.pz-cmp-category-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}
.pz-cmp-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.3), transparent);
}

/* Feature row */
.pz-cmp-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, 1fr);
  gap: 8px;
  padding: 4px;
  align-items: center;
  transition: background 0.2s ease;
  border-radius: 14px;
}
.pz-cmp-row:hover {
  background: rgba(255,255,255,0.015);
}
.pz-cmp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.pz-cmp-feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  flex-shrink: 0;
}
.pz-cmp-feature-icon svg { width: 14px; height: 14px; }
.pz-cmp-cell {
  padding: 14px 12px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}
.pz-cmp-cell.featured-col {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), rgba(124, 77, 255, 0.02));
  border: 1px solid rgba(0, 229, 255, 0.1);
}

/* Check icon with box */
.pz-cmp-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.12);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.2);
}
.pz-cmp-check svg { width: 14px; height: 14px; }

/* Not included */
.pz-cmp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.06);
}
.pz-cmp-no svg { width: 12px; height: 12px; }

/* Number pill */
.pz-cmp-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.pz-cmp-num.hl {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(124, 77, 255, 0.1));
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

/* Text label */
.pz-cmp-text {
  font-size: 12px;
  color: var(--text2);
  font-weight: 600;
  text-align: center;
}
.pz-cmp-text.hl {
  color: var(--cyan);
  font-weight: 700;
}
.pz-cmp-text.gold {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* Mobile */
@media (max-width: 900px) {
  .pz-cmp-header {
    grid-template-columns: repeat(3, 1fr);
    top: 60px;
  }
  .pz-cmp-header-label { display: none; }
  .pz-cmp-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    margin-bottom: 10px;
  }
  .pz-cmp-feature {
    padding: 0 0 12px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
  }
  .pz-cmp-cell {
    padding: 10px 12px;
    justify-content: space-between;
  }
  .pz-cmp-cell::before {
    content: attr(data-plan);
    font-size: 11px;
    color: var(--text2);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .pz-cmp-cell.featured-col::before { color: var(--cyan); }
}

/* ══════════ ROI SCENARIOS ══════════ */
#pz-roi {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.pz-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.pz-roi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pz-roi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.pz-roi-card.small::before { background: linear-gradient(90deg, var(--green), transparent); }
.pz-roi-card.medium::before { background: linear-gradient(90deg, var(--cyan), transparent); }
.pz-roi-card.large::before { background: linear-gradient(90deg, var(--purple), var(--pink)); }
.pz-roi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}
.pz-roi-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pz-roi-card.small .pz-roi-badge { background: rgba(0, 230, 118, 0.1); color: var(--green); }
.pz-roi-card.medium .pz-roi-badge { background: rgba(0, 229, 255, 0.1); color: var(--cyan); }
.pz-roi-card.large .pz-roi-badge { background: rgba(124, 77, 255, 0.1); color: var(--purple); }
.pz-roi-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.pz-roi-card .roi-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 22px;
}
.pz-roi-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}
.pz-roi-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.pz-roi-metric .metric-label {
  color: var(--text2);
}
.pz-roi-metric .metric-value {
  color: var(--text);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.pz-roi-metric.highlight {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 15px;
  font-weight: 800;
}
.pz-roi-card.small .pz-roi-metric.highlight .metric-value { color: var(--green); }
.pz-roi-card.medium .pz-roi-metric.highlight .metric-value { color: var(--cyan); }
.pz-roi-card.large .pz-roi-metric.highlight .metric-value { color: var(--purple); }

/* ══════════ FAQ ══════════ */
#pz-faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.pz-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.pz-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.pz-faq-item:hover {
  border-color: rgba(0, 229, 255, 0.15);
}
.pz-faq-item.open {
  border-color: rgba(0, 229, 255, 0.2);
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.03), transparent);
}
.pz-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.pz-faq-q .q-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
  border: 1px solid rgba(0, 229, 255, 0.1);
}
.pz-faq-q .q-text { flex: 1; }
.pz-faq-q .arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--text2);
  flex-shrink: 0;
}
.pz-faq-item.open .pz-faq-q .arrow { transform: rotate(180deg); color: var(--cyan); }
.pz-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pz-faq-item.open .pz-faq-a { max-height: 400px; }
.pz-faq-a-inner {
  padding: 0 28px 22px 72px;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
}
.pz-faq-a-inner a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

/* ══════════ BOTTOM CTA ══════════ */
#pz-cta {
  padding: 100px 0;
}
.pz-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 77, 255, 0.05));
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 24px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pz-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.pz-cta-inner h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.pz-cta-inner h2 .hl {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pz-cta-inner p {
  color: var(--text2);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.pz-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pz-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.3);
}
.pz-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 229, 255, 0.4); }
.pz-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pz-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1000px) {
  .pz-plans-grid { grid-template-columns: 1fr; max-width: 500px; }
  .pz-plan.featured { transform: none; }
  .pz-plan.featured:hover { transform: translateY(-6px); }
  .pz-special-row { grid-template-columns: 1fr; }
  .pz-var-grid { grid-template-columns: 1fr; }
  .pz-roi-grid { grid-template-columns: 1fr; }
  .pz-calc-grid { grid-template-columns: 1fr; gap: 32px; }
  .pz-hero-inner h1 { font-size: 42px; }
  .pz-section-header h2 { font-size: 32px; }
  .pz-cta-inner h2 { font-size: 32px; }
}
@media (max-width: 600px) {
  #pz-hero { padding: 120px 0 40px; }
  .pz-hero-inner h1 { font-size: 34px; letter-spacing: -1px; }
  .pz-section-header h2 { font-size: 28px; }
  .pz-plan { padding: 28px 24px; }
  .pz-plan-price .amount { font-size: 48px; }
  .pz-special { flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; }
  .pz-calc-wrapper { padding: 32px 24px; }
  .pz-calc-result-total { font-size: 56px; }
  .pz-faq-q { padding: 16px 20px; }
  .pz-faq-q .q-text { font-size: 14px; }
  .pz-faq-a-inner { padding: 0 20px 18px 20px; }
  .pz-hero-trust { gap: 20px; }
  .pz-compare-wrapper { margin: 0 -20px; border-radius: 0; }
}
