/* ================================================
   Landing Pages Teqitizi — Styles dédiés
   ================================================ */

/* ================================================
   MacBook Neo — Style Apple
   ================================================ */

.neo-page { font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif; color: #1d1d1f; }

/* HERO */
.neo-hero {
  background: #000;
  text-align: center;
  padding: 80px 20px 0;
  overflow: hidden;
  margin: -20px -20px 0;
}
.neo-hero-eyebrow {
  color: #6e6e73;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.neo-hero h1 {
  font-size: 4.5em;
  font-weight: 700;
  color: #f5f5f7;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.neo-hero-sub {
  font-size: 1.4em;
  color: #a1a1a6;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.4;
  font-weight: 400;
}
.neo-hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.neo-btn-blue {
  background: #0071e3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  display: inline-block;
  transition: background .2s;
}
.neo-btn-blue:hover { background: #0077ed; color: #fff; }
.neo-btn-ghost {
  background: transparent;
  color: #2997ff;
  padding: 14px 30px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  display: inline-block;
}

/* COULEURS HERO */
.neo-colors {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.neo-color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
.neo-color-silver { background: #e3e3e8; }
.neo-color-pink   { background: #f0bfbf; }
.neo-color-yellow { background: #f5e642; }
.neo-color-indigo { background: #4b5ea6; }

/* VISUEL PRODUIT */
.neo-product-visual {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 300px;
  background: linear-gradient(160deg, #1c1c1e 0%, #2c2c2e 100%);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.neo-product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.neo-product-screen {
  width: 85%;
  height: 80%;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5em;
}

/* PRIX STICKY */
.neo-price-bar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #d2d2d7;
  padding: 15px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.neo-price-bar-name { font-size: 1em; font-weight: 600; color: #1d1d1f; }
.neo-price-bar-price { font-size: 1em; color: #1d1d1f; }
.neo-price-bar-price strong { color: #e94560; }
.neo-price-bar a {
  background: #0071e3;
  color: #fff;
  padding: 10px 22px;
  border-radius: 980px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
}

/* SECTION COULEURS */
.neo-section-colors {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.neo-section-colors h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.neo-section-colors p { color: #6e6e73; font-size: 1.1em; margin-bottom: 40px; }
.neo-palette {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.neo-swatch {
  text-align: center;
  cursor: pointer;
}
.neo-swatch-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.neo-swatch-label { font-size: 0.8em; color: #6e6e73; font-weight: 500; }

/* SPECS SECTION */
.neo-section-specs {
  background: #f5f5f7;
  padding: 80px 20px;
}
.neo-section-specs h2 {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
}
.neo-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.neo-spec-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
}
.neo-spec-icon { font-size: 2.2em; margin-bottom: 15px; }
.neo-spec-title { font-size: 0.8em; font-weight: 600; color: #6e6e73; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.neo-spec-value { font-size: 1.3em; font-weight: 700; color: #1d1d1f; line-height: 1.2; }
.neo-spec-sub { font-size: 0.85em; color: #6e6e73; margin-top: 4px; }

/* DARK FEATURE SECTION */
.neo-section-dark {
  background: #000;
  padding: 80px 20px;
  text-align: center;
  color: #f5f5f7;
}
.neo-section-dark h2 {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.neo-section-dark .neo-sub { color: #6e6e73; font-size: 1.2em; max-width: 600px; margin: 0 auto 50px; }
.neo-features-dark {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}
.neo-feat {
  flex: 1;
  min-width: 180px;
  background: #1c1c1e;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: left;
}
.neo-feat-icon { font-size: 2em; margin-bottom: 15px; }
.neo-feat h3 { font-size: 1.1em; font-weight: 600; margin-bottom: 8px; color: #f5f5f7; }
.neo-feat p { font-size: 0.9em; color: #6e6e73; line-height: 1.5; margin: 0; }

/* ECO SECTION */
.neo-section-eco {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.neo-section-eco h2 {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}
.neo-section-eco p { color: #6e6e73; font-size: 1.1em; max-width: 600px; margin: 0 auto 40px; }
.neo-eco-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.neo-eco-stat { text-align: center; }
.neo-eco-number { font-size: 3em; font-weight: 700; color: #1d1d1f; }
.neo-eco-label { font-size: 0.9em; color: #6e6e73; max-width: 150px; margin: 5px auto 0; }

/* CTA TEQITIZI */
.neo-section-buy {
  background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
  padding: 80px 20px;
  text-align: center;
}
.neo-section-buy h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #f5f5f7;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.neo-section-buy p { color: #6e6e73; font-size: 1.1em; margin-bottom: 40px; }
.neo-buy-card {
  background: #1c1c1e;
  border: 1px solid #2c2c2e;
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
}
.neo-buy-card h3 { color: #f5f5f7; font-size: 1.4em; margin-bottom: 8px; }
.neo-buy-card .neo-buy-price { color: #e94560; font-size: 2em; font-weight: 700; margin: 15px 0; }
.neo-buy-card ul { list-style: none; padding: 0; margin: 0 0 25px; text-align: left; }
.neo-buy-card ul li { color: #6e6e73; font-size: 0.95em; padding: 6px 0; border-bottom: 1px solid #2c2c2e; }
.neo-buy-card ul li::before { content: '✓ '; color: #30d158; }
.neo-buy-card a {
  display: block;
  background: #0071e3;
  color: #fff;
  padding: 16px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .neo-hero h1 { font-size: 2.8em; }
  .neo-section-dark h2, .neo-section-specs h2, .neo-section-colors h2 { font-size: 1.9em; }
  .neo-price-bar { flex-direction: column; gap: 10px; }
}

/* HERO */
.lp-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 20px;
  text-align: center;
  margin: -20px -20px 50px;
  border-radius: 0 0 30px 30px;
}
.lp-hero-badge {
  color: #e94560;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.85em;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.lp-hero h1 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.lp-hero h1 span { color: #e94560; }
.lp-hero p {
  color: #aaa;
  font-size: 1.15em;
  max-width: 600px;
  margin: 0 auto 35px;
}
.lp-hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.lp-btn-primary {
  background: #e94560;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  display: inline-block;
}
.lp-btn-outline {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-block;
}
.lp-btn-dark {
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  padding: 13px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}

/* STATS */
.lp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
  text-align: center;
}
.lp-stat {
  flex: 1;
  min-width: 150px;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px 15px;
}
.lp-stat-number { font-size: 2.2em; font-weight: 800; color: #e94560; }
.lp-stat-label { color: #555; font-size: 0.9em; margin-top: 5px; }

/* SECTIONS */
.lp-section { margin-bottom: 60px; }
.lp-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.lp-brand-icon-apple {
  background: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  flex-shrink: 0;
}
.lp-brand-icon-samsung {
  background: linear-gradient(135deg, #1428a0, #0a14a0);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: 800;
  flex-shrink: 0;
}
.lp-section-title h2 { font-size: 1.8em; margin: 0; }
.lp-section-title p { color: #888; margin: 5px 0 0; font-size: 0.95em; }

/* GRILLE PRODUITS */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.lp-card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
}
.lp-card-featured { border: 2px solid #e94560; position: relative; }
.lp-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #e94560;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 700;
}
.lp-card-header-apple {
  background: linear-gradient(135deg, #f5f5f7, #e8e8ed);
  padding: 30px;
  text-align: center;
}
.lp-card-header-samsung {
  background: linear-gradient(135deg, #e8f0fe, #c2d4f8);
  padding: 30px;
  text-align: center;
}
.lp-card-icon { font-size: 3.5em; }
.lp-card-name { font-weight: 700; margin-top: 10px; }
.lp-card-body { padding: 20px; }
.lp-card-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9em;
  color: #555;
}
.lp-card-price { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
.lp-price { font-size: 1.4em; font-weight: 800; color: #e94560; }
.lp-price-old {
  background: #f0f0f0;
  color: #888;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8em;
  text-decoration: line-through;
}
.lp-center { text-align: center; margin-top: 25px; }

/* GRADES */
.lp-grades {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}
.lp-grades h2 { text-align: center; font-size: 1.7em; margin-bottom: 10px; }
.lp-grades-sub { text-align: center; color: #888; margin-bottom: 35px; }
.lp-grades-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.lp-grade {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
}
.lp-grade-a { border-top: 4px solid #ffd700; }
.lp-grade-b { border-top: 4px solid #c0c0c0; }
.lp-grade-c { border-top: 4px solid #cd7f32; }
.lp-grade-icon { font-size: 1.5em; margin-bottom: 10px; }
.lp-grade h3 { margin-bottom: 8px; }
.lp-grade p { color: #666; font-size: 0.9em; margin: 0; }

/* POURQUOI */
.lp-why-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.lp-why-item { flex: 1; min-width: 200px; display: flex; gap: 15px; align-items: flex-start; }
.lp-why-icon {
  background: #fff0f3;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  flex-shrink: 0;
}
.lp-why-item h4 { margin: 0 0 5px; }
.lp-why-item p { color: #666; font-size: 0.9em; margin: 0; }

/* FAQ */
.lp-faq { max-width: 750px; margin: 0 auto; }
.lp-faq details {
  margin-bottom: 12px;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px 20px;
}
.lp-faq summary { font-weight: 700; cursor: pointer; font-size: 1.05em; }
.lp-faq p { margin-top: 12px; color: #555; line-height: 1.6; }

/* CTA FINAL */
.lp-cta-final {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  border-radius: 20px;
  padding: 60px 30px;
  text-align: center;
  margin-bottom: 20px;
}
.lp-cta-final h2 { color: #fff; font-size: 2em; margin-bottom: 15px; }
.lp-cta-final p { color: #aaa; font-size: 1.1em; margin-bottom: 35px; }
.lp-cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .lp-hero h1 { font-size: 1.9em; }
  .lp-hero { padding: 50px 15px; margin: -15px -15px 40px; }
  .lp-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-stat { min-width: 120px; }
}
