/* Wiztream - Dark Luxury Gold Theme (inspired by strongiptv8k.net) */
/* Design DNA: Black bg + Gold (#FFD700) accent, Inter font, dark-luxury tone */

:root {
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-secondary: #111111;
  --bg-muted: #1a1a1a;
  --gold: #FFD700;
  --gold-90: rgba(255, 215, 0, 0.9);
  --gold-30: rgba(255, 215, 0, 0.3);
  --gold-20: rgba(255, 215, 0, 0.2);
  --gold-10: rgba(255, 215, 0, 0.1);
  --text: #FAFAFA;
  --text-muted: #A3A3A3;
  --text-dim: #6B6B6B;
  --border: rgba(255, 215, 0, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius: 0.5rem;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- NAV --- */
.wz-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.wz-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wz-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.wz-logo span {
  color: var(--gold);
}

.wz-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.wz-nav__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.wz-nav__links a:hover {
  color: var(--gold);
}

.wz-nav__cta {
  background: var(--gold);
  color: #000 !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.wz-nav__cta:hover {
  background: var(--gold-90);
}

.wz-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.wz-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .wz-nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s;
    border-left: 1px solid var(--border);
    z-index: 200;
  }

  .wz-nav__links.open {
    right: 0;
  }

  .wz-hamburger {
    display: flex;
  }
}

/* --- HERO --- */
.wz-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.95)),
              url('../images/bg.webp') center/cover no-repeat;
  overflow: hidden;
}

.wz-hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.wz-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.wz-hero h1 .gold {
  color: var(--gold);
}

.wz-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.wz-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wz-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.wz-btn--gold {
  background: var(--gold);
  color: #000;
}

.wz-btn--gold:hover {
  background: var(--gold-90);
}

.wz-btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-30);
}

.wz-btn--outline:hover {
  background: var(--gold-10);
  border-color: var(--gold);
}

/* --- STATS BAR --- */
.wz-stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
}

.wz-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.wz-stats__value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.wz-stats__label {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .wz-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .wz-stats__value {
    font-size: 2rem;
  }
}

/* --- FEATURE CARDS --- */
.wz-features {
  padding: 5rem 0;
  background: var(--bg);
}

.wz-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wz-fcard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: transform 0.2s, border-color 0.2s;
}

.wz-fcard:hover {
  transform: translateY(-4px);
  border-color: var(--gold-30);
}

.wz-fcard__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.wz-fcard__title {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wz-fcard__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

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

/* --- SECTION TITLES --- */
.wz-section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

.wz-section-title .gold {
  color: var(--gold);
}

.wz-section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- PRICING CARDS --- */
.wz-pricing {
  padding: 5rem 0;
  background: var(--bg-card);
}

.wz-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.wz-pcard {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.wz-pcard:hover {
  border-color: var(--gold-30);
}

.wz-pcard--popular {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.wz-pcard__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wz-pcard__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.wz-pcard__price {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.wz-pcard__period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.wz-pcard__features {
  text-align: left;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.wz-pcard__features li {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wz-pcard__features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.wz-pcard__btn {
  display: block;
  padding: 0.75rem;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.2s;
  margin-top: auto;
}

.wz-pcard__btn:hover {
  background: var(--gold-90);
}

@media (max-width: 992px) {
  .wz-pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wz-pricing__grid {
    grid-template-columns: 1fr;
  }
}

/* --- TRIAL FORM --- */
.wz-trial {
  padding: 5rem 0;
  background: var(--bg);
}

.wz-trial__box {
  max-width: 500px;
  margin: 2rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
}

.wz-trial__box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* --- FORMS --- */
.wz-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wz-form label {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.wz-form input,
.wz-form select,
.wz-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.wz-form input:focus,
.wz-form select:focus,
.wz-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.wz-form input::placeholder,
.wz-form textarea::placeholder {
  color: var(--text-dim);
}

.wz-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wz-form button[type="submit"] {
  padding: 0.85rem;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  min-height: 48px;
}

.wz-form button[type="submit"]:hover {
  background: var(--gold-90);
}

.wz-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message--error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.wz-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.wz-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* --- FAQ ACCORDION --- */
.wz-faq {
  padding: 5rem 0;
  background: var(--bg);
}

.wz-faq__list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wz-faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: background 0.2s;
}

.wz-faq__item[open] {
  background: rgba(255, 255, 255, 0.03);
}

.wz-faq__q {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.wz-faq__q::-webkit-details-marker { display: none; }

.wz-faq__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}

.wz-faq__item[open] .wz-faq__q::after {
  transform: rotate(45deg);
}

.wz-faq__q:hover { color: var(--gold); }

.wz-faq__a {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.wz-testimonials {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.wz-test__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wz-test__card {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.75rem 2rem;
  transition: background 0.2s;
}

.wz-test__card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.wz-test__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.wz-test__author {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
}

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

/* --- CTA SECTION --- */
.wz-cta {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(to bottom, var(--gold-10), transparent);
}

.wz-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.wz-cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* --- FOOTER --- */
.wz-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.wz-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}

.wz-footer__brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.wz-footer__brand span {
  color: var(--gold);
}

.wz-footer__desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.6;
}

.wz-footer__heading {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.wz-footer__links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.wz-footer__links a:hover {
  color: var(--gold);
}

.wz-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.75rem;
}

.wz-footer__address {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.6;
  margin-top: 1rem;
}

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

@media (max-width: 480px) {
  .wz-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* --- CHANNELS GRID --- */
.wz-channels {
  padding: 5rem 0;
}

.wz-ch__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.wz-ch__card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}

.wz-ch__card:hover {
  border-color: var(--gold-30);
}

.wz-ch__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.wz-ch__name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.wz-ch__count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- INNER PAGE HEADER --- */
.wz-page-header {
  padding: 4rem 0 3rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--gold-10), transparent);
  border-bottom: 1px solid var(--border-subtle);
}

.wz-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wz-page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CONTENT SECTIONS --- */
.wz-content {
  padding: 3rem 0 5rem;
}

.wz-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.wz-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--gold);
}

.wz-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.wz-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.wz-content ul, .wz-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.wz-content ul { list-style: disc; }
.wz-content ol { list-style: decimal; }

.wz-content li {
  color: var(--text-muted);
  padding: 0.25rem 0;
  line-height: 1.6;
}

.wz-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.wz-content th,
.wz-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-subtle);
  text-align: left;
  font-size: 0.9rem;
}

.wz-content th {
  background: var(--bg-muted);
  color: var(--gold);
  font-weight: 600;
}

.wz-content td {
  color: var(--text-muted);
}

.wz-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wz-content a:hover {
  color: var(--gold-90);
}

.wz-content strong {
  color: var(--text);
  font-weight: 600;
}

/* --- BREADCRUMB --- */
.wz-breadcrumb {
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.wz-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.wz-breadcrumb a:hover {
  color: var(--gold);
}

.wz-breadcrumb span {
  margin: 0 0.5rem;
}

/* --- CHECKOUT --- */
.wz-checkout {
  padding: 5rem 0;
}

.wz-checkout__box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2.5rem;
}

.wz-checkout__box h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.wz-checkout__box > p {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* --- RESELLER TIERS --- */
.wz-tiers {
  padding: 5rem 0;
}

.wz-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wz-tier {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.wz-tier:hover {
  border-color: var(--gold-30);
}

.wz-tier__name {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wz-tier__credits {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.wz-tier__price {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.wz-tier__perks li {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wz-tier__perks li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
}

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

/* --- CONTACT CARDS --- */
.wz-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wz-ccard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
}

.wz-ccard__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.wz-ccard__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wz-ccard__text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .wz-contact-cards {
    grid-template-columns: 1fr;
  }
}

/* --- ABOUT VALUES --- */
.wz-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wz-vcard {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.wz-vcard:hover {
  border-color: var(--gold-30);
}

.wz-vcard__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.wz-vcard__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wz-vcard__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

/* --- SETUP GUIDE --- */
.wz-guide-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.wz-guide-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  margin-right: 0.75rem;
}

.wz-guide-step h3 {
  display: inline;
  font-size: 1.05rem;
}

.wz-guide-step p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.wz-guide-img {
  border-radius: 0.75rem;
  margin: 1rem 0;
  border: 1px solid var(--border-subtle);
}

/* --- APPS PAGE --- */
.wz-apps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.wz-app-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
}

.wz-app-card:hover {
  border-color: var(--gold-30);
}

.wz-app-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.wz-app-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wz-app-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

/* --- UTILITY --- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
