/* Streamanza.com - Design DNA from tereatv.com reference */
/* Clean/Professional white theme with indigo accent */

:root {
  --sz-bg: #ffffff;
  --sz-bg-alt: #F7FAFC;
  --sz-bg-dark: #111827;
  --sz-text: #111827;
  --sz-text-muted: #374151;
  --sz-text-light: #6B7280;
  --sz-accent: #667eea;
  --sz-accent-hover: #5a6fd6;
  --sz-accent-light: rgba(102,126,234,0.1);
  --sz-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --sz-border: #E5E7EB;
  --sz-border-light: #F3F4F6;
  --sz-card-bg: #ffffff;
  --sz-card-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --sz-card-shadow-hover: 0 10px 25px rgba(0,0,0,0.1);
  --sz-radius: 12px;
  --sz-radius-sm: 8px;
  --sz-font: 'Roboto', system-ui, -apple-system, sans-serif;
  --sz-font-heading: 'Roboto Slab', Georgia, serif;
  --sz-max-w: 1140px;
  --sz-transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100vw; }

body {
  font-family: var(--sz-font);
  background: var(--sz-bg);
  color: var(--sz-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sz-accent); text-decoration: none; transition: color var(--sz-transition); }
a:hover { color: var(--sz-accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.sz-container { max-width: var(--sz-max-w); margin: 0 auto; padding: 0 1.5rem; }
.sz-section { padding: 5rem 0; }
.sz-section--alt { background: var(--sz-bg-alt); }
.sz-section--dark { background: var(--sz-bg-dark); color: #fff; }

.sz-section-title {
  font-family: var(--sz-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--sz-text);
}
.sz-section--dark .sz-section-title { color: #fff; }
.sz-section-subtitle {
  text-align: center;
  color: var(--sz-text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.sz-section--dark .sz-section-subtitle { color: #9CA3AF; }

/* ===== HEADER / NAV ===== */
.sz-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--sz-bg-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background var(--sz-transition);
}
.sz-header__inner {
  max-width: var(--sz-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.sz-logo {
  font-family: var(--sz-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.sz-logo span { color: var(--sz-accent); }
.sz-nav { display: flex; gap: 1.5rem; align-items: center; }
.sz-nav__link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--sz-transition);
}
.sz-nav__link:hover { color: var(--sz-accent); }
.sz-nav__cta {
  background: var(--sz-accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--sz-radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background var(--sz-transition), transform 0.2s;
}
.sz-nav__cta:hover { background: var(--sz-accent-hover); transform: translateY(-1px); }
.sz-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.sz-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .sz-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--sz-bg-dark);
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 1.25rem;
    transition: right 0.3s;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    overflow-y: auto;
  }
  .sz-nav.open { right: 0; }
  .sz-nav__link { font-size: 1rem; }
  .sz-hamburger { display: flex; }
}

/* ===== HERO ===== */
.sz-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
  background: var(--sz-bg-dark);
  position: relative;
  overflow: hidden;
}
.sz-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--sz-accent) 0%, transparent 70%);
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
}
.sz-hero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.sz-hero__title {
  font-family: var(--sz-font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.sz-hero__title em {
  font-style: normal;
  background: var(--sz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sz-hero__subtitle {
  color: #9CA3AF;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.sz-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--sz-radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--sz-transition);
  cursor: pointer;
  border: none;
  font-family: var(--sz-font);
}
.sz-btn--primary {
  background: var(--sz-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(102,126,234,0.35);
}
.sz-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102,126,234,0.45);
  color: #fff;
}
.sz-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.sz-btn--outline:hover {
  border-color: var(--sz-accent);
  color: var(--sz-accent);
}
.sz-btn--white {
  background: var(--sz-gradient);
  color: #fff;
}
.sz-btn--white:hover { transform: translateY(-2px); color: #fff; }
.sz-btn--dark {
  background: var(--sz-accent);
  color: #fff;
}
.sz-btn--dark:hover { background: var(--sz-accent-hover); color: #fff; }

/* ===== STATS BAR ===== */
.sz-stats {
  background: var(--sz-bg);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--sz-border);
}
.sz-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.sz-stat__number {
  font-family: var(--sz-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sz-accent);
  display: block;
}
.sz-stat__label {
  font-size: 0.88rem;
  color: var(--sz-text-muted);
  margin-top: 0.25rem;
}

/* ===== FEATURE CARDS ===== */
.sz-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.sz-feature-card {
  background: var(--sz-card-bg);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 2rem;
  transition: transform 0.2s, box-shadow var(--sz-transition);
}
.sz-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sz-card-shadow-hover);
}
.sz-feature-card__icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}
.sz-feature-card__title {
  font-family: var(--sz-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--sz-text);
}
.sz-feature-card__desc {
  color: var(--sz-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .sz-features__grid { grid-template-columns: 1fr; }
}

/* ===== PRICING CARDS ===== */
.sz-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.sz-price-card {
  background: var(--sz-card-bg);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow var(--sz-transition);
}
.sz-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sz-card-shadow-hover);
}
.sz-price-card--popular {
  border-color: var(--sz-accent);
  box-shadow: 0 4px 25px rgba(102,126,234,0.2);
  transform: scale(1.03);
}
.sz-price-card--popular:hover {
  transform: scale(1.03) translateY(-6px);
}
.sz-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sz-gradient);
  color: #fff;
  padding: 0.3rem 1.25rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sz-price-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sz-text-muted);
  margin-bottom: 1rem;
}
.sz-price-card__amount {
  font-family: var(--sz-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sz-text);
}
.sz-price-card__period {
  font-size: 0.88rem;
  color: var(--sz-text-light);
  margin-bottom: 1.5rem;
  display: block;
}
.sz-price-card__features {
  text-align: left;
  margin-bottom: 2rem;
}
.sz-price-card__features li {
  color: var(--sz-text-muted);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.sz-price-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sz-accent);
  font-weight: 700;
}
.sz-price-card__btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--sz-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: all var(--sz-transition);
  border: 2px solid var(--sz-accent);
  color: var(--sz-accent);
  background: transparent;
}
.sz-price-card__btn:hover {
  background: var(--sz-accent);
  color: #fff;
}
.sz-price-card--popular .sz-price-card__btn {
  background: var(--sz-gradient);
  color: #fff;
  border-color: transparent;
}
.sz-price-card--popular .sz-price-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102,126,234,0.35);
}

@media (max-width: 900px) {
  .sz-pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sz-pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .sz-price-card--popular { transform: none; }
}

/* ===== TESTIMONIAL ===== */
.sz-testimonial {
  background: var(--sz-bg-dark);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.sz-testimonial__quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #D1D5DB;
}
.sz-testimonial__author {
  font-weight: 600;
  color: var(--sz-accent);
  font-size: 0.95rem;
}

/* ===== SPORTS ===== */
.sz-sports__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}
.sz-sports__item img {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
}
.sz-sports__item span {
  font-size: 0.85rem;
  color: var(--sz-text-muted);
  display: block;
}

/* ===== GUARANTEE ===== */
.sz-guarantee {
  background: var(--sz-accent-light);
  border: 1px solid rgba(102,126,234,0.2);
  border-radius: var(--sz-radius);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 3rem auto 0;
}
.sz-guarantee__title {
  font-family: var(--sz-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--sz-text);
}
.sz-guarantee__text {
  color: var(--sz-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== FAQ ===== */
.sz-faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.sz-faq-item {
  background: var(--sz-card-bg);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius-sm);
  overflow: hidden;
  transition: border-color var(--sz-transition);
}
.sz-faq-item[open] { border-color: var(--sz-accent); }
.sz-faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sz-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--sz-transition);
}
.sz-faq-item summary::-webkit-details-marker { display: none; }
.sz-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--sz-accent);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.sz-faq-item[open] summary::after { transform: rotate(45deg); }
.sz-faq-item summary:hover { color: var(--sz-accent); }
.sz-faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--sz-text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
}
.sz-faq-item__answer p { margin: 0; }

/* ===== CHANNEL FLAGS ===== */
.sz-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.sz-channel-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius-sm);
  transition: border-color var(--sz-transition), transform 0.2s;
}
.sz-channel-flag:hover {
  border-color: var(--sz-accent);
  transform: translateY(-2px);
}
.sz-channel-flag img { width: 40px; height: 30px; object-fit: contain; }
.sz-channel-flag span { font-size: 0.8rem; color: var(--sz-text-muted); font-weight: 500; }

/* ===== FORMS ===== */
.sz-form { max-width: 600px; margin: 0 auto; }
.sz-form-group { margin-bottom: 1.25rem; }
.sz-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sz-text);
  margin-bottom: 0.4rem;
}
.sz-form-group input,
.sz-form-group select,
.sz-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius-sm);
  font-size: 0.95rem;
  font-family: var(--sz-font);
  color: var(--sz-text);
  background: var(--sz-bg);
  transition: border-color var(--sz-transition), box-shadow var(--sz-transition);
  min-height: 44px;
}
.sz-form-group input:focus,
.sz-form-group select:focus,
.sz-form-group textarea:focus {
  outline: none;
  border-color: var(--sz-accent);
  box-shadow: 0 0 0 3px rgba(102,126,234,0.15);
}
.sz-form-group textarea { min-height: 120px; resize: vertical; }
.sz-form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--sz-gradient);
  color: #fff;
  border: none;
  border-radius: var(--sz-radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--sz-transition);
  font-family: var(--sz-font);
  min-height: 48px;
}
.sz-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102,126,234,0.35);
}
.sz-form-trust {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--sz-text-light);
}
.sz-honeypot { position: absolute; left: -9999px; opacity: 0; }

.form-message {
  padding: 1rem;
  border-radius: var(--sz-radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-message--success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.form-message--error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* Trial form (hero) */
.sz-trial-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.sz-trial-form input {
  flex: 1 1 200px;
  max-width: 220px;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--sz-radius-sm);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--sz-font);
  min-height: 44px;
}
.sz-trial-form input::placeholder { color: rgba(255,255,255,0.5); }
.sz-trial-form input:focus {
  outline: none;
  border-color: var(--sz-accent);
  background: rgba(255,255,255,0.12);
}
.sz-trial-form button {
  padding: 0.8rem 2rem;
  background: var(--sz-gradient);
  color: #fff;
  border: none;
  border-radius: var(--sz-radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--sz-transition);
  font-family: var(--sz-font);
  min-height: 44px;
}
.sz-trial-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102,126,234,0.45);
}
.sz-trial-trust {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .sz-trial-form { flex-direction: column; align-items: center; }
  .sz-trial-form input { max-width: 100%; width: 100%; }
}

/* ===== FOOTER ===== */
.sz-footer {
  background: var(--sz-bg-dark);
  color: #fff;
  padding: 4rem 0 2rem;
}
.sz-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--sz-max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.sz-footer__brand {
  font-family: var(--sz-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  display: block;
}
.sz-footer__brand span { color: var(--sz-accent); }
.sz-footer__desc {
  color: #9CA3AF;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sz-footer__address {
  color: #6B7280;
  font-size: 0.82rem;
  line-height: 1.6;
  font-style: normal;
}
.sz-footer__heading {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sz-footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.sz-footer__links a {
  color: #9CA3AF;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--sz-transition);
}
.sz-footer__links a:hover { color: var(--sz-accent); }
.sz-footer__bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #6B7280;
  font-size: 0.82rem;
  max-width: var(--sz-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .sz-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .sz-footer__grid { grid-template-columns: 1fr; }
}

/* ===== COMPARISON TABLE ===== */
.sz-table-wrap { overflow-x: auto; margin-top: 2rem; }
.sz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.sz-table th,
.sz-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--sz-border);
}
.sz-table thead th {
  background: var(--sz-bg-alt);
  font-weight: 700;
  color: var(--sz-text);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sz-table tbody td { color: var(--sz-text-muted); }
.sz-table tbody tr:hover { background: var(--sz-accent-light); }

/* ===== BREADCRUMB ===== */
.sz-breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--sz-text-light);
}
.sz-breadcrumb a { color: var(--sz-accent); }
.sz-breadcrumb span { margin: 0 0.4rem; }

/* ===== PAGE HERO (inner pages) ===== */
.sz-page-hero {
  background: var(--sz-bg-dark);
  padding: 7rem 2rem 3rem;
  text-align: center;
}
.sz-page-hero__title {
  font-family: var(--sz-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.sz-page-hero__subtitle {
  color: #9CA3AF;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTENT (legal pages, about, etc.) ===== */
.sz-content { max-width: 800px; margin: 0 auto; }
.sz-content h2 {
  font-family: var(--sz-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--sz-text);
}
.sz-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
  color: var(--sz-text);
}
.sz-content p {
  margin-bottom: 1rem;
  color: var(--sz-text-muted);
  line-height: 1.8;
}
.sz-content ul, .sz-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.sz-content ul { list-style: disc; }
.sz-content ol { list-style: decimal; }
.sz-content li {
  margin-bottom: 0.5rem;
  color: var(--sz-text-muted);
  line-height: 1.7;
}
.sz-content a { color: var(--sz-accent); text-decoration: underline; }
.sz-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.sz-content table th,
.sz-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--sz-border);
  text-align: left;
  font-size: 0.9rem;
}
.sz-content table th {
  background: var(--sz-bg-alt);
  font-weight: 700;
}
.sz-content strong { color: var(--sz-text); }

/* ===== SETUP GUIDE STEPS ===== */
.sz-step {
  background: var(--sz-card-bg);
  border: 1px solid var(--sz-border);
  border-radius: var(--sz-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sz-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--sz-gradient);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.sz-step__title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--sz-text);
}
.sz-step__text {
  color: var(--sz-text-muted);
  line-height: 1.7;
  font-size: 0.92rem;
}
.sz-step img {
  border-radius: var(--sz-radius-sm);
  margin-top: 1rem;
  border: 1px solid var(--sz-border);
}

/* ===== CTA BANNER ===== */
.sz-cta-banner {
  background: var(--sz-gradient);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.sz-cta-banner__title {
  font-family: var(--sz-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.sz-cta-banner__text {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.sz-cta-banner .sz-btn {
  background: #fff;
  color: var(--sz-accent);
  font-weight: 700;
}
.sz-cta-banner .sz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  color: var(--sz-accent);
}

/* ===== RESELLER PLANS ===== */
.sz-reseller__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .sz-reseller__grid { grid-template-columns: 1fr; }
}

/* ===== CHECKOUT ===== */
.sz-checkout-form { max-width: 550px; margin: 0 auto; }

/* ===== ANNUAL DEAL ===== */
.sz-annual-deal {
  background: var(--sz-bg-dark);
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}
.sz-annual-deal__price {
  font-family: var(--sz-font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}
.sz-annual-deal__sub {
  color: #9CA3AF;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
