/* TViZoom - Design DNA from webestiptv.com */
/* Camera/Lens theme - Dark moody corporate */

:root {
  --zm-bg: #000000;
  --zm-bg-alt: #0a0a0a;
  --zm-bg-card: #111116;
  --zm-bg-card-hover: #1a1a22;
  --zm-accent: #C05B23;
  --zm-accent-hover: #d4692e;
  --zm-accent-active: #B25F21;
  --zm-green: #49e670;
  --zm-blue: #3e99d8;
  --zm-text: #ffffff;
  --zm-text-muted: #959595;
  --zm-text-dim: #6b6b6b;
  --zm-border: rgba(255,255,255,0.08);
  --zm-border-light: rgba(255,255,255,0.12);
  --zm-shadow: 0 4px 24px rgba(0,0,0,0.4);
  --zm-shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --zm-radius: 12px;
  --zm-radius-sm: 8px;
  --zm-font: 'Oswald', sans-serif;
  --zm-font-body: 'Lato', sans-serif;
  --zm-max-width: 1200px;
  --zm-transition: 0.3s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--zm-font-body); background: var(--zm-bg); color: var(--zm-text); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--zm-accent); text-decoration: none; transition: color var(--zm-transition); }
a:hover { color: var(--zm-accent-hover); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--zm-font); font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.02em; }
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); }
.container { max-width: var(--zm-max-width); margin: 0 auto; padding: 0 20px; }
.zm-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0,0,0,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--zm-border); }
.zm-nav .container { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.zm-nav .logo { font-family: var(--zm-font); font-size: 1.6rem; font-weight: 700; color: var(--zm-text); text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
.zm-nav .logo span { color: var(--zm-accent); }
.zm-nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.zm-nav-links a { color: var(--zm-text); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 6px 0; position: relative; transition: color var(--zm-transition); }
.zm-nav-links a:hover, .zm-nav-links a.active { color: var(--zm-accent); }
.zm-nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--zm-accent); transition: width var(--zm-transition); }
.zm-nav-links a:hover::after { width: 100%; }
.zm-nav-cta { background: var(--zm-accent); color: #fff !important; padding: 10px 22px; border-radius: var(--zm-radius); font-weight: 700; font-size: 0.9rem; }
.zm-nav-cta:hover { background: var(--zm-accent-hover); color: #fff !important; }
.zm-nav-cta::after { display: none; }
.zm-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.zm-hamburger span { display: block; width: 26px; height: 2px; background: var(--zm-text); transition: all var(--zm-transition); }
.zm-hero { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 80px; overflow: hidden; }
.zm-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.9) 100%); z-index: 1; }
.zm-hero-content { position: relative; z-index: 2; max-width: 800px; }
.zm-hero-badge { display: inline-block; background: rgba(192,91,35,0.15); border: 1px solid var(--zm-accent); color: var(--zm-accent); font-size: 0.85rem; font-weight: 700; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.zm-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 16px; }
.zm-hero h1 em { font-style: normal; color: var(--zm-accent); }
.zm-hero p { font-size: 1.15rem; color: var(--zm-text-muted); max-width: 600px; margin: 0 auto 30px; }
.zm-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--zm-font-body); font-weight: 700; font-size: 1rem; padding: 14px 32px; border-radius: var(--zm-radius); border: none; cursor: pointer; transition: all var(--zm-transition); text-decoration: none; min-height: 48px; }
.btn-primary { background: var(--zm-accent); color: #fff; }
.btn-primary:hover { background: var(--zm-accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,91,35,0.35); }
.btn-outline { background: transparent; color: var(--zm-text); border: 2px solid var(--zm-border-light); }
.btn-outline:hover { border-color: var(--zm-accent); color: var(--zm-accent); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.zm-stats { background: var(--zm-bg-alt); border-top: 1px solid var(--zm-border); border-bottom: 1px solid var(--zm-border); padding: 40px 20px; }
.zm-stats .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.zm-stat-num { font-family: var(--zm-font); font-size: 2.4rem; font-weight: 700; color: var(--zm-accent); display: block; }
.zm-stat-label { font-size: 0.9rem; color: var(--zm-text-muted); margin-top: 4px; }
.zm-section { padding: 80px 20px; }
.zm-section-dark { background: var(--zm-bg-alt); }
.zm-section-title { text-align: center; margin-bottom: 50px; }
.zm-section-title h2 { margin-bottom: 12px; }
.zm-section-title p { color: var(--zm-text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.zm-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.zm-feature-card { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 32px 24px; transition: all var(--zm-transition); }
.zm-feature-card:hover { border-color: var(--zm-accent); transform: translateY(-4px); box-shadow: var(--zm-shadow); }
.zm-feature-icon { width: 52px; height: 52px; border-radius: var(--zm-radius-sm); background: rgba(192,91,35,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.6rem; }
.zm-feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.zm-feature-card p { color: var(--zm-text-muted); font-size: 0.95rem; }
.zm-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; counter-reset: step; }
.zm-step { text-align: center; padding: 30px 20px; }
.zm-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: var(--zm-accent); color: #fff; font-family: var(--zm-font); font-size: 1.5rem; font-weight: 700; margin: 0 auto 20px; }
.zm-step h3 { margin-bottom: 10px; }
.zm-step p { color: var(--zm-text-muted); font-size: 0.95rem; }
.zm-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.zm-pricing-card { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 36px 28px; text-align: center; position: relative; transition: all var(--zm-transition); }
.zm-pricing-card:hover { border-color: var(--zm-accent); transform: translateY(-4px); box-shadow: var(--zm-shadow); }
.zm-pricing-card.popular { border-color: var(--zm-accent); box-shadow: 0 0 30px rgba(192,91,35,0.2); }
.zm-pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--zm-accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.zm-pricing-name { font-family: var(--zm-font); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 8px; }
.zm-pricing-price { font-family: var(--zm-font); font-size: 2.8rem; font-weight: 700; color: var(--zm-accent); margin-bottom: 6px; }
.zm-pricing-price .currency { font-size: 1.4rem; vertical-align: super; }
.zm-pricing-subtitle { color: var(--zm-text-muted); font-size: 0.85rem; margin-bottom: 20px; }
.zm-pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
.zm-pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--zm-border); font-size: 0.92rem; color: var(--zm-text-muted); display: flex; align-items: center; gap: 10px; }
.zm-pricing-features li::before { content: '\2713'; color: var(--zm-green); font-weight: 700; flex-shrink: 0; }
.zm-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.zm-why-card { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 28px 22px; text-align: center; transition: all var(--zm-transition); }
.zm-why-card:hover { border-color: var(--zm-accent); transform: translateY(-3px); }
.zm-why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.zm-why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.zm-why-card p { color: var(--zm-text-muted); font-size: 0.9rem; }
.zm-testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.zm-testimonial { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 28px; }
.zm-testimonial-text { font-style: italic; color: var(--zm-text-muted); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.6; }
.zm-testimonial-author { font-weight: 700; font-size: 0.9rem; }
.zm-testimonial-location { color: var(--zm-text-dim); font-size: 0.82rem; }
.zm-faq-list { max-width: 800px; margin: 0 auto; }
.zm-faq-item { border-bottom: 1px solid var(--zm-border); }
.zm-faq-q { width: 100%; background: none; border: none; color: var(--zm-text); font-family: var(--zm-font-body); font-size: 1.05rem; font-weight: 700; padding: 20px 40px 20px 0; text-align: left; cursor: pointer; position: relative; display: block; }
.zm-faq-q:hover { color: var(--zm-accent); }
.zm-faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--zm-accent); }
.zm-faq-q.active::after { content: '\2212'; }
.zm-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.zm-faq-a.open { max-height: 600px; padding-bottom: 20px; }
.zm-faq-a p { color: var(--zm-text-muted); font-size: 0.95rem; line-height: 1.7; }
.zm-form { max-width: 560px; margin: 0 auto; }
.zm-form-group { margin-bottom: 18px; }
.zm-form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--zm-text); }
.zm-form-group input, .zm-form-group select, .zm-form-group textarea { width: 100%; padding: 14px 16px; background: var(--zm-bg-card); border: 1px solid var(--zm-border-light); border-radius: var(--zm-radius-sm); color: var(--zm-text); font-family: var(--zm-font-body); font-size: 1rem; transition: border-color var(--zm-transition); min-height: 48px; }
.zm-form-group input:focus, .zm-form-group select:focus, .zm-form-group textarea:focus { outline: none; border-color: var(--zm-accent); }
.zm-form-group textarea { min-height: 120px; resize: vertical; }
.zm-form-group select { cursor: pointer; }
input[name="website"] { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-message { padding: 12px 16px; border-radius: var(--zm-radius-sm); margin-top: 12px; font-size: 0.9rem; font-weight: 600; }
.form-message--success { background: rgba(73,230,112,0.1); color: var(--zm-green); border: 1px solid rgba(73,230,112,0.3); }
.form-message--error { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.zm-trust-signals { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; font-size: 0.82rem; color: var(--zm-text-dim); }
.zm-payment-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.zm-payment-row img { height: 40px; width: auto; object-fit: contain; opacity: 0.8; }
.zm-cta-banner { background: linear-gradient(135deg, var(--zm-accent) 0%, #8B3A0E 100%); padding: 60px 20px; text-align: center; }
.zm-cta-banner h2 { color: #fff; margin-bottom: 12px; }
.zm-cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1.05rem; }
.zm-cta-banner .btn-primary { background: #fff; color: var(--zm-accent); }
.zm-cta-banner .btn-primary:hover { background: #f0f0f0; }
.zm-footer { background: var(--zm-bg-alt); border-top: 1px solid var(--zm-border); padding: 60px 20px 30px; }
.zm-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.zm-footer-col h4 { font-family: var(--zm-font); font-size: 1rem; text-transform: uppercase; margin-bottom: 16px; color: var(--zm-text); }
.zm-footer-col ul { list-style: none; }
.zm-footer-col ul li { margin-bottom: 8px; }
.zm-footer-col ul a { color: var(--zm-text-muted); font-size: 0.9rem; }
.zm-footer-col ul a:hover { color: var(--zm-accent); }
.zm-footer-col p { color: var(--zm-text-muted); font-size: 0.9rem; line-height: 1.6; }
.zm-footer-bottom { border-top: 1px solid var(--zm-border); padding-top: 20px; text-align: center; color: var(--zm-text-dim); font-size: 0.85rem; }
.zm-breadcrumb { padding: 100px 20px 20px; background: var(--zm-bg-alt); }
.zm-breadcrumb ul { display: flex; gap: 8px; list-style: none; font-size: 0.85rem; }
.zm-breadcrumb li + li::before { content: '/'; margin-right: 8px; color: var(--zm-text-dim); }
.zm-breadcrumb a { color: var(--zm-text-muted); }
.zm-breadcrumb span { color: var(--zm-accent); }
.zm-page-header { background: var(--zm-bg-alt); padding: 0 20px 50px; text-align: center; }
.zm-page-header h1 { margin-bottom: 12px; }
.zm-page-header p { color: var(--zm-text-muted); max-width: 600px; margin: 0 auto; }
.zm-content { max-width: 800px; margin: 0 auto; }
.zm-content h2 { margin: 40px 0 16px; font-size: 1.4rem; }
.zm-content h3 { margin: 30px 0 12px; font-size: 1.15rem; }
.zm-content p { color: var(--zm-text-muted); margin-bottom: 16px; }
.zm-content ul, .zm-content ol { color: var(--zm-text-muted); padding-left: 20px; margin-bottom: 16px; }
.zm-content li { margin-bottom: 6px; }
.zm-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.zm-content th, .zm-content td { padding: 12px 16px; border: 1px solid var(--zm-border); font-size: 0.95rem; }
.zm-content th { background: var(--zm-bg-card); color: var(--zm-text); text-align: left; font-weight: 700; }
.zm-content td { color: var(--zm-text-muted); }
.zm-content strong { color: var(--zm-text); }
.zm-content a { color: var(--zm-accent); text-decoration: underline; }
.zm-channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.zm-channel-cat { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 24px; }
.zm-channel-cat h3 { font-size: 1rem; margin-bottom: 8px; color: var(--zm-accent); }
.zm-channel-cat p { color: var(--zm-text-muted); font-size: 0.9rem; }
.zm-reseller-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.zm-reseller-card { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 32px 24px; text-align: center; transition: all var(--zm-transition); }
.zm-reseller-card:hover { border-color: var(--zm-accent); transform: translateY(-3px); }
.zm-reseller-card h3 { color: var(--zm-accent); margin-bottom: 8px; }
.zm-reseller-price { font-family: var(--zm-font); font-size: 2.2rem; font-weight: 700; margin: 12px 0; }
.zm-reseller-card ul { list-style: none; text-align: left; margin-bottom: 20px; }
.zm-reseller-card li { padding: 6px 0; font-size: 0.9rem; color: var(--zm-text-muted); border-bottom: 1px solid var(--zm-border); }
.zm-guide-step { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 24px; margin-bottom: 20px; }
.zm-guide-step h3 { color: var(--zm-accent); margin-bottom: 10px; }
.zm-guide-step p { color: var(--zm-text-muted); }
.zm-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.zm-contact-info-card { background: var(--zm-bg-card); border: 1px solid var(--zm-border); border-radius: var(--zm-radius); padding: 28px; text-align: center; }
.zm-contact-info-card h3 { margin-bottom: 10px; font-size: 1rem; }
.zm-contact-info-card p { color: var(--zm-text-muted); font-size: 0.95rem; }
@media (max-width: 768px) {
  .zm-nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(0,0,0,0.97); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--zm-border); }
  .zm-nav-links.open { display: flex; }
  .zm-hamburger { display: flex; }
  .zm-stats .container { grid-template-columns: 1fr; gap: 20px; }
  .zm-hero { min-height: 80vh; padding: 100px 20px 60px; }
  .zm-hero h1 { font-size: 2rem; }
  .zm-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .zm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .zm-footer-grid { grid-template-columns: 1fr; }
  .zm-hero-btns { flex-direction: column; align-items: center; }
}
