/* ============================================================
   CODES-IPTV.FR — style.css
   Police: Poppins | Couleurs: #5b2be0 / #ff6b35
   ============================================================ */

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

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #5b2be0;
  --primary-dark: #4520b0;
  --accent: #ff6b35;
  --text: #0d0d0d;
  --text-light: #444444;
  --bg: #ffffff;
  --bg-alt: #f8f9fc;
  --bg-dark: #0f0f1a;
  --border: #e5e7eb;
  --radius: 50px;
  --shadow: 0 4px 24px rgba(91,43,224,0.10);
  --shadow-lg: 0 8px 40px rgba(91,43,224,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1 {
  font-weight: 800;
  color: var(--text);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.15;
  text-transform: uppercase;
}

h2 {
  font-weight: 700;
  color: var(--text);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

h3 {
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }
strong { font-weight: 700; color: var(--primary); }

/* Strong sur fonds sombres → blanc */
.hero strong,
.about strong,
.stats strong,
.offer-highlight strong,
.sidebar-offer strong,
footer strong { color: #ffffff; }

/* Strong dans les cards et sections claires → violet foncé */
.feature-card strong,
.blog-card strong,
.testimonial-card strong,
.why-item strong,
.faq-answer strong,
.article-content strong,
.presentation-inner strong,
.checkout-form-box strong { color: var(--primary); }

.overline {
  display: inline-block;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 620px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}

.btn-primary:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  background: #1eb855;
  transform: translateY(-2px);
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  white-space: nowrap;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.logo-text { color: var(--primary); font-weight: 800; }

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all 0.2s;
}

nav a:hover { background: var(--bg-alt); color: var(--primary); }

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

.nav-cta:hover {
  background: #e55a28 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #0f0f1a 0%, #1e1240 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,43,224,0.3) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.hero-content { max-width: 760px; }
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero .overline { color: #a78bfa; }

.hero-subtitle {
  font-size: 1.08rem;
  color: #c4b5fd;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.hero-link {
  color: #a78bfa;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.hero-link:hover { color: white; }

/* ============ HERO LAYOUT 2 COLONNES ============ */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ============ TV MOCKUP ============ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}

/* Badge flottant */
.tv-badge-float {
  position: absolute;
  bottom: 24px;
  right: -8px;
  background: white;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============ STATS ============ */
.stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: #c4b5fd;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ PRESENTATION ============ */
.presentation { background: var(--bg); }

.presentation-inner {
  max-width: 860px;
  margin: 0 auto;
}

.presentation-inner p { font-size: 1rem; color: var(--text-light); }

/* ============ FEATURES GRID ============ */
.features { background: var(--bg-alt); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

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

.feature-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

/* ============ WHY US ============ */
.why-us { background: white; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 3rem;
}

.why-item { display: flex; gap: 20px; align-items: flex-start; }

.why-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 800;
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg-alt); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.12;
  font-weight: 800;
  line-height: 1;
}

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }

.testimonial-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.author-name { font-weight: 600; color: var(--text); font-size: 0.92rem; }
.author-location { font-size: 0.78rem; color: #9ca3af; }

/* ============ BLOG PREVIEW ============ */
.blog-preview { background: white; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.blog-card-body { padding: 28px; }

.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }

.blog-category {
  background: rgba(91,43,224,0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}

.blog-date { font-size: 0.78rem; color: #9ca3af; }

.blog-card h3 { font-size: 0.98rem; margin-bottom: 10px; }

.blog-excerpt { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }

.blog-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-link:hover { gap: 8px; }

/* ============ ABOUT ============ */
.about { background: var(--bg-dark); color: white; }
.about h2 { color: white; }
.about h2::after { background: var(--accent); }

.about-content {
  max-width: 820px;
  margin: 2rem auto 0;
  text-align: center;
  color: #c4b5fd;
  font-size: 1rem;
  line-height: 1.85;
}

.about-content a { color: var(--accent); font-weight: 600; }
.about-content strong { color: white; }

/* ============ OFFER CARD ============ */
.offer-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-highlight::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

.offer-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.offer-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  display: block;
  line-height: 1;
  margin: 16px 0 4px;
}

.offer-period { color: #c4b5fd; font-size: 0.9rem; margin-bottom: 32px; }

.offer-features {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 32px;
}

.offer-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: white;
}

.offer-features li:last-child { border-bottom: none; }
.check { color: #4ade80; font-size: 1.1rem; }

/* ============ CHECKOUT FORM ============ */
.checkout { background: var(--bg-alt); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.checkout-form-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--primary); }

.radio-group { display: flex; gap: 20px; }

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: 0.95rem;
}

/* ============ STEPS ============ */
.steps { background: white; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.step-card { text-align: center; padding: 28px 16px; }

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

/* ============ FAQ ============ */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--primary);
  min-width: 20px;
  text-align: center;
  transition: transform 0.3s;
  display: inline-block;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.75;
}

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

/* ============ PAYMENT ============ */
.payment { background: white; }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.payment-badge {
  background: white;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ============ TABLE OF CONTENTS ============ */
.toc {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
}

.toc h3 { margin-bottom: 16px; color: var(--primary); }

.toc ol { padding-left: 20px; }

.toc li { margin-bottom: 8px; }

.toc a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.toc a:hover { text-decoration: underline; }

/* ============ ARTICLE CONTENT ============ */
.article-body { background: var(--bg); padding: 60px 0 80px; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.article-content h2 {
  text-align: left;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.article-content h2::after { margin: 0.5rem 0 0; }

.article-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-size: 1rem;
}

.article-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
}

.article-content ol {
  padding-left: 24px;
  margin-bottom: 1rem;
}

.article-content li { margin-bottom: 8px; color: var(--text-light); }

.sidebar { position: sticky; top: 90px; }

.sidebar-offer {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  padding: 32px 24px;
  color: white;
  text-align: center;
}

.sidebar-offer h3 { color: white; font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-price { font-size: 2.2rem; font-weight: 800; display: block; margin: 12px 0 4px; }
.sidebar-period { color: #c4b5fd; font-size: 0.85rem; margin-bottom: 20px; }

.sidebar-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.sidebar-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: #9ca3af; }

/* ============ ARTICLE HERO ============ */
.article-hero {
  background: var(--bg-alt);
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.read-time {
  background: rgba(91,43,224,0.1);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============ BLOG PAGE ============ */
.blog-hero {
  background: var(--bg-alt);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.blog-all { background: white; }

.blog-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============ URGENCY BADGE ============ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ff8c61;
  margin-bottom: 24px;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s;
  font-size: 1.6rem;
  text-decoration: none;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg-dark);
  color: #9ca3af;
  padding: 60px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-logo .logo-icon { flex-shrink: 0; }

.footer-desc { font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }

.footer-col h4 {
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
}

/* ============ LEGAL ============ */
.legal-hero {
  background: var(--bg-alt);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-content h2 {
  text-align: left;
  font-size: 1.2rem;
  margin: 2.5rem 0 1rem;
}

.legal-content h2::after { margin: 0.5rem 0 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }

  nav.open { display: flex; }
  nav a { width: 100%; padding: 12px 16px; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-all-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero { padding: 70px 0 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .tv-badge-float { right: 0; bottom: 16px; }
  .offer-highlight { padding: 32px 24px; }
  .offer-price { font-size: 2.5rem; }
  .checkout-form-box { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: 8px; }
  .badge { font-size: 0.78rem; padding: 6px 14px; }
}
