/** Shopify CDN: Minification failed

Line 228:2 Unexpected "<"
Line 309:58 Unterminated string token
Line 320:66 Unterminated string token

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

    :root {
      --blue:       #1a56db;
      --blue-dark:  #0f3a8a;
      --blue-light: #dbeafe;
      --cyan:       #06b6d4;
      --green:      #10b981;
      --surface:    #ffffff;
      --surface-2:  #f8fafc;
      --surface-3:  #f1f5f9;
      --text-1:     #0f172a;
      --text-2:     #475569;
      --text-3:     #94a3b8;
      --border:     #e2e8f0;
      --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
      --shadow-md:  0 4px 16px rgba(0,0,0,.08);
      --shadow-lg:  0 16px 48px rgba(0,0,0,.12);
      --shadow-xl:  0 32px 64px rgba(0,0,0,.16);
      --r-sm: 8px; --r-md: 14px; --r-lg: 20px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text-1); background: var(--surface); line-height: 1.6; -webkit-font-smoothing: antialiased; }

    /* ─── SVG ICONS ─── */
    .icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

    /* ─── HEADER ─── */
    header {
      position: sticky; top: 0; z-index: 900;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(226,232,240,.7);
      padding: .875rem 0;
    }
    .header-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 2rem; }

    .logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 800; color: var(--blue-dark); text-decoration: none; flex-shrink: 0; }
    .logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg, var(--blue), var(--cyan)); border-radius: 10px; display: grid; place-items: center; }

    nav { display: flex; gap: 2rem; margin-right: auto; }
    nav a { font-size: .875rem; font-weight: 500; color: var(--text-2); text-decoration: none; transition: color .2s; }
    nav a:hover { color: var(--blue); }

    /* Search */
    .search-wrap { position: relative; flex: 1; max-width: 360px; }
    .search-ico { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); pointer-events: none; display: flex; }
    .search-input { width: 100%; padding: 9px 36px 9px 38px; background: var(--surface-3); border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: .875rem; font-family: inherit; color: var(--text-1); outline: none; transition: border .2s, box-shadow .2s, background .2s; }
    .search-input::placeholder { color: var(--text-3); }
    .search-input:focus { background: #fff; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
    .search-clear { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-3); cursor: pointer; display: none; padding: 3px; border-radius: 4px; line-height: 0; }
    .search-clear:hover { color: var(--text-1); }
    .search-dropdown { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-xl); z-index: 2000; overflow: hidden; display: none; }
    .search-dropdown.open { display: block; animation: pop .18s ease-out; }
    @keyframes pop { from{opacity:0;transform:translateY(-6px) scale(.98)} to{opacity:1;transform:none} }
    .s-result { display: flex; align-items: center; gap: 12px; padding: 11px 16px; cursor: pointer; transition: background .12s; border-bottom: 1px solid var(--border); }
    .s-result:last-of-type { border: none; }
    .s-result:hover { background: var(--surface-3); }
    .s-result-ico { width: 36px; height: 36px; background: var(--blue-light); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
    .s-result-body { flex: 1; min-width: 0; }
    .s-result-name { font-weight: 600; font-size: .875rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .s-result-name mark { background: rgba(6,182,212,.15); color: var(--cyan); border-radius: 2px; padding: 0 2px; }
    .s-result-cat { font-size: .75rem; color: var(--text-3); }
    .s-result-price { font-weight: 700; font-size: .9rem; color: var(--blue); flex-shrink: 0; }
    .s-empty { padding: 20px; text-align: center; color: var(--text-3); font-size: .875rem; }
    .s-foot { padding: 8px 16px; text-align: center; font-size: .75rem; color: var(--text-3); background: var(--surface-3); border-top: 1px solid var(--border); }

    .search-notice { display: none; text-align: center; margin-bottom: 28px; padding: 10px 20px; background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.25); border-radius: var(--r-sm); font-size: .875rem; font-weight: 600; color: var(--cyan); }
    .search-notice.on { display: block; }
    .product-card.hidden { display: none; }
    .product-card.lit { box-shadow: 0 0 0 2px var(--cyan), var(--shadow-lg) !important; transform: translateY(-4px) !important; }

    .btn-cart { flex-shrink: 0; display: flex; align-items: center; gap: 8px; padding: 9px 18px; background: var(--blue); color: #fff; border: none; border-radius: var(--r-sm); font-size: .875rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s, transform .2s, box-shadow .2s; }
    .btn-cart:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.3); }

    /* ─── HERO ─── */
    .hero { position: relative; overflow: hidden; background: linear-gradient(140deg, #0c1f4a 0%, #0e3472 45%, #0a2a5e 100%); color: #fff; padding: 120px 2rem 100px; text-align: center; }
    .hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
    .hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
    .hero-orb.l { top:-120px; left:-120px; width:480px; height:480px; background: radial-gradient(circle, rgba(6,182,212,.25) 0%, transparent 70%); animation: drift 8s ease-in-out infinite; }
    .hero-orb.r { bottom:-140px; right:-100px; width:560px; height:560px; background: radial-gradient(circle, rgba(26,86,219,.2) 0%, transparent 70%); animation: drift 10s ease-in-out infinite reverse; }
    @keyframes drift { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(30px) scale(1.05)} }

    .hero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
    .hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.4); color: #34d399; padding: 6px 14px; border-radius: 999px; font-size: .8rem; font-weight: 600; margin-bottom: 24px; animation: fadeUp .6s .1s both; }
    .hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.08; letter-spacing: -2px; margin-bottom: 20px; animation: fadeUp .6s .2s both; }
    .hero h1 span { background: linear-gradient(90deg, #67e8f9, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-sub { font-size: 1.125rem; opacity: .85; margin-bottom: 40px; animation: fadeUp .6s .3s both; }
    .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; animation: fadeUp .6s .4s both; }
    @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
    .btn-solid { padding: 13px 28px; background: #fff; color: var(--blue-dark); border: none; border-radius: var(--r-sm); font-size: .95rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: transform .2s, box-shadow .2s; }
    .btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
    .btn-ghost { padding: 12px 28px; background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--r-sm); font-size: .95rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; }
    .btn-ghost:hover { background: rgba(255,255,255,.15); }
    .hero-stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 64px; animation: fadeUp .6s .5s both; }
    .hero-stat { text-align: center; }
    .hero-stat-val { font-size: 2rem; font-weight: 900; letter-spacing: -1px; background: linear-gradient(90deg, #67e8f9, #a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero-stat-lbl { font-size: .8rem; opacity: .6; margin-top: 4px; }

    /* ─── SECTIONS ─── */
    .section { padding: 96px 2rem; }
    .section.alt { background: var(--surface-2); }
    .section-head { text-align: center; margin-bottom: 64px; }
    .eyebrow { display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
    .section-head h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
    .section-head p { font-size: 1.05rem; color: var(--text-2); }

    /* ─── TIER CARDS ─── */
    .grid-4 { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
    .tier-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; transition: transform .25s, box-shadow .25s, border-color .25s; cursor: pointer; }
    .tier-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
    .tier-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 8px; }
    .tier-card h3 { font-size: 1.05rem; font-weight: 700; }
    .tier-card > p { font-size: .875rem; color: var(--text-2); line-height: 1.5; }
    .tier-price { font-size: 1.6rem; font-weight: 800; color: var(--blue); letter-spacing: -.5px; margin-top: 4px; }
    .tier-count { font-size: .75rem; color: var(--text-3); font-weight: 500; }
    .btn-tier { margin-top: auto; padding: 10px 0; background: var(--blue-light); color: var(--blue-dark); border: none; border-radius: var(--r-sm); font-weight: 700; font-size: .875rem; cursor: pointer; font-family: inherit; transition: background .2s, color .2s; }
    .btn-tier:hover { background: var(--blue); color: #fff; }

    /* ─── PRODUCT CARDS ─── */
    .grid-products { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
    .product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s, box-shadow .25s; }
    .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .product-thumb { height: 220px; background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .product-disc { position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--green); color: #fff; padding: 5px 11px; border-radius: 999px; font-size: .75rem; font-weight: 700; }
    .product-body { padding: 22px; }
    .product-vendor { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 6px; }
    .product-name { font-size: .95rem; font-weight: 700; color: var(--text-1); line-height: 1.4; margin-bottom: 10px; }
    .product-pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
    .product-new { font-size: 1.2rem; font-weight: 800; color: var(--blue); }
    .product-old { font-size: .85rem; color: var(--text-3); text-decoration: line-through; }
    .product-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
    .star-count { font-size: .78rem; color: var(--text-3); margin-left: 2px; }
    .btn-add { width: 100%; padding: 11px; background: var(--blue); color: #fff; border: none; border-radius: var(--r-sm); font-size: .875rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s, transform .15s; }
    .btn-add:hover { background: var(--blue-dark); transform: translateY(-1px); }

    /* ─── TRUST ─── */
    .trust-strip { background: var(--blue-dark); padding: 56px 2rem; }
    .trust-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px; }
    .trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; color: #fff; }
    .trust-ico { width: 52px; height: 52px; background: rgba(255,255,255,.1); border-radius: 14px; display: grid; place-items: center; }
    .trust-item h4 { font-size: .95rem; font-weight: 700; }
    .trust-item p { font-size: .8rem; opacity: .65; line-height: 1.5; }

    /* ─── FAQ ─── */
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
    .faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
    .faq-item.open { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.08); }
    .faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: none; border: none; font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--text-1); cursor: pointer; text-align: left; transition: background .15s; }
    .faq-q:hover { background: var(--surface-3); }
    .faq-chev { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--surface-3); display: grid; place-items: center; transition: transform .3s, background .2s; }
    .faq-item.open .faq-chev { transform: rotate(180deg); background: var(--blue-light); }
    .faq-chev svg { display: block; }
    .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
    .faq-item.open .faq-a { grid-template-rows: 1fr; }
    .faq-a-inner { overflow: hidden; padding: 0 20px; font-size: .9rem; color: var(--text-2); line-height: 1.8; }
    .faq-item.open .faq-a-inner { padding-bottom: 18px; }

    /* ─── FOOTER ─── */
    footer { background: #080e1f; color: rgba(255,255,255,.7); padding: 64px 2rem 32px; }
    .footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
    .footer-brand .logo { color: #fff; margin-bottom: 12px; }
    .footer-brand p { font-size: .875rem; line-height: 1.7; }
    .footer-col h5 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
    .footer-col a:hover { color: var(--cyan); }
    .footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .8rem; }

    /* ─── MODAL ─── */
    .modal-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(8,14,31,.75); backdrop-filter: blur(6px); display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .3s, visibility .3s; overflow-y: auto; }
    .modal-overlay.open { opacity: 1; pointer-events: all; visibility: visible; }
    .modal { background: var(--surface); border-radius: var(--r-lg); width: 100%; max-width: 1100px; box-shadow: var(--shadow-xl); transform: translateY(40px) scale(.97); transition: transform .35s cubic-bezier(.22,1,.36,1); overflow: hidden; }
    .modal-overlay.open .modal { transform: none; }
    .modal-header { display: flex; align-items: center; justify-content: space-between; padding: 28px 32px 24px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
    .modal-header-left { display: flex; align-items: center; gap: 16px; }
    .modal-header-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; }
    .modal-title { font-size: 1.4rem; font-weight: 800; letter-spacing: -.5px; }
    .modal-subtitle { font-size: .875rem; color: var(--text-2); margin-top: 3px; }
    .modal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-3); border: none; cursor: pointer; display: grid; place-items: center; transition: background .15s; flex-shrink: 0; }
    .modal-close:hover { background: #fee2e2; }
    .modal-close:hover svg { stroke: #ef4444; }
    .modal-body { padding: 32px; }
    .modal-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
    .filter-btn { padding: 6px 14px; border-radius: 999px; border: 1.5px solid var(--border); background: none; font-size: .8rem; font-weight: 600; color: var(--text-2); cursor: pointer; font-family: inherit; transition: all .15s; }
    .filter-btn:hover { border-color: var(--blue); color: var(--blue); }
    .filter-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
    .modal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }

    /* Carte produit modal */
    .mc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s, border-color .22s; }
    .mc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
    .mc-thumb { height: 200px; position: relative; overflow: hidden; background: linear-gradient(135deg, #eef2ff 0%, #dbeafe 100%); display: flex; align-items: center; justify-content: center; }
    .mc-disc { position: absolute; top: 12px; right: 12px; background: var(--green); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: .7rem; font-weight: 700; }
    .mc-tags { position: absolute; bottom: 10px; left: 10px; display: flex; gap: 5px; flex-wrap: wrap; }
    .mc-tag { background: rgba(8,14,31,.6); color: rgba(255,255,255,.9); padding: 3px 8px; border-radius: 6px; font-size: .65rem; font-weight: 600; backdrop-filter: blur(4px); }
    .mc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
    .mc-vendor { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 5px; }
    .mc-name { font-size: .95rem; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
    .mc-pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
    .mc-price { font-size: 1.25rem; font-weight: 800; color: var(--blue); }
    .mc-compare { font-size: .82rem; color: var(--text-3); text-decoration: line-through; }
    .mc-saving { font-size: .72rem; font-weight: 700; background: rgba(16,185,129,.12); color: var(--green); padding: 2px 7px; border-radius: 999px; }
    .mc-specs { margin: 10px 0 14px; display: flex; flex-wrap: wrap; gap: 6px; }
    .mc-spec { font-size: .7rem; background: var(--surface-3); color: var(--text-2); padding: 4px 8px; border-radius: 6px; font-weight: 500; display: flex; align-items: center; gap: 4px; }
    .mc-desc { font-size: .8rem; color: var(--text-2); line-height: 1.55; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .mc-actions { display: flex; gap: 8px; margin-top: auto; }
    .mc-btn-detail { flex: 1; padding: 9px; background: var(--surface-3); color: var(--text-1); border: 1px solid var(--border); border-radius: var(--r-sm); font-size: .8rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .15s; }
    .mc-btn-detail:hover { background: var(--border); }
    .mc-btn-add { flex: 2; padding: 9px; background: var(--blue); color: #fff; border: none; border-radius: var(--r-sm); font-size: .8rem; font-weight: 700; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background .15s; }
    .mc-btn-add:hover { background: var(--blue-dark); }
    .modal-empty { text-align: center; padding: 48px 20px; color: var(--text-3); grid-column: 1/-1; }
    .modal-empty p { margin-top: 12px; font-size: .9rem; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 900px) { nav { display: none; } .search-wrap { max-width: none; } }
    @media (max-width: 640px) { .hero-stats { gap: 28px; } .footer-grid { grid-template-columns: 1fr 1fr; } .hero-actions { flex-direction: column; } .btn-solid, .btn-ghost { width: 100%; } .modal-header { padding: 20px; } .modal-body { padding: 20px; } }
  </style>
</head>
<body>

<!-- ═══ HEADER ═══ -->
<header>
  <div class="header-inner">
    <a href="#" class="logo">
      <div class="logo-mark">
        <!-- Snowflake SVG -->
        <svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
          <line x1="12" y1="2" x2="12" y2="22"/><line x1="2" y1="12" x2="22" y2="12"/>
          <polyline points="7 7 12 2 17 7"/><polyline points="7 17 12 22 17 17"/>
          <polyline points="2 7 7 12 2 17"/><polyline points="22 7 17 12 22 17"/>
        </svg>
      </div>
      ClimaPro
    </a>

    <nav>
      <a href="#segments">Gammes</a>
      <a href="#produits">Produits</a>
      <a href="#faq">FAQ</a>
    </nav>

    <div class="search-wrap" id="searchWrap">
      <span class="search-ico">
        <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#94a3b8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
      </span>
      <input id="searchInput" class="search-input" type="text" placeholder="Rechercher un climatiseur…" autocomplete="off" aria-label="Recherche" />
      <button class="search-clear" id="searchClear" aria-label="Effacer">
        <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
      </button>
      <div class="search-dropdown" id="searchDropdown" role="listbox"></div>
    </div>

    <button class="btn-cart">
      <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>
      Panier
    </button>
  </div>
</header>

<!-- ═══ HERO ═══ -->
<section class="hero">
  <div class="hero-orb l"></div>
  <div class="hero-orb r"></div>
  <div class="hero-content">
    <div class="hero-pill">
      <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="23 6 13.5 15.5 8.5 10.5 1 18"/><polyline points="17 6 23 6 23 12"/></svg>
      Prix leader France garantis
    </div>
    <h1>Climatiseurs à<br><span>-40% vs Boulanger</span></h1>
    <p class="hero-sub">De 224€ à 500€ · 18 modèles en stock · Livraison 48 h · Garantie 2 ans.</p>
    <div class="hero-actions">
      <button class="btn-solid" onclick="document.getElementById('produits').scrollIntoView({behavior:'smooth'})">Voir les produits</button>
      <button class="btn-ghost" onclick="document.getElementById('segments').scrollIntoView({behavior:'smooth'})">Choisir ma gamme</button>
    </div>
    <div class="hero-stats">
      <div class="hero-stat"><div class="hero-stat-val">18</div><div class="hero-stat-lbl">Modèles disponibles</div></div>
      <div class="hero-stat"><div class="hero-stat-val">-40%</div><div class="hero-stat-lbl">vs grande surface</div></div>
      <div class="hero-stat"><div class="hero-stat-val">48 h</div><div class="hero-stat-lbl">Livraison France</div></div>
      <div class="hero-stat"><div class="hero-stat-val">4.8 / 5</div><div class="hero-stat-lbl">Note client moyenne</div></div>
    </div>
  </div>
</section>

<!-- ═══ GAMMES ═══ -->
<section class="section alt" id="segments">
  <div class="section-head">
    <div class="eyebrow">Nos gammes</div>
    <h2>Trouvez votre climatiseur</h2>
    <p>4 gammes pour tous les budgets et tous les usages</p>
  </div>
  <div class="grid-4">

    <div class="tier-card" onclick="openModal('budget')">
      <div class="tier-icon" style="background:#dbeafe">
        <svg width="26" height="26" viewBox="0 0 24 24" fill="none" stroke="#1a56db" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
      </div>
      <h3>Budget Leader</h3>
      <p>Premiers prix sans compromis sur l'essentiel.</p>
      <div class="tier-price">224€ – 270€</div>
      <div class="tier-count">7 modèles</div>
      <button class="btn-tier">Voir les modèles</button>
    </div>

    <div class="tier-card" onclick="openModal('midrange')">
      <div class="tier-icon" style="background:#d1fae5">
        <svg width="26" height="26" viewBox="0 0 24 24" fill="none" stroke="#059669" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><line x1="4" y1="21" x2="4" y2="14"/><line x1="4" y1="10" x2="4" y2="3"/><line x1="12" y1="21" x2="12" y2="12"/><line x1="12" y1="8" x2="12" y2="3"/><line x1="20" y1="21" x2="20" y2="16"/><line x1="20" y1="12" x2="20" y2="3"/><line x1="1" y1="14" x2="7" y2="14"/><line x1="9" y1="8" x2="15" y2="8"/><line x1="17" y1="16" x2="23" y2="16"/></svg>
      </div>
      <h3>Mid-Range Smart</h3>
      <p>Réversible, connecté et économique toute l'année.</p>
      <div class="tier-price">287€ – 349€</div>
      <div class="tier-count">5 modèles</div>
      <button class="btn-tier">Voir les modèles</button>
    </div>

    <div class="tier-card" onclick="openModal('premium')">
      <div class="tier-icon" style="background:#fef3c7">
        <svg width="26" height="26" viewBox="0 0 24 24" fill="none" stroke="#d97706" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>
      </div>
      <h3>Premium Silencieux</h3>
      <p>Confort maximal, ultra-silencieux pour chambre et bureau.</p>
      <div class="tier-price">374€ – 435€</div>
      <div class="tier-count">4 modèles</div>
      <button class="btn-tier">Voir les modèles</button>
    </div>

    <div class="tier-card" onclick="openModal('ultra')">
