/* ============================================================
   BLUEWAIVE — Landing Page Agents Vocaux IA
   Palette : navy #0d1e3a · CTA #1a73e8 · fond dégradé bleu clair
   ============================================================ */

/* ----- Variables ----- */
:root {
  --navy:        #0d1e3a;
  --navy-light:  #1e3256;
  --cta:         #2682B4;
  --cta-hover:   #1d6a9a;
  --cta-light:   #e4f1f8;
  --bg-start:    #dce8f7;
  --bg-end:      #f4f8ff;
  --white:       #ffffff;
  --text-body:   #2d3f5c;
  --text-muted:  #6b7fa3;
  --border:      #c2d4ee;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 8px rgba(13, 30, 58, 0.08);
  --shadow-md:   0 8px 32px rgba(13, 30, 58, 0.12);
  --shadow-lg:   0 20px 60px rgba(13, 30, 58, 0.16);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-width:   1140px;
}

/* ----- Reset ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: #E9E2CF;
  min-height: 100vh;
}

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

/* ----- Typographie globale ----- */
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 248, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 212, 238, 0.5);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.logo-img--small {
  height: 28px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--cta);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
}


/* ============================================================
   BOUTONS RÉUTILISABLES
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}

.btn-cta {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(38, 130, 180, 0.35);
}

.btn-cta:hover {
  background: var(--cta-hover);
  box-shadow: 0 6px 28px rgba(38, 130, 180, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  white-space: normal;
  text-align: center;
}


/* ============================================================
   HELPERS DE SECTION
   ============================================================ */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-inner--narrow {
  max-width: 680px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--cta-light);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}


/* ============================================================
   HÉRO
   ============================================================ */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-title .highlight {
  color: var(--cta);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Visual / animation micro */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 340px;
}

.wave-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--cta);
  opacity: 0.15;
  animation: pulse 3s ease-out infinite;
}

.wave-ring--1 { width: 200px; height: 200px; animation-delay: 0s; }
.wave-ring--2 { width: 290px; height: 290px; animation-delay: 0.7s; opacity: 0.09; }
.wave-ring--3 { width: 380px; height: 380px; animation-delay: 1.4s; opacity: 0.05; }

@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.2; }
  60%  { opacity: 0.12; }
  100% { transform: scale(1.05); opacity: 0; }
}

.mic-icon {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}


/* ============================================================
   SECTION DÉMO AUDIO
   ============================================================ */
.demo-audio {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demo-audio .section-inner {
  text-align: center;
}

.demo-audio .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.audio-player-card {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f1fd 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-sm);
}

.audio-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.audio-icon svg {
  width: 48px;
  height: 48px;
}

.audio-title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.audio-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.audio-element {
  width: 100%;
  border-radius: var(--radius-sm);
  accent-color: var(--cta);
  outline: none;
  margin-bottom: 1rem;
}

/* Style natif amélioré pour Chrome/Firefox */
.audio-element::-webkit-media-controls-panel {
  background: linear-gradient(90deg, var(--cta-light), #f4f8ff);
}

.audio-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.audio-hint code {
  background: rgba(26, 115, 232, 0.1);
  color: var(--cta);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.audio-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  background: var(--cta-light);
  color: var(--cta);
  font-size: 0.82rem;
  font-weight: 600;
}


/* ============================================================
   SECTION BÉNÉFICES
   ============================================================ */
.benefices .section-inner {
  text-align: center;
}

.benefices .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card--featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: transparent;
}

.card--featured .card-title,
.card--featured .card-text {
  color: var(--white);
}

.card--featured .card-text {
  opacity: 0.8;
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 52px;
  height: 52px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.card-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   SECTION CONTACT
   ============================================================ */
.contact {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.contact .section-title,
.contact .section-sub {
  text-align: center;
}

.contact .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  background: #f8fbff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(38, 130, 180, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d1e3a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn-cta {
  margin-top: 0.5rem;
}

.form-legal {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 3rem 1.5rem 2rem;
}

.footer-logo img {
  mix-blend-mode: screen;
  opacity: 0.9;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-copy a {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-copy a:hover {
  color: var(--white);
}


/* ============================================================
   HERO — RÉASSURANCE
   ============================================================ */
.hero-reassurance {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-reassurance::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}


/* ============================================================
   SECTION PROBLÈME
   ============================================================ */
.probleme {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  list-style: none;
  margin-bottom: 2.5rem;
}

.problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fafbff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.problem-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.problem-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.problem-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #f59e0b;
}

.problem-conclusion {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  font-style: italic;
  padding: 1.25rem 2rem;
  background: var(--cta-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--cta);
}


/* ============================================================
   SECTION SOLUTION
   ============================================================ */
.solution {
  background: linear-gradient(160deg, #f4f8ff 0%, var(--bg-end) 100%);
  border-bottom: 1px solid var(--border);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 140px;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cta);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.25);
}

.step-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--cta);
  opacity: 0.4;
  align-self: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}


/* ============================================================
   SECTION DÉMO — VIDEO PLACEHOLDER
   ============================================================ */
.video-placeholder {
  background: linear-gradient(135deg, #1a3a6e 0%, #1a73e8 100%);
  border-radius: var(--radius-lg);
  max-width: 580px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-placeholder:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.video-play-icon {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1;
}

.video-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.video-hint {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.55;
}


/* ============================================================
   SECTION POUR QUI
   ============================================================ */
.pour-qui {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pour-qui .section-inner {
  text-align: center;
}

.pour-qui .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.profile-tag {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.pour-qui-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}


/* ============================================================
   FOOTER ÉLARGI
   ============================================================ */
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
  width: 100%;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-name {
  font-family: 'Urbanist', var(--font);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  width: 100%;
  text-align: center;
}

.footer-bottom .footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom .footer-copy a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom .footer-copy a:hover {
  color: var(--white);
}


/* ============================================================
   CALCULATEUR ROI
   ============================================================ */
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions  { justify-content: center; }
  .hero-visual   { display: none; }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .roi-grid {
    grid-template-columns: 1fr;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin-bottom: 0;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-tagline { max-width: 100%; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .form-row { grid-template-columns: 1fr; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section-inner { padding: 3.5rem 1.25rem; }

  .audio-player-card { padding: 1.75rem 1.25rem; }
  .contact-form      { padding: 1.75rem 1.25rem; }

  .roi-calc .section-inner { padding: 2rem 1.25rem; }

  .footer-inner { flex-direction: column; text-align: center; }
}


/* ============================================================
   CRM CARD (hero visual)
   ============================================================ */
.crm-card {
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(26,115,232,0.15);
  width: 280px;
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  border: 1px solid rgba(26,115,232,0.1);
}

.crm-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f4ff;
}

.crm-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: #0d1e3a;
}

.crm-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
}

.crm-card__badge--tiede {
  background: #fff0e0;
  color: #e07000;
}

.crm-card__badge--chaud {
  background: #ffe0e0;
  color: #e03000;
}

.crm-card__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.crm-card__label {
  color: #888;
  min-width: 90px;
  font-size: 0.78rem;
}

.crm-card__tag {
  background: #e8f0fe;
  color: #1a73e8;
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
}

.crm-card__value {
  color: #0d1e3a;
  font-weight: 500;
  font-size: 0.78rem;
}

.crm-card__resume {
  margin-top: 0.75rem;
  padding: 0.6rem;
  background: #f8faff;
  border-radius: 8px;
  color: #444;
  font-size: 0.78rem;
  line-height: 1.5;
  border-left: 3px solid #1a73e8;
}

.crm-card__footer {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #888;
  font-size: 0.75rem;
}

.crm-card__dot {
  width: 8px;
  height: 8px;
  background: #34c759;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


/* ============================================================
   PHONE MOCKUP (hero visual)
   ============================================================ */
.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-mockup__frame {
  width: 220px;
  background: #0d0d0d;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 20px 60px rgba(0,0,0,0.3),
    inset 0 0 0 1px #444;
  position: relative;
}

.phone-mockup__notch {
  width: 80px;
  height: 20px;
  background: #0d0d0d;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}

.phone-mockup__screen {
  background: #f0f4ff;
  border-radius: 26px;
  padding: 0.75rem;
  min-height: 380px;
  overflow: hidden;
}

.phone-notif {
  background: white;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.phone-notif__app {
  font-size: 0.65rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}

.phone-notif__dot {
  width: 6px;
  height: 6px;
  background: #1a73e8;
  border-radius: 50%;
  display: inline-block;
}

.phone-notif__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0d1e3a;
}

.phone-card {
  background: white;
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-size: 0.7rem;
}

.phone-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f4ff;
}

.phone-card__name {
  font-weight: 700;
  color: #0d1e3a;
  font-size: 0.8rem;
}

.phone-card__badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 20px;
}

.phone-card__badge.tiede {
  background: #fff0e0;
  color: #e07000;
}

.phone-card__badge.chaud {
  background: #ffe0e0;
  color: #e03000;
}

.phone-card__row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.phone-card__label {
  color: #aaa;
  min-width: 65px;
  font-size: 0.65rem;
}

.phone-card__tag {
  background: #e8f0fe;
  color: #1a73e8;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 600;
}

.phone-card__value {
  color: #0d1e3a;
  font-weight: 500;
  font-size: 0.65rem;
}

.phone-card__resume {
  margin-top: 0.5rem;
  padding: 0.4rem 0.5rem;
  background: #f8faff;
  border-radius: 6px;
  color: #555;
  font-size: 0.65rem;
  line-height: 1.4;
  border-left: 2px solid #1a73e8;
}

.phone-card__footer {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #888;
  font-size: 0.62rem;
}

.phone-card__dot-green {
  width: 6px;
  height: 6px;
  background: #34c759;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

.phone-mockup-img {
  width: 220px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(26,115,232,0.2));
}


/* ============================================================
   SECTION FAQ — ACCORDÉON
   ============================================================ */
.faq {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 1rem;
  transition: background 0.15s;
}

.faq-question:hover {
  background: #f8faff;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cta);
  transition: transform 0.25s ease;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
