/* ============================================
   IPTV4KFRANCE.SHOP — French Tricolor Theme
   Bleu-Blanc-Rouge accents on deep navy
   Zero emojis. Professional. Human.
   ============================================ */

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

:root {
  /* French Tricolor */
  --bleu: #0055A4;
  --bleu-light: #1976D2;
  --rouge: #EF4135;
  --rouge-dark: #D32F2F;
  --blanc: #FFFFFF;
  
  /* Base */
  --bg-deep: #070a12;
  --bg-surface: #0c1018;
  --bg-elevated: #111620;
  --bg-glass: rgba(12, 16, 24, 0.8);
  --border-subtle: rgba(0, 85, 164, 0.15);
  --border-active: rgba(0, 85, 164, 0.35);
  --text-primary: #f2f4f8;
  --text-secondary: #8b92a5;
  --text-dim: #555c6e;
  
  /* WhatsApp */
  --wa: #25D366;
  --wa-dark: #128C7E;
  
  /* Gradients */
  --gradient-french: linear-gradient(135deg, var(--bleu) 0%, var(--rouge) 100%);
  --gradient-bleu: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-light) 100%);
  --gradient-text: linear-gradient(135deg, #4fc3f7 0%, #ffffff 50%, #ff8a80 100%);
  
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-bleu: 0 8px 32px rgba(0, 85, 164, 0.25);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-light); text-decoration: none; }
a:hover { color: #4fc3f7; }

.grad {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--wa);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  background: var(--wa-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}
.wa-float svg { width: 22px; height: 22px; }
@media (max-width: 768px) {
  .wa-float { padding: 12px 16px; font-size: 0.8rem; bottom: 16px; right: 16px; }
  .wa-float svg { width: 20px; height: 20px; }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo svg { width: 32px; height: 32px; }
.logo span { color: var(--rouge); }
.logo:hover { color: var(--text-primary); }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.25rem 0;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-french);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1001; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); border-radius: 2px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--gradient-bleu);
  color: #fff;
  box-shadow: var(--shadow-bleu);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 85, 164, 0.4); color: #fff; }
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  font-weight: 700;
}
.btn-wa:hover { background: var(--wa-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-active);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--bleu); background: rgba(0, 85, 164, 0.08); color: #4fc3f7; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.8rem; border-radius: 10px; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; border-radius: 14px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-deep);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 164, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(239, 65, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
#particles-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 85, 164, 0.1);
  border: 1px solid var(--border-active);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #4fc3f7;
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--bleu); border-radius: 50%; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -1.5px; }
.hero-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-desc strong { color: var(--text-primary); font-weight: 600; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-subtle); }
.hero-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #4fc3f7, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat p { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-subtle); box-shadow: var(--shadow-lg); }
.hero-img-wrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,10,18,0.8) 100%); z-index: 1; pointer-events: none; }
.hero-img-wrap img { width: 100%; height: auto; }
.hero-floating-card {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-active);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.hero-floating-card p { font-size: 0.8rem; color: var(--text-secondary); }
.hero-floating-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #4fc3f7, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ========== SECTIONS ========== */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-surface); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #4fc3f7;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(0, 85, 164, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
}
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; letter-spacing: -1px; line-height: 1.15; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

/* ========== CARDS ========== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-french);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-active); transform: translateY(-6px); box-shadow: var(--shadow-lg); background: #151b2a; }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 85, 164, 0.15), rgba(239, 65, 53, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #4fc3f7;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; }

/* ========== FEATURE ROWS ========== */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feature-row.reverse > *:first-child { order: 2; }
.feature-row.reverse > *:last-child { order: 1; }
.feature-visual { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-subtle); }
.feature-visual img { width: 100%; transition: transform 0.6s ease; }
.feature-visual:hover img { transform: scale(1.04); }
.feature-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 85, 164, 0.08), transparent 60%); pointer-events: none; }
.feature-content h2 { margin-bottom: 1.25rem; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.5px; }
.feature-content > p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 1.75rem; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.85rem; color: var(--text-secondary); font-size: 0.92rem; }
.feature-list li svg { width: 20px; height: 20px; color: var(--bleu-light); flex-shrink: 0; margin-top: 2px; }
.feature-list li strong { color: var(--text-primary); font-weight: 600; }

/* ========== PRICING ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 920px; margin: 0 auto; }
.pricing-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 24px; padding: 2.5rem 1.75rem; text-align: center; transition: var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--border-active); }
.pricing-card.popular { border-color: var(--bleu); background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(0, 85, 164, 0.06) 100%); transform: scale(1.06); z-index: 2; }
.pricing-card.popular:hover { transform: scale(1.06) translateY(-10px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-french); color: #fff; padding: 0.4rem 1.1rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-card .price { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 800; margin: 0.75rem 0; background: linear-gradient(135deg, #4fc3f7, #ffffff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-card .price span { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-dim); font-weight: 400; -webkit-text-fill-color: var(--text-dim); }
.pricing-card .period { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 1.5rem; }
.pf { list-style: none; text-align: left; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
.pf li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--text-secondary); }
.pf li svg { width: 16px; height: 16px; color: var(--bleu-light); flex-shrink: 0; }

/* ========== CHANNEL GRID ========== */
.ch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.875rem; }
.ch-item { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 14px; padding: 1.1rem 0.5rem; text-align: center; transition: var(--transition); cursor: default; }
.ch-item:hover { border-color: var(--bleu); background: #151b2a; transform: translateY(-4px); }
.ch-item svg { width: 28px; height: 28px; margin: 0 auto 0.4rem; color: var(--bleu-light); }
.ch-item p { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }

/* ========== FAQ ========== */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 16px; margin-bottom: 0.875rem; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--border-active); }
.faq-q { padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: var(--text-primary); font-size: 0.92rem; gap: 1rem; }
.faq-q .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(0, 85, 164, 0.1); display: flex; align-items: center; justify-content: center; color: #4fc3f7; font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--bleu); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-a { max-height: 600px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.88rem; line-height: 1.75; color: var(--text-secondary); }

/* ========== CTA ========== */
.cta-box { background: linear-gradient(135deg, rgba(0, 85, 164, 0.08), rgba(239, 65, 53, 0.04)); border: 1px solid var(--border-active); border-radius: 28px; padding: 4rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0, 85, 164, 0.15), transparent 70%); pointer-events: none; }
.cta-box h2 { margin-bottom: 0.75rem; position: relative; }
.cta-box > p { max-width: 520px; margin: 0 auto 2rem; color: var(--text-secondary); font-size: 1.05rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ========== TABLES ========== */
.twrap { overflow-x: auto; margin: 1.5rem 0; border-radius: 16px; border: 1px solid var(--border-subtle); }
table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
th { background: var(--bg-elevated); padding: 1rem 1.25rem; text-align: left; font-weight: 600; color: var(--text-primary); border-bottom: 2px solid var(--bleu); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
td { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0, 85, 164, 0.03); }
.td-check { color: #4fc3f7; font-weight: 700; }
.td-cross { color: var(--rouge); }

/* ========== STEPS ========== */
.step-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { width: 44px; height: 44px; border-radius: 14px; background: var(--gradient-french); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ========== TESTIMONIALS ========== */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.t-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 1.75rem; transition: var(--transition); }
.t-card:hover { border-color: var(--border-active); transform: translateY(-4px); }
.t-card .stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 0.75rem; }
.t-card p { font-style: italic; color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.t-card .name { font-size: 0.8rem; color: var(--text-dim); font-weight: 600; }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 100px 0 30px; background: var(--bg-surface); border-bottom: 1px solid var(--border-subtle); }
.breadcrumb ol { list-style: none; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.82rem; color: var(--text-dim); }
.breadcrumb li a { color: var(--text-secondary); }
.breadcrumb li::after { content: '>'; margin-left: 0.5rem; color: var(--text-dim); }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb li:last-child { color: #4fc3f7; }

/* ========== CONTENT PAGES ========== */
.page-header { padding: 30px 0 60px; text-align: center; max-width: 720px; margin: 0 auto; }
.page-header h1 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { font-size: 1.1rem; color: var(--text-secondary); }
.content-page { padding: 30px 0 80px; }
.content-page h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; letter-spacing: -0.3px; }
.content-page h3 { margin: 2rem 0 0.75rem; font-size: 1.2rem; color: #4fc3f7; }
.content-page p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.8; }
.content-page ul, .content-page ol { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-secondary); }
.content-page li { margin-bottom: 0.5rem; line-height: 1.7; }
.content-page strong { color: var(--text-primary); font-weight: 600; }

/* ========== CITY GRID ========== */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.city-card { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 18px; padding: 1.75rem; text-align: center; transition: var(--transition); }
.city-card:hover { border-color: var(--bleu); transform: translateY(-5px); box-shadow: var(--shadow-bleu); }
.city-card h3 { margin-bottom: 0.25rem; font-size: 1.1rem; }
.city-card h3 a { color: var(--text-primary); }
.city-card h3 a:hover { color: #4fc3f7; }
.city-card p { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1rem; }

/* ========== FOOTER ========== */
.footer { background: var(--bg-surface); border-top: 1px solid var(--border-subtle); padding: 60px 0 30px; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.f-brand p { margin: 1rem 0; font-size: 0.88rem; color: var(--text-dim); max-width: 300px; }
.f-brand .wa-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--wa); color: #fff; border-radius: 12px; font-weight: 600; font-size: 0.85rem; transition: var(--transition); }
.f-brand .wa-btn:hover { background: var(--wa-dark); color: #fff; transform: translateY(-2px); }
.footer h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1.5px; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.f-links a { color: var(--text-dim); font-size: 0.82rem; transition: var(--transition); }
.f-links a:hover { color: #4fc3f7; }
.f-bottom { border-top: 1px solid var(--border-subtle); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.f-bottom p { font-size: 0.75rem; color: var(--text-dim); }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========== MOBILE MENU ========== */
.m-menu { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: rgba(7, 10, 18, 0.98); backdrop-filter: blur(30px); z-index: 998; padding: 2rem; display: none; flex-direction: column; gap: 0.5rem; }
.m-menu.active { display: flex; }
.m-menu a { color: var(--text-primary); font-size: 1.2rem; font-weight: 600; padding: 0.75rem 0; border-bottom: 1px solid var(--border-subtle); }
.m-menu a:hover { color: #4fc3f7; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .feature-row { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row.reverse > *:first-child { order: 0; }
  .feature-row.reverse > *:last-child { order: 0; }
  .f-grid { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-floating-card { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: scale(1) translateY(-10px); }
  .ch-grid { grid-template-columns: repeat(3, 1fr); }
  .f-grid { grid-template-columns: 1fr; gap: 2rem; }
  .f-bottom { flex-direction: column; text-align: center; }
  .t-grid { grid-template-columns: 1fr; }
  .cta-box { border-radius: 20px; padding: 2.5rem 1.25rem; }
  .step { flex-direction: column; gap: 1rem; }
  .wa-float { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
