@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  --red:        #CB0600;
  --red-dark:   #a50500;
  --red-light:  #f9e5e5;
  --black:      #111111;
  --gray-dark:  #2c2c2e;
  --gray-mid:   #6c6c70;
  --gray-light: #aeaeb2;
  --gray-pale:  #f5f5f7;
  --white:      #ffffff;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --font:       'Poppins', sans-serif;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* LANG TOGGLE */
.lang-en { display: none; }
body.en .lang-fr { display: none; }
body.en .lang-en { display: revert; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: 56px; display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-size: 22px; font-weight: 700; color: var(--black);
  text-decoration: none; letter-spacing: -0.5px; flex-shrink: 0;
  text-transform: lowercase;
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--gray-dark);
  text-decoration: none; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.lang-btn {
  font-family: var(--font); font-size: 12px; font-weight: 600;
  background: none; border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 20px; padding: 4px 10px; cursor: pointer;
  color: var(--gray-mid); transition: all .2s; letter-spacing: .04em;
}
.lang-btn:hover { border-color: var(--red); color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 8px 18px; border-radius: 20px; font-size: 13px;
  font-weight: 600; text-decoration: none; transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); transform: scale(1.02); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all .3s; }

/* CART */
.cart-trigger { position: relative; cursor: pointer; background: none; border: none; padding: 4px; display: flex; align-items: center; }
.cart-trigger svg { width: 22px; height: 22px; stroke: var(--black); fill: none; stroke-width: 1.5; }
.cart-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; background: var(--red); color: white; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: all .2s; }
.cart-badge.show { opacity: 1; transform: scale(1); }

/* UTILS */
section { padding: 88px 28px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 46px); font-weight: 700; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; color: var(--black); }
.section-sub { font-size: 16px; font-weight: 300; color: var(--gray-mid); line-height: 1.65; max-width: 480px; margin-bottom: 48px; }

.btn-primary { display: inline-block; background: var(--red); color: var(--white); font-family: var(--font); font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: 980px; text-decoration: none; transition: background .2s, transform .15s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-dark); transform: scale(1.02); }
.btn-outline { display: inline-block; background: transparent; color: var(--red); font-family: var(--font); font-size: 14px; font-weight: 600; padding: 13px 28px; border-radius: 980px; text-decoration: none; border: 2px solid var(--red); transition: all .2s; cursor: pointer; }
.btn-outline:hover { background: var(--red-light); }
.btn-white { display: inline-block; background: var(--white); color: var(--red); font-family: var(--font); font-size: 14px; font-weight: 600; padding: 14px 28px; border-radius: 980px; text-decoration: none; transition: transform .15s, box-shadow .2s; }
.btn-white:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* HERO */
.hero { padding-top: 56px; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; background: var(--gray-pale); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(203,6,0,0.07) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding: 0 24px; max-width: 860px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--red); background: var(--red-light); padding: 6px 16px; border-radius: 20px; margin-bottom: 28px; letter-spacing: .04em; }
.hero h1 { font-size: clamp(40px, 7.5vw, 86px); font-weight: 700; letter-spacing: -3px; line-height: 1.03; color: var(--black); margin-bottom: 22px; }
.hero h1 .accent { color: var(--red); }
.hero-sub { font-size: clamp(15px, 2vw, 19px); font-weight: 300; color: var(--gray-mid); max-width: 520px; margin: 0 auto 40px; line-height: 1.6; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 0; justify-content: center; background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.07); box-shadow: var(--shadow-sm); overflow: hidden; flex-wrap: wrap; width: fit-content; margin: 0 auto; }
.stat { padding: 24px 36px; text-align: center; border-right: 1px solid rgba(0,0,0,0.07); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 700; color: var(--black); letter-spacing: -1.5px; display: block; line-height: 1; }
.stat-num sup { font-size: 18px; vertical-align: super; }
.stat-label { font-size: 12px; color: var(--gray-mid); margin-top: 4px; font-weight: 400; }

/* UNIVERSE */
.universe { background: var(--white); }
.universe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.universe-card { border-radius: var(--radius-lg); padding: 48px 40px; text-decoration: none; color: inherit; transition: transform .25s, box-shadow .25s; display: block; position: relative; overflow: hidden; }
.universe-card.particulier { background: var(--black); }
.universe-card.entreprise  { background: var(--red); }
.universe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.universe-card .card-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.universe-card h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 700; color: var(--white); letter-spacing: -1px; margin-bottom: 12px; }
.universe-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 28px; }
.card-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--white); }
.card-arrow svg { width: 16px; height: 16px; transition: transform .2s; }
.universe-card:hover .card-arrow svg { transform: translateX(4px); }
.universe-num { position: absolute; right: 32px; bottom: -16px; font-size: 120px; font-weight: 700; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }

/* SERVICES */
.services { background: var(--gray-pale); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; }
.svc-card { background: var(--white); border-radius: var(--radius-md); padding: 32px 28px; border: 1px solid rgba(0,0,0,0.06); transition: transform .25s, box-shadow .25s; text-decoration: none; color: inherit; display: block; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.svc-icon svg { width: 24px; height: 24px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.svc-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.3px; }
.svc-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 18px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }
.svc-link svg { width: 13px; height: 13px; stroke: var(--red); fill: none; stroke-width: 2; transition: transform .2s; }
.svc-card:hover .svc-link svg { transform: translateX(3px); }

/* BOUTIQUE */
.shop-section { background: var(--gray-pale); }
.shop-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 13px; color: var(--gray-mid); }
.results-count strong { color: var(--black); }
.prod-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.prod-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 64px; background: var(--gray-pale); position: relative; }
.prod-badge-wrap { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
.prod-badge { font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 12px; letter-spacing: .03em; text-transform: uppercase; width: fit-content; }
.badge-occasion { background: #e8f5e9; color: #2e7d32; }
.badge-neuf     { background: #e3f2fd; color: #1565c0; }
.badge-promo    { background: var(--red); color: white; }
.prod-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.prod-cat  { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.prod-name { font-size: 15px; font-weight: 700; color: var(--black); letter-spacing: -.3px; margin-bottom: 4px; }
.prod-desc { font-size: 12px; color: var(--gray-mid); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 20px; font-weight: 700; letter-spacing: -.5px; color: var(--black); }
.add-to-cart { width: 36px; height: 36px; border-radius: 50%; background: var(--red); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform .15s, background .2s; flex-shrink: 0; }
.add-to-cart:hover { background: var(--red-dark); transform: scale(1.12); }
.add-to-cart svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; }

/* FILTERS */
.filters-bar { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); position: sticky; top: 56px; z-index: 100; }
.filters-inner { max-width: 1200px; margin: 0 auto; padding: 12px 28px; display: flex; align-items: center; gap: 8px; overflow-x: auto; }
.filter-btn { font-family: var(--font); font-size: 13px; font-weight: 600; background: var(--gray-pale); border: 1.5px solid transparent; border-radius: 20px; padding: 8px 18px; cursor: pointer; color: var(--gray-dark); transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.filter-count { font-size: 11px; background: rgba(0,0,0,0.08); padding: 1px 6px; border-radius: 10px; margin-left: 4px; }
.filter-btn.active .filter-count { background: rgba(255,255,255,0.25); }

/* CART DRAWER */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 100vw; background: var(--white); z-index: 301; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 1px solid rgba(0,0,0,0.07); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 16px; font-weight: 700; }
.cart-close { background: none; border: none; cursor: pointer; font-size: 20px; color: var(--gray-mid); padding: 4px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 48px 0; color: var(--gray-light); font-size: 14px; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.cart-item-img { width: 56px; height: 56px; background: var(--gray-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--red); }
.cart-item-remove { background: none; border: none; color: var(--gray-light); cursor: pointer; font-size: 16px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid rgba(0,0,0,0.07); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cart-total span:first-child { font-size: 14px; color: var(--gray-mid); }
.cart-total span:last-child { font-size: 18px; font-weight: 700; }

/* WHY */
.why { background: var(--black); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1px; background: rgba(255,255,255,0.07); border-radius: var(--radius-lg); overflow: hidden; margin-top: 52px; }
.why-item { background: var(--black); padding: 36px 28px; transition: background .25s; }
.why-item:hover { background: #1c1c1e; }
.why-num { font-size: 40px; font-weight: 700; color: var(--white); letter-spacing: -2px; display: block; margin-bottom: 6px; line-height: 1; }
.why-num em { font-style: normal; font-size: 22px; color: var(--red); }
.why-label { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; font-weight: 300; }

/* REVIEWS */
.reviews { background: var(--gray-pale); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; }
.review-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid rgba(0,0,0,0.06); }
.stars { color: #ff9500; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; font-style: italic; font-weight: 300; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--red-light); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--red); flex-shrink: 0; }
.reviewer-name { font-size: 13px; font-weight: 600; }
.reviewer-meta { font-size: 11px; color: var(--gray-light); margin-top: 2px; }

/* RACHAT BANNER */
.rachat-banner-wrap { padding: 0 28px 88px; max-width: 1256px; margin: 0 auto; }
.rachat-banner { background: var(--red); border-radius: var(--radius-xl); padding: 52px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.rachat-banner h2 { font-size: clamp(20px, 3.5vw, 34px); font-weight: 700; color: var(--white); letter-spacing: -1px; margin-bottom: 8px; }
.rachat-banner p { font-size: 15px; color: rgba(255,255,255,0.75); }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.55); padding: 64px 28px 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 48px; }
.footer-logo { font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.5px; text-transform: lowercase; }
.footer-logo span { color: var(--red); }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 600; color: var(--white); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 36px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

/* PAGE HERO */
.page-hero { padding-top: 56px; background: var(--black); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 72px 28px 64px; }
.page-hero h1 { font-size: clamp(30px,5vw,58px); font-weight: 700; color: var(--white); letter-spacing: -2px; line-height: 1.08; margin-bottom: 16px; }
.page-hero h1 span { color: var(--red); }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 560px; line-height: 1.65; font-weight: 300; }
.hero-actions-left { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: flex-end; justify-content: center; font-size: 140px; line-height: 1; }

/* TABS */
.tabs-wrap { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); position: sticky; top: 56px; z-index: 100; }
.tabs-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; gap: 0; overflow-x: auto; }
.tab-btn { font-family: var(--font); font-size: 14px; font-weight: 500; background: none; border: none; cursor: pointer; padding: 18px 28px; color: var(--gray-mid); border-bottom: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* CAT TABS PRIX */
.cat-tabs { background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08); position: sticky; top: 56px; z-index: 100; }
.cat-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; gap: 0; overflow-x: auto; }
.cat-btn { font-family: var(--font); font-size: 14px; font-weight: 500; background: none; border: none; cursor: pointer; padding: 18px 24px; color: var(--gray-mid); border-bottom: 2px solid transparent; transition: all .2s; white-space: nowrap; }
.cat-btn.active { color: var(--red); border-bottom-color: var(--red); }
.model-tabs { max-width: 1200px; margin: 0 auto; padding: 12px 28px; display: flex; gap: 8px; overflow-x: auto; }
.model-btn { font-family: var(--font); font-size: 12px; font-weight: 600; background: var(--white); border: 1.5px solid rgba(0,0,0,0.1); border-radius: 20px; padding: 6px 16px; cursor: pointer; color: var(--gray-dark); transition: all .2s; white-space: nowrap; }
.model-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* REPAIR */
.repair-section { background: var(--gray-pale); }
.repair-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; }
.repair-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid rgba(0,0,0,0.06); transition: box-shadow .25s; }
.repair-card:hover { box-shadow: var(--shadow-md); }
.repair-type { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.repair-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.repair-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.65; margin-bottom: 18px; }
.repair-price { font-size: 22px; font-weight: 700; color: var(--black); }
.repair-price small { font-size: 13px; font-weight: 400; color: var(--gray-mid); margin-left: 4px; }
.repair-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.repair-tag { font-size: 11px; background: var(--gray-pale); color: var(--gray-dark); padding: 4px 10px; border-radius: 20px; font-weight: 500; }

/* GARANTIE */
.garantie { background: var(--white); }
.garantie-box { background: var(--red-light); border-radius: var(--radius-lg); padding: 40px 48px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.garantie-icon { font-size: 56px; flex-shrink: 0; }
.garantie-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.garantie-box p { font-size: 14px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 16px; }
.garantie-points { list-style: none; }
.garantie-points li { font-size: 13px; color: var(--gray-dark); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.garantie-points li::before { content: "✓"; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* PROCESS */
.process { background: var(--gray-pale); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin-top: 8px; }
.step { background: var(--white); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid rgba(0,0,0,0.06); }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* HOW STEPS */
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how-steps::before { content: ""; position: absolute; top: 28px; left: calc(100%/6); right: calc(100%/6); height: 1px; background: var(--red); z-index: 0; }
.how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.how-num { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 2; box-shadow: 0 0 0 8px var(--white); }
.how-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* WIZARD */
.wizard { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); overflow: hidden; }
.wizard-progress { height: 4px; background: var(--gray-pale); }
.wizard-bar { height: 100%; background: var(--red); transition: width .4s ease; }
.wizard-header { padding: 32px 40px 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.wizard-step-label { font-size: 11px; font-weight: 600; color: var(--red); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.wizard-header h3 { font-size: 20px; font-weight: 700; }
.wizard-body { padding: 32px 40px; }
.wizard-footer { padding: 20px 40px 32px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.06); }
.w-panel { display: none; }
.w-panel.active { display: block; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--gray-dark); margin-bottom: 6px; letter-spacing: .03em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid rgba(0,0,0,0.12); border-radius: var(--radius-sm); font-family: var(--font); font-size: 14px; color: var(--black); background: var(--white); transition: border-color .2s; appearance: none; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row, .field-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-group { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 10px; margin-top: 4px; }
.check-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.check-item input { display: none; }
.check-box { width: 20px; height: 20px; border-radius: 4px; border: 1.5px solid rgba(0,0,0,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .15s; background: var(--white); }
.check-item input:checked ~ .check-box { background: var(--red); border-color: var(--red); }
.check-item input:checked ~ .check-box::after { content: "✓"; color: white; font-size: 11px; font-weight: 700; }
.radio-box { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .15s; }
.check-item input:checked ~ .radio-box { border-color: var(--red); }
.check-item input:checked ~ .radio-box::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.check-label { font-size: 13px; color: var(--gray-dark); }
.btn-prev { font-family: var(--font); font-size: 13px; font-weight: 500; background: none; border: none; color: var(--gray-mid); cursor: pointer; padding: 0; }
.step-indicators { display: flex; gap: 8px; align-items: center; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-pale); border: 1.5px solid rgba(0,0,0,0.15); transition: all .2s; }
.step-dot.active { background: var(--red); border-color: var(--red); }

/* PRICE TABLE */
.prices-section { background: var(--gray-pale); }
.price-panel  { display: none; }
.price-panel.active { display: block; }
.model-panel  { display: none; }
.model-panel.active { display: block; }
.price-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid rgba(0,0,0,0.07); overflow: hidden; margin-bottom: 20px; }
.price-card-header { padding: 24px 32px; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.price-card-header h3 { font-size: 18px; font-weight: 700; }
.model-badge { font-size: 11px; font-weight: 600; color: var(--red); background: var(--red-light); padding: 5px 12px; border-radius: 20px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid rgba(0,0,0,0.04); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 14px 32px; font-size: 14px; }
.price-table td:first-child { color: var(--gray-dark); font-weight: 500; }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--black); font-size: 16px; }

/* CONTACT */
.contact-section { background: var(--gray-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start; }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(0,0,0,0.06); margin-bottom: 16px; }
.info-card:last-child { margin-bottom: 0; }
.info-card h3 { font-size: 14px; font-weight: 600; color: var(--gray-mid); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.info-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { width: 38px; height: 38px; background: var(--red-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 1.5; }
.info-label { font-size: 11px; font-weight: 600; color: var(--gray-light); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: 2px; }
.info-val { font-size: 14px; color: var(--black); font-weight: 500; }
.info-val a { color: var(--black); text-decoration: none; }
.info-val a:hover { color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.05); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 0; font-size: 13px; }
.hours-table td:first-child { color: var(--gray-mid); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--black); font-weight: 600; }
.closed { color: var(--gray-light) !important; font-weight: 400 !important; }
.today td:first-child { color: var(--red) !important; font-weight: 600 !important; }
.map-wrap { background: var(--gray-pale); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.07); }
.map-link { display: block; padding: 14px 20px; text-align: center; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; border-top: 1px solid rgba(0,0,0,0.06); background: var(--white); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(0,0,0,0.06); }
.form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-card .sub { font-size: 14px; color: var(--gray-mid); margin-bottom: 28px; }

/* ENTREPRISES */
.ent-services { background: var(--white); }
.ent-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 20px; }
.ent-card { background: var(--gray-pale); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid rgba(0,0,0,0.06); transition: transform .25s, box-shadow .25s; }
.ent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ent-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ent-card p  { font-size: 13px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 18px; }
.ent-list { list-style: none; }
.ent-list li { font-size: 13px; color: var(--gray-dark); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.ent-list li:last-child { border-bottom: none; }
.ent-list li::before { content: "→"; color: var(--red); font-weight: 700; font-size: 11px; flex-shrink: 0; margin-top: 1px; }
.ent-cta { background: var(--black); }
.cta-box { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; max-width: 960px; margin: 0 auto; }
.cta-box h2 { font-size: clamp(24px,3.5vw,40px); font-weight: 700; color: var(--white); letter-spacing: -1.5px; margin-bottom: 14px; }
.cta-box p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 300; }
.cta-form { background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(255,255,255,0.08); }
.field-dark label { display: block; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); margin-bottom: 6px; text-transform: uppercase; }
.field-dark input, .field-dark select, .field-dark textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); background: rgba(255,255,255,0.07); color: var(--white); font-family: var(--font); font-size: 14px; outline: none; transition: border-color .2s; margin-bottom: 14px; }
.field-dark input::placeholder, .field-dark textarea::placeholder { color: rgba(255,255,255,0.25); }
.field-dark textarea { resize: vertical; min-height: 90px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 56px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: 20px 28px; border-bottom: 1px solid rgba(0,0,0,0.07); gap: 18px; z-index: 199; }
  section { padding: 64px 20px; }
  .universe-grid { grid-template-columns: 1fr; }
  .stat { padding: 18px 24px; }
  .rachat-banner { text-align: center; justify-content: center; }
  .rachat-banner-wrap { padding: 0 20px 64px; }
  .garantie-box { padding: 28px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .field-row, .field-row2 { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .wizard-header, .wizard-body, .wizard-footer { padding-left: 24px; padding-right: 24px; }
  .page-hero-inner { display: block !important; }
  .hero-visual { display: none; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
