/* ================================================================
   MovaTV — Design DNA from iptvon.me
   Dark moody + neon accents (deep indigo, yellow, electric blue)
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ================================================================ */

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

:root {
  --bg-body: #191d27;
  --bg-nav: #14121B;
  --bg-card: #1C1B3A;
  --bg-card-alt: #0C0B2E;
  --bg-footer: #0e0c18;
  --color-primary: #242879;
  --color-primary-hover: #3f5efb;
  --color-accent: #ffcc00;
  --color-accent-hover: #ffd633;
  --color-pink: #EE6E76;
  --color-gradient-from: #0C0B2E;
  --color-gradient-to: #5E1124;
  --text-primary: #ffffff;
  --text-muted: #9ca3af;
  --text-secondary: #6E8187;
  --border-color: rgba(255,255,255,0.08);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w: 1290px;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-btn: 10px;
  --shadow-card: 0 0 10px rgba(28,27,58,0.6);
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  background: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; border: 0; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  text-transform: capitalize;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.875rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; }
section { padding: 5rem 1.5rem; }

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 50px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(63,94,251,0.3);
}
.btn-accent {
  background: var(--color-accent);
  color: #191d27;
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20,18,27,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--color-accent); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--color-accent); }
.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-cta:hover { background: var(--color-primary-hover); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-nav);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    z-index: 999;
    border-left: 1px solid var(--border-color);
  }
  .nav-menu.open { right: 0; }
  .hamburger { display: flex; }
}

/* === HERO === */
.hero {
  padding: 140px 1.5rem 80px;
  background: var(--bg-footer);
  background-image: url('../images/Background.webp');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: visible;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}
.hero h1 {
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-checks span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}
.hero-checks .check-icon { color: var(--color-accent); font-weight: 700; }
.hero-img {
  max-width: 100%;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-checks { justify-content: center; }
  .hero-img { max-width: 80%; margin: 0 auto; }
  .hero { padding: 120px 1.5rem 60px; }
}

/* === TRUST BAR === */
.trust-bar {
  padding: 4rem 1.5rem;
  background: var(--bg-body);
}
.trust-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.trust-item:hover { transform: translateY(-4px); }
.trust-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}
.trust-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.trust-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* === PRICING === */
.pricing-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--color-gradient-from) 0%, var(--color-gradient-to) 100%);
}
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-header h2 { margin-bottom: 0.75rem; }
.pricing-header p { color: var(--text-muted); font-size: 1.05rem; }
.pricing-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.price-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(12,11,46,0.8);
}
.price-card.popular {
  border: 2px solid var(--color-accent);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #191d27;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.price-duration {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.price-amount .currency { font-size: 1.5rem; vertical-align: super; }
.price-amount .cents { font-size: 1.5rem; vertical-align: super; }
.price-features {
  text-align: left;
  margin: 1.5rem 0 2rem;
}
.price-features li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features .feat-check { color: var(--color-accent); font-weight: 700; }
.price-card .btn { width: 100%; padding: 14px; font-size: 0.95rem; }
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .price-card.popular { transform: none; }
}

/* === WHY CHOOSE US / FEATURES === */
.features-section {
  padding: 5rem 1.5rem;
  background: var(--bg-body);
}
.features-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* === STATS BAR === */
.stats-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--color-gradient-from), var(--color-gradient-to));
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.stat-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === TRIAL FORM === */
.trial-section {
  padding: 5rem 1.5rem;
  background: var(--bg-body);
  text-align: center;
}
.trial-section h2 { margin-bottom: 1rem; }
.trial-section > .container > p { color: var(--text-muted); margin-bottom: 2rem; }
.trial-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.trial-form .form-group {
  flex: 1 1 200px;
  max-width: 260px;
}
.trial-form label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  text-align: left;
}
.trial-form input {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.trial-form input:focus {
  outline: none;
  border-color: var(--color-primary-hover);
}
.trial-form button {
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--color-accent);
  color: #191d27;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: background var(--transition), transform var(--transition);
  align-self: flex-end;
}
.trial-form button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}
.trial-trust {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .trial-form { flex-direction: column; align-items: center; }
  .trial-form .form-group { max-width: 100%; width: 100%; }
}

/* === CHANNELS === */
.channels-section { padding: 5rem 1.5rem; }
.channels-grid {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.channel-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.channel-card:hover { transform: translateY(-4px); }
.channel-card h4 { margin-bottom: 0.5rem; }
.channel-card .flag { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.channel-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* === FAQ === */
.faq-section { padding: 5rem 1.5rem; background: var(--bg-body); }
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: background var(--transition);
}
.faq-item[open] { background: rgba(28,27,58,0.8); }
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--color-accent); }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  margin: 0;
}

/* === FORMS (General) === */
.form-container {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-btn);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-hover);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg-body); color: #fff; }
.form-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-btn);
  background: var(--color-accent);
  color: #191d27;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}
.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-btn);
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-message--success {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
}
.form-message--error {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.3);
}
.honeypot { position: absolute; left: -9999px; }

/* === CHECKOUT === */
.checkout-section {
  padding: 8rem 1.5rem 5rem;
  min-height: 80vh;
}
.checkout-section h1 { text-align: center; margin-bottom: 0.5rem; }
.checkout-section > .container > p { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }

/* === SETUP GUIDE === */
.guide-section { padding: 8rem 1.5rem 5rem; }
.guide-content {
  max-width: 800px;
  margin: 0 auto;
}
.guide-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}
.guide-content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.25rem;
}
.guide-content p { color: var(--text-muted); margin-bottom: 1rem; }
.guide-content ul, .guide-content ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-muted);
}
.guide-content li { margin-bottom: 0.5rem; }
.guide-content ol { list-style: decimal; }
.guide-content ul { list-style: disc; }
.guide-content img {
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* === ABOUT === */
.about-section { padding: 8rem 1.5rem 5rem; }
.about-content {
  max-width: 900px;
  margin: 0 auto;
}
.about-content h2 { margin: 2rem 0 1rem; }
.about-content p { color: var(--text-muted); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
.about-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.about-card h4 { margin-bottom: 0.75rem; }
.about-card p { color: var(--text-secondary); font-size: 0.9rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* === RESELLER === */
.reseller-section { padding: 8rem 1.5rem 5rem; }
.reseller-content { max-width: 1000px; margin: 0 auto; }
.reseller-content h2 { margin: 2rem 0 1rem; }
.reseller-content p { color: var(--text-muted); }
.reseller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.reseller-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.reseller-card:hover { transform: translateY(-4px); }
.reseller-card h4 { margin-bottom: 0.5rem; }
.reseller-card p { color: var(--text-secondary); font-size: 0.9rem; }
@media (max-width: 768px) {
  .reseller-grid { grid-template-columns: 1fr; }
}

/* === CONTACT === */
.contact-section { padding: 8rem 1.5rem 5rem; }
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-method-icon { font-size: 1.5rem; }
.contact-method-text h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.contact-method-text p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
@media (max-width: 768px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* === LEGAL PAGES === */
.legal-section {
  padding: 8rem 1.5rem 5rem;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 { margin-bottom: 0.5rem; font-size: 2rem; }
.legal-content .last-updated { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.9rem; }
.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}
.legal-content h3 { font-size: 1.1rem; margin: 1.25rem 0 0.5rem; }
.legal-content p { color: var(--text-muted); }
.legal-content ul, .legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--text-muted);
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-content ol { list-style: decimal; }
.legal-content ul { list-style: disc; }
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.legal-content th, .legal-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}
.legal-content th {
  background: var(--bg-card);
  color: #fff;
  font-weight: 600;
}
.legal-content strong { color: #fff; }

/* === FOOTER === */
.site-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-color);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-address {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.78rem;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 7rem 1.5rem 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb span { color: var(--text-secondary); font-size: 0.85rem; }

/* === PAGE HEADER (inner pages) === */
.page-header {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-footer) 0%, var(--bg-body) 100%);
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* === OFFER BAR === */
.offer-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, #5E1124 100%);
  padding: 1rem 1.5rem;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.offer-bar .highlight { color: var(--color-accent); }

/* === UTILITY === */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-hover); }

/* === SELECTION === */
::selection { background: var(--color-primary); color: #fff; }
