/* ═══════════════════════════════════
   WAZAA CSS — Design System + All Pages
   ═══════════════════════════════════ */

/* ── Tokens ── */
:root {
  --mango:          #F26522;
  --mango-light:    #FF8C42;
  --mango-dark:     #D94F04;
  --mango-deep:     #B83A00;
  --mango-soft:     #FFE2CC;
  --emerald:        #00875A;
  --emerald-light:  #00A86B;
  --emerald-dark:   #006644;
  --emerald-soft:   #D5F2E5;
  --gold:           #FFBE0B;
  --gold-soft:      #FFD666;
  --gold-deep:      #E5A800;
  --ink:            #1C1C28;
  --ink-soft:       #2A2A3C;
  --ink-light:      #3D3D54;
  --cream:          #FFFBF5;
  --sand:           #FFF0E0;
  --paper:          #FEFCFA;
  --border:         #EFE6DA;
  --border-strong:  #E2D5C0;
  --text-primary:   #1C1C28;
  --text-secondary: #6E6E80;
  --text-muted:     #9CA3AF;
  --success:        #00875A;
  --error:          #DC2626;
  --error-soft:     #FEE2E2;
  --info:           #0369A1;

  --font-display: 'Poppins', 'Trebuchet MS', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-alt:     'DM Sans', 'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --shadow-xs: 0 1px 2px rgba(28,28,40,0.05);
  --shadow-sm: 0 2px 6px rgba(28,28,40,0.06), 0 1px 2px rgba(28,28,40,0.04);
  --shadow-md: 0 8px 24px rgba(28,28,40,0.08), 0 2px 6px rgba(28,28,40,0.04);
  --shadow-lg: 0 18px 48px rgba(28,28,40,0.12), 0 6px 18px rgba(28,28,40,0.06);
  --shadow-glow: 0 12px 40px rgba(242,101,34,0.35);
  --shadow-glow-em: 0 12px 40px rgba(0,135,90,0.30);

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 999px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; height: auto; }

/* ── Utility ── */
.wz-container { max-width: 1240px; margin: 0 auto; padding: 0 64px; }
.wz-grid { display: grid; gap: 20px; }
.wz-grid--4 { grid-template-columns: repeat(4, 1fr); }
.wz-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wz-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wz-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ── */
.wz-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; height: 44px; padding: 0 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  line-height: 1; white-space: nowrap;
  border-radius: 12px; border: 1.5px solid transparent;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  cursor: pointer; outline: none; appearance: none;
}
.wz-btn:active { transform: translateY(1px); }
.wz-btn--sm  { height: 36px; padding: 0 16px; font-size: 12px; border-radius: 10px; }
.wz-btn--lg  { height: 56px; padding: 0 30px; font-size: 16px; border-radius: 14px; gap: 10px; }
.wz-btn--full { width: 100%; }

.wz-btn--primary  { background: var(--mango); color: white; box-shadow: 0 8px 24px rgba(242,101,34,0.40); }
.wz-btn--primary:hover { background: var(--mango-dark); }
.wz-btn--secondary { background: var(--ink); color: white; box-shadow: 0 6px 16px rgba(28,28,40,0.18); }
.wz-btn--secondary:hover { background: var(--ink-soft); }
.wz-btn--outline   { background: white; color: var(--ink); border-color: var(--border-strong); }
.wz-btn--outline:hover { border-color: var(--ink); }
.wz-btn--ghost     { background: transparent; color: var(--ink); border-color: transparent; }
.wz-btn--ghost:hover { background: var(--sand); }
.wz-btn--premium   { background: var(--gold); color: var(--ink); box-shadow: 0 8px 24px rgba(255,190,11,0.50); }
.wz-btn--premium:hover { background: var(--gold-deep); }
.wz-btn--emerald   { background: var(--emerald); color: white; box-shadow: 0 8px 24px rgba(0,135,90,0.40); }
.wz-btn--emerald:hover { background: var(--emerald-dark); }

/* ── Badges ── */
.wz-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.6px; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--radius-pill); line-height: 1;
}
.wz-badge--premium  { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--ink); }
.wz-badge--new      { background: var(--emerald-soft); color: var(--emerald-dark); }
.wz-badge--discount { background: var(--mango); color: white; }
.wz-badge--cashback { background: var(--emerald); color: white; }
.wz-badge--flash    { background: var(--error-soft); color: var(--error); }
.wz-badge--neutral  { background: var(--sand); color: var(--ink); }
.wz-badge--verified { background: rgba(3,105,161,0.10); color: var(--info); }
.wz-badge--dark     { background: var(--ink); color: white; }
.wz-badge--sm       { font-size: 9px; padding: 3px 7px; }

/* ── Navbar ── */
.wz-navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,251,245,0.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.wz-navbar__inner { display: flex; align-items: center; gap: 48px; }
.wz-navbar__logo  { cursor: pointer; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.wz-navbar__logo-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--mango-light), var(--mango-dark));
  display: grid; place-items: center; position: relative;
  box-shadow: 0 6px 16px rgba(242,101,34,0.40);
}
.wz-navbar__logo-icon span.w {
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  color: white; letter-spacing: -1px; line-height: 1;
}
.wz-navbar__logo-icon .dot {
  position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 0 2px var(--cream);
}
.wz-navbar__logo-text {
  font-family: var(--font-display); font-weight: 900; font-size: 20px;
  color: var(--ink); letter-spacing: -1.5px; line-height: 1;
}
.wz-navbar__links { display: flex; gap: 4px; align-items: center; }
.wz-navbar__link {
  padding: 8px 12px; font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--ink); cursor: pointer; border-radius: 8px; background: transparent;
  transition: background 0.15s; border: none; display: inline-flex; align-items: center; gap: 6px;
}
.wz-navbar__link:hover    { background: var(--sand); }
.wz-navbar__link--active  { background: var(--sand); }
.wz-navbar__link--premium { color: var(--gold-deep); }
.wz-navbar__actions { display: flex; align-items: center; gap: 10px; }

/* ── Logo (standalone) ── */
.wz-logo { display: inline-flex; align-items: center; gap: 10px; }
.wz-logo__icon {
  border-radius: 28%; position: relative;
  background: linear-gradient(135deg, var(--mango-light), var(--mango-dark));
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(242,101,34,0.40);
}
.wz-logo__icon--mono { background: var(--ink); box-shadow: none; }
.wz-logo__w {
  font-family: var(--font-display); font-weight: 900; color: white; line-height: 1;
}
.wz-logo__dot {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 0 2px var(--cream);
}
.wz-logo__dot--mono { background: white; box-shadow: none; }
.wz-logo__text { font-family: var(--font-display); font-weight: 900; letter-spacing: -1.5px; line-height: 1; }

/* ── Footer ── */
.wz-footer {
  background: var(--ink); color: white;
  padding: 72px 64px 32px;
}
.wz-footer__grid {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--ink-light);
}
.wz-footer__desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 16px 0 22px; max-width: 280px; }
.wz-footer__social { display: flex; gap: 8px; }
.wz-footer__social-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--ink-soft); border: 1px solid var(--ink-light);
  display: grid; place-items: center; cursor: pointer;
  transition: background 0.15s;
}
.wz-footer__social-btn:hover { background: var(--ink-light); }
.wz-footer__col-title {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: white; margin-bottom: 16px; letter-spacing: 0.5px;
}
.wz-footer__links { display: flex; flex-direction: column; gap: 10px; }
.wz-footer__link  { font-size: 13px; color: var(--text-muted); cursor: pointer; transition: color 0.15s; }
.wz-footer__link:hover { color: white; }
.wz-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 12px; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}
.wz-footer__bottom-links { display: flex; gap: 24px; }

/* ── Section Header ── */
.wz-section-header { max-width: 720px; }
.wz-section-header__pretitle {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.wz-section-header__pretitle-line { width: 24px; height: 1px; background: var(--mango); }
.wz-section-header__pretitle-text {
  font-family: var(--font-mono); font-size: 11px; color: var(--mango);
  letter-spacing: 2px; font-weight: 700;
}
.wz-section-header--inverse .wz-section-header__pretitle-text { color: var(--gold); }
.wz-section-header__title {
  font-family: var(--font-display); font-weight: 900; font-size: 44px;
  letter-spacing: -1.5px; line-height: 1.1; color: var(--ink);
  margin: 0 0 14px;
}
.wz-section-header--inverse .wz-section-header__title { color: white; }
.wz-section-header__sub {
  font-size: 16px; color: var(--text-secondary); max-width: 560px; line-height: 1.5;
}
.wz-section-header--inverse .wz-section-header__sub { color: rgba(255,255,255,0.7); }

/* ── Coupon Card ── */
.wz-coupon-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wz-coupon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wz-coupon-card__top {
  height: 120px; position: relative;
  display: flex; align-items: flex-start; justify-content: space-between; padding: 14px;
}
.wz-coupon-card--compact .wz-coupon-card__top { height: 90px; }
.wz-coupon-card__badges { display: flex; gap: 6px; flex-wrap: wrap; }
.wz-coupon-card__heart {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: grid; place-items: center; transition: color 0.15s;
}
.wz-coupon-card__heart:hover { color: var(--error); }
.wz-coupon-card__brand-icon {
  position: absolute; bottom: -18px; left: 14px;
  width: 44px; height: 44px; border-radius: 12px; background: white;
  box-shadow: var(--shadow-md); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
}
.wz-coupon-card__discount {
  position: absolute; bottom: 12px; right: 14px;
  background: var(--ink); color: white; padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: -0.5px;
}
.wz-coupon-card__body { padding: 26px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.wz-coupon-card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.wz-coupon-card__cat  { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.6px; }
.wz-coupon-card__cashback { font-family: var(--font-display); font-size: 11px; font-weight: 800; color: var(--emerald); }
.wz-coupon-card__brand { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink); line-height: 1.25; margin-bottom: 4px; }
.wz-coupon-card__title { font-family: var(--font-body); font-size: 13px; color: var(--text-secondary); line-height: 1.4; margin-bottom: 14px; flex: 1; }
.wz-coupon-card__code-row {
  display: flex; align-items: stretch;
  border: 1.5px dashed var(--border-strong); border-radius: var(--radius-sm); overflow: hidden;
}
.wz-coupon-card__code-info { flex: 1; padding: 8px 12px; display: flex; flex-direction: column; justify-content: center; }
.wz-coupon-card__code-label { font-family: var(--font-body); font-size: 9px; color: var(--text-muted); letter-spacing: 1px; }
.wz-coupon-card__code-value { font-family: var(--font-mono); font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: 1px; }
.wz-copy-btn {
  border: none; background: var(--ink); color: white; padding: 0 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  cursor: pointer; display: flex; align-items: center; gap: 4px; transition: background 0.15s;
}
.wz-copy-btn:hover     { background: var(--ink-soft); }
.wz-copy-btn--copied   { background: var(--emerald); }
.wz-coupon-card__expiry {
  margin-top: 10px; display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-size: 11px; color: var(--text-muted);
}

/* ── Input ── */
.wz-input {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wz-input:focus-within { border-color: var(--mango); box-shadow: 0 0 0 3px rgba(242,101,34,0.12); }
.wz-input--sm { padding: 8px 12px; }
.wz-input__icon { color: var(--text-muted); display: flex; flex-shrink: 0; }
.wz-input__field {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 14px; color: var(--ink); min-width: 0;
}
.wz-input--sm .wz-input__field { font-size: 13px; }
.wz-input__field::placeholder { color: var(--text-muted); }

/* ══════════════════════════════════════════
   HOMEPAGE
   ══════════════════════════════════════════ */

/* Hero */
.wz-hero {
  position: relative; overflow: hidden; padding: 60px 64px 96px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, var(--mango-soft) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, var(--emerald-soft) 0%, transparent 60%),
    var(--cream);
}
.wz-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; max-width: 1240px; margin: 0 auto; align-items: center; }
.wz-hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px; background: white;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs); margin-bottom: 24px;
}
.wz-hero__pill-badge { background: var(--mango); color: white; padding: 3px 9px; border-radius: var(--radius-pill); font-family: var(--font-display); font-weight: 800; font-size: 10px; letter-spacing: 0.5px; }
.wz-hero__pill-text  { font-size: 12px; font-weight: 600; }
.wz-hero__h1 {
  font-family: var(--font-display); font-weight: 900; font-size: 76px;
  line-height: 1.02; letter-spacing: -3px; margin: 0;
}
.wz-hero__h1 .gradient {
  background: linear-gradient(135deg, var(--mango-light), var(--mango-dark) 60%, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wz-hero__sub { font-size: 18px; color: var(--text-secondary); margin-top: 24px; line-height: 1.5; max-width: 520px; }
.wz-hero__search {
  margin-top: 32px; display: flex; align-items: stretch; gap: 8px;
  background: white; border-radius: var(--radius-lg); padding: 8px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border); max-width: 560px;
}
.wz-hero__search-inner { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 14px; }
.wz-hero__search-input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 15px; color: var(--ink); background: transparent; }
.wz-hero__tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; align-items: center; }
.wz-hero__tag-label { font-size: 12px; color: var(--text-muted); margin-right: 4px; }
.wz-hero__tag {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--ink);
  padding: 4px 10px; background: rgba(255,255,255,0.6);
  border: 1px solid var(--border); border-radius: var(--radius-pill); cursor: pointer;
  transition: background 0.15s;
}
.wz-hero__tag:hover { background: white; }
.wz-hero__stats { display: flex; gap: 28px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.wz-stat__n { font-family: var(--font-display); font-weight: 900; font-size: 28px; letter-spacing: -1px; color: var(--ink); line-height: 1; }
.wz-stat__l { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* Phone mockup in hero */
.wz-hero__visual { position: relative; height: 580px; }
.wz-phone {
  position: absolute; top: 30px; right: 40px; width: 280px; height: 540px;
  background: var(--ink); border-radius: 36px; padding: 8px;
  box-shadow: var(--shadow-lg); transform: rotate(4deg);
}
.wz-phone__screen {
  width: 100%; height: 100%; border-radius: 30px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  overflow: hidden; position: relative; padding: 16px;
}
.wz-phone__status { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 10px; font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.wz-phone__search {
  background: white; border-radius: 14px; padding: 10px 12px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-size: 11px; color: var(--text-muted);
}
.wz-phone__deal {
  background: linear-gradient(135deg, var(--mango-light), var(--mango-dark));
  border-radius: 16px; padding: 14px; color: white; margin-bottom: 12px;
}
.wz-phone__deal-label { font-family: var(--font-display); font-size: 10px; font-weight: 800; opacity: 0.9; letter-spacing: 1px; margin-bottom: 4px; }
.wz-phone__deal-title { font-family: var(--font-display); font-weight: 900; font-size: 22px; line-height: 1.1; margin-bottom: 6px; }
.wz-phone__deal-code {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.18); border-radius: 8px; padding: 6px 10px; margin-top: 8px;
}
.wz-phone__deal-code span { font-family: var(--font-mono); font-weight: 800; letter-spacing: 1.5px; }
.wz-phone__mini-card {
  background: white; border-radius: 12px; padding: 10px; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-xs); border: 1px solid var(--border);
}
.wz-phone__mini-icon { width: 32px; height: 32px; border-radius: 8px; color: white; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 14px; flex-shrink: 0; }
.wz-phone__mini-brand { font-family: var(--font-display); font-weight: 700; font-size: 12px; }
.wz-phone__mini-cat   { font-size: 10px; color: var(--text-muted); }
.wz-phone__mini-disc  { font-family: var(--font-display); font-weight: 900; font-size: 14px; color: var(--ink); margin-left: auto; }

/* Floating cards */
.wz-floating-card {
  position: absolute; width: 240px; background: white;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 14px; border: 1px solid var(--border);
}
.wz-floating-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.wz-floating-card__icon   { width: 38px; height: 38px; border-radius: 10px; color: white; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 16px; }
.wz-floating-card__brand  { font-family: var(--font-display); font-weight: 800; font-size: 13px; }
.wz-floating-card__cat    { font-size: 10px; color: var(--text-muted); }
.wz-floating-card__code-row { background: var(--cream); border-radius: 10px; padding: 8px 10px; display: flex; justify-content: space-between; align-items: center; border: 1px dashed var(--border-strong); }
.wz-floating-card__code-val { font-family: var(--font-mono); font-weight: 800; font-size: 13px; letter-spacing: 1px; color: var(--ink); }
.wz-floating-card__disc   { font-family: var(--font-display); font-weight: 900; font-size: 22px; }
.wz-floating-badge {
  position: absolute; background: white; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md); padding: 8px 14px 8px 8px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
}
.wz-floating-badge__icon { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; }
.wz-floating-badge__title { font-family: var(--font-display); font-weight: 700; font-size: 12px; }
.wz-floating-badge__sub   { font-size: 10px; color: var(--text-muted); }

/* Trust strip */
.wz-trust {
  background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 64px;
}
.wz-trust__inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.wz-trust__label { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 2px; }
.wz-trust__brand { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--text-secondary); letter-spacing: -0.5px; opacity: 0.7; }

/* How it works */
.wz-hiw { padding: 96px 64px; background: var(--cream); }
.wz-hiw__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; position: relative; }
.wz-hiw__connector {
  position: absolute; top: 36px; left: 16%; right: 16%; height: 2px;
  background: repeating-linear-gradient(to right, var(--border-strong) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.wz-hiw__step { position: relative; z-index: 1; }
.wz-hiw__icon-wrap {
  width: 72px; height: 72px; border-radius: 20px; background: white;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  border: 1px solid var(--border); margin: 0 auto 24px; position: relative;
}
.wz-hiw__step-num {
  position: absolute; top: -8px; right: -8px;
  background: var(--ink); color: var(--gold); padding: 3px 8px; border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: 11px; font-weight: 800;
}
.wz-hiw__step-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0 0 8px; text-align: center; }
.wz-hiw__step-desc  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; max-width: 280px; margin: 0 auto; text-align: center; }

/* Category filter tabs */
.wz-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.wz-tab {
  padding: 10px 16px; border-radius: var(--radius-pill); cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  border: 1px solid var(--border); background: white; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.15s, color 0.15s;
}
.wz-tab:hover  { background: var(--sand); }
.wz-tab--active { background: var(--ink); color: white; border-color: var(--ink); }
.wz-tab__count {
  font-family: var(--font-mono); font-size: 11px;
  background: var(--sand); color: var(--text-secondary);
  padding: 1px 7px; border-radius: var(--radius-pill); transition: background 0.15s, color 0.15s;
}
.wz-tab--active .wz-tab__count { background: rgba(255,255,255,0.15); color: white; }

/* Community section */
.wz-community {
  padding: 96px 64px; background: var(--ink); color: white;
  position: relative; overflow: hidden;
}
.wz-community__glow-1 { position: absolute; top: -30%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.30), transparent 65%); }
.wz-community__glow-2 { position: absolute; bottom: -40%; left: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(0,135,90,0.25), transparent 65%); }
.wz-community__inner  { max-width: 1240px; margin: 0 auto; position: relative; }
.wz-testimonial {
  background: var(--ink-soft); border-radius: var(--radius-lg); padding: 26px;
  border: 1px solid var(--ink-light); position: relative;
}
.wz-testimonial__stars  { display: flex; gap: 2px; margin-bottom: 16px; }
.wz-testimonial__text   { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.92); margin-bottom: 22px; }
.wz-testimonial__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--ink-light); }
.wz-testimonial__name   { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.wz-testimonial__loc    { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }

/* Avatar strip */
.wz-avatar-strip { margin-top: 48px; padding: 24px; background: var(--ink-soft); border-radius: var(--radius-lg); border: 1px solid var(--ink-light); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.wz-avatar-row   { display: flex; align-items: center; gap: 16px; }
.wz-avatars      { display: flex; }
.wz-avatar {
  width: 42px; height: 42px; border-radius: 50%; color: white;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.wz-avatar + .wz-avatar { margin-left: -10px; }
.wz-avatar--ring { box-shadow: 0 0 0 2px var(--ink); }
.wz-avatar--count { background: var(--gold); color: var(--ink); font-size: 12px; }
.wz-avatar-strip__rating { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.wz-avatar-strip__sub    { font-size: 12px; color: var(--text-muted); }

/* Premium teaser */
.wz-premium-teaser { padding: 96px 64px; background: var(--cream); }
.wz-premium-teaser__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; max-width: 1240px; margin: 0 auto; }
.wz-premium-teaser__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.wz-premium-teaser__feature  { display: flex; align-items: center; gap: 12px; }
.wz-premium-teaser__check    { width: 24px; height: 24px; border-radius: 50%; background: var(--emerald-soft); display: grid; place-items: center; flex-shrink: 0; }
.wz-premium-teaser__ctas     { display: flex; gap: 12px; }

/* Premium card */
.wz-premium-card {
  background: linear-gradient(135deg, var(--ink), var(--ink-soft));
  border-radius: 28px; padding: 44px; color: white; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wz-premium-card__glow { position: absolute; top: -100px; right: -100px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,190,11,0.30), transparent 70%); }
.wz-premium-card__inner { position: relative; }
.wz-premium-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.wz-premium-card__since  { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 2px; }
.wz-premium-card__name   { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-top: 8px; }
.wz-premium-card__num    { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.wz-premium-card__kpis   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.wz-kpi {
  background: rgba(255,255,255,0.05); border-radius: 12px; padding: 14px;
  border: 1px solid var(--ink-light);
}
.wz-kpi__label { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 6px; }
.wz-kpi__value { font-family: var(--font-display); font-weight: 900; font-size: 20px; }
.wz-premium-card__plan {
  background: rgba(255,255,255,0.05); border-radius: 14px; padding: 16px;
  border: 1px solid var(--ink-light); display: flex; justify-content: space-between; align-items: center;
}
.wz-premium-card__plan-name  { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.wz-premium-card__plan-renew { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.wz-premium-card__plan-price { font-family: var(--font-display); font-weight: 900; font-size: 22px; color: var(--gold); }
.wz-premium-card__plan-period { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* Newsletter */
.wz-newsletter-wrap { padding: 60px 64px 100px; background: var(--cream); }
.wz-newsletter {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(135deg, var(--mango), var(--mango-dark));
  border-radius: 32px; padding: 56px 60px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-glow);
}
.wz-newsletter__bubble-1 { position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.wz-newsletter__bubble-2 { position: absolute; bottom: -100px; left: 200px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.wz-newsletter__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; position: relative; }
.wz-newsletter__title { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: white; letter-spacing: -1.5px; line-height: 1.1; margin: 14px 0 12px; }
.wz-newsletter__sub   { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.wz-newsletter__form  { background: white; border-radius: var(--radius-lg); padding: 8px; display: flex; gap: 8px; box-shadow: var(--shadow-md); }
.wz-newsletter__input { flex: 1; border: none; outline: none; padding: 0 16px; font-family: var(--font-body); font-size: 15px; }

/* ══════════════════════════════════════════
   COUPONS PAGE
   ══════════════════════════════════════════ */
.wz-coupons-header { background: white; border-bottom: 1px solid var(--border); padding: 40px 64px 32px; }
.wz-breadcrumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 14px; }
.wz-breadcrumb a { color: var(--text-muted); }
.wz-breadcrumb span { color: var(--ink); }
.wz-live-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--emerald-soft); color: var(--emerald-dark); border-radius: var(--radius-pill); font-family: var(--font-display); font-size: 12px; font-weight: 700; }
.wz-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(0,135,90,0.30); }

.wz-coupons-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 64px 80px; max-width: 1240px; margin: 0 auto; }

/* Sidebar filters */
.wz-filter-sidebar {
  background: white; border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 22px; position: sticky; top: 80px; align-self: start;
}
.wz-filter-sidebar__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.wz-filter-sidebar__title  { font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.wz-filter-sidebar__count  { background: var(--mango); color: white; border-radius: var(--radius-pill); padding: 2px 8px; font-size: 11px; margin-left: 4px; }
.wz-filter-sidebar__reset  { background: none; border: none; font-size: 12px; color: var(--mango); font-weight: 700; cursor: pointer; }
.wz-filter-group { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border); }
.wz-filter-group:last-child { border-bottom: none; }
.wz-filter-group__title { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--text-primary); margin-bottom: 12px; letter-spacing: 0.3px; }
.wz-filter-check { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); cursor: pointer; padding: 2px 0; }
.wz-filter-check__box {
  width: 18px; height: 18px; border-radius: 5px; background: white;
  border: 1.5px solid var(--border); display: grid; place-items: center; flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.wz-filter-check--on .wz-filter-check__box { background: var(--mango); border-color: var(--mango); }
.wz-filter-check__label { flex: 1; display: flex; align-items: center; gap: 6px; }
.wz-filter-check__count { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.wz-filter-check__dot   { width: 6px; height: 6px; border-radius: 50%; background: var(--error); }

/* Active filter chips */
.wz-active-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 6px 5px 10px; background: var(--sand);
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}
.wz-active-chip__close {
  width: 18px; height: 18px; border-radius: 50%; background: white;
  display: grid; place-items: center; border: 1px solid var(--border);
  cursor: pointer; font-size: 10px;
}

/* Featured deal banner */
.wz-featured-deal {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-radius: var(--radius-xl); padding: 32px; color: white; margin-bottom: 28px;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.wz-featured-deal__glow { position: absolute; top: -80px; right: -40px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,190,11,0.25), transparent 65%); }
.wz-featured-deal__grid { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.wz-featured-deal__h2   { font-family: var(--font-display); font-weight: 900; font-size: 36px; letter-spacing: -1.5px; line-height: 1.1; color: white; margin: 16px 0 10px; }
.wz-featured-deal__sub  { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; margin-bottom: 22px; max-width: 460px; }
.wz-featured-deal__cta  { display: flex; gap: 12px; align-items: center; }
.wz-featured-deal__timer { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.wz-featured-deal__code-box { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--ink-light); }
.wz-featured-deal__code-label { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 14px; }
.wz-featured-deal__code-val   { font-family: var(--font-mono); font-weight: 900; font-size: 36px; letter-spacing: 3px; color: var(--gold); margin-bottom: 14px; }
.wz-featured-deal__code-footer { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); padding-top: 14px; border-top: 1px solid var(--ink-light); }

/* Sort select */
.wz-sort-select {
  background: white; padding: 8px 14px; border-radius: var(--radius-md);
  border: 1px solid var(--border); font-family: var(--font-display); font-size: 12px;
  font-weight: 700; cursor: pointer; outline: none; color: var(--ink);
}

/* ══════════════════════════════════════════
   COUPON DETAIL
   ══════════════════════════════════════════ */
.wz-detail-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.wz-detail-hero {
  background: white; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-md); margin-bottom: 24px;
}
.wz-detail-hero__top {
  position: relative; padding: 32px;
  background: linear-gradient(135deg, var(--mango-light), var(--mango-dark));
  color: white; overflow: hidden;
}
.wz-detail-hero__glow { position: absolute; top: -60px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,0.10); }
.wz-detail-hero__inner { position: relative; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.wz-detail-hero__badges { display: flex; gap: 8px; margin-bottom: 18px; }
.wz-detail-hero__brand-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.wz-detail-hero__brand-icon {
  width: 64px; height: 64px; border-radius: 16px; background: white;
  color: var(--mango); display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 30px;
  box-shadow: var(--shadow-md);
}
.wz-detail-hero__brand-name  { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -1px; }
.wz-detail-hero__brand-meta  { display: flex; gap: 14px; align-items: center; font-size: 12px; opacity: 0.85; margin-top: 4px; }
.wz-detail-hero__h1 { font-family: var(--font-display); font-weight: 900; font-size: 42px; letter-spacing: -1.5px; line-height: 1.05; margin: 0; }
.wz-detail-hero__heart {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.18); color: white; cursor: pointer;
  display: grid; place-items: center; backdrop-filter: blur(8px); flex-shrink: 0;
}

/* Code reveal */
.wz-code-reveal { padding: 28px; display: flex; gap: 18px; align-items: stretch; }
.wz-code-reveal__box {
  flex: 1; border: 1.5px dashed var(--border-strong); border-radius: var(--radius-lg);
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  background: var(--sand);
}
.wz-code-reveal__label { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 4px; }
.wz-code-reveal__code  { font-family: var(--font-mono); font-weight: 900; font-size: 28px; letter-spacing: 3px; color: var(--ink); transition: filter 0.3s; }
.wz-code-reveal__code--hidden { filter: blur(8px); }

/* Detail card */
.wz-detail-card {
  background: white; border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 26px; margin-bottom: 16px;
}
.wz-detail-card__title { font-family: var(--font-display); font-weight: 800; font-size: 17px; margin-bottom: 16px; }
.wz-detail-steps { padding-left: 0; list-style: none; }
.wz-detail-step  { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.wz-detail-step:last-child { border-bottom: none; }
.wz-detail-step__num { width: 28px; height: 28px; border-radius: 8px; background: var(--sand); color: var(--mango); font-family: var(--font-display); font-weight: 800; font-size: 13px; display: grid; place-items: center; flex-shrink: 0; }
.wz-detail-step__text { font-size: 14px; line-height: 1.6; padding-top: 4px; }

/* Side card */
.wz-side-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 22px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.wz-side-card--tight { padding: 0; }
.wz-detail-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.wz-detail-row__label { flex: 1; font-size: 13px; color: var(--text-secondary); }
.wz-detail-row__value { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink); }
.wz-detail-row__value--success { color: var(--emerald); }

/* ══════════════════════════════════════════
   PREMIUM PAGE
   ══════════════════════════════════════════ */
.wz-premium-page { background: var(--ink); color: white; }
.wz-premium-navbar {
  padding: 18px 64px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--ink-light);
}
.wz-premium-hero { padding: 80px 64px 56px; position: relative; overflow: hidden; }
.wz-premium-hero__glow-1 { position: absolute; top: -30%; left: 30%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.25), transparent 60%); }
.wz-premium-hero__glow-2 { position: absolute; bottom: -50%; right: 10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,190,11,0.20), transparent 60%); }
.wz-premium-hero__inner  { max-width: 920px; margin: 0 auto; text-align: center; position: relative; }
.wz-premium-hero__h1 {
  font-family: var(--font-display); font-weight: 900; font-size: 86px; letter-spacing: -3.5px;
  line-height: 1; margin: 18px 0 22px;
}
.wz-premium-hero__h1 .gradient { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wz-premium-hero__sub { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 640px; margin: 0 auto; line-height: 1.55; }
.wz-toggle-group {
  display: inline-flex; margin-top: 36px; background: var(--ink-soft);
  border: 1px solid var(--ink-light); border-radius: var(--radius-pill); padding: 5px;
}
.wz-toggle-btn {
  padding: 10px 22px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  background: transparent; color: rgba(255,255,255,0.6);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px; transition: background 0.2s, color 0.2s;
}
.wz-toggle-btn--active { background: white; color: var(--ink); }
.wz-toggle-badge { background: var(--emerald); color: white; padding: 2px 7px; border-radius: var(--radius-pill); font-size: 9px; font-weight: 800; }

/* Plan cards */
.wz-plans { padding: 0 64px 80px; position: relative; }
.wz-plans__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wz-plan-card {
  background: var(--ink-soft); border-radius: var(--radius-xl); padding: 32px;
  border: 1px solid var(--ink-light); position: relative;
}
.wz-plan-card--featured {
  background: linear-gradient(180deg, var(--ink-soft), var(--ink));
  border: 2px solid var(--gold); transform: translateY(-12px);
  box-shadow: 0 24px 80px rgba(255,190,11,0.20);
}
.wz-plan-card__popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--ink); padding: 5px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 900; font-size: 11px; letter-spacing: 1px;
}
.wz-plan-card__name  { font-family: var(--font-display); font-weight: 800; font-size: 20px; display: flex; align-items: center; gap: 8px; }
.wz-plan-card__desc  { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.wz-plan-card__price { font-family: var(--font-display); font-weight: 900; font-size: 52px; letter-spacing: -2px; line-height: 1; color: white; }
.wz-plan-card__period { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-muted); }
.wz-plan-card__note  { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.wz-plan-card__sep   { border-top: 1px solid var(--ink-light); padding-top: 24px; margin-bottom: 22px; }
.wz-plan-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; min-height: 220px; }
.wz-plan-card__feat  { display: flex; gap: 10px; align-items: flex-start; }
.wz-plan-card__feat-check { width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.wz-plan-card__feat-text { font-size: 13.5px; color: rgba(255,255,255,0.78); line-height: 1.45; }
.wz-plan-card__feat-text--strong { color: white; font-weight: 700; }

/* Compare table */
.wz-compare { padding: 80px 64px; background: var(--ink-soft); border-top: 1px solid var(--ink-light); border-bottom: 1px solid var(--ink-light); }
.wz-compare-table { background: var(--ink); border-radius: var(--radius-xl); border: 1px solid var(--ink-light); overflow: hidden; }
.wz-compare-table__head { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); padding: 20px 28px; background: var(--ink-soft); border-bottom: 1px solid var(--ink-light); font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.wz-compare-table__row  { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); padding: 16px 28px; border-top: 1px solid var(--ink-light); align-items: center; font-size: 13px; }
.wz-compare-table__cell--label { color: rgba(255,255,255,0.85); font-weight: 500; }
.wz-compare-table__cell--center { text-align: center; }

/* FAQ */
.wz-faq { cursor: pointer; }
.wz-faq-item {
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 10px; cursor: pointer;
}
.wz-faq-item__header { display: flex; justify-content: space-between; align-items: center; }
.wz-faq-item__q { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.wz-faq-item__icon { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; transition: transform 0.2s; flex-shrink: 0; }
.wz-faq-item__icon--open { transform: rotate(45deg); }
.wz-faq-item__a { font-size: 14px; line-height: 1.6; margin-top: 14px; padding-top: 14px; }

/* Dark FAQ (premium) */
.wz-faq-item--dark { background: var(--ink-soft); border: 1px solid var(--ink-light); }
.wz-faq-item--dark .wz-faq-item__q { color: white; }
.wz-faq-item--dark .wz-faq-item__icon { background: var(--ink-light); }
.wz-faq-item--dark .wz-faq-item__a  { color: rgba(255,255,255,0.72); border-top: 1px solid var(--ink-light); }

/* Light FAQ */
.wz-faq-item--light { background: white; border: 1px solid var(--border); }
.wz-faq-item--light .wz-faq-item__icon { background: var(--sand); }
.wz-faq-item--light .wz-faq-item__a  { color: var(--text-secondary); border-top: 1px solid var(--border); }

/* ══════════════════════════════════════════
   HOW IT WORKS PAGE
   ══════════════════════════════════════════ */
.wz-hiw-page .wz-hiw-steps { max-width: 1100px; margin: 0 auto; }
.wz-hiw-step {
  display: grid; gap: 60px; align-items: center;
  padding: 60px 0; border-bottom: 1px dashed var(--border-strong);
}
.wz-hiw-step:last-child { border-bottom: none; }
.wz-hiw-step--odd  { grid-template-columns: 1.1fr 1fr; }
.wz-hiw-step--even { grid-template-columns: 1fr 1.1fr; }
.wz-hiw-step__num-badge { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.wz-hiw-step__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.wz-hiw-step__label { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); letter-spacing: 3px; font-weight: 700; }
.wz-hiw-step__h2    { font-family: var(--font-display); font-weight: 900; font-size: 38px; letter-spacing: -1.5px; line-height: 1.1; margin: 0 0 16px; }
.wz-hiw-step__desc  { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.wz-hiw-step__points { display: flex; flex-direction: column; gap: 10px; }
.wz-hiw-step__point  { display: flex; align-items: flex-start; gap: 10px; }
.wz-hiw-step__check  { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.wz-hiw-step__point-text { font-size: 14px; line-height: 1.5; }

/* Numbers strip */
.wz-numbers { padding: 80px 64px; background: var(--ink); color: white; position: relative; overflow: hidden; }
.wz-numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wz-number-card { background: var(--ink-soft); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--ink-light); }
.wz-number-card__val { font-family: var(--font-display); font-weight: 900; font-size: 40px; letter-spacing: -1.5px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.wz-number-card__label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* Flow diagram */
.wz-flow { background: white; border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 32px; box-shadow: var(--shadow-md); }
.wz-flow-step { display: flex; gap: 14px; align-items: center; padding: 14px; border-radius: var(--radius-md); }
.wz-flow-step--highlight { border: 1.5px solid currentColor; }
.wz-flow-step__n { width: 32px; height: 32px; border-radius: 50%; color: white; display: grid; place-items: center; font-family: var(--font-display); font-weight: 900; font-size: 13px; flex-shrink: 0; }
.wz-flow-connector { display: flex; justify-content: center; padding: 6px 0; }
.wz-flow-connector__line { width: 2px; height: 22px; background: repeating-linear-gradient(to bottom, var(--border-strong) 0 4px, transparent 4px 8px); }

/* ══════════════════════════════════════════
   AUTH PAGE
   ══════════════════════════════════════════ */
.wz-auth { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.wz-auth__left {
  background: linear-gradient(160deg, var(--mango-light), var(--mango-dark) 60%, var(--mango-deep));
  position: relative; overflow: hidden; color: white;
  padding: 48px; display: flex; flex-direction: column; justify-content: space-between;
}
.wz-auth__bubble-1 { position: absolute; top: -120px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.10); }
.wz-auth__bubble-2 { position: absolute; bottom: -120px; left: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(0,0,0,0.10); }
.wz-auth__glow     { position: absolute; top: 40%; right: 10%; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, var(--gold), transparent 60%); opacity: 0.5; }
.wz-auth__h2 { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 1.02; letter-spacing: -2.5px; margin: 22px 0; }
.wz-auth__h2 .gradient { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wz-auth__sub { font-size: 16px; color: rgba(255,255,255,0.88); line-height: 1.55; max-width: 420px; margin-bottom: 32px; }
.wz-auth__testimony {
  background: rgba(0,0,0,0.18); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg); padding: 22px; max-width: 440px;
}
.wz-auth__testimony-text { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.92); }
.wz-auth__stats { display: flex; gap: 28px; }
.wz-auth__stat-val { font-family: var(--font-display); font-weight: 900; font-size: 24px; line-height: 1; }
.wz-auth__stat-label { font-size: 11px; color: rgba(255,255,255,0.70); margin-top: 4px; }
.wz-auth__right { padding: 60px; display: flex; flex-direction: column; justify-content: center; max-width: 560px; margin: 0 auto; width: 100%; }
.wz-auth__back   { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-secondary); }
.wz-auth__tab-bar { display: flex; background: var(--sand); border-radius: var(--radius-md); padding: 4px; margin-bottom: 28px; }
.wz-auth__tab { flex: 1; padding: 10px 16px; border-radius: var(--radius-sm); border: none; cursor: pointer; background: transparent; color: var(--text-secondary); font-family: var(--font-display); font-weight: 700; font-size: 13px; transition: background 0.15s, color 0.15s; }
.wz-auth__tab--active { background: white; color: var(--ink); box-shadow: var(--shadow-xs); }
.wz-social-btns   { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.wz-social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; border-radius: var(--radius-md); font-family: var(--font-display); font-weight: 700; font-size: 14px; cursor: pointer; transition: opacity 0.15s; }
.wz-social-btn:hover { opacity: 0.85; }
.wz-auth__divider { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.wz-auth__divider-line { flex: 1; height: 1px; background: var(--border); }
.wz-auth__divider-text { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; font-family: var(--font-mono); }
.wz-form-field { margin-bottom: 14px; }
.wz-form-label { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.wz-auth__trust { margin-top: 28px; padding: 16px; background: var(--emerald-soft); border-radius: var(--radius-md); display: flex; gap: 12px; align-items: center; }
.wz-auth__trust-text { font-size: 12px; color: var(--emerald-dark); line-height: 1.5; }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.wz-contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.wz-channel-card {
  background: white; border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: 26px; box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.2s;
}
.wz-channel-card:hover { transform: translateY(-3px); }
.wz-channel-card__icon { width: 50px; height: 50px; border-radius: var(--radius-md); display: grid; place-items: center; }
.wz-channel-card__tag  { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: var(--radius-pill); background: var(--sand); color: var(--mango-deep); letter-spacing: 0.5px; }
.wz-channel-card__title { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 18px 0 4px; }
.wz-channel-card__sub   { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; }
.wz-channel-card__cta   { font-family: var(--font-mono); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

.wz-contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.wz-contact-form {
  background: white; border-radius: var(--radius-xl); border: 1px solid var(--border);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.wz-subject-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.wz-subject-chip {
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  cursor: pointer; transition: background 0.15s, color 0.15s;
  border: 1px solid var(--border); background: white; color: var(--ink);
}
.wz-subject-chip--active { background: var(--ink); color: white; border-color: var(--ink); }
.wz-contact-textarea {
  width: 100%; min-height: 140px; padding: 16px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  outline: none; resize: vertical; background: white; transition: border-color 0.15s;
}
.wz-contact-textarea:focus { border-color: var(--mango); }
.wz-contact-map-card { background: white; border-radius: var(--radius-xl); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.wz-contact-map { height: 200px; background: linear-gradient(135deg, var(--emerald-dark), var(--emerald)); position: relative; overflow: hidden; }
.wz-contact-map__pin { position: absolute; top: 45%; left: 55%; transform: translate(-50%, -100%); }
.wz-contact-map__circle { width: 36px; height: 36px; border-radius: 50%; background: var(--mango); border: 3px solid white; box-shadow: var(--shadow-md); display: grid; place-items: center; }
.wz-contact-map__arrow { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 10px solid var(--mango); margin: 0 auto; }
.wz-contact-map-info  { padding: 22px; }
.wz-hours-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 22px; margin-bottom: 16px; }
.wz-hours-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
.wz-hours-row__day   { color: var(--text-secondary); font-weight: 500; }
.wz-hours-row__day--today { color: var(--mango); font-weight: 700; }
.wz-hours-row__time  { font-family: var(--font-display); font-weight: 700; }
.wz-ai-chat-card { background: var(--ink); color: white; border-radius: var(--radius-lg); padding: 22px; position: relative; overflow: hidden; }
.wz-ai-chat-card__glow { position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.30), transparent 70%); }

/* ══════════════════════════════════════════
   ICONS (SVG inline helpers)
   ══════════════════════════════════════════ */
.wz-icon { display: inline-flex; align-items: center; flex-shrink: 0; }
.wz-icon svg { display: block; }

/* ══════════════════════════════════════════
   REVIEW SECTION
   ══════════════════════════════════════════ */
.wz-reviews { display: flex; flex-direction: column; }
.wz-review  { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; gap: 14px; }
.wz-review:last-child { border-bottom: none; }
.wz-review__stars { display: flex; gap: 1px; margin-bottom: 6px; }
.wz-review__text  { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
.wz-review__name  { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.wz-review__time  { font-size: 11px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1200px) {
  .wz-container, .wz-navbar, .wz-hero, .wz-trust, .wz-hiw, .wz-community,
  .wz-premium-teaser, .wz-newsletter-wrap, .wz-footer,
  .wz-coupons-header, .wz-numbers, .wz-compare, .wz-plans,
  .wz-premium-hero, .wz-premium-navbar { padding-left: 32px; padding-right: 32px; }
  .wz-coupons-layout { padding-left: 32px; padding-right: 32px; }
  .wz-hero__h1 { font-size: 56px; }
  .wz-premium-hero__h1 { font-size: 64px; }
}

@media (max-width: 900px) {
  .wz-hero__grid { grid-template-columns: 1fr; }
  .wz-hero__visual { display: none; }
  .wz-coupons-layout { grid-template-columns: 1fr; }
  .wz-filter-sidebar { position: static; }
  .wz-detail-layout { grid-template-columns: 1fr; }
  .wz-auth { grid-template-columns: 1fr; }
  .wz-auth__left { display: none; }
  .wz-premium-teaser__grid { grid-template-columns: 1fr; }
  .wz-plans__grid { grid-template-columns: 1fr; }
  .wz-plan-card--featured { transform: none; }
  .wz-footer__grid { grid-template-columns: 1fr 1fr; }
  .wz-contact-layout { grid-template-columns: 1fr; }
  .wz-contact-channels { grid-template-columns: 1fr; }
  .wz-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .wz-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .wz-featured-deal__grid { grid-template-columns: 1fr; }
  .wz-newsletter__grid { grid-template-columns: 1fr; }
  .wz-numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .wz-hiw__steps { grid-template-columns: 1fr; }
  .wz-hiw-step--odd, .wz-hiw-step--even { grid-template-columns: 1fr; }
  .wz-compare-table__head, .wz-compare-table__row { grid-template-columns: 1fr 1fr; }
  .wz-compare-table__head div:nth-child(n+3), .wz-compare-table__row div:nth-child(n+3) { display: none; }
}

@media (max-width: 600px) {
  .wz-navbar { padding: 14px 20px; }
  .wz-navbar__links { display: none; }
  .wz-hero__h1 { font-size: 42px; letter-spacing: -2px; }
  .wz-grid--4, .wz-grid--3, .wz-grid--2 { grid-template-columns: 1fr; }
  .wz-footer__grid { grid-template-columns: 1fr; }
  .wz-newsletter { padding: 32px 24px; }
  .wz-social-btns { grid-template-columns: 1fr; }
  .wz-auth__right { padding: 32px 24px; }
}

/* ── Helpers ── */
.text-mango   { color: var(--mango); }
.text-emerald { color: var(--emerald); }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.font-display { font-family: var(--font-display); }
.font-mono    { font-family: var(--font-mono); }
.fw-900 { font-weight: 900; }
.fw-800 { font-weight: 800; }
.fw-700 { font-weight: 700; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.d-flex         { display: flex; }
.align-center   { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
