/* ============================================================
   CHRS IPTV — Premium streaming dark theme
   Palette stricte : #020610 / #07101F / #1A2332 / #FF6A1A
   ============================================================ */

:root{
  /* === Backgrounds (uniformes partout) === */
  --bg:           #020610;        /* fond principal — partout */
  --surface:      #07101F;        /* cartes / blocs */
  --surface-2:    #0B1626;        /* hover très subtil */

  /* === Borders === */
  --line:         #1A2332;
  --line-2:       #232E40;
  --line-orange:  rgba(255,106,26,.35);

  /* === Text === */
  --ink:          #F5F7FA;        /* texte principal */
  --muted:        #9CA3AF;        /* texte secondaire */
  --muted-2:      #6B7280;

  /* === Brand (orange unique — partout) === */
  --primary:      #FF6A1A;
  --primary-hover:#FF7F3A;
  --primary-soft: rgba(255,106,26,.10);
  --primary-glow: rgba(255,106,26,.35);

  --green:        #22D08A;

  --radius:       16px;
  --radius-lg:    20px;
  --radius-xl:    24px;
  --radius-pill:  999px;

  --t:            .25s cubic-bezier(.4,0,.2,1);
  --max:          1280px;
  --gutter:       28px;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif:   'Instrument Serif', 'Times New Roman', serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
button{ font:inherit; background:none; border:none; cursor:pointer; color:inherit; }

/* Italic serif uniquement pour les sous-titres orange en H2 */
em{
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--primary);
  letter-spacing: -.005em;
}
strong{ font-weight: 700; color: inherit; }
.o{ color: var(--primary); font-weight: 600; }

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .94rem;
  letter-spacing: -.01em;
  transition: transform .15s ease, background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn svg{ width:18px; height:18px; }
.btn-lg{ padding: 1rem 1.7rem; font-size: 1rem; }
.btn-block{ width:100%; }

.btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 8px 24px -8px var(--primary-glow),
    inset 0 -2px 0 rgba(0,0,0,.18);
}
.btn-primary:hover{
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px -8px var(--primary-glow),
    inset 0 -2px 0 rgba(0,0,0,.18);
}

.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--primary);
}
.btn-outline:hover{
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover{
  border-color: var(--ink);
  background: rgba(245,247,250,.04);
}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(2,6,16,.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.scrolled{
  border-color: var(--line);
  background: rgba(2,6,16,.92);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.1rem var(--gutter);
  gap: 1.5rem;
  max-width: var(--max); margin: 0 auto;
}
.brand{
  display:flex; align-items:center; gap:.7rem;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em;
  color: var(--ink);
}
.brand-logo{
  height: 32px;
  width: auto;
  display: block;
}
.brand-mark{
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--primary);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px -6px var(--primary-glow);
}
.brand-mark svg{ width: 18px; height: 18px; fill: #fff; }
.brand-name{ color: var(--ink); }
.brand-name em{
  color: var(--primary);
  margin-left: 4px;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 800;
}

.nav-links{ display:flex; align-items:center; gap: .25rem; }
.nav-links a{
  position: relative;
  padding: .65rem 1rem;
  font-size: .94rem; font-weight: 500;
  color: var(--muted);
  transition: color var(--t);
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a.active{ color: var(--primary); }
.nav-links a.active::after{
  content:""; position: absolute; left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-burger{ display: none; padding: .5rem; color: var(--ink); }
.nav-burger svg{ width: 24px; height: 24px; }

.mobile-menu{
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem var(--gutter) 1.4rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  padding: .85rem 1rem; border-radius: 12px; font-weight: 500;
  color: var(--ink);
}
.mobile-menu a:hover{ background: var(--surface); }
.mobile-menu .btn{ margin-top: .5rem; justify-content: center; }

/* ============================================================
   HERO — minimal, centré
   ============================================================ */
.hero{
  padding: 7rem 0 8rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Glow orange diffus derrière le texte */
.hero::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% 40%, rgba(255,106,26,.16), transparent 60%),
    radial-gradient(ellipse 700px 400px at 50% 80%, rgba(255,106,26,.05), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner{
  position: relative; z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.8rem;
}
.eyebrow-dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(255,106,26,.18);
  animation: pulse 2s infinite;
}

.hero-title{
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.6rem;
  color: var(--ink);
}
.hero-title-orange{
  display: block;
  color: var(--primary);
}
.hero-sub{
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}

.hero-cta{
  display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center;
}

/* Legacy classes — conservés au cas où */
.hero-trust{ display: flex; align-items: center; gap: 1rem; }
.trust-avatars{ display: flex; }
.trust-avatars .ta{ margin-left: -10px; }
.trust-avatars .ta:first-child{ margin-left: 0; }
.ta{
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: .82rem;
  color: #fff;
  border: 3px solid var(--bg);
}
.ta.a1{ background: linear-gradient(135deg,#E5484D,#FF8A8A); }
.ta.a2{ background: linear-gradient(135deg,#22D08A,#7FF2C0); }
.ta.a3{ background: linear-gradient(135deg,#5B6EE1,#A294F0); }
.ta.a4{ background: linear-gradient(135deg,#0B1626,#2A3548); color: var(--ink); border-color: var(--line); }
.trust-stars{
  display:flex; align-items:center; gap: 2px;
  font-size: .9rem; color: var(--ink); font-weight: 700;
}
.trust-stars svg{ width: 15px; height: 15px; fill: #F5B100; stroke: #F5B100; }
.trust-stars strong{ margin-left: .4rem; }
.trust-text span{ font-size: .82rem; color: var(--muted); display: block; margin-top: 2px; }

/* ---------- HERO RIGHT : Phone stage ---------- */
.hero-right{
  position: relative;
  display: grid; place-items: start center;
  min-height: 620px;
  padding-top: 0;
}
.phone-stage{
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 680px;
  display: grid; place-items: center;
}

/* Glow orange derrière le phone — diffus & propre */
.phone-glow{
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle,
    rgba(255,106,26,.26) 0%,
    rgba(255,106,26,.12) 25%,
    rgba(255,106,26,.04) 45%,
    transparent 70%);
  filter: blur(45px);
  opacity: .85;
  z-index: 0;
}

/* Dotted lines */
.phone-lines{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.phone-lines path{
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  opacity: .55;
}

/* Phone image (PNG with frame baked in) */
.phone-img{
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)) drop-shadow(0 0 40px rgba(255,106,26,.18));
}

/* Phone (legacy CSS — gardé au cas où) */
.phone{
  position: relative;
  z-index: 3;
  width: 240px;
  height: 480px;
  background: #000;
  border-radius: 38px;
  padding: 10px;
  border: 1.5px solid var(--line);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,.6),
    0 0 60px -10px rgba(255,106,26,.18);
}
.phone-notch{
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 4;
}
.phone-screen{
  width: 100%; height: 100%;
  background: var(--surface);
  border-radius: 28px;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--ink);
}
.ps-status{
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 4px;
  font-size: 10px; font-weight: 600;
}
.ps-status-r{ display: flex; gap: 4px; }
.ps-status-r svg{ width: 11px; height: 11px; }

.ps-head{
  padding: 10px 18px 12px;
}
.ps-head h4{
  font-size: 16px; font-weight: 700; letter-spacing: -.02em;
}
.ps-head p{
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.35;
}

.ps-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 14px;
  flex: 1;
}
.ps-card{
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-height: 60px;
}
.ps-flag{
  width: 22px; height: 16px;
  border-radius: 3px;
  display: block;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.ps-card strong{ font-size: 10px; font-weight: 700; color: var(--ink); }
.ps-card span{ font-size: 8px; color: var(--muted); }

/* Mini drapeaux CSS */
.fl-fr{ background: linear-gradient(90deg,#0055A4 0 33%, #fff 33% 66%, #EF4135 66% 100%); }
.fl-es{ background: linear-gradient(180deg,#AA151B 0 25%, #F1BF00 25% 75%, #AA151B 75% 100%); }
.fl-pt{ background: linear-gradient(90deg,#046A38 0 40%, #DA291C 40% 100%); }
.fl-it{ background: linear-gradient(90deg,#009246 0 33%, #fff 33% 66%, #CE2B37 66% 100%); }
.fl-de{ background: linear-gradient(180deg,#000 0 33%, #DD0000 33% 66%, #FFCE00 66% 100%); }
.fl-gb{
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), #fff calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), #fff calc(50% - 1px) calc(50% + 1px), transparent calc(50% + 1px)),
    #012169;
}

.ps-nav{
  display: flex; justify-content: space-around;
  padding: 8px 6px 12px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.ps-nav span{
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 8px;
  color: var(--muted-2);
}
.ps-nav span.active{ color: var(--primary); }
.ps-nav svg{ width: 13px; height: 13px; }

/* Bubbles autour du phone */
.bubble{
  position: absolute;
  z-index: 4;
  display: flex; align-items: center; gap: .65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .75rem .9rem;
  min-width: 165px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.5);
}
.bubble-tl{ top: 8%;  left: 0%; }
.bubble-tr{ top: 8%;  right: 0%; }
.bubble-bl{ bottom: 14%; left: 0%; }
.bubble-br{ bottom: 14%; right: 0%; }

.bubble-ic{
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid rgba(255,106,26,.25);
}
.bubble-ic svg{ width: 18px; height: 18px; stroke-width: 1.8; }
.bubble strong{ display: block; font-size: .85rem; font-weight: 700; color: var(--ink); }
.bubble p{ font-size: .72rem; color: var(--muted); margin-top: 1px; }

@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 4px rgba(255,106,26,.18); }
  50%   { box-shadow: 0 0 0 7px rgba(255,106,26,.05); }
}

/* ============================================================
   SECTIONS — espacements uniformes
   ============================================================ */
.section{ padding: 6rem 0; position: relative; }
.section--pricing{ padding-bottom: 7rem; }

.section--app{
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}
/* Ambient orange orbs behind the section, very subtle (like hero) */
.section--app::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 85% 35%, rgba(255,106,26,.10), transparent 60%),
    radial-gradient(ellipse 600px 400px at 75% 75%, rgba(255,106,26,.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.section--app .container{ position: relative; z-index: 1; }

/* ============================================================
   APPLICATION SECTION
   ============================================================ */
.app-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.app-left{ max-width: 620px; }

.app-title{
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 1.6rem 0 1.4rem;
}
.app-title-orange{
  display: block;
  color: var(--primary);
  margin-top: .25rem;
}
.app-sub{
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2rem;
}

.app-cta{
  display: flex; gap: .7rem; flex-wrap: wrap;
  margin-bottom: .7rem;
}
.app-cta-note{
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

/* Install card */
.install-card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem;
  margin-bottom: 1rem;
}
.install-title{
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.1rem;
  letter-spacing: -.015em;
}
.install-steps{
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
}
.install-steps li{
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.5;
}
.install-steps li > span:not(.step-num){ flex: 1; }
.step-num{
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid var(--line-orange);
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
  margin-top: 1px;
}
.o-soft{
  color: var(--primary);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .88rem;
}

/* Info card — compact */
.info-card{
  display: flex; align-items: flex-start; gap: .8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--primary);
  border-radius: 14px;
  padding: .9rem 1.1rem;
}
.info-ic{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid rgba(255,106,26,.18);
  margin-top: 1px;
}
.info-ic svg{ width: 16px; height: 16px; stroke-width: 1.8; }
.info-card strong{
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .2rem;
}
.info-card p{
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Right column phone — same premium treatment as hero */
.app-right{
  position: relative;
  display: grid; place-items: center;
  min-height: 720px;
}
.app-right{ justify-self: end; width: 100%; }
.app-right .phone-stage{
  height: 820px;
  max-width: 580px;
  width: 100%;
}
.app-right .phone-img{
  max-width: 100%;
  width: 100%;
  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,.6))
    drop-shadow(0 0 60px rgba(255,106,26,.35));
}
.app-right .phone-glow{
  width: 720px; height: 720px;
  background: radial-gradient(circle,
    rgba(255,106,26,.55) 0%,
    rgba(255,106,26,.30) 22%,
    rgba(255,106,26,.12) 42%,
    rgba(255,106,26,.04) 60%,
    transparent 75%);
  filter: blur(55px);
  opacity: 1;
}

/* Mini features bottom row */
.app-mini{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.mini-item{
  display: flex; align-items: center; gap: .85rem;
  padding: .6rem .2rem;
}
.mini-ic{
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid rgba(255,106,26,.18);
}
.mini-ic svg{ width: 20px; height: 20px; stroke-width: 1.8; }
.mini-item strong{ display: block; font-size: .92rem; font-weight: 700; color: var(--ink); }
.mini-item p{ font-size: .8rem; color: var(--muted); margin-top: .1rem; }

.section-head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}
.kicker{
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-head h2{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--ink);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feat-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.feat{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem;
  display: flex; gap: 1.1rem;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.feat:hover{
  transform: translateY(-2px);
  border-color: var(--line-orange);
  background: var(--surface-2);
}
.feat-ic{
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid rgba(255,106,26,.18);
}
.feat-ic svg{ width: 22px; height: 22px; stroke-width: 1.8; }
.feat h3{
  font-size: 1.05rem; font-weight: 600;
  margin-bottom: .4rem;
  letter-spacing: -.012em;
  color: var(--ink);
}
.feat p{ color: var(--muted); font-size: .92rem; line-height: 1.55; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.price{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.8rem 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--t), border-color var(--t);
}
.price:hover{
  transform: translateY(-3px);
  border-color: var(--line-orange);
}
.price--best{
  border-color: var(--primary);
  background:
    linear-gradient(180deg, rgba(255,106,26,.06), transparent 40%),
    var(--surface);
  box-shadow:
    0 0 0 1px var(--primary),
    0 0 80px -20px var(--primary-glow);
}
.price--best:hover{
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px var(--primary),
    0 0 100px -15px var(--primary-glow);
}

.price-best{
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1.1rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 8px 24px -6px var(--primary-glow);
  white-space: nowrap;
}
.price-best svg{ width: 14px; height: 14px; fill: #fff; }

.price-row{ display:flex; align-items:center; justify-content:space-between; gap: .5rem; margin-bottom: .6rem; }
.price-kicker{
  font-size: .78rem; font-weight: 700;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em;
}
.price-badge{
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-orange);
  color: var(--primary);
  background: var(--primary-soft);
}
.price h3{
  font-size: 1.7rem; font-weight: 600; letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.price-amount{ display: flex; align-items: baseline; gap: .35rem; }
.price-amount .amount{
  font-size: 3rem; font-weight: 700; letter-spacing: -.04em;
  line-height: 1;
  color: var(--primary);
}
.price-amount .per{ color: var(--muted); font-size: .9rem; }
.price-mini{
  font-size: .85rem; color: var(--muted);
  margin: .55rem 0 0;
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
}
.price-mini strong{ color: var(--ink); font-weight: 700; }
.save-badge{
  display: inline-flex; align-items: center;
  padding: .2rem .55rem;
  background: var(--primary-soft);
  border: 1px solid var(--line-orange);
  color: var(--primary);
  border-radius: 6px;
  font-size: .72rem; font-weight: 700;
}

.price-chips{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin: 1.4rem 0;
  padding: .9rem .5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.price-chips span{
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  text-align: center;
  font-size: .68rem; line-height: 1.3;
  color: var(--muted);
  font-weight: 500;
}
.price-chips b{ color: var(--ink); font-weight: 600; display: block; }
.price-chips svg{ width: 16px; height: 16px; color: var(--primary); }

.price-feats{
  list-style: none;
  display: flex; flex-direction: column; gap: .7rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  flex: 1;
}
.price-feats li{
  display: flex; align-items: center; gap: .55rem;
  color: var(--ink);
}
.price-feats svg{
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--primary);
  stroke-width: 3;
}

/* Trust strip sous pricing */
.pricing-trust{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.5rem auto 0;
  padding: 1.3rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 1180px;
}
.pt-item{
  display: flex; align-items: center; gap: 1rem;
}
.pt-ic{
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid rgba(255,106,26,.18);
  flex-shrink: 0;
}
.pt-ic svg{ width: 20px; height: 20px; stroke-width: 1.8; }
.pt-item strong{ display: block; font-size: .95rem; font-weight: 600; color: var(--ink); }
.pt-item p{ font-size: .83rem; color: var(--muted); margin-top: .15rem; }

/* ============================================================
   COMPATIBILITÉ (SUPPORTS)
   ============================================================ */
.supports{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.support{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem;
  padding: 2.4rem 1rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  min-height: 230px;
  transition: transform var(--t), border-color var(--t);
}
.support:hover{
  transform: translateY(-3px);
  border-color: var(--line-orange);
}
.support-ic{
  width: 88px; height: 88px;
  border-radius: 18px;
  background: var(--bg);
  color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.support-ic svg{ width: 42px; height: 42px; stroke-width: 1.5; }
.support span:not(.support-ic){
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
}

/* ============================================================
   CONTACT (FINAL CTA)
   ============================================================ */
.cta{
  padding: 5rem 0 7rem;
  text-align: center;
  position: relative;
}
.cta::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,106,26,.06), transparent 60%);
  pointer-events: none;
}
.cta-inner{
  max-width: 760px; margin: 0 auto;
  position: relative;
}
.cta h2{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.cta p{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}
.cta-actions{
  display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{
  padding: 2.5rem 0 1.8rem;
  border-top: 1px solid var(--line);
}
.footer-inner{
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer-links{
  display: flex; align-items: center; gap: .8rem;
  flex-wrap: wrap;
}
.footer-links a{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .6rem 1rem;
  border-radius: var(--radius-pill);
  font-size: .94rem; font-weight: 500;
  color: var(--ink);
  transition: background var(--t), color var(--t);
}
.footer-links a:hover{ background: var(--surface); color: var(--primary); }
.footer-links svg{ width: 16px; height: 16px; }

.footer-sep{
  display: inline-block;
  width: 1px; height: 22px;
  background: var(--line);
}

.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.4rem;
  font-size: .88rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-status{
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .88rem;
  color: var(--ink);
}
.footer-status .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34,208,138,.18);
  animation: pulse-g 2.5s infinite;
}
.footer-status strong{ font-weight: 600; }
@keyframes pulse-g{
  0%,100%{ box-shadow: 0 0 0 4px rgba(34,208,138,.18); }
  50%   { box-shadow: 0 0 0 7px rgba(34,208,138,.04); }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal{
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.16,.84,.36,1);
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px){
  .feat-grid{ grid-template-columns: repeat(2,1fr); }
  .price-grid{ grid-template-columns: 1fr; max-width: 460px; }
  .price--best{ order: -1; }
  .supports{ grid-template-columns: repeat(3, 1fr); }
  .pricing-trust{ grid-template-columns: 1fr; gap: 1.2rem; padding: 1.5rem; }
  .app-grid{ grid-template-columns: 1fr; gap: 2.5rem; }
  .app-left{ max-width: 720px; margin: 0 auto; text-align: left; }
  .app-right{ min-height: 540px; }
  .app-mini{ grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}

@media (max-width: 900px){
  .nav-links{ display: none; }
  .nav-burger{ display: inline-flex; }
}

@media (max-width: 720px){
  .section{ padding: 4.5rem 0; }
  .section--pricing{ padding-bottom: 5rem; }
  .hero{ padding: 2rem 0 5rem; }
  .hero-cta{ flex-direction: column; align-items: stretch; }
  .hero-cta .btn{ width: 100%; }
  .hero-trust{ flex-direction: column; align-items: center; gap: .5rem; }
  .feat-grid{ grid-template-columns: 1fr; }
  .feat{ padding: 1.4rem; }
  .supports{ grid-template-columns: repeat(2, 1fr); }
  .support{ min-height: 180px; padding: 1.8rem 1rem 1.5rem; gap: 1.2rem; }
  .support-ic{ width: 72px; height: 72px; }
  .support-ic svg{ width: 36px; height: 36px; }
  .cta-actions{ flex-direction: column; }
  .cta-actions .btn{ width: 100%; }
  .footer-inner{ flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .price-chips span{ font-size: .62rem; }
  /* Hero phone — masquer bubbles externes pour gain de place */
  .phone-stage{ height: 520px; max-width: 360px; }
  .bubble{ min-width: 130px; padding: .55rem .7rem; }
  .bubble strong{ font-size: .75rem; }
  .bubble p{ font-size: .65rem; }
  .bubble-ic{ width: 30px; height: 30px; }
  .bubble-ic svg{ width: 15px; height: 15px; }
  .bubble-tl{ top: 4%; left: -5%; }
  .bubble-tr{ top: 4%; right: -5%; }
  .bubble-bl{ bottom: 8%; left: -5%; }
  .bubble-br{ bottom: 8%; right: -5%; }
  .app-mini{ grid-template-columns: 1fr 1fr; }
  .install-card, .info-card{ padding: 1.2rem; }
  .app-cta{ flex-direction: column; align-items: stretch; }
  .app-cta .btn{ width: 100%; }
}
