/* ============================================
   Filminz.com — Glass/Translucent Design System
   Inspired by iptvsmarterpro.us color palette
   Colors: Navy #003478, Accent Green #61CE70,
   CTA Blue #175CFF, Gold #EEA61B, Dark #010E2E
   Fonts: Plus Jakarta Sans (body), Poppins (headings)
   Prefix: fz2-*
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --fz2-bg: #010E2E;
  --fz2-bg-alt: #041836;
  --fz2-nav-bg: rgba(1, 14, 46, 0.92);
  --fz2-card-bg: rgba(4, 24, 54, 0.6);
  --fz2-glass: rgba(255, 255, 255, 0.06);
  --fz2-glass-border: rgba(255, 255, 255, 0.1);
  --fz2-primary: #003478;
  --fz2-accent: #61CE70;
  --fz2-cta: #175CFF;
  --fz2-gold: #EEA61B;
  --fz2-white: #FFFFFF;
  --fz2-text: #CBD5E1;
  --fz2-text-muted: #94A3B8;
  --fz2-heading: #FFFFFF;
  --fz2-border: rgba(255, 255, 255, 0.08);
  --fz2-footer-bg: #000A1F;
  --fz2-gradient: linear-gradient(135deg, #175CFF 0%, #61CE70 100%);
  --fz2-gradient-gold: linear-gradient(135deg, #EEA61B 0%, #FFD93D 100%);
  --fz2-radius: 16px;
  --fz2-radius-sm: 10px;
  --fz2-radius-pill: 50px;
  --fz2-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --fz2-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
  --fz2-font-body: 'Plus Jakarta Sans', sans-serif;
  --fz2-font-heading: 'Poppins', sans-serif;
  --fz2-max-width: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fz2-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fz2-text);
  background: var(--fz2-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fz2-cta); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--fz2-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fz2-font-heading);
  color: var(--fz2-heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ── Container ── */
.fz2-container {
  width: 100%;
  max-width: var(--fz2-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.fz2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--fz2-nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--fz2-glass-border);
  transition: background 0.3s;
}
.fz2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--fz2-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.fz2-logo {
  font-family: var(--fz2-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fz2-white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.fz2-logo span { color: var(--fz2-accent); }
.fz2-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.fz2-nav-links a {
  color: var(--fz2-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}
.fz2-nav-links a:hover,
.fz2-nav-links a.active { color: var(--fz2-white); }
.fz2-nav-cta {
  background: var(--fz2-gradient);
  color: var(--fz2-white) !important;
  padding: 10px 24px;
  border-radius: var(--fz2-radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fz2-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(23, 92, 255, 0.4);
  color: var(--fz2-white) !important;
}
.fz2-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.fz2-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--fz2-white);
  transition: 0.3s;
  border-radius: 2px;
}

/* ── Glass Card ── */
.fz2-glass {
  background: var(--fz2-card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--fz2-glass-border);
  border-radius: var(--fz2-radius);
}

/* ── Buttons ── */
.fz2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--fz2-font-heading);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--fz2-radius-pill);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  line-height: 1.2;
}
.fz2-btn:hover { transform: translateY(-2px); }
.fz2-btn-primary {
  background: var(--fz2-gradient);
  color: var(--fz2-white);
  box-shadow: 0 4px 20px rgba(23, 92, 255, 0.3);
}
.fz2-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(23, 92, 255, 0.5);
  color: var(--fz2-white);
}
.fz2-btn-gold {
  background: var(--fz2-gradient-gold);
  color: #010E2E;
  box-shadow: 0 4px 20px rgba(238, 166, 27, 0.3);
}
.fz2-btn-gold:hover {
  box-shadow: 0 8px 30px rgba(238, 166, 27, 0.5);
  color: #010E2E;
}
.fz2-btn-outline {
  background: transparent;
  color: var(--fz2-white);
  border: 2px solid var(--fz2-glass-border);
}
.fz2-btn-outline:hover {
  border-color: var(--fz2-accent);
  color: var(--fz2-accent);
}
.fz2-btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.fz2-btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.fz2-btn-block { width: 100%; }

/* ── Sections ── */
.fz2-section {
  padding: 80px 0;
  position: relative;
}
.fz2-section--alt { background: var(--fz2-bg-alt); }
.fz2-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.fz2-section-header .fz2-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fz2-accent);
  margin-bottom: 12px;
}
.fz2-section-header h2 { margin-bottom: 16px; }
.fz2-section-header p { color: var(--fz2-text-muted); font-size: 1.05rem; }

/* ── Hero ── */
.fz2-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.fz2-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(23, 92, 255, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fz2-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(97, 206, 112, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fz2-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fz2-hero-content h1 {
  margin-bottom: 20px;
  font-weight: 800;
}
.fz2-hero-content h1 .fz2-gradient-text {
  background: var(--fz2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fz2-hero-content p {
  font-size: 1.15rem;
  color: var(--fz2-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}
.fz2-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.fz2-hero-image { position: relative; }
.fz2-hero-image img {
  border-radius: var(--fz2-radius);
  box-shadow: var(--fz2-shadow);
}

/* ── Stats bar ── */
.fz2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  border-radius: var(--fz2-radius);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.fz2-stat { text-align: center; }
.fz2-stat-num {
  font-family: var(--fz2-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--fz2-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.fz2-stat-label {
  font-size: 0.88rem;
  color: var(--fz2-text-muted);
  margin-top: 4px;
}

/* ── Feature cards ── */
.fz2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fz2-feature-card {
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.fz2-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 92, 255, 0.3);
}
.fz2-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--fz2-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.fz2-feature-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.fz2-feature-card p { color: var(--fz2-text-muted); font-size: 0.94rem; }

/* ── What's Included ── */
.fz2-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fz2-included-list { display: flex; flex-direction: column; gap: 16px; }
.fz2-included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--fz2-radius-sm);
  transition: background 0.3s;
}
.fz2-included-item:hover { background: var(--fz2-glass); }
.fz2-included-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(97, 206, 112, 0.15);
  color: var(--fz2-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* ── Pricing ── */
.fz2-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fz2-price-card {
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.fz2-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 92, 255, 0.4);
}
.fz2-price-card.fz2-popular {
  border-color: var(--fz2-gold);
  background: linear-gradient(180deg, rgba(238, 166, 27, 0.08) 0%, var(--fz2-card-bg) 40%);
}
.fz2-price-badge {
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--fz2-gradient-gold);
  color: #010E2E;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.fz2-price-duration {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fz2-accent);
  margin-bottom: 16px;
}
.fz2-price-amount {
  font-family: var(--fz2-font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--fz2-white);
  line-height: 1;
  margin-bottom: 6px;
}
.fz2-price-amount .fz2-currency {
  font-size: 1.2rem;
  vertical-align: super;
}
.fz2-price-period {
  color: var(--fz2-text-muted);
  font-size: 0.82rem;
  margin-bottom: 24px;
}
.fz2-price-features {
  text-align: left;
  margin-bottom: 28px;
}
.fz2-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--fz2-text);
  border-bottom: 1px solid var(--fz2-border);
}
.fz2-price-features li:last-child { border-bottom: none; }
.fz2-price-features li::before {
  content: '\2713';
  color: var(--fz2-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── How It Works ── */
.fz2-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fz2-step {
  text-align: center;
  padding: 32px 24px;
}
.fz2-step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--fz2-gradient);
  color: var(--fz2-white);
  font-family: var(--fz2-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.fz2-step h3 { margin-bottom: 10px; }
.fz2-step p { color: var(--fz2-text-muted); font-size: 0.92rem; }

/* ── Devices ── */
.fz2-devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.fz2-device-card {
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.fz2-device-card:hover { transform: translateY(-3px); }
.fz2-device-card img {
  width: 100%;
  border-radius: var(--fz2-radius-sm);
  margin-bottom: 10px;
}
.fz2-device-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fz2-white);
}

/* ── Testimonials ── */
.fz2-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fz2-testimonial {
  padding: 32px;
}
.fz2-testimonial-stars {
  color: var(--fz2-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.fz2-testimonial p {
  font-style: italic;
  color: var(--fz2-text);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.fz2-testimonial-author {
  font-weight: 700;
  color: var(--fz2-white);
  font-size: 0.9rem;
}
.fz2-testimonial-location {
  color: var(--fz2-text-muted);
  font-size: 0.82rem;
}

/* ── FAQ ── */
.fz2-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fz2-faq-item {
  padding: 0;
  overflow: hidden;
}
.fz2-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--fz2-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fz2-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.fz2-faq-question:hover { color: var(--fz2-accent); }
.fz2-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--fz2-cta);
}
.fz2-faq-item.active .fz2-faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}
.fz2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.fz2-faq-item.active .fz2-faq-answer {
  max-height: 500px;
}
.fz2-faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--fz2-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ── CTA Banner ── */
.fz2-cta-banner {
  text-align: center;
  padding: 60px 40px;
  border-radius: var(--fz2-radius);
  background: linear-gradient(135deg, rgba(23, 92, 255, 0.15), rgba(97, 206, 112, 0.1));
  border: 1px solid var(--fz2-glass-border);
}
.fz2-cta-banner h2 { margin-bottom: 16px; }
.fz2-cta-banner p { color: var(--fz2-text-muted); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.fz2-cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.fz2-cta-badges span {
  font-size: 0.85rem;
  color: var(--fz2-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fz2-cta-badges span::before {
  content: '\2713';
  color: var(--fz2-accent);
  font-weight: 700;
}

/* ── Forms ── */
.fz2-form { display: flex; flex-direction: column; gap: 16px; }
.fz2-form-group { display: flex; flex-direction: column; gap: 6px; }
.fz2-form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fz2-white);
}
.fz2-form-group input,
.fz2-form-group select,
.fz2-form-group textarea {
  padding: 14px 18px;
  background: var(--fz2-glass);
  border: 1px solid var(--fz2-glass-border);
  border-radius: var(--fz2-radius-sm);
  color: var(--fz2-white);
  font-family: var(--fz2-font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  min-height: 48px;
}
.fz2-form-group input:focus,
.fz2-form-group select:focus,
.fz2-form-group textarea:focus {
  outline: none;
  border-color: var(--fz2-cta);
}
.fz2-form-group input::placeholder,
.fz2-form-group textarea::placeholder {
  color: var(--fz2-text-muted);
}
.fz2-form-group textarea { resize: vertical; min-height: 120px; }
.fz2-form-group select option { background: var(--fz2-bg); color: var(--fz2-white); }
.fz2-honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-message {
  padding: 14px 18px;
  border-radius: var(--fz2-radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 8px;
}
.form-message--success {
  background: rgba(97, 206, 112, 0.15);
  color: var(--fz2-accent);
  border: 1px solid rgba(97, 206, 112, 0.3);
}
.form-message--error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.fz2-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fz2-text-muted);
  margin-top: 4px;
}
.fz2-trust svg { width: 14px; height: 14px; fill: var(--fz2-accent); }

/* ── Trial form (inline) ── */
.fz2-trial-form {
  padding: 36px;
  border-radius: var(--fz2-radius);
}
.fz2-trial-form h3 { margin-bottom: 6px; }
.fz2-trial-form .fz2-trial-sub { color: var(--fz2-text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ── Footer ── */
.fz2-footer {
  background: var(--fz2-footer-bg);
  border-top: 1px solid var(--fz2-border);
  padding: 60px 0 30px;
}
.fz2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.fz2-footer-brand .fz2-logo { display: inline-block; margin-bottom: 14px; }
.fz2-footer-brand p { color: var(--fz2-text-muted); font-size: 0.9rem; max-width: 300px; }
.fz2-footer-col h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fz2-white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fz2-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.fz2-footer-col ul li a {
  color: var(--fz2-text-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.fz2-footer-col ul li a:hover { color: var(--fz2-white); }
.fz2-footer-bottom {
  border-top: 1px solid var(--fz2-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--fz2-text-muted);
}
.fz2-footer-address {
  color: var(--fz2-text-muted);
  font-size: 0.85rem;
  margin-top: 14px;
}

/* ── Page header (inner pages) ── */
.fz2-page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fz2-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(23, 92, 255, 0.08), transparent);
  pointer-events: none;
}
.fz2-page-header h1 { position: relative; z-index: 1; margin-bottom: 12px; }
.fz2-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  position: relative;
  z-index: 1;
}
.fz2-breadcrumb a { color: var(--fz2-cta); }
.fz2-breadcrumb span { color: var(--fz2-text-muted); }

/* ── Channels grid ── */
.fz2-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.fz2-channel-cat {
  padding: 28px;
}
.fz2-channel-cat h3 { margin-bottom: 10px; font-size: 1.05rem; }
.fz2-channel-cat p { color: var(--fz2-text-muted); font-size: 0.88rem; }
.fz2-channel-count {
  font-family: var(--fz2-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fz2-accent);
  margin-bottom: 4px;
}

/* ── Content pages ── */
.fz2-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.fz2-content h2 { margin: 32px 0 14px; font-size: 1.4rem; }
.fz2-content h3 { margin: 24px 0 10px; font-size: 1.15rem; }
.fz2-content p { margin-bottom: 14px; }
.fz2-content ul, .fz2-content ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
.fz2-content ul li, .fz2-content ol li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--fz2-text);
}
.fz2-content ol li { list-style: decimal; }
.fz2-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.fz2-content table th,
.fz2-content table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--fz2-border);
}
.fz2-content table th {
  background: var(--fz2-glass);
  color: var(--fz2-white);
  font-weight: 600;
}
.fz2-content a { color: var(--fz2-cta); text-decoration: underline; }
.fz2-content a:hover { color: var(--fz2-accent); }

/* ── Setup guide ── */
.fz2-guide-section {
  margin-bottom: 40px;
}
.fz2-guide-section img {
  border-radius: var(--fz2-radius-sm);
  margin: 16px 0;
  box-shadow: var(--fz2-shadow-sm);
}

/* ── About two-col ── */
.fz2-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Reseller ── */
.fz2-reseller-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fz2-reseller-benefit {
  padding: 28px;
}
.fz2-reseller-benefit h4 { margin-bottom: 8px; }
.fz2-reseller-benefit p { color: var(--fz2-text-muted); font-size: 0.9rem; }
.fz2-credit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.fz2-credit-table th,
.fz2-credit-table td {
  padding: 14px 20px;
  text-align: center;
  border: 1px solid var(--fz2-border);
}
.fz2-credit-table th {
  background: var(--fz2-glass);
  color: var(--fz2-white);
  font-weight: 600;
}
.fz2-credit-table td { color: var(--fz2-text); }

/* ── Contact grid ── */
.fz2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.fz2-contact-methods { display: flex; flex-direction: column; gap: 20px; }
.fz2-contact-method {
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fz2-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(23, 92, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.fz2-contact-method h4 { margin-bottom: 4px; }
.fz2-contact-method p { color: var(--fz2-text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .fz2-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .fz2-hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .fz2-hero-actions { justify-content: center; }
  .fz2-hero-image { order: -1; max-width: 500px; margin: 0 auto; }
  .fz2-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .fz2-footer-grid { grid-template-columns: 1fr 1fr; }
  .fz2-included-grid { grid-template-columns: 1fr; }
  .fz2-about-grid { grid-template-columns: 1fr; }
  .fz2-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .fz2-nav-links { display: none; }
  .fz2-nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--fz2-bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--fz2-glass-border);
    gap: 16px;
  }
  .fz2-hamburger { display: flex; }
  .fz2-features-grid { grid-template-columns: 1fr; }
  .fz2-pricing-grid { grid-template-columns: 1fr; }
  .fz2-steps-grid { grid-template-columns: 1fr; }
  .fz2-testimonials-grid { grid-template-columns: 1fr; }
  .fz2-stats { grid-template-columns: repeat(2, 1fr); }
  .fz2-footer-grid { grid-template-columns: 1fr; }
  .fz2-section { padding: 50px 0; }
  .fz2-reseller-benefits { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fz2-stats { grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
  .fz2-price-card { padding: 28px 18px; }
}

/* ── FAQ toggle script helper ── */
.fz2-faq-item .fz2-faq-answer { max-height: 0; }
.fz2-faq-item.active .fz2-faq-answer { max-height: 500px; }
