:root {
  --bg: #07080b;
  --bg-soft: #101117;
  --panel: rgba(18, 19, 25, 0.82);
  --panel-strong: #111218;
  --text: #f4f4f7;
  --muted: #a8acb8;
  --line: rgba(255,255,255,0.08);
  --accent: #ff6a1a;
  --accent-soft: rgba(255,106,26,0.18);
  --shadow: 0 20px 60px rgba(0,0,0,.38);
  --radius: 24px;
  --wrapper: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,106,26,.08), transparent 30%),
    radial-gradient(circle at left 20%, rgba(255,255,255,.03), transparent 22%),
    var(--bg);
  color: var(--text);
}

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

.wrapper { width: var(--wrapper); margin: 0 auto; }

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(60px);
  opacity: .4;
  z-index: 0;
}
.glow-1 {
  width: 240px; height: 240px; right: 5%; top: 8%;
  background: rgba(255,106,26,.25);
}
.glow-2 {
  width: 180px; height: 180px; left: 8%; top: 42%;
  background: rgba(255,255,255,.06);
}

.topbar, .navbar, main, .footer { position: relative; z-index: 1; }

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a:hover, .nav-links a:hover, .footer a:hover { color: var(--text); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 30px;
  font-weight: 700;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  color: var(--accent);
  border: 1px solid rgba(255,106,26,.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  font-size: 14px;
  letter-spacing: .08em;
}
.brand-text { font-size: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  color: var(--muted);
}
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.nav-cta, .btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(255,106,26,.28);
}
.btn-secondary {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--text);
}
.nav-cta:hover, .btn:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 20px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  padding: 34px 0 40px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}
.hero h1, .section-heading h2, .contact-band h2, .contact h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -0.04em;
}
.hero-text, .section-heading p, .summary-text p, .contact-item p, .hours-note {
  color: var(--muted);
  line-height: 1.75;
}
.hero-text { max-width: 640px; font-size: 18px; margin: 24px 0 18px; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #d9dce6;
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,106,26,.15);
}
.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-mini-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.hero-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,26,.25);
  background: rgba(255,106,26,.08);
  color: #f5e7de;
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.chip-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,106,26,.18);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-card {
  position: relative;
  width: min(100%, 430px);
}
.device-shadow {
  position: absolute;
  inset: auto 10% -12% 10%;
  height: 110px;
  background: radial-gradient(circle, rgba(255,106,26,.33), transparent 70%);
  filter: blur(24px);
}
.phone-illustration {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,.55));
}
.hero-stat-card {
  position: absolute;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.stat-main {
  right: 0;
  top: 10%;
  padding: 26px 28px;
  text-align: left;
}
.stat-number {
  display: block;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}
.stat-label { color: var(--muted); letter-spacing: .16em; text-transform: uppercase; font-size: 11px; }
.stat-side {
  left: 0;
  bottom: 10%;
  max-width: 270px;
  padding: 22px 22px 20px;
}
.stat-side strong { display: block; margin-bottom: 10px; font-size: 24px; }
.stat-side p { margin: 0; color: var(--muted); line-height: 1.7; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 16px 0 74px;
}
.stat-box, .service-card, .review-card, .contact-panel, .hours-panel, .map-wrap, .contact-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-box {
  padding: 24px;
}
.stat-box strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.stat-box span { color: var(--muted); line-height: 1.7; }

.services, .reviews, .contact {
  padding: 50px 0 84px;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-heading h2, .contact-band h2, .contact h2 { font-size: clamp(32px, 4vw, 52px); }
.section-heading.split {
  max-width: unset;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.services-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 26px;
  min-height: 230px;
}
.service-card.featured {
  background: linear-gradient(180deg, rgba(255,106,26,.16), rgba(255,255,255,.02));
}
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,106,26,.14);
  font-size: 26px;
  margin-bottom: 22px;
}
.service-card h3, .review-card strong {
  margin: 0 0 12px;
  font-size: 24px;
}
.service-card p, .review-card p, .review-card span { color: var(--muted); line-height: 1.8; }

.reviews-summary {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.summary-rating, .summary-text {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.summary-rating span {
  display: block;
  font-size: 58px;
  font-weight: 800;
  color: var(--text);
}
.summary-rating p { margin: 10px 0 0; color: var(--muted); }
.review-card {
  padding: 28px;
}
.review-card.highlight {
  border-color: rgba(255,106,26,.34);
  background: linear-gradient(180deg, rgba(255,106,26,.1), rgba(255,255,255,.02));
}
.stars { color: var(--accent); letter-spacing: .22em; margin-bottom: 18px; }
.review-card strong { display: block; margin-top: 12px; margin-bottom: 4px; }

.contact-band {
  padding: 28px;
  margin-bottom: 24px;
}
.band-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.band-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: #d8dbe4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-panel, .hours-panel { padding: 28px; }
.label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
.contact-item + .contact-item { margin-top: 18px; }
.contact-item p { margin: 0; }
.hours-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list li span { color: var(--muted); }
.map-wrap {
  overflow: hidden;
  padding: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(1) invert(.92) contrast(1.05);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 60px;
  color: var(--muted);
}
.footer strong { color: var(--text); display: block; margin-bottom: 6px; }
.footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}
.floating-btn {
  min-width: 168px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 16px 18px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.3);
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.floating-btn.call { background: linear-gradient(135deg, #ff6a1a, #ff8242); }
.floating-btn.whatsapp { background: linear-gradient(135deg, #1fa95b, #25d366); }
.floating-btn:hover { transform: translateY(-2px); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; padding-top: 30px; }
  .stat-main { right: 2%; top: 0; }
  .stat-side { left: 2%; bottom: 2%; }
  .services-grid, .reviews-grid, .stats, .contact-grid, .reviews-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 840px) {
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(320px, calc(100vw - 32px));
    background: rgba(10,11,15,.97);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a { padding: 8px 6px; }
  .nav-cta { text-align: center; }
  .services-grid, .reviews-grid, .stats, .contact-grid, .reviews-summary { grid-template-columns: 1fr; }
  .section-heading.split, .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 { font-size: clamp(34px, 10vw, 58px); }
  .hero-visual { min-height: 620px; }
  .stat-main { top: 2%; right: 0; }
  .stat-side { left: 0; bottom: 3%; }
}

@media (max-width: 560px) {
  .wrapper { width: min(100% - 20px, 100%); }
  .navbar { padding: 18px 0; }
  .brand-text { font-size: 20px; }
  .hero { gap: 24px; padding-top: 20px; }
  .hero-text { font-size: 16px; }
  .hero-visual { min-height: 520px; }
  .stat-number { font-size: 42px; }
  .summary-rating span { font-size: 42px; }
  .service-card, .review-card, .contact-panel, .hours-panel, .contact-band, .stat-box { padding: 22px; }
  .floating-actions {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }
  .floating-btn { min-width: 0; width: 100%; }
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  padding: 24px;
}
.review-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,106,26,.12);
  border: 1px solid rgba(255,106,26,.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  font-size: 26px;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* Reviews compact */
.reviews-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card.compact-card {
  padding:14px 14px 12px;
  min-height:130px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}


.review-card.compact-card .stars {
  font-size:14px;
  margin-bottom:6px;
}


.review-card.compact-card .review-text {
  color: var(--muted);
  line-height:1.5;
  font-size:13px;
  margin:0 0 6px;
  min-height:36px;
}


.review-card.compact-card strong {
  margin-top:auto;
  display:block;
  font-size:16px;
}

.review-card.compact-card > span:last-child {
  color: var(--muted);
  margin-top: 6px;
  font-size: 14px;
}
.review-more {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,106,26,.32);
  background: rgba(255,106,26,.08);
  color: #ffd5bf;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.review-more:hover {
  transform: translateY(-1px);
  background: rgba(255,106,26,.14);
  border-color: rgba(255,106,26,.55);
}
.review-card.expanded {
  min-height: unset;
}
.review-card.expanded .review-text {
  min-height: 0;
}
.review-card.expanded .review-preview {
  display: none;
}
.review-card.expanded .review-full[hidden] {
  display: inline;
}
.review-card:not(.expanded) .review-full {
  display: none;
}
@media (max-width: 980px) {
  .reviews-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .reviews-grid.compact {
    grid-template-columns: 1fr;
  }
  
.review-card.compact-card {
  padding:14px 14px 12px;
  min-height:130px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

}


/* Premium navigation effects */
.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7,8,11,.58);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 24px;
  margin-top: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,106,26,.35), rgba(255,255,255,.04), rgba(255,106,26,.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.navbar.is-scrolled {
  background: rgba(10,11,16,.82);
  box-shadow: 0 24px 70px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.03);
}
.brand {
  transition: transform .24s ease, filter .24s ease;
}
.brand:hover {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 0 14px rgba(255,106,26,.25));
}
.nav-links a {
  position: relative;
  transition: color .22s ease, transform .22s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,106,26,0), rgba(255,106,26,1), rgba(255,106,26,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .26s ease;
}
.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.22) 50%, transparent 75%);
  transition: transform .7s ease;
}
.nav-cta:hover::before,
.btn-primary:hover::before {
  transform: translateX(120%);
}

/* Premium services */
.services-grid {
  gap: 22px;
}
.premium-service {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,106,26,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    rgba(16,17,23,.88);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 16px 50px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.03);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.premium-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,26,.14), transparent 34%, transparent 65%, rgba(255,106,26,.05));
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.premium-service:hover {
  transform: translateY(-8px);
  border-color: rgba(255,106,26,.28);
  box-shadow: 0 26px 70px rgba(0,0,0,.36), 0 0 0 1px rgba(255,106,26,.08);
}
.premium-service:hover::before {
  opacity: 1;
}
.premium-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,183,120,.22), transparent 35%),
    linear-gradient(180deg, rgba(255,106,26,.16), rgba(255,106,26,.05));
  border: 1px solid rgba(255,106,26,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 10px 30px rgba(255,106,26,.12);
  margin-bottom: 18px;
}
.premium-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #ff8a45;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255,106,26,.18));
}
.service-card h3 {
  letter-spacing: -.02em;
}
.service-card p {
  max-width: 33ch;
}
.floating-btn,
.btn,
.nav-cta,
.service-card,
.review-card,
.contact-card,
.info-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

/* subtle reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

/* overflow fix */

.hero-visual{
  overflow:hidden;
  border-radius:28px;
}

.hero-visual .device-card{
  max-width:100%;
  overflow:hidden;
}

/* === HERO PREMIUM 3D PHONE - Alpha Électronic === */
.hero {
  min-height: calc(100vh - 130px);
}
.hero-copy .eyebrow {
  color: #ff7a22;
}
.hero-visual-premium {
  min-height: 690px;
  perspective: 1200px;
  background:
    radial-gradient(circle at 55% 72%, rgba(255,106,26,.20), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255,126,34,.11), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 35px 90px rgba(0,0,0,.34);
}
.phone-stage {
  position: relative;
  width: min(560px, 100%);
  height: 610px;
  transform-style: preserve-3d;
  animation: phonePremiumFloat 7s ease-in-out infinite;
  z-index: 2;
}
.phone-3d {
  position: absolute;
  top: 52px;
  width: 236px;
  height: 470px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 38px 42px rgba(0,0,0,.55));
}
.phone-front {
  left: 94px;
  animation: frontPhoneRotate 12s ease-in-out infinite;
}
.phone-back {
  right: 92px;
  animation: backPhoneRotate 12s ease-in-out infinite;
}
.phone-frame,
.phone-backplate {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  overflow: hidden;
  border: 3px solid rgba(245,245,245,.82);
  box-shadow:
    inset 0 0 0 4px #121217,
    inset 0 1px 0 rgba(255,255,255,.25),
    0 0 34px rgba(255,106,26,.12);
}
.phone-frame {
  background:
    radial-gradient(circle at 30% 20%, rgba(255,205,118,.88), transparent 31%),
    radial-gradient(circle at 78% 38%, rgba(255,105,26,.72), transparent 34%),
    linear-gradient(145deg, #f5ad3f 0%, #fb681c 46%, #a42318 72%, #050507 100%);
}
.phone-backplate {
  background:
    radial-gradient(circle at 70% 12%, rgba(255,255,255,.38), transparent 24%),
    linear-gradient(150deg, #d9d1c6 0%, #9e978e 34%, #494846 100%);
  transform: rotateY(12deg);
}
.dynamic-island {
  position: absolute;
  left: 50%;
  top: 17px;
  width: 88px;
  height: 25px;
  transform: translateX(-50%);
  background: #141217;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.08);
  z-index: 5;
}
.screen-shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.26), transparent 53%);
  transform: translateX(-70%) rotate(8deg);
  animation: screenLightSweep 4.8s ease-in-out infinite;
  z-index: 3;
}
.screen-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .75; }
.orb-a { width: 250px; height: 250px; left: -54px; top: 95px; background: radial-gradient(circle, rgba(255,184,74,.72), transparent 62%); }
.orb-b { width: 280px; height: 280px; right: -75px; bottom: -30px; background: radial-gradient(circle, rgba(255,78,35,.62), transparent 64%); }
.screen-time {
  position: absolute;
  left: 0; right: 0; top: 172px;
  text-align: center;
  font-size: 58px;
  font-weight: 300;
  letter-spacing: -0.06em;
  color: #fff;
  z-index: 4;
}
.screen-day {
  position: absolute;
  left: 0; right: 0; top: 235px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  z-index: 4;
}
.phone-frame::after {
  content: "";
  position: absolute;
  left: -20px; right: -20px; bottom: -25px;
  height: 160px;
  background: radial-gradient(ellipse at 25% 12%, #07070b 0 48%, transparent 49%), radial-gradient(ellipse at 80% 8%, #07070b 0 44%, transparent 45%), #07070b;
  border-radius: 45% 45% 0 0;
  z-index: 4;
}
.camera-block {
  position: absolute;
  left: 20px; top: 22px;
  width: 94px; height: 94px;
  border-radius: 26px;
  background: rgba(238,234,228,.62);
  border: 1px solid rgba(255,255,255,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 10px 25px rgba(0,0,0,.18);
}
.camera-block span {
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3b4350 0 18%, #07080b 42%, #000 100%);
  border: 3px solid rgba(245,245,245,.75);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.camera-block span:nth-child(1){ left: 10px; top: 10px; }
.camera-block span:nth-child(2){ right: 10px; top: 29px; }
.camera-block span:nth-child(3){ left: 18px; bottom: 9px; }
.camera-block i {
  position: absolute;
  right: 17px; bottom: 15px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #17181d;
}
.phone-logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  display: grid; place-items: center;
  border-radius: 22px;
  color: rgba(0,0,0,.58);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .08em;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.12);
}
.hero-orbit {
  position: absolute;
  left: 50%; bottom: 76px;
  transform: translateX(-50%) rotateX(72deg);
  width: 430px; height: 140px;
  border: 2px solid rgba(255,106,26,.8);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(255,106,26,.45), inset 0 0 25px rgba(255,106,26,.20);
  filter: blur(.15px);
}
.spark { position:absolute; width:5px; height:5px; border-radius:50%; background:#ff7a22; box-shadow:0 0 18px #ff7a22; opacity:.75; animation:sparkMove 5s ease-in-out infinite; }
.s1{ right:14%; top:22%; } .s2{ left:18%; bottom:28%; animation-delay:1.1s;} .s3{ right:28%; bottom:18%; animation-delay:2s;}
.google-live-card { right: 2%; top: 8%; }
.google-live-note { left: 2%; bottom: 10%; }
@keyframes phonePremiumFloat {
  0%,100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-18px) rotateX(1.4deg); }
}
@keyframes frontPhoneRotate {
  0%,100% { transform: rotateZ(-10deg) rotateY(-18deg) translateZ(45px); }
  50% { transform: rotateZ(-7deg) rotateY(10deg) translateZ(70px); }
}
@keyframes backPhoneRotate {
  0%,100% { transform: rotateZ(13deg) rotateY(24deg) translateZ(0); }
  50% { transform: rotateZ(9deg) rotateY(-8deg) translateZ(40px); }
}
@keyframes screenLightSweep {
  0%, 55% { transform: translateX(-80%) rotate(8deg); opacity:0; }
  70% { opacity:.9; }
  100% { transform: translateX(80%) rotate(8deg); opacity:0; }
}
@keyframes sparkMove {
  0%,100% { transform: translate3d(0,0,0) scale(1); opacity:.35; }
  50% { transform: translate3d(18px,-28px,0) scale(1.35); opacity:1; }
}
@media (max-width: 840px) {
  .hero-visual-premium { min-height: 560px; }
  .phone-stage { transform: scale(.82); transform-origin:center; }
  .phone-front { left: 66px; }
  .phone-back { right: 66px; }
  .google-live-card { top: 6%; right: 0; }
  .google-live-note { bottom: 6%; left: 0; max-width: 245px; }
}
@media (max-width: 560px) {
  .hero { min-height: auto; }
  .hero-visual-premium { min-height: 490px; }
  .phone-stage { width: 420px; height: 500px; transform: scale(.68); }
  .phone-front { left: 72px; }
  .phone-back { right: 54px; }
  .hero-orbit { width: 300px; bottom: 72px; }
  .google-live-card { padding: 18px 20px; }
  .google-live-note { display:none; }
}
@media (prefers-reduced-motion: reduce) {
  .phone-stage, .phone-front, .phone-back, .screen-shine, .spark { animation: none !important; }
}

/* === Ultra premium hero correction: no collision, clean review card layering === */
.hero-visual-premium {
  overflow: visible;
  isolation: isolate;
}
.phone-stage {
  width: min(620px, 100%);
  height: 610px;
  animation: phonePremiumFloatSoft 9s ease-in-out infinite;
}
.phone-front {
  left: 88px;
  z-index: 3;
  animation: frontPhoneRotateSoft 14s ease-in-out infinite;
}
.phone-back {
  right: 58px;
  z-index: 2;
  animation: backPhoneRotateSoft 14s ease-in-out infinite;
}
.google-live-card {
  top: 18px;
  right: 18px;
  z-index: 7;
  background: rgba(14,15,20,.92);
}
.google-live-note {
  left: 18px;
  bottom: 18px;
  z-index: 7;
  background: rgba(14,15,20,.92);
  max-width: 310px;
}
@keyframes phonePremiumFloatSoft {
  0%,100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-10px) rotateX(.8deg); }
}
@keyframes frontPhoneRotateSoft {
  0%,100% { transform: rotateZ(-9deg) rotateY(-10deg) translate3d(-18px, 0, 42px); }
  50% { transform: rotateZ(-7deg) rotateY(6deg) translate3d(-28px, -7px, 50px); }
}
@keyframes backPhoneRotateSoft {
  0%,100% { transform: rotateZ(11deg) rotateY(14deg) translate3d(30px, 2px, -8px); }
  50% { transform: rotateZ(8deg) rotateY(3deg) translate3d(42px, -5px, -2px); }
}
@media (max-width: 840px) {
  .hero-visual-premium { overflow: hidden; }
  .phone-front { left: 58px; }
  .phone-back { right: 28px; }
}
@media (max-width: 560px) {
  .phone-front { left: 64px; }
  .phone-back { right: 28px; }
  .google-live-card { top: 12px; right: 12px; }
}

/* === Legal & cookies premium layer === */
.rgpd-notice {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,106,26,.07);
  border: 1px solid rgba(255,106,26,.18);
}
.rgpd-notice strong { display:block; margin-bottom: 8px; }
.rgpd-notice p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 14px; }
.rgpd-notice a, .legal-page a { color: #ffb07d; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-card {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(12,13,18,.94);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 28px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
}
.cookie-kicker { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.cookie-card h3 { margin: 5px 0 8px; font-size: 22px; }
.cookie-card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.legal-page { padding: 60px 0 84px; }
.legal-hero, .legal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.legal-hero { padding: clamp(28px, 5vw, 56px); margin-bottom: 22px; }
.legal-hero h1 { margin: 0; font-size: clamp(36px, 6vw, 68px); line-height: 1; letter-spacing: -.04em; }
.legal-hero p { max-width: 850px; color: var(--muted); line-height: 1.75; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.legal-card { padding: 26px; }
.legal-card.full { grid-column: 1 / -1; }
.legal-card h2 { margin: 0 0 14px; font-size: 26px; }
.legal-card h3 { margin: 18px 0 8px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.75; }
.legal-card ul { padding-left: 20px; }
.legal-badge { display:inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,106,26,.10); border: 1px solid rgba(255,106,26,.22); color: #ffd6bf; font-weight: 700; font-size: 13px; margin-bottom: 14px; }
.legal-warning { border-color: rgba(255,106,26,.30); background: linear-gradient(180deg, rgba(255,106,26,.10), rgba(255,255,255,.02)); }
@media (max-width: 820px) {
  .cookie-card, .legal-grid { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
}

/* === Mobile polish v11: responsive uniquement, structure/contenu inchangés === */
@media (max-width: 840px) {
  :root { --wrapper: min(100% - 24px, 100%); }
  body { overflow-x: hidden; }
  .navbar {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 20px;
  }
  .brand { gap: 10px; min-width: 0; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; flex: 0 0 auto; }
  .brand-text {
    font-size: clamp(17px, 4.8vw, 21px);
    line-height: 1.05;
    white-space: normal;
  }
  .menu-toggle { min-width: 44px; min-height: 44px; justify-content: center; }
  .nav-links {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 18px;
    z-index: 50;
  }
  .nav-links a { padding: 12px 10px; }
  .nav-links a::after { bottom: 3px; }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 22px 0 24px;
    min-height: auto;
  }
  .hero-copy { width: 100%; }
  .hero h1 {
    font-size: clamp(36px, 10.8vw, 54px);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .hero-text { margin: 18px 0 16px; max-width: none; }
  .hero-points { gap: 12px; margin-bottom: 24px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-actions .btn { min-height: 52px; padding: 0 14px; border-radius: 15px; }
  .hero-mini-links { gap: 12px; }
  .hero-icons { gap: 8px; margin-top: 18px; }
  .hero-icon-chip { font-size: 13px; padding: 8px 10px; }

  .hero-visual-premium {
    width: 100%;
    min-height: 530px;
    overflow: hidden;
    border-radius: 24px;
  }
  .phone-stage {
    width: 440px;
    height: 500px;
    max-width: none;
    animation: phoneMobileFloat840 9s ease-in-out infinite;
  }
  .phone-3d { top: 86px; width: 178px; height: 355px; }
  .phone-frame, .phone-backplate { border-radius: 31px; }
  .phone-front {
    left: 78px;
    animation: frontPhoneMobile840 14s ease-in-out infinite;
  }
  .phone-back {
    right: 60px;
    animation: backPhoneMobile840 14s ease-in-out infinite;
  }
  .dynamic-island { width: 68px; height: 20px; top: 13px; }
  .screen-time { top: 128px; font-size: 42px; }
  .screen-day { top: 176px; font-size: 14px; }
  .camera-block { width: 74px; height: 74px; border-radius: 21px; left: 15px; top: 16px; }
  .camera-block span { width: 25px; height: 25px; border-width: 2px; }
  .camera-block span:nth-child(1){ left: 8px; top: 8px; }
  .camera-block span:nth-child(2){ right: 8px; top: 23px; }
  .camera-block span:nth-child(3){ left: 14px; bottom: 7px; }
  .camera-block i { right: 13px; bottom: 12px; width: 10px; height: 10px; }
  .phone-logo { width: 54px; height: 54px; border-radius: 18px; font-size: 16px; }
  .hero-orbit { width: 330px; height: 104px; bottom: 88px; }
  .google-live-card {
    top: 12px;
    right: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    max-width: 150px;
  }
  .google-live-card .stat-number { font-size: 34px; }
  .google-live-card .stat-label { font-size: 9px; letter-spacing: .12em; }
  .google-live-note {
    left: 12px;
    bottom: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    max-width: calc(100% - 24px);
  }
  .google-live-note strong { font-size: 20px; }
  .google-live-note p { font-size: 13px; line-height: 1.55; }

  .stats { gap: 12px; padding: 12px 0 48px; }
  .stat-box { padding: 20px; border-radius: 20px; }
  .services, .reviews, .contact { padding: 42px 0 58px; }
  .section-heading { margin-bottom: 22px; }
  .section-heading h2, .contact-band h2, .contact h2 { font-size: clamp(30px, 8.2vw, 44px); line-height: 1.05; }
  .service-card, .review-card, .contact-panel, .hours-panel, .contact-band { border-radius: 22px; }
  .service-card p { max-width: none; }
  .reviews-summary { gap: 12px; }
  .summary-rating, .summary-text { padding: 22px; border-radius: 22px; }
  .contact-grid { gap: 14px; }
  .map-wrap iframe { height: 330px; }
  .footer { padding-bottom: 110px; }
  .floating-actions { z-index: 60; }
}

@media (max-width: 560px) {
  :root { --wrapper: min(100% - 18px, 100%); }
  .navbar { padding: 10px 12px; margin-top: 8px; }
  .brand-mark { width: 36px; height: 36px; font-size: 12px; }
  .brand-text { font-size: 18px; max-width: 190px; }
  .hero { gap: 20px; padding-top: 18px; }
  .eyebrow { font-size: 10.5px; letter-spacing: .13em; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(33px, 11.4vw, 45px); }
  .hero-text { font-size: 15.5px; line-height: 1.65; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-mini-links { font-size: 13px; justify-content: space-between; }
  .hero-icon-chip { flex: 1 1 auto; justify-content: center; }

  .hero-visual-premium {
    min-height: 455px;
    border-radius: 22px;
    margin-top: 2px;
  }
  .phone-stage {
    width: 360px;
    height: 420px;
    animation: phoneMobileFloat560 9s ease-in-out infinite;
  }
  .phone-3d { top: 90px; width: 140px; height: 280px; }
  .phone-frame, .phone-backplate { border-width: 2px; border-radius: 25px; }
  .phone-frame { box-shadow: inset 0 0 0 3px #121217, inset 0 1px 0 rgba(255,255,255,.22), 0 0 24px rgba(255,106,26,.12); }
  .phone-front {
    left: 76px;
    animation: frontPhoneMobile560 14s ease-in-out infinite;
  }
  .phone-back {
    right: 58px;
    animation: backPhoneMobile560 14s ease-in-out infinite;
  }
  .dynamic-island { width: 54px; height: 16px; top: 10px; }
  .screen-time { top: 102px; font-size: 33px; }
  .screen-day { top: 140px; font-size: 11.5px; }
  .camera-block { width: 58px; height: 58px; border-radius: 17px; left: 12px; top: 13px; }
  .camera-block span { width: 19px; height: 19px; border-width: 2px; }
  .camera-block span:nth-child(1){ left: 6px; top: 6px; }
  .camera-block span:nth-child(2){ right: 6px; top: 18px; }
  .camera-block span:nth-child(3){ left: 11px; bottom: 6px; }
  .camera-block i { right: 10px; bottom: 9px; width: 8px; height: 8px; }
  .phone-logo { width: 42px; height: 42px; border-radius: 14px; font-size: 13px; }
  .hero-orbit { width: 260px; height: 86px; bottom: 78px; }
  .spark { width: 4px; height: 4px; }
  .s1 { right: 10%; top: 28%; }
  .s2 { left: 14%; bottom: 31%; }
  .s3 { right: 24%; bottom: 20%; }
  .google-live-card {
    top: 10px;
    right: 10px;
    padding: 13px 14px;
    max-width: 124px;
    border-radius: 16px;
  }
  .google-live-card .stat-number { font-size: 28px; }
  .google-live-note {
    display: block;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 13px 14px;
    max-width: none;
    border-radius: 16px;
  }
  .google-live-note strong { font-size: 17px; margin-bottom: 5px; }
  .google-live-note p { font-size: 12px; line-height: 1.45; }

  .stats { padding-bottom: 40px; }
  .stat-box strong { font-size: 18px; }
  .service-card, .review-card, .contact-panel, .hours-panel, .contact-band, .stat-box { padding: 19px; }
  .premium-icon { width: 58px; height: 58px; border-radius: 18px; }
  .premium-icon svg { width: 27px; height: 27px; }
  .band-list span { width: 100%; text-align: center; }
  .hours-list li { align-items: flex-start; flex-direction: column; gap: 4px; }
  .map-wrap iframe { height: 285px; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-card { padding: 16px; border-radius: 20px; gap: 14px; }
  .cookie-actions .btn { width: 100%; min-height: 46px; }
  .floating-actions {
    right: 8px;
    left: 8px;
    bottom: 8px;
    flex-direction: row;
    gap: 8px;
  }
  .floating-btn {
    width: 50%;
    min-width: 0;
    padding: 13px 10px;
    border-radius: 15px;
    font-size: 14px;
  }
  body { padding-bottom: 72px; }
}

@media (max-width: 380px) {
  .brand-text { font-size: 16px; max-width: 150px; }
  .hero h1 { font-size: 31px; }
  .hero-visual-premium { min-height: 430px; }
  .phone-stage { width: 330px; height: 400px; }
  .phone-front { left: 72px; }
  .phone-back { right: 50px; }
  .google-live-card .stat-number { font-size: 24px; }
}

@keyframes phoneMobileFloat840 {
  0%,100% { transform: translateY(0) scale(.92) rotateX(0deg); }
  50% { transform: translateY(-8px) scale(.92) rotateX(.6deg); }
}
@keyframes frontPhoneMobile840 {
  0%,100% { transform: rotateZ(-8deg) rotateY(-7deg) translate3d(-14px, 0, 34px); }
  50% { transform: rotateZ(-6deg) rotateY(5deg) translate3d(-20px, -5px, 42px); }
}
@keyframes backPhoneMobile840 {
  0%,100% { transform: rotateZ(10deg) rotateY(10deg) translate3d(22px, 2px, -8px); }
  50% { transform: rotateZ(8deg) rotateY(2deg) translate3d(30px, -4px, -2px); }
}
@keyframes phoneMobileFloat560 {
  0%,100% { transform: translateY(0) scale(.92) rotateX(0deg); }
  50% { transform: translateY(-6px) scale(.92) rotateX(.45deg); }
}
@keyframes frontPhoneMobile560 {
  0%,100% { transform: rotateZ(-7deg) rotateY(-6deg) translate3d(-12px, 0, 26px); }
  50% { transform: rotateZ(-5deg) rotateY(4deg) translate3d(-17px, -4px, 32px); }
}
@keyframes backPhoneMobile560 {
  0%,100% { transform: rotateZ(9deg) rotateY(8deg) translate3d(18px, 2px, -6px); }
  50% { transform: rotateZ(7deg) rotateY(2deg) translate3d(24px, -3px, -1px); }
}

/* =========================================================
   V14 — Apple-inspired premium redesign
   Structure and text preserved. Visual system upgraded only.
   ========================================================= */
:root{
  --bg:#020306;
  --bg-soft:#08090d;
  --panel:rgba(16,18,24,.62);
  --panel-strong:rgba(18,20,28,.86);
  --text:#fbfbfd;
  --muted:#a6a9b4;
  --line:rgba(255,255,255,.10);
  --accent:#ff7a1a;
  --accent-2:#ffb164;
  --accent-soft:rgba(255,122,26,.16);
  --shadow:0 34px 100px rgba(0,0,0,.52);
  --radius:30px;
}
html{background:#020306;}
body{
  background:
    radial-gradient(circle at 74% 8%, rgba(255,123,26,.22), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.08), transparent 22%),
    radial-gradient(circle at 50% 86%, rgba(255,106,26,.12), transparent 35%),
    linear-gradient(180deg, #020306 0%, #07080d 45%, #020306 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.65), transparent 78%);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:radial-gradient(circle at var(--mx, 50%) var(--my, 18%), rgba(255,126,34,.10), transparent 22%);
  transition:background .18s ease;
}
.wrapper{width:min(1220px, calc(100% - 34px));}
.page-glow{opacity:.62;filter:blur(84px);}
.glow-1{width:360px;height:360px;right:3%;top:6%;background:rgba(255,111,24,.30);}
.glow-2{width:270px;height:270px;left:4%;top:46%;background:rgba(255,255,255,.08);}

.topbar{
  margin-top:10px;
  padding:13px 22px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.035);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.topbar a{transition:color .2s ease, opacity .2s ease;}
.navbar{
  top:14px;
  z-index:40;
  padding:14px 18px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(16,18,25,.72), rgba(8,9,13,.54));
  border-color:rgba(255,255,255,.09);
  box-shadow:0 22px 70px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
}
.brand-mark{
  width:46px;height:46px;border-radius:50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,210,150,.56), transparent 30%),
    linear-gradient(145deg, rgba(255,122,26,.28), rgba(255,122,26,.06));
  border-color:rgba(255,150,74,.46);
  box-shadow:0 0 32px rgba(255,122,26,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.brand-text{letter-spacing:-.04em;font-weight:800;}
.nav-links{gap:18px;}
.nav-links a:not(.nav-cta){padding:12px 10px;border-radius:999px;}
.nav-links a:not(.nav-cta):hover{background:rgba(255,255,255,.05);}
.nav-cta,.btn-primary{
  background:linear-gradient(135deg, #ff7a1a, #ff9b42 55%, #ff6814);
  box-shadow:0 18px 44px rgba(255,106,26,.34), inset 0 1px 0 rgba(255,255,255,.22);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.btn-secondary{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.btn,.nav-cta{border-radius:999px;font-weight:800;letter-spacing:-.01em;}

.hero{
  min-height:min(820px, calc(100vh - 86px));
  gap:58px;
  padding:54px 0 58px;
}
.hero-copy{position:relative;z-index:4;}
.eyebrow{
  width:max-content;
  max-width:100%;
  padding:8px 12px;
  border:1px solid rgba(255,122,26,.24);
  border-radius:999px;
  background:rgba(255,122,26,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.hero h1{
  font-size:clamp(48px, 7.4vw, 92px);
  letter-spacing:-.075em;
  line-height:.91;
  max-width:850px;
  background:linear-gradient(180deg, #fff 0%, #f6f2ed 42%, #b5b8c1 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-wrap:balance;
}
.hero-text{
  font-size:clamp(18px, 1.5vw, 22px);
  line-height:1.68;
  color:#c7c9d1;
  max-width:670px;
}
.hero-points li{font-weight:650;color:#f0f2f7;}
.hero-points li::before{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:0 0 0 6px rgba(255,122,26,.14), 0 0 22px rgba(255,122,26,.34);
}
.hero-mini-links a,.topbar a,.footer a{
  opacity:.86;
  transition:opacity .2s ease, color .2s ease, transform .2s ease;
}
.hero-mini-links a:hover,.footer a:hover{opacity:1;color:#fff;transform:translateY(-1px);}
.hero-icon-chip{
  background:linear-gradient(180deg, rgba(255,122,26,.12), rgba(255,255,255,.04));
  border-color:rgba(255,122,26,.22);
  backdrop-filter:blur(14px);
  box-shadow:0 12px 34px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.06);
}
.chip-icon{background:rgba(255,122,26,.14);}

.hero-visual-premium{
  min-height:720px;
  border-radius:42px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 50% 52%, rgba(255,126,34,.36), transparent 28%),
    radial-gradient(circle at 74% 18%, rgba(255,255,255,.16), transparent 16%),
    radial-gradient(circle at 23% 75%, rgba(255,106,26,.18), transparent 22%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:0 44px 120px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.12), inset 0 -1px 0 rgba(255,255,255,.04);
  overflow:hidden;
}
.hero-visual-premium::before{
  content:"";
  position:absolute;
  inset:1px;
  border-radius:inherit;
  background:
    linear-gradient(115deg, rgba(255,255,255,.18), transparent 18%, transparent 74%, rgba(255,122,26,.12)),
    radial-gradient(circle at 48% 48%, rgba(255,122,26,.10), transparent 38%);
  pointer-events:none;
}
.hero-visual-premium::after{
  content:"";
  position:absolute;
  left:16%;right:16%;bottom:42px;height:82px;
  background:radial-gradient(ellipse, rgba(255,122,26,.48), transparent 72%);
  filter:blur(20px);
  pointer-events:none;
}
.phone-stage{
  width:min(650px, 100%);
  height:640px;
  z-index:3;
  animation:phonePremiumFloatSoft 10s ease-in-out infinite;
}
.phone-3d{filter:drop-shadow(0 46px 48px rgba(0,0,0,.58));}
.phone-frame,.phone-backplate{
  border-color:rgba(255,255,255,.86);
  box-shadow:inset 0 0 0 4px rgba(7,8,11,.88), inset 0 1px 0 rgba(255,255,255,.32), 0 0 0 1px rgba(255,255,255,.10), 0 0 58px rgba(255,122,26,.20);
}
.phone-frame{background:
  radial-gradient(circle at 24% 18%, rgba(255,219,138,.95), transparent 30%),
  radial-gradient(circle at 75% 35%, rgba(255,103,24,.82), transparent 35%),
  radial-gradient(circle at 45% 82%, rgba(68,9,12,.90), transparent 40%),
  linear-gradient(145deg,#ffbc52 0%,#ff701e 42%,#992014 74%,#050507 100%);
}
.phone-backplate{background:
  radial-gradient(circle at 72% 10%, rgba(255,255,255,.56), transparent 22%),
  linear-gradient(150deg, #f1e6d9 0%, #a69d91 34%, #3a3938 100%);
}
.hero-orbit{
  width:470px;height:152px;bottom:82px;
  border-color:rgba(255,141,63,.84);
  box-shadow:0 0 35px rgba(255,122,26,.62), inset 0 0 34px rgba(255,122,26,.24);
  opacity:.9;
}
.spark{background:#ffb164;box-shadow:0 0 24px #ff7a1a;}
.google-live-card,.google-live-note{
  z-index:9;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(18,20,27,.92), rgba(10,11,15,.76));
  backdrop-filter:blur(24px) saturate(1.25);
  -webkit-backdrop-filter:blur(24px) saturate(1.25);
  box-shadow:0 26px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.10);
}
.google-live-card{top:24px;right:24px;padding:24px 26px;}
.google-live-note{left:24px;bottom:24px;padding:22px;}
.stat-number{letter-spacing:-.08em;background:linear-gradient(180deg,#fff,#ffd7be);-webkit-background-clip:text;background-clip:text;color:transparent;}
.stat-label{color:#cfd2dc;}

.stats{padding:18px 0 88px;}
.stat-box,.service-card,.review-card,.contact-panel,.hours-panel,.map-wrap,.contact-band,.summary-rating,.summary-text,.legal-hero,.legal-card{
  background:linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.026));
  border:1px solid rgba(255,255,255,.095);
  box-shadow:0 24px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter:blur(18px) saturate(1.15);
  -webkit-backdrop-filter:blur(18px) saturate(1.15);
}
.stat-box{border-radius:26px;transition:transform .24s ease,border-color .24s ease,background .24s ease;}
.stat-box:hover{transform:translateY(-6px);border-color:rgba(255,122,26,.26);background:linear-gradient(180deg, rgba(255,122,26,.09), rgba(255,255,255,.028));}
.section-heading{margin-bottom:34px;}
.section-heading h2,.contact-band h2,.contact h2{
  letter-spacing:-.055em;
  line-height:1;
  background:linear-gradient(180deg,#fff,#c9ccd6);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  text-wrap:balance;
}
.section-heading p{font-size:17px;color:#b8bbc6;}
.services-grid,.reviews-grid.compact{gap:24px;}
.premium-service,.review-card.compact-card{
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 6%, rgba(255,122,26,.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.premium-service{min-height:248px;padding:30px;}
.premium-service:hover{transform:translateY(-10px) scale(1.01);box-shadow:0 36px 100px rgba(0,0,0,.44), 0 0 0 1px rgba(255,122,26,.12);}
.premium-icon{border-radius:24px;background:linear-gradient(145deg, rgba(255,122,26,.24), rgba(255,255,255,.04));}
.review-card.compact-card{padding:22px;min-height:212px;}
.review-card.highlight{border-color:rgba(255,122,26,.38);}
.stars{text-shadow:0 0 18px rgba(255,122,26,.42);}
.review-more{background:rgba(255,122,26,.12);border-color:rgba(255,122,26,.26);color:#ffd6bf;}
.reviews-summary{gap:24px;margin-bottom:26px;}
.summary-rating span{letter-spacing:-.08em;}
.contact-band{border-radius:34px;background:radial-gradient(circle at top right, rgba(255,122,26,.13), transparent 35%), linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.024));}
.band-list span{background:rgba(255,255,255,.055);border-color:rgba(255,255,255,.10);}
.contact-panel,.hours-panel{border-radius:34px;}
.map-wrap{border-radius:34px;border-color:rgba(255,255,255,.10);}
.map-wrap iframe{filter:grayscale(.85) invert(.92) contrast(1.04) saturate(.9);}
.footer{border-top:1px solid rgba(255,255,255,.08);padding-top:30px;}
.floating-btn{border:1px solid rgba(255,255,255,.12);box-shadow:0 24px 60px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.16);}
.floating-btn.call{background:linear-gradient(135deg,#ff7a1a,#ff9d4a);}
.cookie-card{background:linear-gradient(180deg,rgba(16,18,25,.96),rgba(8,9,13,.94));border-color:rgba(255,255,255,.13);}

@media (max-width:1080px){
  .hero{min-height:auto;gap:34px;}
  .hero h1{font-size:clamp(44px, 8vw, 76px);}
}
@media (max-width:840px){
  .wrapper{width:min(100% - 24px, 100%);}
  .topbar{display:none;}
  .navbar{top:8px;border-radius:26px;padding:12px 14px;}
  .nav-links{border-radius:24px;background:rgba(9,10,14,.96);backdrop-filter:blur(22px);}
  .hero{padding-top:30px;}
  .hero h1{font-size:clamp(39px, 11vw, 60px);}
  .hero-visual-premium{min-height:550px;border-radius:32px;}
  .phone-stage{width:440px;height:500px;}
  .services-grid,.reviews-grid.compact,.stats,.contact-grid,.reviews-summary{grid-template-columns:1fr;}
  .section-heading.split{align-items:flex-start;}
}
@media (max-width:560px){
  .wrapper{width:min(100% - 18px, 100%);}
  .brand-text{font-size:18px;max-width:205px;}
  .hero{padding-top:22px;}
  .hero h1{font-size:clamp(35px, 11.7vw, 48px);letter-spacing:-.065em;}
  .eyebrow{width:auto;display:inline-flex;font-size:10px;letter-spacing:.11em;}
  .hero-text{font-size:15.8px;}
  .hero-visual-premium{min-height:470px;border-radius:28px;}
  .google-live-note{background:rgba(10,11,15,.82);}
  .service-card,.review-card,.contact-panel,.hours-panel,.contact-band,.stat-box{border-radius:24px;padding:20px;}
  .review-card.compact-card{min-height:auto;}
  .floating-actions{backdrop-filter:blur(14px);}
}


/* === V15 Super IA premium layer — effet WAW sans modifier le contenu === */
:root{--ai-cyan:#7cf7ff;--ai-violet:#9b7cff;--ai-gold:#ffc26b;}
body::before{content:"";position:fixed;inset:-20%;pointer-events:none;z-index:0;background:radial-gradient(circle at var(--mx,72%) var(--my,24%),rgba(124,247,255,.075),transparent 22%),radial-gradient(circle at calc(var(--mx,72%) - 18%) calc(var(--my,24%) + 20%),rgba(255,106,26,.12),transparent 30%),linear-gradient(115deg,transparent 0 34%,rgba(255,255,255,.018) 42%,transparent 52% 100%);mix-blend-mode:screen;animation:aiAmbientShift 12s ease-in-out infinite alternate;}
body::after{content:"";position:fixed;inset:0;pointer-events:none;z-index:0;opacity:.13;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);background-size:76px 76px;mask-image:radial-gradient(circle at 50% 0%,black,transparent 66%);transform:perspective(900px) rotateX(62deg) translateY(-180px);transform-origin:top;}
.navbar{backdrop-filter:blur(22px) saturate(1.45);}
.navbar::before,.service-card::before,.review-card::before,.contact-panel::before,.hours-panel::before,.stat-box::before,.contact-band::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,106,26,.36),rgba(124,247,255,.16),rgba(255,255,255,.05));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.35;pointer-events:none;}
.service-card:hover,.review-card:hover,.stat-box:hover{transform:translateY(-8px) scale(1.012);box-shadow:0 34px 90px rgba(0,0,0,.52),0 0 42px rgba(255,106,26,.12),inset 0 1px 0 rgba(255,255,255,.08);}
.ai-premium-zone{position:relative;background:radial-gradient(circle at 50% 42%,rgba(255,194,107,.22),transparent 20%),radial-gradient(circle at 22% 22%,rgba(124,247,255,.14),transparent 25%),radial-gradient(circle at 82% 72%,rgba(155,124,255,.12),transparent 24%),linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.012));border-color:rgba(255,255,255,.12);box-shadow:0 40px 120px rgba(0,0,0,.52),0 0 0 1px rgba(255,255,255,.035),inset 0 1px 0 rgba(255,255,255,.1),inset 0 -80px 140px rgba(255,106,26,.06);}
.ai-premium-zone::before{content:"";position:absolute;inset:-2px;border-radius:30px;background:conic-gradient(from var(--ai-angle,0deg),transparent,rgba(255,106,26,.42),rgba(124,247,255,.24),transparent 38% 100%);filter:blur(18px);opacity:.55;z-index:-1;animation:aiBorderSpin 8s linear infinite;}
.ai-premium-zone::after{content:"";position:absolute;inset:0;border-radius:28px;pointer-events:none;background:linear-gradient(115deg,transparent 0 42%,rgba(255,255,255,.18) 48%,transparent 56% 100%);transform:translateX(-120%);animation:aiPanelSweep 7s ease-in-out infinite;mix-blend-mode:screen;}
.ai-aurora{position:absolute;inset:-18%;border-radius:50%;background:radial-gradient(circle at 44% 44%,rgba(255,106,26,.50),transparent 18%),radial-gradient(circle at 60% 52%,rgba(124,247,255,.18),transparent 22%),radial-gradient(circle at 38% 66%,rgba(155,124,255,.17),transparent 24%);filter:blur(34px);opacity:.82;animation:aiAuroraBreath 9s ease-in-out infinite alternate;pointer-events:none;}
.ai-grid{position:absolute;inset:18px;border-radius:22px;opacity:.18;background-image:linear-gradient(rgba(124,247,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(255,194,107,.24) 1px,transparent 1px);background-size:34px 34px;mask-image:radial-gradient(circle at 50% 52%,black,transparent 62%);animation:aiGridDrift 16s linear infinite;pointer-events:none;}
.ai-scan-ring{position:absolute;left:50%;top:50%;width:420px;height:420px;border-radius:50%;transform:translate(-50%,-50%) rotateX(72deg);border:1px solid rgba(124,247,255,.24);box-shadow:0 0 30px rgba(124,247,255,.15),inset 0 0 24px rgba(255,106,26,.12);pointer-events:none;opacity:.66;}
.ring-one{animation:aiRingPulse 5.8s ease-in-out infinite;}.ring-two{width:310px;height:310px;border-color:rgba(255,194,107,.28);animation:aiRingPulse 5.8s ease-in-out infinite reverse;}
.hero-orbit{border-color:rgba(255,194,107,.86);box-shadow:0 0 38px rgba(255,106,26,.58),0 0 80px rgba(124,247,255,.08),inset 0 0 25px rgba(255,106,26,.24);animation:orbitGlow 4.8s ease-in-out infinite;}
.phone-stage{filter:drop-shadow(0 0 42px rgba(255,106,26,.16));}.phone-frame,.phone-backplate{border-color:rgba(255,255,255,.92);box-shadow:inset 0 0 0 4px #121217,inset 0 1px 0 rgba(255,255,255,.32),0 0 45px rgba(255,106,26,.18),0 0 80px rgba(124,247,255,.07);}
.phone-frame::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 0 30%,rgba(124,247,255,.18) 31%,transparent 32% 100%),repeating-linear-gradient(0deg,transparent 0 18px,rgba(255,255,255,.035) 19px,transparent 20px);mix-blend-mode:screen;opacity:.5;animation:aiPhoneScan 4.2s ease-in-out infinite;z-index:3;}
.dynamic-island{box-shadow:inset 0 1px 2px rgba(255,255,255,.10),0 0 18px rgba(124,247,255,.13);}.spark{background:radial-gradient(circle,#fff 0 15%,#ffb35d 35%,#ff6a1a 100%);box-shadow:0 0 22px #ff7a22,0 0 42px rgba(124,247,255,.22);}.spark::after{content:"";position:absolute;inset:-7px;border-radius:50%;border:1px solid rgba(255,255,255,.22);}
.hero h1{background:linear-gradient(95deg,#fff 0%,#fff3e8 38%,#ffc26b 58%,#ffffff 82%);-webkit-background-clip:text;background-clip:text;color:transparent;text-shadow:0 12px 55px rgba(255,106,26,.09);}.hero-copy .eyebrow,.section-heading .eyebrow{text-shadow:0 0 18px rgba(255,106,26,.26);}.ai-pulse-chip{border-color:rgba(124,247,255,.28)!important;background:linear-gradient(135deg,rgba(124,247,255,.11),rgba(255,106,26,.08))!important;box-shadow:0 0 28px rgba(124,247,255,.08);}.hero-stat-card{border:1px solid rgba(255,255,255,.14);backdrop-filter:blur(24px) saturate(1.35);box-shadow:0 24px 65px rgba(0,0,0,.5),0 0 36px rgba(255,106,26,.12),inset 0 1px 0 rgba(255,255,255,.1);}.stat-number,.summary-rating span{background:linear-gradient(95deg,#fff,#ffc26b 55%,#fff);-webkit-background-clip:text;background-clip:text;color:transparent!important;}
.btn-primary,.nav-cta{background:linear-gradient(135deg,#ff6a1a,#ff9147 52%,#ffc26b);box-shadow:0 18px 45px rgba(255,106,26,.34),inset 0 1px 0 rgba(255,255,255,.28);}.btn-primary:hover,.nav-cta:hover{box-shadow:0 24px 70px rgba(255,106,26,.45),0 0 28px rgba(255,194,107,.20),inset 0 1px 0 rgba(255,255,255,.32);}.premium-icon{background:radial-gradient(circle at 32% 20%,rgba(255,255,255,.14),transparent 32%),linear-gradient(145deg,rgba(255,106,26,.18),rgba(124,247,255,.05));box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 0 36px rgba(255,106,26,.10);}.premium-icon svg{filter:drop-shadow(0 0 14px rgba(255,106,26,.32));}
@keyframes aiAmbientShift{0%{opacity:.82;transform:translate3d(0,0,0) scale(1)}100%{opacity:1;transform:translate3d(-2%,1%,0) scale(1.04)}}@keyframes aiBorderSpin{to{--ai-angle:360deg}}@keyframes aiPanelSweep{0%,58%{transform:translateX(-130%);opacity:0}70%{opacity:.55}100%{transform:translateX(130%);opacity:0}}@keyframes aiAuroraBreath{0%{transform:translate3d(-2%,2%,0) scale(.98) rotate(0deg)}100%{transform:translate3d(2%,-1%,0) scale(1.05) rotate(7deg)}}@keyframes aiGridDrift{to{background-position:68px 68px}}@keyframes aiRingPulse{0%,100%{opacity:.28;transform:translate(-50%,-50%) rotateX(72deg) scale(.88)}50%{opacity:.85;transform:translate(-50%,-50%) rotateX(72deg) scale(1.08)}}@keyframes orbitGlow{0%,100%{opacity:.72;filter:blur(.15px)}50%{opacity:1;filter:blur(0)}}@keyframes aiPhoneScan{0%,35%{transform:translateY(-70%);opacity:0}52%{opacity:.55}100%{transform:translateY(72%);opacity:0}}
@media (max-width:840px){body::after{opacity:.08;background-size:54px 54px}.ai-premium-zone::before{opacity:.38}.ai-scan-ring{width:340px;height:340px}.ring-two{width:250px;height:250px}.service-card:hover,.review-card:hover,.stat-box:hover{transform:translateY(-4px)}}@media (max-width:560px){body::before{opacity:.72}.hero h1{text-shadow:0 8px 34px rgba(255,106,26,.10)}.ai-grid{inset:12px;background-size:28px 28px;opacity:.13}.ai-scan-ring{width:275px;height:275px}.ring-two{width:210px;height:210px}.hero-visual-premium{min-height:510px}}@media (prefers-reduced-motion:reduce){body::before,.ai-premium-zone::before,.ai-premium-zone::after,.ai-aurora,.ai-grid,.ai-scan-ring,.hero-orbit,.phone-frame::before{animation:none!important}}

/* === Logo Alpha intégré sans modification de structure === */
.brand-logo-mark {
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}
.brand-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,153,255,.35));
}
.phone-logo {
  background: rgba(255,255,255,.18);
  border-color: rgba(0,0,0,.08);
  overflow: hidden;
}
.phone-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 7px rgba(0,0,0,.22));
}
@media (max-width: 840px) {
  .brand-logo-img { width: 31px; height: 31px; }
  .phone-logo img { width: 48px; height: 48px; }
}
@media (max-width: 560px) {
  .phone-logo img { width: 37px; height: 37px; }
}
