/* IberoVision.es — Shared Stylesheet */
/* Colors from reference: red accent (#DF0303), dark navy (#010C3A), dark bg (#010A1B) */

:root {
  --primary: #DF0303;
  --primary-dark: #B80202;
  --primary-rgb: 223, 3, 3;
  --secondary: #010C3A;
  --secondary-rgb: 1, 12, 58;
  --dark: #010A1B;
  --dark-rgb: 1, 10, 27;
  --gray: #666666;
  --gray-light: #f5f5f5;
  --gray-border: #e0e0e0;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --text: #333333;
  --text-light: #999999;
  --font: 'Montserrat', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ───── HEADER TOP BAR ───── */
.header-top {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(var(--white-rgb), 0.7);
  border-bottom: 1px solid rgba(var(--white-rgb), 0.1);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.header-top a { color: rgba(var(--white-rgb), 0.9); }
.header-top a:hover { color: var(--primary); }

.header-top-left { display: flex; align-items: center; gap: 20px; }
.header-top-right { display: flex; align-items: center; gap: 15px; }

/* ───── HEADER / NAV ───── */
.header {
  background: var(--secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span { color: var(--primary); }
.logo a { color: inherit; }
.logo a:hover { color: inherit; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu a {
  color: rgba(var(--white-rgb), 0.85);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  background: rgba(var(--primary-rgb), 0.15);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* ───── HERO ───── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/IPTV-Espana.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-width: 500px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  opacity: 0.9;
}

.hero-features li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(var(--white-rgb), 0.4);
}

.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-dark:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* ───── SECTIONS ───── */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-gray {
  background: var(--gray-light);
}

.section-navy {
  background: var(--secondary);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
  margin-bottom: 15px;
}

.section-dark .section-header h2,
.section-navy .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--gray);
  font-size: 17px;
}

.section-dark .section-header p,
.section-navy .section-header p {
  color: rgba(var(--white-rgb), 0.7);
}

/* ───── FEATURES GRID ───── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-border);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.section-dark .feature-card {
  background: rgba(var(--white-rgb), 0.05);
  border-color: rgba(var(--white-rgb), 0.1);
}

.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(var(--white-rgb), 0.7); }

/* ───── WHY US / ABOUT SPLIT ───── */
.split-section {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-section .split-image {
  flex: 1;
  min-width: 300px;
}

.split-section .split-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.split-section .split-content {
  flex: 1;
  min-width: 300px;
}

.split-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.split-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 16px;
}

.split-content ul {
  margin-bottom: 25px;
}

.split-content ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.split-content ul li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ───── PRICING ───── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-border);
  transition: var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card.popular {
  border-color: var(--primary);
  transform: scale(1.03);
}

.price-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.price-duration {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.price-amount .currency { font-size: 24px; vertical-align: super; }
.price-amount .period { font-size: 16px; color: var(--gray); font-weight: 400; }

.price-features {
  text-align: left;
  margin: 25px 0;
}

.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--gray-border);
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn { width: 100%; }

.section-dark .price-card {
  background: rgba(var(--white-rgb), 0.05);
  border-color: rgba(var(--white-rgb), 0.1);
}

.section-dark .price-card h3 { color: var(--white); }
.section-dark .price-card .price-features li { color: rgba(var(--white-rgb), 0.8); border-color: rgba(var(--white-rgb), 0.1); }

/* ───── TESTIMONIALS ───── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
}

.testimonial-card .stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  color: var(--secondary);
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.section-dark .testimonial-card {
  background: rgba(var(--white-rgb), 0.05);
  border-color: rgba(var(--white-rgb), 0.1);
}

.section-dark .testimonial-card p { color: rgba(var(--white-rgb), 0.7); }
.section-dark .testimonial-author strong { color: var(--white); }

/* ───── FAQ ───── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
  transition: var(--transition);
}

.faq-question:hover { background: var(--gray-light); }

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer { display: block; }

.section-dark .faq-item { border-color: rgba(var(--white-rgb), 0.1); }
.section-dark .faq-question { background: rgba(var(--white-rgb), 0.05); color: var(--white); }
.section-dark .faq-question:hover { background: rgba(var(--white-rgb), 0.1); }
.section-dark .faq-answer { color: rgba(var(--white-rgb), 0.7); }

/* ───── CHANNELS ───── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

.channel-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.channel-cat:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.channel-cat .icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.channel-cat h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

/* ───── STATS ───── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 500;
}

.section-dark .stat-item p { color: rgba(var(--white-rgb), 0.7); }

/* ───── CTA BANNER ───── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-banner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-outline {
  border-color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ───── FORMS ───── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

textarea.form-control { min-height: 120px; resize: vertical; }

.form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 15px;
}

.form-message--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-message--error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.honeypot { position: absolute; left: -9999px; }

/* ───── CHECKOUT ───── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.order-summary {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--gray-border);
  position: sticky;
  top: 90px;
}

.order-summary h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-border);
}

.plan-selector {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.plan-option:hover { border-color: var(--primary); }

.plan-option input[type="radio"] { accent-color: var(--primary); }

.plan-option.selected { border-color: var(--primary); background: rgba(var(--primary-rgb), 0.05); }

.plan-option .plan-name { font-weight: 600; flex: 1; }
.plan-option .plan-price { font-weight: 700; color: var(--primary); }

/* ───── BREADCRUMB ───── */
.breadcrumb {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  padding: 50px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.breadcrumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/breadcrumb_v2.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.breadcrumb .container { position: relative; z-index: 2; }

.breadcrumb h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  font-size: 14px;
  color: rgba(var(--white-rgb), 0.7);
}

.breadcrumb-nav a { color: var(--primary); }
.breadcrumb-nav a:hover { color: var(--white); }

/* ───── SETUP GUIDE ───── */
.setup-content {
  max-width: 800px;
  margin: 0 auto;
}

.setup-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary);
  margin: 40px 0 15px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
}

.setup-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.setup-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin: 25px 0 12px;
}

.setup-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.setup-content ol,
.setup-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.setup-content li {
  padding: 5px 0;
  color: var(--text);
  list-style: decimal;
}

.setup-content ul li { list-style: disc; }

.setup-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.setup-content strong { color: var(--secondary); }

/* ───── LEGAL PAGES ───── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  margin: 35px 0 15px;
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin: 25px 0 12px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.legal-content ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

.legal-content ul li {
  padding: 4px 0;
  color: var(--text);
  list-style: disc;
}

/* ───── CONTACT GRID ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-card .icon {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 5px;
}

.contact-info-card p {
  color: var(--gray);
  font-size: 14px;
}

/* ───── RESELLER ───── */
.reseller-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-card {
  text-align: center;
  padding: 30px 20px;
}

.benefit-card .num {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--gray);
  font-size: 14px;
}

.section-dark .benefit-card h3 { color: var(--white); }
.section-dark .benefit-card p { color: rgba(var(--white-rgb), 0.7); }

/* ───── FOOTER ───── */
.footer {
  background: var(--dark);
  color: rgba(var(--white-rgb), 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 14px;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(var(--white-rgb), 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a { color: var(--primary); }

/* ───── MOBILE ───── */
@media (max-width: 992px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-features { justify-content: center; }
  .hero h1 { font-size: 32px; }
  .split-section { flex-direction: column; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--secondary);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(var(--white-rgb), 0.1);
  }

  .nav-menu.active { display: flex; }

  .nav-menu a { width: 100%; padding: 12px 16px; }

  .hero { padding: 60px 0; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 28px; }

  .breadcrumb h1 { font-size: 26px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-banner h2 { font-size: 26px; }

  .hero { padding: 60px 0 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .stats-row { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Skip Link */
.skip-link { position: absolute; top: -100%; left: 16px; z-index: 9999; background: var(--accent, #00E5B9); color: var(--primary, #000); padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: .9rem; text-decoration: none; transition: top .2s; }
.skip-link:focus { top: 8px; }

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
@media (max-width: 640px) {
  .container { padding: 0 16px; }
@media (max-width: 360px) {
  .hero h1 { font-size: 1.25rem; }

/* ─── TOUCH & INTERACTION ─── */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, a, button { min-height: 44px; min-width: 44px; }
  .nav-links a { padding: 12px 8px; }
  .faq-question { padding: 16px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── PRINT ─── */
@media print {
  .site-header, .site-footer, .nav-toggle, .whatsapp-btn, .skip-link, footer, header, nav { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: none; padding: 20px 0; }
}
