/* ============================================================
   AZURIA — Design System
   ============================================================ */

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

:root {
  --navy:          #0D1F3C;
  --navy-deep:     #080f1e;
  --azure:         #00AEEF;
  --azure-light:   #5BC8F5;
  --azure-dim:     #007ab5;
  --azure-glow:    rgba(0,174,239,0.12);
  --white:         #FFFFFF;
  --gray:          #F4F7FA;
  --gray-mid:      #E8EDF3;
  --text:          #0D1F3C;
  --text-dim:      #4A5C74;
  --text-muted:    #8899AA;
  --line:          rgba(0,174,239,0.12);
  --line-hover:    rgba(0,174,239,0.30);
  --shadow:        0 24px 60px rgba(13,31,60,0.10);
  --shadow-heavy:  0 40px 80px rgba(13,31,60,0.18);
  --radius-card:   16px;
  --radius-btn:    100px;
  --ease-out:      cubic-bezier(0.16,1,0.3,1);
  --ease-inout:    cubic-bezier(0.7,0,0.2,1);
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--azure); color: var(--white); }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  line-height: 1.0;
  letter-spacing: -0.025em;
}

.label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--azure);
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 16px;
  display: block;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--azure);
  color: var(--white);
}
.btn--primary:hover { background: var(--azure-dim); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,174,239,0.35); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 80px);
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-radius: 64px;
  transition: background 0.5s, box-shadow 0.5s, backdrop-filter 0.5s;
}

.navbar.scrolled {
  background: rgba(13,31,60,0.85);
  backdrop-filter: blur(30px) saturate(160%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.navbar__logo img { height: 36px; width: auto; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-head);
}
.navbar__links a:hover { background: rgba(255,255,255,0.1); }
.navbar__links a.active { color: var(--azure); }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__cta .btn { padding: 10px 22px; font-size: 13px; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--azure); }
.mobile-menu__close {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  font-family: sans-serif;
  line-height: 1;
}
.mobile-menu__cta { margin-top: 32px; }

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand img { height: 36px; margin-bottom: 20px; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer__socials a:hover { border-color: var(--azure); background: var(--azure-glow); }
.footer__socials svg { width: 18px; height: 18px; fill: white; }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--azure); }
.footer__col p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--azure); }

/* ── WhatsApp Floating ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--navy);
  color: white;
  padding: 24px 32px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: calc(100% - 80px);
  max-width: 900px;
  box-shadow: var(--shadow-heavy);
  transition: bottom 0.6s var(--ease-out);
}
.cookie-banner.show { bottom: 32px; }
.cookie-banner p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.8); flex: 1; }
.cookie-banner p a { color: var(--azure); }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ── Email Popup ── */
.email-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.email-popup.show { opacity: 1; pointer-events: all; }
.email-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,10,20,0.75);
  backdrop-filter: blur(10px);
  cursor: pointer;
}
.email-popup__box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  max-width: 480px;
  width: calc(100% - 32px);
  transform: translateY(40px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
}
.email-popup.show .email-popup__box { transform: translateY(0) scale(1); }
.email-popup__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s;
  z-index: 2;
}
.email-popup__close:hover { background: rgba(255,255,255,0.22); color: white; }
.email-popup__header {
  background: linear-gradient(145deg, #0D1F3C 0%, #0f2d56 100%);
  padding: 44px 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.email-popup__header::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(0,174,239,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.email-popup__header::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,174,239,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.email-popup__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,174,239,0.15);
  border: 1px solid rgba(0,174,239,0.35);
  color: #4dd4ff;
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.email-popup__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.email-popup__title span { color: var(--azure); }
.email-popup__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  position: relative; z-index: 1;
}
.email-popup__body {
  background: var(--white);
  padding: 32px 40px 36px;
}
.email-popup__form { display: flex; flex-direction: column; gap: 12px; }
.email-popup__form input {
  padding: 15px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  background: #f8fafc;
}
.email-popup__form input:focus { border-color: var(--azure); background: white; box-shadow: 0 0 0 4px rgba(0,174,239,0.1); }
.email-popup__form button { width: 100%; padding: 16px; font-size: 15px; letter-spacing: 0.2px; }
.email-popup__trust {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  margin-top: 16px; gap: 12px;
}
.email-popup__trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--text-muted); font-weight: 500;
}
.email-popup__trust span::before { content: '✓'; color: #16a34a; font-weight: 700; }
.email-popup__proof {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--gray);
  text-align: center;
  font-size: 13px; color: var(--text-dim);
}
.email-popup__legal { font-size: 11px; color: var(--text-muted); margin-top: 14px; text-align: center; line-height: 1.5; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.05);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,15,30,0.8) 0%, rgba(13,31,60,0.4) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  max-width: 800px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,174,239,0.15);
  border: 1px solid rgba(0,174,239,0.3);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azure-light);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  font-family: var(--font-head);
}
.hero__tag span { width: 6px; height: 6px; background: var(--azure); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero__title {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title .azure { color: var(--azure); }

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 400;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── Stats Band ── */
.stats {
  background: var(--navy);
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats__item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--azure);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stats__label { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 400; }

/* ── Section base ── */
.section { padding: 100px 0; }
.section--gray { background: var(--gray); }
.section--navy { background: var(--navy); color: white; }
.section--dark { background: var(--navy-deep); color: white; }

.section__head { margin-bottom: 64px; }
.section__head.center { text-align: center; }
.section__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.section--navy .section__title,
.section--dark .section__title { color: white; }
.section__sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 600px;
}
.section--navy .section__sub,
.section--dark .section__sub { color: rgba(255,255,255,0.6); }
.section__head.center .section__sub { margin-left: auto; margin-right: auto; }

/* ── Pack Cards (Homepage) ── */
.packs { padding: 100px 0; background: var(--gray); }
.packs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pack-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px solid var(--line);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.pack-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-heavy); border-color: var(--azure); }
.pack-card--featured { border-color: var(--azure); box-shadow: 0 0 0 1px var(--azure), var(--shadow); }

.pack-card__badge {
  background: var(--azure);
  color: white;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px;
  font-family: var(--font-head);
}

.pack-card__img {
  height: 220px;
  overflow: hidden;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 24px; transition: transform 0.6s var(--ease-out); }
.pack-card:hover .pack-card__img img { transform: scale(1.05); }

.pack-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.pack-card__brand { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--azure); margin-bottom: 8px; font-family: var(--font-head); }
.pack-card__name { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.pack-card__desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; flex: 1; }

.pack-card__prices { margin-bottom: 28px; }
.pack-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 14px;
}
.pack-card__price-row:last-child { border-bottom: none; }
.pack-card__price-label { color: var(--text-dim); }
.pack-card__price-val { font-weight: 700; color: var(--navy); font-family: var(--font-head); font-size: 16px; }
.pack-card__price-val .starting { font-size: 11px; font-weight: 400; color: var(--text-muted); }

.pack-card__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.pack-card__feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.pack-card__feat svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--azure); }

.pack-card__cta { display: flex; gap: 10px; }
.pack-card__cta .btn { flex: 1; text-align: center; justify-content: center; font-size: 13px; padding: 13px 20px; }

/* ── Process Steps ── */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--azure), transparent);
}
.process__step { text-align: center; padding: 0 24px; }
.process__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--azure);
  color: white;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,174,239,0.35);
}
.process__title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.process__desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* ── Zones ── */
.zones__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.zone-tag {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-head);
  transition: all 0.3s;
}
.zone-tag:hover { border-color: var(--azure); color: var(--azure); transform: translateY(-2px); }

/* ── Reviews ── */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1.5px solid var(--line);
  transition: all 0.4s var(--ease-out);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card__stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card__text { font-size: 15px; color: var(--text-dim); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-card__footer { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--azure);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: 14px; color: var(--navy); }
.review-card__source { font-size: 12px; color: var(--text-muted); }

/* ── Product Page ── */
.page-hero {
  background: var(--navy);
  padding: 100px 0 48px;
  overflow: hidden;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .label { opacity: 0.8; }
.page-hero__title { font-size: clamp(26px, 3.5vw, 48px); font-weight: 900; color: white; letter-spacing: -0.03em; margin-bottom: 12px; }
.page-hero__sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 560px; }

/* ── Product Tabs ── */
.product-section { padding: 80px 0; border-bottom: 1px solid var(--gray-mid); }
.product-section:last-child { border-bottom: none; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-layout.reverse .product-img { order: 2; }
.product-layout.reverse .product-info { order: 1; }

.product-img {
  background: var(--gray);
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 40px; }

.product-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,174,239,0.1);
  border: 1px solid rgba(0,174,239,0.25);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  color: var(--azure);
  font-family: var(--font-head);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.product-info__name { font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 8px; }
.product-info__price-block { margin: 20px 0; padding: 20px 24px; background: var(--gray); border-radius: 12px; }
.product-info__price { font-family: var(--font-head); font-size: 42px; font-weight: 900; color: var(--navy); letter-spacing: -0.03em; }
.product-info__price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.product-info__included { font-size: 13px; color: var(--text-dim); margin-top: 6px; }

.product-info__features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0 28px; }
.product-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  background: var(--gray);
  padding: 10px 14px;
  border-radius: 10px;
}
.product-feat svg { width: 14px; height: 14px; stroke: var(--azure); flex-shrink: 0; }

.product-info__cta { display: flex; gap: 12px; margin-bottom: 24px; }
.product-info__cta .btn { flex: 1; justify-content: center; }

/* ── Product Tabs ── */
.product-tabs { margin-top: 40px; }
.tabs__nav {
  display: flex;
  border-bottom: 1px solid var(--gray-mid);
  margin-bottom: 24px;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-head);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  letter-spacing: 0.5px;
}
.tab-btn.active { color: var(--azure); border-bottom-color: var(--azure); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-desc { font-size: 15px; color: var(--text-dim); line-height: 1.8; }
.tab-desc p { margin-bottom: 16px; }
.tab-desc ul { padding-left: 20px; margin-bottom: 16px; }
.tab-desc ul li { margin-bottom: 8px; list-style: disc; }
.tech-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tech-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 13px;
}
.tech-row:last-child { border-bottom: none; }
.tech-key { color: var(--text-muted); }
.tech-val { font-weight: 600; color: var(--navy); text-align: right; }

/* ── Energy Label ── */
.energy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #15803d;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
}

/* ── Devis Form ── */
.devis-section { padding: 100px 0; background: var(--gray); }
.devis-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.devis-info h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 16px; }
.devis-info p { font-size: 16px; color: var(--text-dim); line-height: 1.7; margin-bottom: 32px; }
.devis-info__points { display: flex; flex-direction: column; gap: 16px; }
.devis-point { display: flex; align-items: flex-start; gap: 14px; }
.devis-point__icon {
  width: 44px; height: 44px;
  background: var(--azure-glow);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.devis-point__icon svg { width: 20px; height: 20px; stroke: var(--azure); }
.devis-point__text h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.devis-point__text p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.devis-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.devis-form h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; letter-spacing: -0.02em; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: var(--font-head); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--azure); }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A5C74' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.form-select option { background: white; color: var(--text); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; font-size: 15px; padding: 16px; }
.form-legal { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-legal a { color: var(--azure); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1.5px solid var(--line);
  transition: all 0.4s var(--ease-out);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-heavy); border-color: var(--azure); }
.blog-card__img { height: 200px; background: var(--navy); overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); transition: all 0.6s; }
.blog-card:hover .blog-card__img img { filter: brightness(0.9); transform: scale(1.03); }
.blog-card__body { padding: 28px; }
.blog-card__cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--azure); margin-bottom: 10px; font-family: var(--font-head); }
.blog-card__title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.3; }
.blog-card__excerpt { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; }
.blog-card__footer { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }
.blog-card__link { color: var(--azure); font-weight: 600; font-size: 13px; display: flex; align-items: center; gap: 4px; }

/* ── Contact Page ── */
.contact-hero { background: var(--navy); padding: 160px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 16px; }
.contact-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-card__icon {
  width: 48px; height: 48px;
  background: var(--azure);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; stroke: white; }
.contact-card__body { min-width: 0; flex: 1; }
.contact-card h3, .contact-card h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--text-dim); margin-bottom: 4px; }
.contact-card a { font-size: 15px; color: var(--azure); font-weight: 600; word-break: break-all; overflow-wrap: break-word; display: block; }

/* ── CTA Banner ── */
.cta-banner { background: var(--azure); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: white; letter-spacing: -0.025em; margin-bottom: 12px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-banner .btn--white:hover { background: white; }

/* ── Mentions Légales ── */
.legal-content { max-width: 800px; margin: 0 auto; padding: 120px 40px 80px; }
.legal-content h1 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy); margin-bottom: 40px; letter-spacing: -0.025em; }
.legal-content h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin: 36px 0 12px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { padding-left: 24px; }
.legal-content ul li { list-style: disc; }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .packs__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-layout.reverse .product-img, .product-layout.reverse .product-info { order: unset; }
  .devis-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container, .container--wide { padding: 0 20px; }
  .navbar { width: calc(100% - 40px); top: 12px; padding: 12px 20px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .packs__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
  .zones__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .product-info__features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; padding: 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
  .hero__title { font-size: clamp(36px, 10vw, 56px); }
  .section { padding: 60px 0; }
  .devis-form { padding: 28px 20px; }
  .email-popup__header { padding: 36px 28px 28px; }
  .email-popup__body { padding: 24px 28px 28px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ── Animations Keyframes ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.anim-fade-up { animation: fadeUp 0.8s var(--ease-out) both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }

/* ── Promo Banner ── */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #0D1F3C 0%, #0a3060 50%, #0D1F3C 100%);
  border-bottom: 1px solid rgba(0,174,239,0.3);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
}
.promo-banner__text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-banner__text em {
  color: #00AEEF;
  font-style: normal;
}
.promo-banner__countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
}
.promo-banner__unit {
  background: rgba(0,174,239,0.15);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 13px;
  font-weight: 800;
  color: #00AEEF;
  min-width: 32px;
  text-align: center;
  line-height: 1.6;
}
.promo-banner__sep { color: rgba(255,255,255,0.4); font-weight: 700; font-size: 13px; }
@media(max-width:768px) {
  .promo-banner { gap: 12px; height: 44px; }
  .promo-banner__text { font-size: 10px; }
  .promo-banner__text span { display: none; }
}

/* ── Prix promo ── */
.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
  margin-bottom: 2px;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #ff6b35, #f7c948);
  color: white;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  margin-bottom: 12px;
}

/* ── Promo Section Homepage ── */
.promo-section {
  background: linear-gradient(135deg, #0D1F3C 0%, #0a3060 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.promo-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,174,239,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.promo-section__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.promo-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #f7c948);
  color: white;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.promo-section__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.promo-section__title span { color: #00AEEF; }
.promo-section__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
}
.promo-countdown {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.promo-countdown__block {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 72px;
}
.promo-countdown__num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: #00AEEF;
  line-height: 1;
  letter-spacing: -0.02em;
}
.promo-countdown__label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}
.promo-countdown__sep {
  font-size: 28px;
  font-weight: 900;
  color: rgba(0,174,239,0.4);
  margin-bottom: 16px;
}
@media(max-width:768px) {
  .promo-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .promo-countdown { gap: 8px; }
  .promo-countdown__block { padding: 12px 14px; min-width: 56px; }
  .promo-countdown__num { font-size: 28px; }
}

/* ── Encart promo pages produit ── */
.promo-encart {
  background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(247,201,72,0.08));
  border: 1.5px solid rgba(255,107,53,0.25);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.promo-encart__left { display: flex; align-items: center; gap: 16px; }
.promo-encart__icon { font-size: 28px; }
.promo-encart__title { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.promo-encart__sub { font-size: 13px; color: var(--text-dim); }
.promo-encart__countdown { display: flex; gap: 8px; align-items: center; }
.promo-encart__unit { background: var(--navy); color: #00AEEF; font-family: var(--font-head); font-size: 18px; font-weight: 900; padding: 6px 12px; border-radius: 8px; min-width: 44px; text-align: center; }
.promo-encart__sep { font-size: 18px; font-weight: 900; color: var(--text-muted); }
@media(max-width:768px) { .promo-encart { flex-direction: column; align-items: flex-start; } }

/* ── Social Proof Notification ── */
.sp-notif {
  position: fixed;
  bottom: 80px;
  left: 24px;
  z-index: 9000;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(13,31,60,0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  transform: translateX(-360px);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  border-left: 3px solid #00AEEF;
}
.sp-notif.visible { transform: translateX(0); }
.sp-notif__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #0D1F3C, #00AEEF);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; color: white; font-size: 14px;
  flex-shrink: 0;
}
.sp-notif__text { font-size: 13px; color: var(--navy); line-height: 1.5; }
.sp-notif__text strong { font-weight: 700; }
.sp-notif__time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
@media(max-width:768px) { .sp-notif { bottom: 90px; left: 12px; max-width: 260px; } }

/* ── Sticky Mobile CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: white;
  border-top: 1px solid var(--gray-mid);
  padding: 10px 16px;
  box-shadow: 0 -4px 24px rgba(13,31,60,0.12);
  gap: 8px;
}
@media(max-width:768px) { .sticky-mobile-cta { display: flex; } }
.sticky-mobile-cta a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 11px 8px; border-radius: 10px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-decoration: none; transition: opacity 0.2s;
}
.sticky-mobile-cta a:active { opacity: 0.8; }
.sticky-mobile-cta__call { background: var(--navy); color: white; }
.sticky-mobile-cta__wa { background: #25D366; color: white; }
.sticky-mobile-cta__devis { background: var(--azure); color: white; }

/* ── Calculateur de prix ── */
.calc-section { background: var(--gray); padding: 80px 0; }
.calc-wrap {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(13,31,60,0.08);
  max-width: 760px;
  margin: 0 auto;
}
@media(max-width:768px) { .calc-wrap { padding: 28px 20px; } }
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-step__title {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--navy); margin-bottom: 8px; letter-spacing: -0.02em;
}
.calc-step__sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.calc-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media(max-width:600px) { .calc-options { grid-template-columns: 1fr; } }
.calc-opt {
  border: 2px solid var(--gray-mid); border-radius: 14px; padding: 20px 16px;
  text-align: center; cursor: pointer; transition: all 0.2s; background: white;
}
.calc-opt:hover { border-color: var(--azure); background: rgba(0,174,239,0.04); }
.calc-opt.selected { border-color: var(--azure); background: rgba(0,174,239,0.08); }
.calc-opt__icon { font-size: 32px; margin-bottom: 10px; }
.calc-opt__label { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--navy); }
.calc-opt__sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.calc-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.calc-progress__dot {
  height: 4px; flex: 1; border-radius: 4px; background: var(--gray-mid); transition: background 0.3s;
}
.calc-progress__dot.active { background: var(--azure); }
.calc-result { display: none; }
.calc-result.active { display: block; }
.calc-result__title { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.calc-result__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 28px; }
@media(max-width:600px) { .calc-result__grid { grid-template-columns: 1fr; } }
.calc-result__card {
  border: 2px solid var(--gray-mid); border-radius: 14px; padding: 20px 16px; text-align: center;
}
.calc-result__card--best { border-color: var(--azure); background: rgba(0,174,239,0.05); }
.calc-result__brand { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.calc-result__price-old { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }
.calc-result__price { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
.calc-result__badge { display: inline-block; background: var(--azure); color: white; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 40px; margin-top: 6px; }
.calc-reset { background: none; border: none; color: var(--azure); font-size: 13px; cursor: pointer; margin-top: 12px; text-decoration: underline; }

/* ── Compteur live ── */
.live-counter {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,174,239,0.1); border: 1px solid rgba(0,174,239,0.2);
  border-radius: 40px; padding: 6px 16px; margin-bottom: 20px;
}
.live-counter__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.live-counter__text { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--azure); }

/* ── Dropdown Navigation ── */
.nav-drop { position: relative; }
.nav-drop__btn {
  font-size: 13px; font-weight: 500; color: var(--white);
  padding: 8px 14px; border-radius: 40px; font-family: var(--font-head);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px; transition: background 0.2s;
}
.nav-drop__btn:hover { background: rgba(255,255,255,0.1); }
.nav-drop__btn svg { transition: transform 0.25s; flex-shrink: 0; }
.nav-drop.open .nav-drop__btn svg { transform: rotate(180deg); }
.nav-drop__panel {
  position: absolute; top: calc(100% + 12px); left: 50%;
  background: #fff; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  padding: 8px; min-width: 240px; z-index: 200;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-drop.open .nav-drop__panel { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-drop__panel a {
  display: flex !important; align-items: center !important; gap: 12px !important;
  padding: 10px 12px !important; border-radius: 10px !important;
  color: var(--navy) !important; font-size: 13px !important; font-weight: 400 !important;
  transition: background 0.15s !important; white-space: nowrap;
}
.nav-drop__panel a:hover { background: rgba(0,174,239,0.08) !important; }
.nav-drop__panel a strong { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 1px; }
.nav-drop__panel a small { display: block; font-size: 11px; color: var(--text-dim); }
.nav-drop__icon {
  font-size: 16px; width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,174,239,0.08); border-radius: 8px;
}
.nav-drop__panel--grid { min-width: 280px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-drop__panel--grid a { padding: 9px 12px !important; }

/* ── Search Button ── */
.navbar__search-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; color: white; flex-shrink: 0;
}
.navbar__search-btn:hover { background: rgba(255,255,255,0.2); }

/* ── Search Overlay ── */
.search-overlay {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(13,31,60,0.96); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay__close {
  position: absolute; top: 28px; right: 32px; font-size: 28px;
  color: white; background: none; border: none; cursor: pointer;
  opacity: 0.5; transition: opacity 0.2s; line-height: 1; font-family: sans-serif;
}
.search-overlay__close:hover { opacity: 1; }
.search-overlay__inner { width: 100%; max-width: 600px; padding: 0 24px; }
.search-overlay__inner h2 {
  font-family: var(--font-head); color: white;
  font-size: clamp(20px, 4vw, 32px); margin-bottom: 20px;
  text-align: center; font-weight: 700;
}
.search-overlay__bar {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px; padding: 14px 22px; color: white;
}
.search-overlay__bar svg { flex-shrink: 0; opacity: 0.55; }
.search-overlay__bar input {
  background: none; border: none; outline: none; color: white;
  font-size: 16px; font-family: var(--font-body); flex: 1; min-width: 0;
}
.search-overlay__bar input::placeholder { color: rgba(255,255,255,0.35); }
#search-results { margin-top: 12px; border-radius: 16px; overflow: hidden; max-height: 360px; overflow-y: auto; }
.search-result {
  display: block; padding: 14px 20px;
  background: rgba(255,255,255,0.07); color: white;
  transition: background 0.15s; border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: rgba(0,174,239,0.18); }
.search-result__title { font-size: 14px; font-weight: 600; font-family: var(--font-head); margin-bottom: 2px; }
.search-result__tag { font-size: 11px; opacity: 0.5; text-transform: uppercase; letter-spacing: 1px; }
.search-overlay__hint { text-align: center; color: rgba(255,255,255,0.3); font-size: 12px; margin-top: 16px; }
.search-overlay__hint kbd {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; padding: 1px 6px; font-size: 11px;
}

/* ── Mobile Accordion ── */
.mobile-acc { width: 100%; text-align: center; }
.mobile-acc__trigger {
  font-family: var(--font-head); font-size: clamp(26px, 5.5vw, 42px); font-weight: 700;
  color: var(--white); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 10px auto; letter-spacing: -0.02em; transition: color 0.2s;
}
.mobile-acc__trigger:hover { color: var(--azure); }
.mobile-acc__trigger svg { transition: transform 0.3s; flex-shrink: 0; }
.mobile-acc.open .mobile-acc__trigger svg { transform: rotate(180deg); }
.mobile-acc__body {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.mobile-acc.open .mobile-acc__body { max-height: 500px; }
.mobile-acc__body a {
  font-size: 17px !important; font-weight: 500 !important;
  color: rgba(255,255,255,0.65) !important; margin: 3px 0 !important;
  letter-spacing: normal !important; font-family: var(--font-head) !important;
}
.mobile-acc__body a:hover { color: var(--azure) !important; }
