    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #fff;
      color: #1e293b;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; border: none; }

    /* =============================================
       CSS VARIABLES
    ============================================= */
  :root {
    --brand:        #e8470a;
    --brand-dark:   #7c1d06;
    --brand-hover:  #c73d08;
    --brand-light:  #fff4f0;
    --brand-mid:    #fb8c6a;
    --hero-bg:      #e8470a;
    --hero-grad:    linear-gradient(135deg, #e8470a 0%, #9a2d04 100%);
  }
    body.praticien {
      --brand:        #059669;
      --brand-dark:   #064e3b;
      --brand-hover:  #047857;
      --brand-light:  #ecfdf5;
      --brand-mid:    #34d399;
      --hero-bg:      #059669;
      --hero-grad:    linear-gradient(135deg, #059669 0%, #064e3b 100%);
    }

    /* =============================================
       LAYOUT
    ============================================= */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-pad { padding: 80px 0; }
    .section-pad-sm { padding: 48px 0; }

    /* =============================================
       HEADER
    ============================================= */
    header {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 0;
    }
    header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .logo {
      display: flex; align-items: center; gap: 9px;
      font-size: 22px; font-weight: 800;
      color: #fff; letter-spacing: -0.5px;
    }
    .logo-icon {
      width: 30px; height: 30px; border-radius: 50%;
      background: rgba(255,255,255,0.22);
      border: 2px solid rgba(255,255,255,0.5);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: background 0.3s;
    }
    .logo-icon svg { display: block; }
    .logo-text .air   { color: #ffffff; font-weight: 900; }
    .logo-text .pharma{ color: #ffffff; font-weight: 800; }
    .header-actions { display: flex; align-items: center; gap: 20px; }
    .header-actions a {
      font-size: 13px; font-weight: 600; color: #fff;
      opacity: 0.9; transition: opacity 0.2s;
      display: flex; align-items: center; gap: 6px;
    }
    .header-actions a:hover { opacity: 1; }
    .header-pill {
      background: rgba(255,255,255,0.18);
      padding: 8px 18px; border-radius: 50px;
      backdrop-filter: blur(8px);
    }
    .header-pill:hover { background: rgba(255,255,255,0.28) !important; }
    @media (max-width: 768px) { .header-actions { display: none; } }

    /* =============================================
       HAMBURGER & MOBILE MENU
    ============================================= */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.25);
      border-radius: 10px;
      cursor: pointer;
      padding: 9px 8px;
      backdrop-filter: blur(8px);
      transition: background 0.2s;
    }
    .hamburger:hover { background: rgba(255,255,255,0.28); }
    .hamburger span {
      display: block; height: 2px;
      background: #fff; border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }
    .hamburger span:nth-child(2) { width: 75%; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile slide-down menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      background: var(--hero-bg);
      transition: background 0.4s;
      transform: translateY(-100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .mobile-menu-logo {
      font-size: 20px; font-weight: 800; color: #fff;
      display: flex; align-items: center; gap: 8px;
    }
    .mobile-menu-close {
      width: 36px; height: 36px; border-radius: 8px;
      background: rgba(255,255,255,0.15); border: none;
      color: #fff; font-size: 20px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .mobile-menu-close:hover { background: rgba(255,255,255,0.28); }
    .mobile-menu-toggle {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-menu-toggle .mode-toggle {
      width: 100%; justify-content: stretch;
    }
    .mobile-menu-toggle .mode-toggle button { flex: 1; justify-content: center; }
    .mobile-menu-links { padding: 8px 0 16px; }
    .mobile-menu-links a {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 20px; color: rgba(255,255,255,0.88);
      font-size: 15px; font-weight: 600;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: background 0.15s;
    }
    .mobile-menu-links a:hover { background: rgba(255,255,255,0.08); }
    .mobile-menu-links a i { width: 20px; text-align: center; opacity: 0.75; font-size: 14px; }
    .mobile-menu-cta {
      padding: 14px 20px;
      display: flex; gap: 10px;
    }
    .mobile-menu-cta button {
      flex: 1; padding: 12px; border-radius: 10px;
      font-size: 14px; font-weight: 700; cursor: pointer;
      font-family: inherit;
    }
    .mobile-btn-outline {
      background: rgba(255,255,255,0.12); color: #fff;
      border: 1.5px solid rgba(255,255,255,0.3);
    }
    .mobile-btn-solid {
      background: #fff; color: var(--brand); border: none;
      transition: opacity 0.2s;
    }
    .mobile-btn-solid:hover { opacity: 0.9; }
    /* overlay */
    .mobile-overlay {
      display: none; position: fixed; inset: 0; z-index: 190;
      background: rgba(0,0,0,0.45); backdrop-filter: blur(2px);
    }
    .mobile-overlay.open { display: block; }

    @media (max-width: 768px) { .hamburger { display: flex; } .mobile-menu { display: block; } }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      background: var(--hero-grad);
      padding: 0;
      position: relative;
      overflow: hidden;
      transition: background 0.4s ease;
      min-height: 580px;
      display: flex;
      flex-direction: column;
    }

    /* --- TOP PART (titre + search) --- */
    .hero-top {
      padding: 140px 0 60px;
      position: relative;
      z-index: 2;
      flex: 1;
    }
    .hero-top .container {
      display: flex;
      align-items: center;
      position: relative;
    }
    .hero-copy { flex: 0 0 56%; max-width: 56%; padding-right: 40px; }
    .hero h1 {
      font-size: clamp(2rem, 3.6vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.12;
      letter-spacing: -1.5px;
      margin-bottom: 40px;
    }
    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 36px;
      line-height: 1.6;
      max-width: 420px;
    }

    /* --- SEARCH BAR encapsulée dans le hero --- */
    .search-pill {
      background: #fff;
      border-radius: 18px;
      padding: 6px;
      display: flex;
      align-items: stretch;
      box-shadow: 0 12px 40px rgba(0,0,0,0.18);
      max-width: 640px;
      gap: 0;
    }
    .search-field {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 0 16px;
      gap: 10px;
      min-width: 0;
    }
    .search-field svg { color: #94a3b8; flex-shrink: 0; width: 18px; height: 18px; }
    .search-field input {
      border: none; outline: none;
      font-size: 14px; color: #1e293b;
      background: transparent; width: 100%;
      padding: 12px 0; font-family: inherit;
    }
    .search-field input::placeholder { color: #94a3b8; }
    .search-sep { width: 1px; background: #e8ecf0; margin: 10px 0; flex-shrink: 0; }
    .search-btn {
      background: var(--brand);
      color: #fff; border-radius: 12px;
      padding: 0 24px; font-size: 14px; font-weight: 700;
      display: flex; align-items: center; gap: 8px;
      transition: background 0.2s; white-space: nowrap;
      margin: 4px; min-height: 44px;
      flex-shrink: 0;
    }
    .search-btn:hover { background: var(--brand-hover); }

    /* Hero blob image */
    .hero-img-wrap {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 44%;
      display: flex; align-items: center; justify-content: flex-end;
      padding-right: 32px;
      pointer-events: none;
    }
    .hero-blob-bg {
      position: absolute;
      width: 380px; height: 380px;
      background: var(--brand-mid);
      opacity: 0.35;
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      right: 60px; top: 50%; transform: translateY(-50%);
    }
    .hero-img {
      position: relative; z-index: 2;
      width: 420px; height: 420px;
      object-fit: cover;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      box-shadow: 0 24px 64px rgba(0,0,0,0.22);
    }

    /* --- BOTTOM STRIP : toggle + promo card --- */
    .hero-bottom {
      position: relative;
      z-index: 10;
      background: transparent;
      padding-bottom: 0;
    }
    .hero-bottom-inner {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255,255,255,0.15);
      padding: 0;
    }
    .hero-bottom-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* TOGGLE dans le hero-bottom */
    .mode-toggle {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,0.15);
      border-radius: 50px;
      padding: 4px;
      gap: 2px;
      border: 1.5px solid rgba(255,255,255,0.25);
    }
    .mode-toggle button {
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 700;
      transition: all 0.25s ease;
      background: transparent;
      color: rgba(255,255,255,0.75);
      white-space: nowrap;
      border: none;
      cursor: pointer;
      font-family: inherit;
    }
    .mode-toggle button.active {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    body:not(.praticien) .mode-toggle button.active { color: var(--brand); }
    body.praticien .mode-toggle button.active { color: #059669; }
    .mode-toggle button:hover:not(.active) {
      background: rgba(255,255,255,0.18);
      color: #fff;
    }

    /* Promo mini card dans le strip */
    .hero-promo-strip {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 10px 16px;
      max-width: 380px;
    }
    .hero-promo-strip img {
      width: 44px; height: 44px;
      border-radius: 10px; object-fit: cover; flex-shrink: 0;
    }
    .hero-promo-strip p { font-size: 12px; color: rgba(255,255,255,0.9); line-height: 1.4; }
    .hero-promo-strip a { font-size: 12px; font-weight: 700; color: #fff; text-decoration: underline; }

    @media (max-width: 1024px) {
      .hero-img-wrap { display: none; }
      .hero-copy { max-width: 100%; padding-right: 0; flex: 1; }
    }
    @media (max-width: 640px) {
      .search-pill { flex-direction: column; border-radius: 16px; }
      .search-sep { width: 100%; height: 1px; margin: 0 10px; }
      .search-btn { margin: 4px; border-radius: 10px; justify-content: center; }
      .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 12px; }
      .hero-promo-strip { max-width: 100%; }
    }

    /* =============================================
       FEATURES
    ============================================= */
    .features { padding: 96px 0 80px; background: #fff; }
    .section-title {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 800; color: #1e293b;
      text-align: center; letter-spacing: -0.5px;
      margin-bottom: 64px;
    }
    .features-grid {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 48px; max-width: 900px; margin: 0 auto;
    }
    .feature-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
    .feature-icon {
      width: 76px; height: 76px; border-radius: 22px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 22px;
    }
    .feature-card h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 10px; }
    .feature-card p { font-size: 14px; color: #64748b; line-height: 1.6; max-width: 230px; }
    @media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; gap: 40px; } }

    /* =============================================
       STATS
    ============================================= */
    .stats { padding: 56px 0; border-top: 1.5px solid #f1f5f9; }
    .stats-inner {
      display: flex; align-items: center;
      justify-content: space-between; gap: 32px; flex-wrap: wrap;
    }
    .stats-title { font-size: 1.3rem; font-weight: 800; color: var(--brand-dark); min-width: 180px; transition: color 0.3s; }
    .stats-numbers { display: flex; gap: 56px; flex-wrap: wrap; }
    .stat-value {
      font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900;
      color: var(--brand-dark); letter-spacing: -1px; line-height: 1.1; transition: color 0.3s;
    }
    .stat-label { font-size: 13px; color: #64748b; margin-top: 4px; }

    /* =============================================
       BENEFITS (patient uniquement)
    ============================================= */
    .benefits { padding: 48px 0; background: #fff; }
    .benefits-card {
      background: var(--brand-light);
      border-radius: 32px;
      padding: 64px;
      display: flex; align-items: center; gap: 64px;
      transition: background 0.4s;
    }
    .benefits-img-wrap {
      flex: 0 0 44%; position: relative; display: flex; justify-content: center;
    }
    .ben-blob1 {
      position: absolute; top: 16px; left: -16px;
      width: 240px; height: 240px;
      background: var(--brand); opacity: 0.85;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      transition: background 0.4s;
    }
    .ben-blob2 {
      position: absolute; bottom: -24px; right: 24px;
      width: 140px; height: 140px;
      background: var(--brand-dark); opacity: 0.9;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      transition: background 0.4s;
    }
    .ben-photo {
      position: relative; z-index: 2;
      width: 300px; height: 300px; object-fit: cover;
      border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
      box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    }
    .benefits-content { flex: 1; }
    .benefits-content h2 {
      font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 800;
      color: var(--brand-dark); margin-bottom: 24px; letter-spacing: -0.5px;
      transition: color 0.3s;
    }
    .benefits-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .benefits-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: #374151; line-height: 1.5; }
    .ben-icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--brand); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: background 0.3s;
    }
    .ben-icon svg { color: #fff; }
    @media (max-width: 900px) {
      .benefits-card { flex-direction: column; padding: 40px 24px; }
      .benefits-img-wrap { flex: none; width: 100%; }
    }

    /* =============================================
       APP DOWNLOAD
    ============================================= */
    .app-download { padding: 48px 0; }
    .app-card {
      background: var(--brand-light);
      border-radius: 32px; padding: 64px;
      display: flex; align-items: center; gap: 64px;
      overflow: hidden; transition: background 0.4s;
    }
    .app-content { flex: 1; z-index: 2; }
    .app-content h2 {
      font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 800;
      color: var(--brand-dark); margin-bottom: 14px;
      letter-spacing: -0.5px; transition: color 0.3s;
    }
    .app-content p { font-size: 15px; color: #475569; line-height: 1.7; margin-bottom: 20px; }
    .stars { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
    .stars .s { color: #f59e0b; font-size: 17px; letter-spacing: 1px; }
    .stars .rating { font-weight: 800; color: #1e293b; font-size: 15px; }
    .stars .count { font-size: 13px; color: #94a3b8; }
    .store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .store-btn {
      background: #0f172a; color: #fff; border-radius: 14px;
      padding: 10px 18px; display: flex; align-items: center; gap: 10px; transition: background 0.2s;
    }
    .store-btn:hover { background: #1e293b; }
    .store-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
    .store-btn-text small { display: block; font-size: 9px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
    .store-btn-text strong { font-size: 14px; font-weight: 700; }
    .app-img-wrap {
      flex: 0 0 40%; position: relative;
      display: flex; justify-content: flex-end; align-items: center;
    }
    .app-blob1 {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 340px; height: 340px;
      background: var(--brand); opacity: 0.75;
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      transition: background 0.4s;
    }
    .app-blob2 {
      position: absolute; top: 20%; right: 0;
      width: 160px; height: 160px;
      background: #f59e0b; opacity: 0.85;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    .app-phone {
      position: relative; z-index: 2;
      width: 240px; height: 420px; object-fit: cover;
      border-radius: 32px; box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    }
    @media (max-width: 900px) {
      .app-card { flex-direction: column; padding: 40px 24px; }
      .app-img-wrap { flex: none; width: 100%; justify-content: center; }
    }

    /* =============================================
       PROVIDERS (praticien section)
    ============================================= */
    .providers { padding: 48px 0; }
    .prov-band {
      background: var(--brand-dark);
      border-radius: 32px; padding: 64px;
      display: flex; align-items: center; gap: 64px;
      margin-bottom: 48px; transition: background 0.4s;
    }
    .prov-band-img { flex: 0 0 40%; position: relative; display: flex; justify-content: center; }
    .prov-blob {
      position: absolute; inset: 0;
      background: var(--brand); opacity: 0.8;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      transform: scale(1.1) translate(-8%,8%);
      transition: background 0.4s;
    }
    .prov-photo {
      position: relative; z-index: 2;
      width: 300px; height: 300px; object-fit: cover;
      border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
    }
    .prov-content { flex: 1; color: #fff; }
    .prov-content h2 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
    .prov-content .sub { font-size: 15px; opacity: 0.8; margin-bottom: 28px; }
    .prov-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 14px; }
    .prov-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; }
    .prov-list li::before { content: '›'; color: #f59e0b; font-size: 20px; font-weight: 900; flex-shrink: 0; line-height: 1.2; }
    @media (max-width: 900px) {
      .prov-band { flex-direction: column; padding: 40px 24px; }
      .prov-band-img { flex: none; width: 100%; }
    }

    /* Screenshots SAS */
    .prov-screenshots { margin-bottom: 48px; }
    .prov-screenshots h3 {
      font-size: 1.3rem; font-weight: 800; color: var(--brand-dark);
      text-align: center; margin-bottom: 32px; transition: color 0.3s;
    }
    .screenshots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
    .screenshot-card {
      background: var(--brand-light); border-radius: 20px;
      overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      transition: background 0.4s, transform 0.2s;
    }
    .screenshot-card:hover { transform: translateY(-4px); }
    .screenshot-card img { width: 100%; height: 190px; object-fit: cover; }
    .screenshot-card .sc-label {
      padding: 14px 16px; font-size: 13px; font-weight: 700;
      color: var(--brand-dark); transition: color 0.3s;
    }
    @media (max-width: 768px) { .screenshots-grid { grid-template-columns: 1fr; } }

    /* ROI Calculator */
    .roi-calc {
      background: #fff; border-radius: 32px;
      border: 1.5px solid #f1f5f9; box-shadow: 0 4px 24px rgba(0,0,0,0.05);
      padding: 56px; max-width: 900px; margin: 0 auto;
    }
    .roi-calc-header { text-align: center; margin-bottom: 40px; }
    .roi-calc-header h3 { font-size: 1.4rem; font-weight: 800; color: var(--brand-dark); margin-bottom: 8px; transition: color 0.3s; }
    .roi-calc-header p { color: #64748b; font-size: 14px; }
    .roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .slider-group { margin-bottom: 28px; }
    .slider-label { display: flex; justify-content: space-between; margin-bottom: 12px; }
    .slider-label span:first-child { font-size: 13px; font-weight: 600; color: #475569; }
    .slider-label span:last-child { font-size: 13px; font-weight: 800; color: var(--brand); transition: color 0.3s; }
    input[type=range] {
      -webkit-appearance: none; width: 100%; height: 5px;
      background: #e2e8f0; border-radius: 50px; outline: none;
    }
    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
      background: var(--brand); cursor: pointer;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: background 0.3s;
    }
    .roi-results {
      background: var(--brand-light); border-radius: 20px;
      padding: 28px; display: flex; flex-direction: column; justify-content: center;
      transition: background 0.4s;
    }
    .roi-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
    .roi-num-label { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
    .roi-num-val { font-size: 1.5rem; font-weight: 900; color: var(--brand-dark); line-height: 1; transition: color 0.3s; }
    .roi-num-val small { font-size: 11px; font-weight: 400; color: #94a3b8; }
    .roi-main-label { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
    .roi-main-val { font-size: 1.9rem; font-weight: 900; color: var(--brand); margin-bottom: 20px; line-height: 1; transition: color 0.3s; }
    .roi-main-val small { font-size: 13px; font-weight: 400; color: #94a3b8; }
    .roi-bars { display: flex; gap: 16px; align-items: flex-end; height: 72px; margin-bottom: 10px; }
    .roi-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
    .roi-bar { width: 100%; border-radius: 6px 6px 0 0; transition: height 0.6s ease, background 0.3s; min-height: 4px; }
    .roi-bar.without { background: #cbd5e1; }
    .roi-bar.with { background: var(--brand); }
    .roi-bar-label { font-size: 10px; color: #94a3b8; text-align: center; white-space: nowrap; }
    .roi-note { font-size: 10px; color: #cbd5e1; text-align: center; }
    .roi-cta { text-align: center; margin-top: 36px; }
    @media (max-width: 768px) { .roi-grid { grid-template-columns: 1fr; } .roi-calc { padding: 32px 20px; } }

    /* =============================================
       TRUST
    ============================================= */
    .trust { padding: 48px 0; }
    .trust-card {
      background: var(--brand-light); border-radius: 32px;
      padding: 64px; display: flex; align-items: center; gap: 64px;
      transition: background 0.4s;
    }
    .trust-img-wrap { flex: 0 0 44%; position: relative; display: flex; justify-content: center; }
    .trust-blob1 {
      position: absolute; top: 16px; left: -16px;
      width: 240px; height: 240px; background: var(--brand); opacity: 0.85;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transition: background 0.4s;
    }
    .trust-blob2 {
      position: absolute; bottom: -24px; right: 24px;
      width: 140px; height: 140px; background: var(--brand-dark); opacity: 0.9;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transition: background 0.4s;
    }
    .trust-photo {
      position: relative; z-index: 2;
      width: 300px; height: 300px; object-fit: cover;
      border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    }
    .trust-content { flex: 1; }
    .trust-content h2 {
      font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 800;
      color: var(--brand-dark); margin-bottom: 18px; letter-spacing: -0.5px; transition: color 0.3s;
    }
    .trust-content p { font-size: 15px; color: #475569; line-height: 1.7; margin-bottom: 28px; }
    @media (max-width: 900px) { .trust-card { flex-direction: column; padding: 40px 24px; } }

    /* =============================================
       RECRUTE
    ============================================= */
    .recrute { padding: 48px 0; }
    .recrute-card {
      background: var(--brand-light); border-radius: 32px;
      padding: 80px; position: relative; overflow: hidden;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; transition: background 0.4s;
    }
    .recrute-deco { position: absolute; width: 170px; height: 170px; }
    .recrute-deco.left { left: 40px; top: 50%; transform: translateY(-50%); }
    .recrute-deco.right { right: 40px; top: 50%; transform: translateY(-50%); }
    .recrute-blob-a {
      position: absolute; inset: 0; background: #f59e0b; opacity: 0.8;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      transform: scale(1.2) translate(-10%,10%);
    }
    .recrute-blob-b {
      position: absolute; inset: 0; background: #ec4899; opacity: 0.75;
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      transform: scale(1.2) translate(10%,-10%);
    }
    .recrute-blob-c {
      position: absolute; inset: 0; background: var(--brand); opacity: 0.8;
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      transform: scale(1.1) translate(20%,20%); transition: background 0.4s;
    }
    .recrute-img-r { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%; }
    .recrute-content { position: relative; z-index: 20; max-width: 460px; }
    .recrute-content h2 { font-size: clamp(1.3rem,2vw,1.8rem); font-weight: 800; color: var(--brand-dark); margin-bottom: 12px; transition: color 0.3s; }
    .recrute-content p { font-size: 15px; color: #475569; margin-bottom: 28px; }
    @media (max-width: 768px) { .recrute-deco { display: none; } .recrute-card { padding: 48px 24px; } }

    /* =============================================
       TESTIMONIALS
    ============================================= */
    .testimonials { padding: 80px 0; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .testimonial-card { background: #f8fafc; border-radius: 20px; padding: 28px; }
    .t-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
    .testimonial-card blockquote { font-size: 14px; color: #475569; font-style: italic; line-height: 1.6; margin-bottom: 18px; }
    .t-name { font-size: 14px; font-weight: 700; color: #1e293b; }
    .t-loc { font-size: 12px; color: #94a3b8; }
    @media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

    /* =============================================
       FAQ
    ============================================= */
    .faq { padding: 80px 0; }
    .faq-inner { max-width: 680px; margin: 0 auto; }
    .faq-inner > h2 { font-size: 1.5rem; font-weight: 800; color: var(--brand-dark); text-align: center; margin-bottom: 36px; transition: color 0.3s; }
    .faq-item { border-bottom: 1.5px solid #f1f5f9; }
    .faq-trigger {
      width: 100%; text-align: left; background: none; padding: 18px 0;
      font-size: 14px; font-weight: 700; color: var(--brand-dark);
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; transition: color 0.2s; font-family: inherit;
    }
    .faq-trigger:hover { color: var(--brand); }
    .faq-icon { font-size: 20px; color: var(--brand); transition: transform 0.3s, color 0.3s; flex-shrink: 0; margin-left: 12px; }
    .faq-trigger.open .faq-icon { transform: rotate(45deg); }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 14px; color: #64748b; line-height: 1.7; }
    .faq-body.open { max-height: 200px; padding-bottom: 18px; }

    /* =============================================
       QUESTIONS ROW
    ============================================= */
    .questions-row { background: #fff; }
    .questions-inner {
      border-top: 1.5px solid #f1f5f9; border-bottom: 1.5px solid #f1f5f9;
      padding: 36px 0; display: flex; align-items: center;
      justify-content: space-between; gap: 20px; flex-wrap: wrap;
    }
    .questions-inner h2 { font-size: 15px; font-weight: 700; color: #1e293b; }
    .questions-inner h2 span { font-weight: 400; color: #64748b; }

    /* =============================================
       BUTTONS
    ============================================= */
    .btn-primary {
      background: var(--brand); color: #fff; border-radius: 12px;
      padding: 12px 26px; font-size: 14px; font-weight: 700;
      display: inline-flex; align-items: center; gap: 8px;
      transition: background 0.2s; border: none; cursor: pointer; font-family: inherit;
    }
    .btn-primary:hover { background: var(--brand-hover); }
    .btn-outline {
      background: #fff; color: var(--brand); border: 2px solid var(--brand);
      border-radius: 12px; padding: 12px 26px; font-size: 14px; font-weight: 700;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.2s; cursor: pointer; font-family: inherit;
    }
    .btn-outline:hover { background: var(--brand-light); }

    /* =============================================
       FOOTER
    ============================================= */
    footer { background: #fff; padding: 60px 0 28px; border-top: 1.5px solid #f1f5f9; }
    .footer-top {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 28px; margin-bottom: 28px;
      border-bottom: 1.5px solid #f1f5f9; flex-wrap: wrap; gap: 16px;
    }
    .footer-logo { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 800; color: var(--brand); transition: color 0.3s; }
    .footer-copyright { font-size: 12px; color: #94a3b8; margin-top: 4px; }
    .footer-store-btns { display: flex; gap: 10px; }
    .footer-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-bottom: 40px; }
    .footer-links h4 { font-size: 12px; font-weight: 700; color: var(--brand); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s; }
    .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { font-size: 13px; color: #64748b; transition: color 0.2s; }
    .footer-links a:hover { color: var(--brand); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
    .footer-locale { font-size: 13px; font-weight: 700; color: #475569; display: flex; gap: 20px; }
    .footer-social { display: flex; gap: 14px; }
    .footer-social a { color: var(--brand); transition: opacity 0.2s; }
    .footer-social a:hover { opacity: 0.7; }
    .footer-legal { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #94a3b8; margin-bottom: 10px; }
    .footer-legal a:hover { text-decoration: underline; }
    .footer-address { font-size: 12px; color: #cbd5e1; }
    @media (max-width: 768px) { .footer-links { grid-template-columns: repeat(2,1fr); } }

    /* =============================================
       CONTENT SWITCH
    ============================================= */
    .patient-only { display: block; }
    .praticien-only { display: none; }
    body.praticien .patient-only { display: none; }
    body.praticien .praticien-only { display: block; }
    .patient-text { display: inline; }
    .praticien-text { display: none; }
    body.praticien .patient-text { display: none; }
    body.praticien .praticien-text { display: inline; }

    /* =============================================
       ANIMATIONS
    ============================================= */
    .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fd1 { transition-delay: 0.1s; }
    .fd2 { transition-delay: 0.2s; }
    .fd3 { transition-delay: 0.3s; }

    /* =============================================
       INTERFACE GALLERY SECTION
    ============================================= */
    .gallery-section {
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg,
        #3d0c02 0%,
        #7c1d06 28%,
        #c73d08 60%,
        #fb8c6a 100%
      );
      transition: background 0.4s ease;
    }
    body.praticien .gallery-section {
      background: linear-gradient(135deg,
        #022c22 0%,
        #064e3b 28%,
        #059669 60%,
        #2dca8c 100%
      );
    }
    /* Frosted radial light overlays */
    .gallery-section::before {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse at 12% 50%, rgba(255,255,255,0.09) 0%, transparent 52%),
        radial-gradient(ellipse at 88% 25%, rgba(255,255,255,0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 95%, rgba(255,255,255,0.05) 0%, transparent 42%);
      pointer-events: none;
    }
    /* Edge frost — top/bottom/left/right vignette */
    .gallery-section::after {
      content: '';
      position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(to right,  rgba(255,255,255,0.07) 0%, transparent 14%, transparent 86%, rgba(255,255,255,0.07) 100%),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, transparent 12%, transparent 86%, rgba(255,255,255,0.05) 100%);
      pointer-events: none;
    }
    .gallery-section > .container { position: relative; z-index: 1; }
    .gallery-hd {
      text-align: center; max-width: 700px; margin: 0 auto 48px;
    }
    .gallery-badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.95);
      font-size: 11px; font-weight: 700; letter-spacing: .08em;
      padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
    }
    .gallery-hd h2 {
      font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800;
      color: #fff; line-height: 1.2; margin-bottom: 14px;
    }
    .gallery-hd p {
      font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.75;
    }

    /* Role tabs (praticien) */
    .role-tabs {
      display: flex; justify-content: center; gap: 8px;
      flex-wrap: wrap; margin-bottom: 28px;
    }
    .rtab {
      padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 700;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.22);
      color: rgba(255,255,255,0.78);
      cursor: pointer; transition: all .22s; font-family: inherit;
      backdrop-filter: blur(6px);
    }
    .rtab:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.4); }
    .rtab.on {
      background: rgba(255,255,255,0.92); border-color: transparent;
      color: var(--brand);
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
    }

    /* Feature tabs */
    .ftabs {
      display: flex; justify-content: center; gap: 6px;
      flex-wrap: wrap; margin-bottom: 32px;
    }
    .ftab {
      padding: 8px 18px; border-radius: 50px; font-size: 12.5px; font-weight: 600;
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.72);
      cursor: pointer; transition: all .2s; font-family: inherit;
      backdrop-filter: blur(6px);
    }
    .ftab i { margin-right: 5px; font-size: 11px; }
    .ftab:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.35); }
    .ftab.on {
      background: rgba(255,255,255,0.92); border-color: transparent;
      color: var(--brand); font-weight: 700;
      box-shadow: 0 2px 12px rgba(0,0,0,.15);
    }

    /* Browser frame */
    .brw-wrap {
      max-width: 960px; margin: 0 auto;
      position: relative;
    }
    .brw-glow {
      position: absolute; inset: -24px; border-radius: 28px;
      background: var(--hero-grad);
      opacity: .12; filter: blur(32px); z-index: 0;
    }
    .brw {
      position: relative; z-index: 1;
      background: #1e293b; border-radius: 18px; overflow: hidden;
      box-shadow: 0 24px 72px rgba(0,0,0,.22);
    }
    .brw-bar {
      height: 42px; background: #334155;
      display: flex; align-items: center; gap: 14px; padding: 0 16px;
    }
    .bdots { display: flex; gap: 6px; }
    .bdots span { width: 12px; height: 12px; border-radius: 50%; }
    .bdots span:nth-child(1) { background: #ef4444; }
    .bdots span:nth-child(2) { background: #f59e0b; }
    .bdots span:nth-child(3) { background: #22c55e; }
    .burl-pill {
      flex: 1; text-align: center;
    }
    .burl-pill span {
      background: #475569; border-radius: 6px; padding: 4px 16px;
      font-size: 11.5px; color: #94a3b8; font-family: monospace;
      display: inline-block;
    }
    .brw-body {
      position: relative; overflow: hidden;
      aspect-ratio: 16 / 9.2;
      background: #f1f5f9;
    }
    .gslide {
      position: absolute; inset: 0;
      opacity: 0; transform: translateX(28px) scale(.98);
      transition: opacity .45s ease, transform .45s ease;
      pointer-events: none;
    }
    .gslide.on {
      opacity: 1; transform: translateX(0) scale(1);
      pointer-events: auto;
    }
    .gslide img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top left;
      display: block;
    }

    /* Prev/Next arrows */
    .brw-nav {
      display: flex; align-items: center; justify-content: space-between;
      position: absolute; inset: 0; pointer-events: none; z-index: 5;
      padding: 0 12px;
    }
    .brw-arrow {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.92); border: 1px solid #e2e8f0;
      box-shadow: 0 2px 12px rgba(0,0,0,.15);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; pointer-events: all; transition: all .2s;
      color: #475569; font-size: 16px;
    }
    .brw-arrow:hover { background: var(--brand); color: #fff; transform: scale(1.08); }

    /* Dots */
    .gdots {
      display: flex; justify-content: center; gap: 7px; margin: 20px 0 14px;
    }
    .gdot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.3); cursor: pointer; transition: all .22s;
    }
    .gdot.on { background: #fff; transform: scale(1.45); }

    /* Description below */
    .gdesc-box {
      max-width: 720px; margin: 0 auto; text-align: center;
      min-height: 100px; padding: 0 16px;
    }
    .gdesc { display: none; animation: gfadeup .3s ease; }
    .gdesc.on { display: block; }
    @keyframes gfadeup {
      from { opacity:0; transform:translateY(10px); }
      to   { opacity:1; transform:none; }
    }
    .gdesc h4 {
      font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px;
    }
    .gdesc h4 i { margin-right: 6px; font-size: 0.95rem; opacity: 0.85; }
    .gdesc p { font-size: .9rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
    .gdesc-chips {
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 7px; margin-top: 14px;
    }
    .gdesc-chip {
      background: rgba(255,255,255,0.13);
      color: rgba(255,255,255,0.9);
      font-size: 11.5px; font-weight: 700; padding: 5px 13px; border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(4px);
    }
    .gdesc-chip i { margin-right: 4px; font-size: 10px; }

    /* Role panel */
    .role-panel { display: none; }
    .role-panel.on { display: block; animation: gfadeup .35s ease; }

    /* Auto-progress bar */
    .gallery-progress {
      height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px;
      max-width: 960px; margin: 0 auto 20px; overflow: hidden;
    }
    .gallery-progress-bar {
      height: 100%; background: rgba(255,255,255,0.85);
      width: 0%; transition: width linear;
    }

    @media (max-width:768px) {
      .brw-arrow { width:32px; height:32px; font-size:13px; }
    }