/* T Auto Services — Design moderne jaune / noir */
:root {
  --yellow: #f5c518;
  --yellow-bright: #ffd633;
  --yellow-dark: #c9a012;
  --yellow-glow: rgba(245, 197, 24, 0.35);
  --black: #080808;
  --black-soft: #111111;
  --black-card: #181818;
  --black-elevated: #1f1f1f;
  --white: #ffffff;
  --gray: #b0b0b0;
  --gray-dark: #666666;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(245, 197, 24, 0.2);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --phone-bar-h: 52px;
  --header-h: 68px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-yellow: 0 12px 48px rgba(245, 197, 24, 0.2);
  --shadow-dark: 0 32px 80px rgba(0, 0, 0, 0.6);
  --glass: rgba(17, 17, 17, 0.72);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--phone-bar-h) + var(--header-h) + 24px); }

body {
  font-family: var(--font-body);
  font-size: 1.03125rem;
  line-height: 1.7;
  color: #e8e8e8;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(245, 197, 24, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(245, 197, 24, 0.04) 0%, transparent 50%),
    var(--black);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--yellow); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-bright); }
ul { list-style: none; }

.container { width: min(1220px, 92vw); margin-inline: auto; }
.container--narrow { width: min(760px, 90vw); }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  padding: 12px 20px; background: var(--yellow); color: var(--black);
  border-radius: var(--radius); font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ─── Animations scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-call { animation: none; }
  .reviews-marquee__track { animation: none; flex-wrap: wrap; width: 100%; }
  .reviews-marquee { mask-image: none; -webkit-mask-image: none; overflow: visible; }
}

/* ─── Logo ─── */
.logo { display: flex; align-items: center; gap: 6px; text-decoration: none; flex-shrink: 0; }
.logo:hover { opacity: 0.92; }
.logo__t {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; line-height: 1;
  color: var(--yellow); letter-spacing: -1px;
}
.logo__brand { display: flex; flex-direction: column; line-height: 1.05; gap: 2px; }
.logo__auto {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; letter-spacing: 2px;
  color: var(--white); text-transform: uppercase;
}
.logo__services {
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black);
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; align-self: flex-start;
}
.logo--sm .logo__t { font-size: 1.72rem; }
.logo--sm .logo__auto { font-size: 0.85rem; letter-spacing: 1.5px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; transition: all var(--transition);
  text-decoration: none; font-family: var(--font-display); letter-spacing: 0.02em;
}
.btn--yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black); border-color: transparent;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}
.btn--yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245, 197, 24, 0.45);
  color: var(--black);
}
.btn--outline-yellow {
  background: rgba(245, 197, 24, 0.06);
  color: var(--yellow); border-color: rgba(245, 197, 24, 0.45);
  backdrop-filter: blur(8px);
}
.btn--outline-yellow:hover {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.btn--black { background: var(--black); color: var(--yellow); border-color: var(--black-soft); }
.btn--black:hover { background: var(--black-soft); color: var(--yellow-bright); }
.btn--phone {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black); border-color: transparent;
  font-family: var(--font-display); font-size: 1rem; padding: 12px 22px;
  font-weight: 600; white-space: nowrap;
  border-radius: 999px;
}
.btn--phone:hover { transform: scale(1.04); color: var(--black); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--xl { padding: 18px 34px; font-size: 1.025rem; }
.btn--block { width: 100%; max-width: 360px; }

/* ─── Barre téléphone ─── */
.phone-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--phone-bar-h);
  background: linear-gradient(180deg, #0e0e0e 0%, var(--black-soft) 100%);
  border-bottom: 1px solid var(--border-accent);
}
.phone-bar__link {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  height: 100%; width: 100%; padding: 0 20px;
  color: var(--white); text-decoration: none;
  transition: background var(--transition);
}
.phone-bar__link:hover {
  background: rgba(245, 197, 24, 0.06);
  color: var(--white);
}
.phone-bar__label {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-dark);
  display: none;
}
.phone-bar__number {
  font-family: var(--font-display); font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700; letter-spacing: 1px;
  display: flex; align-items: center; gap: 10px;
  color: var(--yellow);
  text-shadow: 0 0 24px var(--yellow-glow);
}
.phone-bar__number svg { flex-shrink: 0; width: clamp(20px, 3.5vw, 24px); height: clamp(20px, 3.5vw, 24px); }
.phone-bar__badge {
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(245, 197, 24, 0.12);
  color: var(--yellow);
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

@media (min-width: 640px) {
  .phone-bar__label { display: block; }
}

/* ─── Header ─── */
.header {
  position: fixed; top: var(--phone-bar-h); left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.header--scrolled {
  background: rgba(8, 8, 8, 0.92);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--border-accent);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 20px; }

.nav__list { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav__link {
  padding: 10px 18px; color: rgba(255, 255, 255, 0.65); border-radius: 999px;
  font-weight: 500; font-size: 0.875rem; transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav__link--active {
  color: var(--black);
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  font-weight: 600;
}

.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 10px; border-radius: var(--radius);
}
.burger:hover { background: rgba(255, 255, 255, 0.05); }
.burger span { width: 24px; height: 2px; background: var(--yellow); border-radius: 2px; transition: all var(--transition); }

/* ─── Hero (accueil) ─── */
.hero {
  padding-top: calc(var(--phone-bar-h) + var(--header-h));
  background: var(--black);
  overflow: hidden;
  position: relative;
}
body:has(.hero) .header {
  background: rgba(8, 8, 8, 0.4);
  border-bottom-color: transparent;
}
.hero__layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(400px, 1.1fr);
  min-height: clamp(630px, 88svh, 890px);
  max-height: 940px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6.5vh, 76px) clamp(26px, 4.2vw, 52px);
  padding-left: max(clamp(26px, 4.2vw, 52px), calc((100vw - 1280px) / 2 + 26px));
  z-index: 2;
  position: relative;
}
.hero__content::before {
  content: '';
  position: absolute;
  top: 20%; left: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.hero__media {
  position: relative;
  overflow: hidden;
}
.hero__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60% 45%;
  transform: scale(1.02);
}
.hero__media-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(8, 8, 8, 0.85) 18%, rgba(8, 8, 8, 0.3) 35%, transparent 55%),
    linear-gradient(180deg, transparent 70%, rgba(8, 8, 8, 0.5) 100%);
}
.hero__tagline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 2px;
  color: var(--yellow); text-transform: uppercase; margin-bottom: 22px;
  padding: 6px 14px 6px 0;
  border-radius: 999px;
  background: rgba(245, 197, 24, 0.08);
  padding-left: 14px;
  border: 1px solid rgba(245, 197, 24, 0.2);
  width: fit-content;
}
.hero__tagline::before { display: none; }
.hero__title {
  font-family: var(--font-display); font-weight: 700; line-height: 1.02;
  letter-spacing: -0.02em;
  display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 22px;
}
.hero__title-line { display: block; font-size: clamp(2.7rem, 6.5vw, 4.45rem); }
.hero__title-line--white { color: var(--white); }
.hero__title-line--yellow {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__motto {
  font-size: 1.0625rem; font-weight: 500;
  color: var(--gray); margin-bottom: 34px;
  max-width: 440px;
}
.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.hero__actions .btn { white-space: nowrap; flex-shrink: 0; }
.hero__availability {
  font-size: 0.875rem; color: var(--gray-dark); margin-bottom: 36px;
  display: flex; align-items: center; gap: 8px;
}
.hero__availability::before {
  content: '';
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero__features { display: flex; flex-direction: column; gap: 15px; }
.hero__feature {
  display: flex; align-items: flex-start; gap: 15px;
  font-size: 0.975rem; color: rgba(255, 255, 255, 0.82); line-height: 1.5;
  padding: 13px 17px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.hero__feature:hover {
  background: rgba(245, 197, 24, 0.04);
  border-color: var(--border-accent);
}
.hero__feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
}
.hero__feature-icon .icon { width: 19px; height: 19px; }
.hero__badge {
  position: absolute; top: 12%; right: 10%; z-index: 3;
  width: 106px; height: 106px; border-radius: 50%;
  background: linear-gradient(145deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.7rem;
  text-align: center; line-height: 1.25; letter-spacing: 0.5px;
  box-shadow: 0 8px 40px var(--yellow-glow), 0 0 0 4px rgba(245, 197, 24, 0.15);
  animation: float-badge 4s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__badge span { font-size: 1rem; }
.hero__bubble {
  position: absolute; bottom: 12%; left: 50%; z-index: 3;
  transform: translateX(-50%);
  width: min(330px, 86%);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-accent);
  padding: 19px 22px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}
.hero__bubble p {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 500;
  color: var(--white); line-height: 1.4;
}
.hero__bubble strong { color: var(--yellow); }

.hero__content > * {
  animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
.hero__tagline { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.12s; }
.hero__motto { animation-delay: 0.2s; }
.hero__actions { animation-delay: 0.28s; }
.hero__availability { animation-delay: 0.36s; }
.hero__features { animation-delay: 0.44s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__content > * { animation: none; opacity: 1; }
  .hero__badge { animation: none; }
}

/* ─── Sections ─── */
.section { padding: clamp(68px, 8.5vw, 112px) 0; position: relative; }
.section--black { background: var(--black); }
.section--dark {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--yellow { background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%); color: var(--black); }
.section--yellow .section__label { color: var(--black); opacity: 0.55; }
.section--yellow h2, .section--yellow h3 { color: var(--black); }
.section--yellow p { color: rgba(0, 0, 0, 0.7); }

.section__header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__label {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.775rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 14px;
  padding: 6px 16px;
  background: rgba(245, 197, 24, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 24, 0.15);
}
.section__header h2 {
  font-family: var(--font-display); font-size: clamp(2.05rem, 4vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--white); line-height: 1.15; margin-bottom: 16px;
}
.section__header p { color: var(--gray); font-size: 1.05rem; line-height: 1.65; }

/* ─── Services grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.service-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 22px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 197, 24, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-yellow);
}
.service-item:hover::before { opacity: 1; }
.service-item__icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  background: rgba(245, 197, 24, 0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  transition: all var(--transition);
}
.service-item:hover .service-item__icon {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black);
  transform: scale(1.05);
}
.service-item__icon .icon { width: 26px; height: 26px; }
.service-item h3 {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: var(--white); line-height: 1.35;
  position: relative;
}

/* ─── Pricing ─── */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}
.pricing--simple { max-width: 820px; }
.pricing--triple {
  max-width: 1100px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing--quad {
  max-width: 960px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
@media (min-width: 1100px) {
  .pricing--quad { max-width: 1100px; }
}
.content .pricing { margin-left: 0; margin-right: 0; }
.pricing--duo { max-width: 820px; margin-left: 0; margin-right: 0; }
.pricing__disclaimer {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--gray);
}
.pricing__cta {
  max-width: 540px;
  margin: 48px auto 0;
  text-align: center;
  padding: 40px 36px;
  background: var(--black-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.pricing__cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.pricing__cta h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
}
.pricing__cta p { color: var(--gray); margin-bottom: 24px; font-size: 0.95rem; }
.pricing__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; gap: 16px; flex-wrap: wrap;
}
.pricing__label { color: var(--gray); font-size: 0.9rem; flex: 1; min-width: 140px; }
.pricing__label strong { display: block; color: var(--white); font-size: 1.025rem; margin-bottom: 6px; font-weight: 600; }
.pricing__price {
  font-family: var(--font-display); font-size: clamp(1.82rem, 3.9vw, 2.38rem); font-weight: 700;
  color: var(--yellow); white-space: nowrap;
}
.pricing__main {
  background: var(--black-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing__main:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}
.pricing__header {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black);
  padding: 20px 28px;
  font-family: var(--font-display);
  font-size: 1.025rem; font-weight: 700; letter-spacing: 0.02em;
}
.pricing__body { padding: 30px; flex: 1; display: flex; align-items: center; }
.pricing__body .pricing__row { width: 100%; }
.pricing__price small { font-size: 0.85rem; color: var(--gray); font-family: var(--font-body); font-weight: 400; }
.pricing__note {
  padding: 14px 28px;
  background: rgba(245, 197, 24, 0.06);
  font-size: 0.825rem; color: var(--gray-dark);
  border-top: 1px solid var(--border);
}

.pricing__side { display: flex; flex-direction: column; gap: 20px; }
.pricing__card {
  background: var(--black-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.pricing__card--highlight { border-color: var(--border-accent); background: rgba(245, 197, 24, 0.04); }
.pricing__card h3 {
  font-family: var(--font-display); font-size: 0.975rem;
  color: var(--yellow); margin-bottom: 12px; font-weight: 600;
}
.pricing__card p { color: var(--gray); font-size: 0.925rem; }
.pricing__surcharge { display: flex; align-items: center; gap: 20px; }
.pricing__surcharge-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--yellow); line-height: 1;
}
.pricing__surcharge-text { font-size: 0.925rem; color: var(--white); }
.pricing__surcharge-text strong { display: block; font-family: var(--font-display); font-weight: 600; }

/* ─── Engagements ─── */
.engagements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.engagement {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.engagement:last-child { border-right: none; }
.engagement:hover { background: rgba(245, 197, 24, 0.03); }
.engagement__icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px var(--yellow-glow);
}
.engagement__icon .icon { width: 26px; height: 26px; color: var(--black); }
.engagement h3 {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: var(--white); line-height: 1.35;
}

/* ─── Avis clients ─── */
.reviews-marquee {
  overflow: hidden;
  margin-inline: calc(-1 * clamp(12px, 3vw, 24px));
  padding: 8px 0 12px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-marquee__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: reviews-scroll 55s linear infinite;
}
.reviews-marquee:hover .reviews-marquee__track {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 min(340px, 82vw);
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border-accent); }
.review-card__stars {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-card__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.975rem;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.review-card__text--short {
  font-size: 1.05rem;
  font-weight: 500;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.review-card__author strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}
.review-card__author span {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* ─── Showcase ─── */
.showcase {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-dark);
}
.showcase__image { position: relative; min-height: 420px; }
.showcase__image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%; min-height: 420px;
  transition: transform 0.6s ease;
}
.showcase:hover .showcase__image img { transform: scale(1.03); }
.showcase__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(8, 8, 8, 0.5) 100%);
}
.showcase__content {
  background: var(--black-card);
  padding: clamp(36px, 5vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.showcase__content h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700;
  color: var(--white); margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em;
}
.showcase__content p { color: var(--gray); margin-bottom: 16px; }
.checklist li {
  position: relative; padding-left: 28px; margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85); font-size: 0.925rem;
}
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 50%;
}
.checklist li::after {
  content: '✓'; position: absolute; left: 4px; top: 2px;
  color: var(--yellow); font-size: 0.75rem; font-weight: 700;
}

/* ─── Zone ─── */
.zone-banner {
  text-align: center; padding: 64px 40px;
  background: var(--black-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.zone-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 197, 24, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.zone-banner__icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  position: relative;
}
.zone-banner__icon .icon { width: 30px; height: 30px; }

.icon { display: block; flex-shrink: 0; }
.icon--lg { width: 32px; height: 32px; }
.icon--dark { color: var(--black); }
.icon--inline { width: 14px; height: 14px; display: inline-block; vertical-align: -2px; color: var(--gray); }
.zone-banner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 14px;
  position: relative;
}
.zone-banner h2 span, .zone-banner h2 { color: var(--white); }
.zone-banner p { color: var(--gray); max-width: 520px; margin: 0 auto; position: relative; }

/* ─── FAQ ─── */
.faq__item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq__item:hover { border-color: var(--border-accent); }
.faq__item[open] { border-color: rgba(245, 197, 24, 0.35); background: var(--black-elevated); }
.faq__item summary {
  padding: 22px 28px; font-weight: 600; color: var(--white); cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 0.925rem;
  transition: color var(--transition);
}
.faq__item summary:hover { color: var(--yellow); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--yellow); font-weight: 400;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq__item p { padding: 0 28px 24px; color: var(--gray); line-height: 1.65; }

/* ─── Page hero ─── */
.page-hero {
  position: relative;
  min-height: clamp(360px, 42vh, 480px);
  max-height: 540px;
  padding: calc(var(--phone-bar-h) + var(--header-h) + 48px) 0 64px;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(55%, 900px);
}
.page-hero__bg img {
  width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: 60% center;
}
.page-hero__shade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, var(--black) 0%, var(--black-soft) 40%, rgba(8, 8, 8, 0.7) 55%, transparent 75%);
}
.page-hero__body { position: relative; z-index: 2; max-width: 580px; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.05rem, 4.8vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.02em;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__lead { font-size: 1.05rem; color: var(--gray); max-width: 520px; margin-bottom: 32px; line-height: 1.65; }
.breadcrumb {
  font-size: 0.825rem; color: var(--gray-dark); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--yellow); }

/* ─── Content pages ─── */
.content h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin: 52px 0 16px; letter-spacing: -0.01em;
}
.content h2:first-child { margin-top: 0; }
.content p { color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.content-list { margin: 16px 0 24px 20px; }
.content-list li { list-style: disc; color: var(--gray); margin-bottom: 10px; padding-left: 4px; }
.content-list li::marker { color: var(--yellow); }

.steps { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.steps li {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 28px;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.steps li:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}
.steps li span {
  flex-shrink: 0; width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.steps li div { color: var(--gray); padding-top: 8px; }
.steps li strong { color: var(--white); }

.content-cta {
  margin-top: 52px; padding: 52px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  border-radius: var(--radius-xl); text-align: center;
}
.content-cta h2 { color: var(--black); margin-top: 0; }
.content-cta p { color: rgba(0, 0, 0, 0.65); margin-bottom: 28px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.cards--compact { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-yellow);
}
.card h3 { font-family: var(--font-display); color: var(--white); margin-bottom: 10px; font-size: 0.975rem; font-weight: 600; }
.card p { color: var(--gray); font-size: 0.925rem; }
.card--small { padding: 26px; }

.footnote { font-size: 0.8rem; color: var(--gray-dark); margin-top: 24px; text-align: center; }

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); color: var(--white); margin-bottom: 16px; font-weight: 700; }
.contact__call { margin-bottom: 24px; }
.contact-phone {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--yellow); margin-bottom: 16px; letter-spacing: 0.02em;
}
.contact-phone:hover { color: var(--yellow-bright); }
.contact-details { margin: 32px 0; }
.contact-detail { padding: 18px 0; border-bottom: 1px solid var(--border); }
.contact-detail strong {
  display: block; font-family: var(--font-display); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 6px; font-weight: 600;
}
.contact-detail span { color: var(--gray); }
.contact-urgency {
  padding: 28px;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
}
.contact-urgency h3 { font-family: var(--font-display); color: var(--white); margin-bottom: 8px; font-size: 0.925rem; font-weight: 600; }
.contact-urgency p { color: var(--gray); font-size: 0.9rem; }

.contact-form {
  background: var(--black-card);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.contact-form h2 { font-family: var(--font-display); color: var(--white); margin-bottom: 8px; font-weight: 700; }
.form-note { font-size: 0.875rem; color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 500; font-size: 0.825rem; margin-bottom: 8px; color: rgba(255, 255, 255, 0.85); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.975rem;
  background: var(--black-soft); color: var(--white);
  transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
  background: var(--black);
}
.form-success {
  margin-top: 16px; padding: 16px;
  background: rgba(245, 197, 24, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  color: var(--yellow); text-align: center;
}

/* ─── Footer ─── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.footer__brand p { margin: 20px 0; font-size: 0.9rem; color: var(--gray); max-width: 320px; line-height: 1.65; }
.footer__phone {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--yellow); letter-spacing: 0.02em;
}
.footer__phone:hover { color: var(--yellow-bright); }
.footer h3 {
  font-family: var(--font-display); color: var(--white); font-size: 0.8rem;
  font-weight: 600; margin-bottom: 18px; letter-spacing: 1px;
}
.footer ul li { margin-bottom: 10px; }
.footer a { color: var(--gray); font-size: 0.9rem; }
.footer a:hover { color: var(--yellow); }
.footer__bottom { border-top: 1px solid var(--border); padding: 28px 0; }
.footer__bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer__copyright {
  font-family: var(--font-display); font-size: 0.875rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.75); letter-spacing: 0.02em;
}
.footer__legal {
  max-width: 720px; font-size: 0.75rem; line-height: 1.6;
  color: var(--gray-dark);
}
.footer__bottom p { font-size: 0.825rem; text-align: center; color: var(--gray-dark); }
.footer__location {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; font-family: var(--font-display);
  color: var(--gray-dark); font-size: 0.78rem;
}

/* ─── Float call ─── */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 100%);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px var(--yellow-glow);
  animation: pulse-call 2.5s infinite;
  transition: transform var(--transition);
}
.float-call:hover { color: var(--black); transform: scale(1.12); }
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 8px 32px var(--yellow-glow); }
  50% { box-shadow: 0 8px 48px rgba(245, 197, 24, 0.55); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }
  .hero__media {
    order: -1;
    min-height: clamp(280px, 38vh, 400px);
    max-height: 420px;
  }
  .hero__media-fade {
    background: linear-gradient(180deg, transparent 40%, var(--black) 100%);
  }
  .hero__content { padding: 36px clamp(20px, 4vw, 32px) 56px; }
  .showcase { grid-template-columns: 1fr; }
  .engagement { border-right: none; border-bottom: 1px solid var(--border); }
  .engagement:last-child { border-bottom: none; }
  .page-hero__bg { width: 100%; max-width: none; }
  .page-hero__shade {
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, var(--black) 55%, var(--black) 100%);
  }
  .page-hero { max-height: none; min-height: auto; padding-bottom: 48px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; top: calc(var(--phone-bar-h) + var(--header-h)); left: 0; right: 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0; visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border-accent);
  }
  .nav--open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 4px; }
  .nav__link { display: block; padding: 14px 18px; }
  .burger { display: flex; }
  .burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger--open span:nth-child(2) { opacity: 0; }
  .burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .phone-bar__badge { display: none; }
  .pricing { grid-template-columns: 1fr; max-width: 100%; }
  .contact-grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__bubble { display: none; }
  .hero__badge { width: 84px; height: 84px; font-size: 0.55rem; animation: none; }
  .section { padding: 64px 0; }
  .showcase__content { padding: 32px; }
  .showcase__image { min-height: 280px; }
  .showcase__image img { min-height: 280px; }
  .float-call { width: 56px; height: 56px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__title-line { font-size: clamp(1.9rem, 8.5vw, 2.45rem); }
  .pricing__row { flex-direction: column; align-items: flex-start; }
  .pricing__price { font-size: 1.85rem; }
}
