/* VivaTivi — Design DNA from kopeniptv.tv */
/* Clean white + vibrant blue #0058fc, Poppins + Nunito */

:root {
  --color-primary: #0058fc;
  --color-primary-dark: #0839fc;
  --color-primary-rgb: 0, 88, 252;
  --color-accent: #3366ff;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-text: #0f131f;
  --color-text-muted: #555;
  --color-border: rgba(0,0,0,0.1);
  --color-footer-bg: #0f131f;
  --color-footer-text: rgba(255,255,255,0.7);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --max-w: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100vw; }
body { font-family: var(--font-body); background: var(--color-bg); color: var(--color-text); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ===== HEADER / NAV ===== */
.vv-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.vv-header__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.vv-logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-text); text-decoration: none; }
.vv-logo span { color: var(--color-primary); }
.vv-nav { display: flex; align-items: center; gap: 1.5rem; }
.vv-nav a { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--color-text); transition: color 0.2s; }
.vv-nav a:hover { color: var(--color-primary); }
.vv-nav .dropdown { position: relative; }
.vv-nav .dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.vv-nav .dropdown-toggle::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; }
.vv-nav .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 0.5rem 0; min-width: 200px; z-index: 100; }
.vv-nav .dropdown:hover .dropdown-menu { display: block; }
.vv-nav .dropdown-menu a { display: block; padding: 0.5rem 1.25rem; font-size: 0.85rem; white-space: nowrap; }
.vv-nav .dropdown-menu a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.vv-cta-btn { background: var(--color-primary); color: #fff !important; padding: 0.55rem 1.4rem; border-radius: 8px; font-weight: 700; font-size: 0.85rem; transition: background 0.2s, box-shadow 0.2s; }
.vv-cta-btn:hover { background: var(--color-primary-dark); box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.35); }
.vv-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; flex-direction: column; gap: 5px; }
.vv-hamburger span { display: block; width: 24px; height: 2.5px; background: var(--color-text); border-radius: 2px; transition: 0.3s; }

@media (max-width: 900px) {
  .vv-nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #fff; flex-direction: column; padding: 4rem 2rem; gap: 1rem; transition: right 0.3s; box-shadow: -4px 0 20px rgba(0,0,0,0.1); align-items: flex-start; z-index: 9999; }
  .vv-nav.open { right: 0; }
  .vv-hamburger { display: flex; }
  .vv-nav .dropdown-menu { position: static; box-shadow: none; padding-left: 1rem; }
  .vv-nav .dropdown:hover .dropdown-menu { display: block; }
}

/* ===== HERO ===== */
.vv-hero { position: relative; min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 6rem 1.5rem 4rem; }
.vv-hero__bg { position: absolute; inset: 0; z-index: 0; }
.vv-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.vv-hero__overlay { position: absolute; inset: 0; background: linear-gradient(40deg, rgba(0,0,0,0.72), rgba(0,0,0,0.55)); z-index: 1; }
.vv-hero__content { position: relative; z-index: 2; max-width: 800px; }
.vv-hero h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.2; }
.vv-hero h1 .accent { color: var(--color-primary); }
.vv-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.vv-hero__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary { background: var(--color-primary); color: #fff; padding: 0.85rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: background 0.2s, box-shadow 0.3s; font-family: var(--font-heading); display: inline-block; }
.btn-primary:hover { background: var(--color-primary-dark); box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4); }
.btn-outline { border: 2px solid #fff; color: #fff; padding: 0.8rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; background: transparent; cursor: pointer; transition: all 0.2s; font-family: var(--font-heading); display: inline-block; }
.btn-outline:hover { background: #fff; color: var(--color-text); }

/* Stats bar */
.vv-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.vv-stat { text-align: center; color: #fff; }
.vv-stat__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; display: block; }
.vv-stat__label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== SECTIONS ===== */
.vv-section { padding: 5rem 1.5rem; }
.vv-section--alt { background: var(--color-bg-alt); }
.vv-section--dark { background: var(--color-footer-bg); color: #fff; }
.vv-section__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: 1rem; color: var(--color-text); }
.vv-section--dark .vv-section__title { color: #fff; }
.vv-section__subtitle { text-align: center; color: var(--color-text-muted); font-size: 1.05rem; max-width: 700px; margin: 0 auto 3rem; }
.vv-section--dark .vv-section__subtitle { color: rgba(255,255,255,0.7); }

/* ===== FEATURE GRID (3-col icon boxes) ===== */
.vv-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: var(--max-w); margin: 0 auto; }
.vv-feature-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.vv-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vv-feature-icon { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 1rem; display: block; }
.vv-feature-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.vv-feature-card p { color: var(--color-text-muted); font-size: 0.92rem; }

@media (max-width: 768px) {
  .vv-features-grid { grid-template-columns: 1fr; max-width: 500px; }
}

/* ===== CONTENT SHOWCASE (dark bg + image) ===== */
.vv-showcase { position: relative; padding: 5rem 1.5rem; overflow: hidden; }
.vv-showcase__bg { position: absolute; inset: 0; z-index: 0; }
.vv-showcase__bg img { width: 100%; height: 100%; object-fit: cover; }
.vv-showcase__bg-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, #000, rgba(0,0,0,0.75)); z-index: 1; }
.vv-showcase__content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.vv-showcase h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: #fff; text-align: center; margin-bottom: 1rem; }
.vv-showcase p { color: rgba(255,255,255,0.8); text-align: center; max-width: 700px; margin: 0 auto 2rem; }
.vv-showcase-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.vv-showcase-list { list-style: none; }
.vv-showcase-list li { color: #fff; font-weight: 700; font-size: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.vv-showcase-list li::before { content: ''; display: inline-block; width: 8px; height: 8px; background: var(--color-primary); border-radius: 50%; margin-right: 0.75rem; }
.vv-showcase-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
@media (max-width: 768px) { .vv-showcase-cols { grid-template-columns: 1fr; } }

/* ===== POSTER GRID ===== */
.vv-poster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; max-width: var(--max-w); margin: 2rem auto 0; }
.vv-poster-grid img { border-radius: 8px; width: 100%; aspect-ratio: 2/3; object-fit: cover; }

/* ===== PRICING CARDS ===== */
.vv-pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.vv-price-card { background: #fff; border: 2px solid var(--color-border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; position: relative; transition: transform 0.2s, box-shadow 0.2s; }
.vv-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vv-price-card--popular { border-color: var(--color-primary); box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.15); transform: scale(1.04); }
.vv-price-card--popular:hover { transform: scale(1.04) translateY(-4px); }
.vv-price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--color-primary); color: #fff; padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.vv-price-card__name { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.vv-price-card__amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--color-text); margin-bottom: 0.25rem; }
.vv-price-card__period { font-size: 0.85rem; color: var(--color-text-muted); display: block; margin-bottom: 1.5rem; }
.vv-price-card__features { list-style: none; margin-bottom: 1.5rem; text-align: left; }
.vv-price-card__features li { color: var(--color-text-muted); font-size: 0.88rem; padding: 0.4rem 0; border-bottom: 1px solid var(--color-border); }
.vv-price-card__features li:last-child { border-bottom: none; }
.vv-price-card__features li::before { content: '\2713'; color: var(--color-primary); font-weight: 700; margin-right: 0.5rem; }
.vv-price-card__btn { display: block; width: 100%; padding: 0.8rem; border-radius: 8px; text-align: center; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; border: 2px solid var(--color-primary); color: var(--color-primary); background: transparent; cursor: pointer; font-family: var(--font-heading); }
.vv-price-card__btn:hover { background: var(--color-primary); color: #fff; }
.vv-price-card--popular .vv-price-card__btn { background: var(--color-primary); color: #fff; }
.vv-price-card--popular .vv-price-card__btn:hover { background: var(--color-primary-dark); }

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

/* ===== HOW IT WORKS ===== */
.vv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: var(--max-w); margin: 0 auto; counter-reset: step; }
.vv-step { text-align: center; position: relative; counter-increment: step; }
.vv-step::before { content: counter(step); display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--color-primary); color: #fff; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; border-radius: 50%; margin: 0 auto 1.25rem; }
.vv-step h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.vv-step p { color: var(--color-text-muted); font-size: 0.92rem; }
@media (max-width: 768px) { .vv-steps { grid-template-columns: 1fr; max-width: 500px; } }

/* ===== FAQ ===== */
.vv-faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.vv-faq-item { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.vv-faq-item[open] { box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.vv-faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--color-text); display: flex; align-items: center; justify-content: space-between; list-style: none; }
.vv-faq-item summary::-webkit-details-marker { display: none; }
.vv-faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--color-primary); font-weight: 400; transition: transform 0.3s; }
.vv-faq-item[open] summary::after { transform: rotate(45deg); }
.vv-faq-item__answer { padding: 0 1.5rem 1.25rem; color: var(--color-text-muted); font-size: 0.93rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.vv-testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: var(--max-w); margin: 0 auto; }
.vv-testimonial { background: #fff; border-left: 4px solid var(--color-primary); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.75rem 2rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.vv-testimonial__text { font-style: italic; color: var(--color-text); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.7; }
.vv-testimonial__author { color: var(--color-primary); font-weight: 700; font-size: 0.85rem; }
@media (max-width: 768px) { .vv-testimonials-grid { grid-template-columns: 1fr; } }

/* ===== FORMS ===== */
.vv-form { max-width: 500px; margin: 0 auto; }
.vv-form-wide { max-width: 700px; }
.vv-form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--color-text); }
.vv-form input, .vv-form select, .vv-form textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--color-border); border-radius: 8px; font-size: 0.95rem; font-family: var(--font-body); background: #fff; color: var(--color-text); margin-bottom: 1rem; transition: border-color 0.2s; }
.vv-form input:focus, .vv-form select:focus, .vv-form textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1); }
.vv-form textarea { min-height: 120px; resize: vertical; }
.vv-form button[type="submit"] { width: 100%; padding: 0.9rem; background: var(--color-primary); color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; font-family: var(--font-heading); transition: background 0.2s; }
.vv-form button[type="submit"]:hover { background: var(--color-primary-dark); }
.vv-form .honeypot { position: absolute; left: -9999px; }
.form-message { padding: 0.8rem 1rem; border-radius: 8px; margin-top: 1rem; font-size: 0.9rem; font-weight: 600; }
.form-message--success { background: #e8f5e9; color: #2e7d32; }
.form-message--error { background: #fce4ec; color: #c62828; }
.vv-form .trust-signal { text-align: center; font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.5rem; }

/* Trial form (inline hero style) */
.vv-trial-form { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 600px; margin: 0 auto; }
.vv-trial-form input { flex: 1 1 170px; max-width: 200px; padding: 0.8rem 1rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 8px; background: rgba(255,255,255,0.1); color: #fff; font-size: 0.95rem; font-family: var(--font-body); }
.vv-trial-form input::placeholder { color: rgba(255,255,255,0.6); }
.vv-trial-form input:focus { outline: none; border-color: var(--color-primary); background: rgba(255,255,255,0.15); }
.vv-trial-form button { padding: 0.8rem 2rem; background: var(--color-primary); color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; font-family: var(--font-heading); transition: background 0.2s; }
.vv-trial-form button:hover { background: #fff; color: var(--color-primary); }

/* ===== CHANNEL MARQUEE ===== */
.vv-marquee { overflow: hidden; padding: 1.5rem 0; background: var(--color-bg-alt); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.vv-marquee__track { display: flex; width: max-content; animation: vv-scroll 30s linear infinite; }
.vv-marquee__inner { display: flex; gap: 3rem; padding: 0 1.5rem; }
.vv-marquee__item { color: var(--color-text-muted); font-size: 0.95rem; font-weight: 700; font-family: var(--font-heading); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
@keyframes vv-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FOOTER ===== */
.vv-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding: 4rem 0 0; }
.vv-footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.vv-footer__brand-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #fff; display: block; margin-bottom: 0.75rem; }
.vv-footer__brand-name span { color: var(--color-primary); }
.vv-footer__brand-desc { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.vv-footer__col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; font-family: var(--font-heading); }
.vv-footer__col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.875rem; padding: 0.3rem 0; transition: color 0.2s; }
.vv-footer__col a:hover { color: var(--color-primary); }
.vv-footer__bottom { max-width: var(--max-w); margin: 3rem auto 0; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.vv-footer__address { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; font-style: normal; }

@media (max-width: 768px) {
  .vv-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .vv-footer__brand { grid-column: 1 / -1; }
}

/* ===== LEGAL / CONTENT PAGES ===== */
.vv-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.vv-content h1 { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; }
.vv-content h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--color-text); }
.vv-content h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.vv-content p { margin-bottom: 1rem; color: var(--color-text-muted); }
.vv-content ul, .vv-content ol { margin: 0.5rem 0 1rem 1.5rem; }
.vv-content ul { list-style: disc; }
.vv-content ol { list-style: decimal; }
.vv-content li { color: var(--color-text-muted); margin-bottom: 0.4rem; font-size: 0.95rem; }
.vv-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.vv-content table th, .vv-content table td { border: 1px solid var(--color-border); padding: 0.75rem 1rem; text-align: left; font-size: 0.9rem; }
.vv-content table th { background: var(--color-bg-alt); font-weight: 700; }
.vv-content a { color: var(--color-primary); text-decoration: underline; }
.vv-content strong { color: var(--color-text); }

/* ===== BREADCRUMB ===== */
.vv-breadcrumb { background: var(--color-bg-alt); padding: 1rem 1.5rem; font-size: 0.85rem; color: var(--color-text-muted); }
.vv-breadcrumb a { color: var(--color-primary); }
.vv-breadcrumb span { margin: 0 0.4rem; }

/* ===== CHANNEL GRID ===== */
.vv-channel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.vv-channel-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; }
.vv-channel-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.75rem; }
.vv-channel-card ul { list-style: disc; padding-left: 1.25rem; }
.vv-channel-card li { color: var(--color-text-muted); font-size: 0.88rem; margin-bottom: 0.25rem; }

/* ===== CHECKOUT ===== */
.vv-checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: var(--max-w); margin: 0 auto; align-items: start; }
.vv-checkout-summary { background: var(--color-bg-alt); border-radius: var(--radius); padding: 2rem; }
.vv-checkout-summary h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1rem; }
.vv-checkout-summary ul { list-style: disc; padding-left: 1.25rem; }
.vv-checkout-summary li { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0.4rem; }
@media (max-width: 768px) { .vv-checkout-grid { grid-template-columns: 1fr; } }

/* ===== SETUP GUIDE ===== */
.vv-guide-step { background: var(--color-bg-alt); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; }
.vv-guide-step h3 { font-family: var(--font-heading); color: var(--color-primary); margin-bottom: 0.75rem; }
.vv-guide-step p { color: var(--color-text-muted); }
.vv-guide-step img { border-radius: 8px; margin-top: 1rem; }

/* ===== RESELLER ===== */
.vv-reseller-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto 3rem; }
.vv-reseller-tier { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.vv-reseller-tier h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-primary); margin-bottom: 0.5rem; }
@media (max-width: 768px) { .vv-reseller-tiers { grid-template-columns: 1fr; } }

/* ===== PAGE HERO (inner pages) ===== */
.vv-page-hero { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); padding: 4rem 1.5rem; text-align: center; color: #fff; }
.vv-page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 0.5rem; }
.vv-page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ===== SPORTS BADGES ===== */
.vv-sports-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: var(--max-w); margin: 2rem auto 0; }
.vv-sport-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 0.6rem 1.5rem; border-radius: 30px; color: #fff; font-size: 0.9rem; font-weight: 600; font-family: var(--font-heading); }

/* ===== ABOUT GRID ===== */
.vv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: var(--max-w); margin: 0 auto; align-items: center; }
.vv-about-grid img { border-radius: var(--radius); }
@media (max-width: 768px) { .vv-about-grid { grid-template-columns: 1fr; } }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
