/* =================================================
   Pack Électricien Pro — Landing CSS
   ================================================= */

:root {
  --bg: #ffffff;
  --bg-dark: #0b1220;
  --bg-soft: #f6f8fb;
  --text: #0b1220;
  --text-muted: #4a5568;
  --text-light: #cbd5e0;
  --primary: #f59e0b;        /* orange électricien — chaleureux, énergique */
  --primary-dark: #d97706;
  --accent: #1e40af;         /* bleu confiance */
  --green: #10b981;
  --red: #ef4444;
  --border: #e5e7eb;
  --border-dark: #1f2937;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(11,18,32,0.08);
  --shadow-lg: 0 20px 50px rgba(11,18,32,0.15);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, #0b1220 0%, #1a2547 100%);
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  border: 1px solid rgba(245,158,11,0.3);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.hl { color: var(--primary); }
.hl-strike { text-decoration: line-through; opacity: 0.6; }

.sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.cta-sub {
  font-size: 14px;
  color: var(--text-light);
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  font-size: 16px;
  color: white;
  max-width: 760px;
  text-align: left;
}
.hero-bullets li { padding-left: 4px; }
@media (max-width: 640px) {
  .hero-bullets { grid-template-columns: 1fr; }
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.5);
  text-decoration: none;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-xl {
  font-size: 20px;
  padding: 20px 40px;
  width: 100%;
  max-width: 480px;
  margin: 16px auto 0;
  display: block;
}
.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--bg-dark);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-dark);
  text-decoration: none;
  transition: all 0.15s;
}
.btn-secondary:hover {
  background: var(--bg-dark);
  color: white;
  text-decoration: none;
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
}
.section-dark {
  background: var(--bg-soft);
}
.section-deep {
  background: linear-gradient(135deg, #0b1220 0%, #1a2547 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-deep::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(245,158,11,0.08) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(30,64,175,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.section-deep > * {
  position: relative;
  z-index: 1;
}
.section-deep .section-title {
  color: white;
}
.section-deep .section-sub {
  color: var(--text-light);
}
.section-cta {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 18px;
}

/* ============ GRIDS ============ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.card p {
  color: var(--text-muted);
  margin: 0;
}

/* ============ PACK GRID ============ */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 920px) {
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pack-grid { grid-template-columns: 1fr; }
}
.pack-item {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: border-color 0.15s, transform 0.15s;
}
.pack-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}
.pack-tag {
  display: inline-block;
  background: var(--bg-dark);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.pack-item h3 {
  font-size: 22px;
  margin: 0 0 16px;
  font-weight: 700;
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.pack-item ul {
  padding-left: 20px;
  margin: 0 0 16px;
  color: var(--text);
}
.pack-item ul li { margin-bottom: 6px; }
.pack-meta {
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* ============ PREVIEWS ============ */
.preview-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.preview-row img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: white;
}

/* ============ DEMO GIF + TEXTE ============ */
.demo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 40px 0 60px;
}
.demo-frame {
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11, 18, 32, 0.25);
  background: #0B2545;
  padding: 8px;
}
.demo-frame img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.demo-eyebrow {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.demo-text h3 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}
.demo-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.demo-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.demo-bullets li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  font-size: 15.5px;
}
.demo-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}
.demo-bullets code {
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary-dark);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
}

@media (max-width: 800px) {
  .demo-row { grid-template-columns: 1fr; gap: 32px; }
  .demo-text h3 { font-size: 26px; }
}

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.feature-shot {
  margin: 0;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0B2545;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(11, 18, 32, 0.2);
}
.feature-shot img {
  width: 100%;
  display: block;
}
.feature-shot figcaption {
  padding: 14px 20px;
  background: #0B2545;
  color: white;
  font-size: 14.5px;
  font-weight: 500;
  border-top: 2px solid var(--primary);
}

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============ BONUS SECTION ============ */
.bonus-header {
  text-align: center;
  margin-bottom: 40px;
}
.bonus-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.bonus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}
.bonus-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.bonus-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.bonus-card h3 {
  color: white;
  font-size: 19px;
  margin: 0 0 12px;
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.bonus-card p {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.bonus-meta {
  display: inline-block;
  background: rgba(245, 158, 11, 0.18);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

@media (max-width: 800px) {
  .bonus-grid { grid-template-columns: 1fr; }
}

/* ============ BUNDLE TRISKELL OUTILS PRO ============ */
.bundle-section { padding: 100px 0; }
.bundle-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.bundle-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}
.bundle-title {
  color: white;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.bundle-lead {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 560px;
}
.bundle-value-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.4);
  padding: 10px 18px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.bundle-price-old {
  color: var(--text-light);
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-color: rgba(245,158,11,0.6);
}
.bundle-price-new {
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
}
.bundle-calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.bundle-trade {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
}
.bundle-trade-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 6px;
}
.bundle-trade ul { list-style: none; padding: 0; margin: 0; }
.bundle-trade ul li {
  color: white;
  font-size: 14px;
  padding: 3px 0 3px 16px;
  position: relative;
}
.bundle-trade ul li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}
.bundle-universal {
  background: rgba(16,185,129,0.08);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin-bottom: 28px;
}
.bundle-universal-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.bundle-universal-sub {
  font-size: 13.5px;
  color: var(--text-light);
  margin: 0 0 8px;
}
.bundle-universal ul { list-style: none; padding: 0; margin: 0; }
.bundle-universal ul li {
  color: white;
  font-size: 14px;
  padding: 4px 0 4px 18px;
  position: relative;
}
.bundle-universal ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--green);
  font-weight: 800;
}
.bundle-cta {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.bundle-cta:hover {
  background: var(--primary);
  color: var(--bg-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Phone mockup */
.bundle-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.bundle-phone {
  width: 320px;
  height: 640px;
  background: #0a0a0a;
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.5),
    0 60px 120px rgba(245,158,11,0.15);
  position: relative;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}
.bundle-phone:hover { transform: rotate(0deg); }
.bundle-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.bundle-phone-screen {
  background: #f6f8fb;
  border-radius: 30px;
  height: 100%;
  padding: 36px 16px 16px;
  overflow: hidden;
}
.bundle-phone-screen--img {
  padding: 0;
  background: #fff;
  position: relative;
}
.bundle-phone-screen--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.bphone-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.bphone-app-name { font-size: 13px; font-weight: 700; color: var(--bg-dark); }
.bphone-pro-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}
.bphone-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.bphone-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.bphone-input { display: flex; align-items: baseline; gap: 6px; }
.bphone-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--bg-dark);
  font-variant-numeric: tabular-nums;
}
.bphone-suffix { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.bphone-pills { display: flex; gap: 4px; margin-top: 4px; }
.bphone-pill {
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--text-muted);
  font-weight: 600;
  flex: 1;
  text-align: center;
}
.bphone-pill--active { background: var(--bg-dark); color: var(--primary); }
.bphone-divider { height: 1px; background: #e5e7eb; margin: 14px 0 10px; }
.bphone-result-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.bphone-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
}
.bphone-result {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.bphone-result span { font-size: 11px; color: var(--text-muted); }
.bphone-result strong {
  font-size: 18px;
  color: var(--bg-dark);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.bundle-phone-stamp {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(245,158,11,0.4);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

@media (max-width: 920px) {
  .bundle-grid { grid-template-columns: 1fr; gap: 50px; }
  .bundle-phone-wrap { order: -1; }
}
@media (max-width: 540px) {
  .bundle-calc-grid { grid-template-columns: 1fr; }
  .bundle-phone { transform: rotate(0); }
}

/* ============ BENEFITS ============ */
.benefits {
  display: grid;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.benefit {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.benefit-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 24px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit h3 {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 700;
}
.benefit p {
  margin: 0;
  color: var(--text-muted);
}

/* ============ POUR QUI ============ */
.card-list {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.card-list.yes { border-color: var(--green); }
.card-list.no { border-color: var(--red); }
.card-list h3 {
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: 700;
}
.card-list ul {
  padding-left: 20px;
  margin: 0;
  color: var(--text-muted);
}
.card-list ul li { margin-bottom: 8px; }

/* ============ OFFER BOX ============ */
.offer-box {
  background: white;
  border: 2px solid var(--bg-dark);
  border-radius: var(--radius);
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.offer-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg-dark);
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.offer-box h2 {
  font-size: 32px;
  margin: 8px 0 24px;
  font-weight: 800;
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.price-old {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-new {
  font-size: 56px;
  font-weight: 800;
  color: var(--bg-dark);
  letter-spacing: -0.02em;
}
.price-tag {
  display: block;
  width: 100%;
  font-size: 13px;
  color: var(--text-muted);
}
.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: inline-block;
}
.offer-list li { margin-bottom: 10px; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
}
.consent input { margin-top: 4px; flex-shrink: 0; }
.consent strong { color: var(--text); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============ TRUST BADGES ============ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
.trust-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Variante hero (fond foncé) */
.trust-badges--hero {
  margin-top: 28px;
  margin-bottom: 36px;
}
.trust-badges--hero .trust-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,158,11,0.25);
  color: #f3f4f6;
  backdrop-filter: blur(4px);
}
.trust-badges--hero .trust-badge svg {
  color: var(--primary);
}

/* Variante offer (fond clair) */
.trust-badges--offer {
  margin-top: 24px;
}
.trust-badges--offer .trust-badge {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
}
.trust-badges--offer .trust-badge svg {
  color: var(--green);
}

@media (max-width: 720px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badge {
    white-space: normal;
    justify-content: flex-start;
  }
}
@media (max-width: 380px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }
}

.error-msg {
  margin-top: 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

/* ============ FAQ ============ */
.faq details {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--primary);
  font-weight: 700;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin: 12px 0 0;
  color: var(--text-muted);
}

/* ============ CROSS PROMO TRISKELL ============ */
/* Couleurs reprises du site triskell-studio.fr */
.cross-promo {
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(99,102,241,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(139,92,246,0.20) 0%, transparent 60%),
    #08080F;
  color: #E2E8F0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cross-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cross-promo .container { position: relative; z-index: 1; }
.cross-promo h2 {
  font-size: 32px;
  margin: 0 0 16px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #6366F1 60%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cross-promo p {
  color: rgba(226,232,240,0.85);
  max-width: 580px;
  margin: 0 auto 16px;
}
.cross-promo strong { color: white; }
.cross-promo .btn-secondary {
  margin-top: 24px;
  background: #6366F1;
  color: white;
  border: none;
  padding: 16px 32px;
  font-weight: 700;
  box-shadow: 0 0 40px rgba(99,102,241,0.45), 0 4px 14px rgba(99,102,241,0.35);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.cross-promo .btn-secondary:hover {
  background: #4F46E5;
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(99,102,241,0.6), 0 8px 24px rgba(99,102,241,0.5);
  color: white;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid strong { color: white; font-size: 18px; }
.footer-grid a { color: var(--text-light); }
.footer-grid a:hover { color: var(--primary); text-decoration: none; }
.footer-grid .muted { color: #6b7280; font-size: 14px; margin: 0; }
.copyright {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  margin: 0;
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 60px 0;
  max-width: 760px;
}
.legal-page h1 {
  font-size: 32px;
  margin: 0 0 8px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  font-weight: 700;
}
.legal-page p, .legal-page li {
  color: var(--text);
  line-height: 1.7;
}
.legal-page .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal-page .back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
}

/* ============ SUCCESS / CANCEL ============ */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  padding: 40px 24px;
}
.status-card {
  background: white;
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 560px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.status-icon {
  font-size: 64px;
  margin-bottom: 16px;
}
.status-card h1 {
  font-size: 28px;
  margin: 0 0 16px;
  font-weight: 800;
}
.status-card p {
  color: var(--text-muted);
  margin: 0 0 16px;
}
.status-card .order-ref {
  background: var(--bg-soft);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: ui-monospace, monospace;
  font-size: 13px;
  margin: 24px 0;
  word-break: break-all;
}

/* ============ HERO BG GRID ============ */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(245,158,11,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* Bouton avec reflet animé */
.btn-shine {
  position: relative;
  overflow: hidden;
}
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { left: -100%; }
  100%    { left: 100%; }
}

/* ============ STATS BELT ============ */
.stats-belt {
  background: var(--bg-dark);
  border-top: 1px solid rgba(245,158,11,0.2);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  padding: 24px 0;
  color: white;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
}
.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stat-num { font-size: 26px; }
}

/* ============ TÉMOIGNAGES ============ */
.testimonials { background: linear-gradient(180deg, white 0%, var(--bg-soft) 100%); }
.rating-strip {
  text-align: center;
  margin-bottom: 8px;
}
.rating-strip .stars {
  color: var(--primary);
  font-size: 22px;
  letter-spacing: 4px;
}
.rating-strip .rating-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 4px;
  right: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars {
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}
.testimonial figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial figcaption strong { display: block; font-size: 15px; }
.testimonial figcaption .meta { font-size: 13px; color: var(--text-muted); }
.testimonial-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
  background: #fffbeb;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px dashed #fcd34d;
}

/* ============ AVANT / APRÈS ============ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.ba-col {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.ba-col.ba-before { border-color: rgba(239,68,68,0.3); }
.ba-col.ba-after  { border-color: rgba(16,185,129,0.4); background: linear-gradient(180deg, white 0%, #f0fdf4 100%); }
.ba-tag {
  display: inline-block;
  background: #fee2e2;
  color: #991b1b;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.ba-tag-after {
  background: #d1fae5;
  color: #065f46;
}
.ba-col ul { list-style: none; padding: 0; margin: 0; }
.ba-col li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  align-items: baseline;
}
.ba-col li:last-child { border-bottom: none; }
.ba-time {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ba-after .ba-time { color: var(--green); }
.ba-arrow {
  font-size: 36px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  animation: bounce-x 2s ease-in-out infinite;
}
@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}
@media (max-width: 760px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 8px 0; }
  @keyframes bounce-x {
    0%, 100% { transform: rotate(90deg) translateX(0); }
    50%      { transform: rotate(90deg) translateX(8px); }
  }
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(11,18,32,0.08);
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-muted);
}
.sticky-cta-text strong { color: var(--text); font-size: 15px; }
.sticky-cta-text b { color: var(--bg-dark); font-size: 17px; }
.sticky-cta-text s { color: var(--text-muted); }
.sticky-cta-btn {
  padding: 12px 20px;
  font-size: 15px;
  white-space: nowrap;
}
@media (min-width: 760px) {
  .sticky-cta { display: none; }
}

/* ============ TOASTS / SOCIAL PROOF ============ */
.toast-zone {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
  pointer-events: none;
}
.toast {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  pointer-events: auto;
  animation: toast-in 0.4s ease-out, toast-out 0.4s ease-in 5.6s forwards;
}
.toast-emoji { font-size: 22px; }
.toast-text strong { display: block; color: var(--text); font-size: 14px; }
.toast-text span { color: var(--text-muted); }
.toast-text time { display: block; font-size: 11px; color: #9ca3af; margin-top: 2px; }
@keyframes toast-in {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes toast-out {
  to { transform: translateX(-120%); opacity: 0; }
}
@media (max-width: 640px) {
  .toast-zone { left: 12px; right: 12px; bottom: 84px; max-width: none; }
}

/* ============ SCROLL REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot, .btn-shine::after, .ba-arrow { animation: none; }
}

/* ============ MOBILE ============ */
@media (max-width: 640px) {
  .hero { padding: 60px 0 70px; }
  .section { padding: 60px 0; }
  .offer-box { padding: 36px 24px; }
  .price-new { font-size: 44px; }
  .benefit { gap: 16px; }
  .benefit-num { width: 44px; height: 44px; font-size: 20px; }
  .btn-xl { padding: 16px 24px; font-size: 17px; }
  body { padding-bottom: 72px; } /* espace pour la sticky CTA */
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease-out, visibility 0s linear 0s;
}

.lightbox-content {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.25s ease-out;
}
.lightbox.is-open .lightbox-content { transform: scale(1); }

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: white;
}

.lightbox-content figcaption {
  color: white;
  font-size: 15px;
  text-align: center;
  max-width: 720px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
}
.lightbox-content figcaption:empty { display: none; }

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  font-family: inherit;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 26px;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 32px;
}
.lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-nav[hidden] { display: none; }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox-content img { max-height: 70vh; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-content { transition: none; }
}
