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

:root {
  --bg-body: linear-gradient(180deg, #050505 0%, #0c0c0c 45%, #111111 100%);
  --bg-surface: rgba(26, 26, 30, 0.9);
  --bg-surface-alt: rgba(20, 20, 24, 0.82);
  --bg-card: linear-gradient(150deg, rgba(24, 24, 26, 0.95), rgba(12, 12, 14, 0.92));
  --bg-sidebar: linear-gradient(180deg, rgba(10, 10, 12, 0.96) 0%, rgba(20, 20, 22, 0.92) 100%);
  --bg-chip: rgba(250, 204, 21, 0.14);
  --text-primary: #f8fafc;
  --text-muted: rgba(226, 232, 240, 0.75);
  --text-subtle: rgba(148, 163, 184, 0.65);
  --accent: #f97316;
  --accent-alt: #facc15;
  --accent-neo: #38bdf8;
  --border: rgba(148, 163, 184, 0.12);
  --border-strong: rgba(148, 163, 184, 0.24);
  --shadow-heavy: 0 40px 90px rgba(8, 15, 31, 0.6);
  --shadow-soft: 0 20px 45px rgba(8, 15, 31, 0.45);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --sidebar-width: clamp(260px, 25vw, 320px);
  --transition: all 0.35s ease;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #050505;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-alt);
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.home-intro {
  font-size: 24px;
  text-align: center;
}

.app-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
  background: rgba(10, 10, 12, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  position: relative;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  flex-shrink: 0;
}

.site-header__brand img {
  height: clamp(48px, 6vw, 64px);
  width: auto;
  object-fit: contain;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
}

.site-header__toggle-bars {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-header__toggle-bars::before,
.site-header__toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-header__toggle-bars::before {
  top: -6px;
}

.site-header__toggle-bars::after {
  top: 6px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
  margin-left: 0;
}

.site-header__nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.site-header__nav a {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.site-header__nav a:hover,
.site-header__nav a.is-active {
  color: var(--accent-alt);
  border-color: var(--accent-alt);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  text-align: center;
  flex: 0 0 auto;
}

.site-header__cta {
  display: flex;
  align-items: center;
}

.btn-phone {
  background: linear-gradient(120deg, #f97316, #facc15);
  color: #0b1120;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.btn-phone i {
  font-size: 0.9rem;
}

.site-header__session {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: max-content;
  align-items: flex-end;
  text-align: right;
}

.site-header__welcome {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-header__session-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.btn-member {
  border-color: rgba(248, 250, 252, 0.3);
}

.btn-link {
  color: var(--accent-alt);
  font-size: 0.8rem;
  text-transform: none;
  padding: 0;
  background: none;
  border: none;
  letter-spacing: normal;
  cursor: pointer;
}

.btn-link:hover {
  color: #fff;
}

body.header-nav-open {
  overflow: hidden;
}

.site-header__nav.is-open {
  display: flex;
}

@media (max-width: 1024px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__toggle {
    display: inline-flex;
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    background: rgba(2, 8, 23, 0.95);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 1.5rem;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
  }

  .site-header__nav ul {
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
  }

  .site-header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-header__cta {
    justify-content: center;
  }

  .site-header__session {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .site-header__session-links {
    width: 100%;
    justify-content: center;
  }
}

.sidebar-toggle {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 220;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.sidebar-toggle:hover {
  color: var(--accent-alt);
}

.sidebar-toggle__icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.sidebar-toggle__icon::before,
.sidebar-toggle__icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.sidebar-toggle__icon::before {
  top: -6px;
}

.sidebar-toggle__icon::after {
  top: 6px;
}

.sidebar-toggle__label {
  font-size: 0.9rem;
}

body.sidebar-open .sidebar-toggle__icon {
  background: transparent;
}

body.sidebar-open .sidebar-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

body.sidebar-open .sidebar-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.sidebar-overlay {
  display: none;
}

.sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(8, 13, 23, 0.4);
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  transition: var(--transition);
}

.sidebar-close:hover {
  color: var(--accent-alt);
  border-color: rgba(148, 163, 184, 0.32);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  height: 100vh;
  padding: clamp(2.4rem, 5vw, 3rem) clamp(1.8rem, 4vw, 2.4rem);
  background: var(--bg-sidebar);
  border-right: 1px solid rgba(148, 163, 184, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.03);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.35) transparent;
  z-index: 210;
  transition: transform 0.35s ease;
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 999px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar__inner {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  min-height: 100%;
}

.sidebar__top {
  display: grid;
  gap: 1.1rem;
  align-items: start;
}

.sidebar__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sidebar__bottom {
  display: grid;
  gap: 2.4rem;
  margin-top: auto;
}

.sidebar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border-radius: var(--radius-md);
  width: clamp(140px, 24vw, 180px);
  height: clamp(140px, 24vw, 180px);
}

.sidebar-logo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(15, 23, 42, 0.55));
}

.sidebar-nav ul {
  list-style: none;
  display: grid;
  margin-top: 1.6rem;
  gap: 0.75rem;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.sidebar-nav a i {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
  transition: transform 0.35s ease, color 0.35s ease;
}

.sidebar-nav a span {
  flex: 1;
}

.sidebar-nav a.is-active,
.sidebar-nav a:hover {
  color: #0b1120;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(250, 204, 21, 0.95));
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35);
}

.sidebar-nav a.is-active i,
.sidebar-nav a:hover i {
  color: #0b1120;
}

.sidebar-nav a:hover i,
.sidebar-nav a.is-active i {
  transform: translateX(4px);
}

.sidebar-actions {
  display: grid;
  gap: 1rem;
}

.sidebar-user {
  display: grid;
  gap: 0.75rem;
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, rgba(14, 116, 144, 0.22), rgba(12, 74, 110, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--text-primary);
}

.sidebar-user__welcome {
  font-size: 0.98rem;
  color: var(--text-muted);
}

.sidebar-logout {
  font-size: 0.85rem;
  text-decoration: underline;
  color: var(--accent-alt);
}

.sidebar-contact {
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sidebar-contact__title,
.sidebar-social__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-subtle);
}

.sidebar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  transition: var(--transition);
}

.sidebar-social {
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sidebar-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  transition: var(--transition);
}

.sidebar-social a:hover {
  color: #f8fafc;
}

.sidebar-contact a:hover {
  color: #f8fafc;
}

.sidebar-contact i {
  width: 1rem;
  text-align: center;
}

.app-content {
  min-height: 100vh;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.82), rgba(12, 10, 30, 0.88));
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  backdrop-filter: blur(14px);
}

.content-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.1rem) clamp(1.8rem, 4vw, 3.2rem);
  background: rgba(8, 13, 23, 0.85);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  backdrop-filter: blur(16px);
}

.content-header__breadcrumbs {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text-subtle);
  font-size: 0.95rem;
}

.content-header__breadcrumbs strong {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.content-header__cta {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.page-content {
  flex: 1;
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.8rem, 4vw, 3.2rem);
  display: grid;
  margin-top: 1rem;
  gap: clamp(4rem, 8vw, 5.5rem);
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(250, 204, 21, 0.92));
  color: #051021;
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 28px 65px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(59, 130, 246, 0.95));
  color: #f8fafc;
  box-shadow: 0 18px 45px rgba(14, 165, 233, 0.32);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 65px rgba(14, 165, 233, 0.38);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-muted);
}

.btn-outline:hover {
  color: var(--text-primary);
  border-color: rgba(148, 163, 184, 0.55);
  background: rgba(148, 163, 184, 0.12);
}

.btn-danger {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.92), rgba(239, 68, 68, 0.95));
  color: #fff7f7;
  box-shadow: 0 18px 45px rgba(239, 68, 68, 0.32);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 65px rgba(239, 68, 68, 0.42);
}

.hero {
  position: relative;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-heavy);
  background: rgba(15, 23, 42, 0.65);
}

.slides-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  height: clamp(380px, 58vw, 540px);
  isolation: isolate;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.1);
  transform: scale(1.04);
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(5, 11, 20, 0.94) 12%, rgba(7, 15, 27, 0.78) 55%, rgba(10, 19, 33, 0.46) 88%);
  backdrop-filter: blur(2px);
}

.slide-content {
  position: absolute;
  inset: 0;
  padding: clamp(2.4rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  color: rgba(125, 211, 252, 0.95);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.slide-content h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.85rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.slide-content h1 span.hero-highlight {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent), var(--accent-alt), var(--accent-neo), var(--accent));
  background-size: 200% 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: hero-glow 6s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.45));
}

@keyframes hero-glow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.slide-content p {
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--text-muted);
}

.call-to-action {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.hero-btn {
  --hero-btn-bg: linear-gradient(135deg, var(--accent), var(--accent-alt));
  --hero-btn-text: #0b1120;
  --hero-btn-border-color: transparent;
  --hero-btn-border-width: 0px;
  --hero-btn-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  background: var(--hero-btn-bg);
  color: var(--hero-btn-text);
  border: var(--hero-btn-border-width) solid var(--hero-btn-border-color);
  border-radius: var(--hero-btn-radius);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.25);
}

.hero-btn:hover::after {
  opacity: 1;
}

.hero-btn--pulse {
  animation: heroPulse 3.2s ease-in-out infinite;
}

.hero-btn--glow {
  animation: heroGlow 4s ease-in-out infinite;
}

.hero-btn--slide {
  animation: heroSlide 5s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 0 rgba(248, 250, 252, 0));
  }
  50% {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 18px rgba(248, 250, 252, 0.25));
  }
}

@keyframes heroGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.35));
  }
}

@keyframes heroSlide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(248, 250, 252, 0.25);
  background: rgba(7, 12, 24, 0.65);
  color: #f8fafc;
  display: grid;
  margin-top: 2.2rem;
  place-items: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.slider-control:hover {
  background: rgba(7, 12, 24, 0.95);
}

.slider-control--prev {
  left: clamp(1.2rem, 3vw, 2.4rem);
}

.slider-control--next {
  right: clamp(1.2rem, 3vw, 2.4rem);
}

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.section {
  display: grid;
  margin-top: 2.2rem;
  gap: clamp(2rem, 5vw, 3rem);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.section-heading h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  letter-spacing: 0.06em;
  position: relative;
  text-transform: uppercase;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-neo));
}

.section-heading p {
  max-width: 520px;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
}

.stat-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid rgba(250, 204, 21, 0.18);
  box-shadow: var(--shadow-soft);
  display: grid;
  margin-top: 2.2rem;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(250, 204, 21, 0.22), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-value {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.stat-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-subtle);
}

.stat-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: clamp(2rem, 6vw, 3.2rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.3rem;
}

.highlight-box p {
  color: var(--text-muted);
  font-size: 1.04rem;
}

.section--annonces {
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.annonces-header {
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin-top: 1rem;
}

.annonces-eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.48em;
  color: rgba(250, 204, 21, 0.85);
}

.annonces-header h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.annonces-subtitle {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.annonces-grid {
  display: grid;
  margin-top: clamp(2rem, 5vw, 3rem);
  gap: clamp(1.8rem, 4vw, 2.6rem);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.annonce-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.annonce-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.42);
}

.annonce-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.annonce-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.annonce-card:hover .annonce-card__media img {
  transform: scale(1.05);
}

.annonce-card__price {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(250, 204, 21, 0.92));
  color: #051021;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 16px 35px rgba(249, 115, 22, 0.32);
}

.annonce-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 4vw, 2.1rem);
  flex: 1;
}

.annonce-card__heading {
  display: grid;
  gap: 0.4rem;
}

.annonce-card__heading h2 {
  font-size: 1.35rem;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.annonce-card__heading a {
  color: inherit;
}

.annonce-card__heading a:hover {
  color: rgba(250, 204, 21, 0.95);
}

.annonce-card__brand {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  color: rgba(148, 163, 184, 0.85);
}

.annonce-card__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.annonce-card__options {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.annonce-card__options li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.22);
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.85);
}

.annonce-card__options-more {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.32);
  color: rgba(250, 204, 21, 0.85);
}

.annonce-card__cta {
  margin-top: auto;
}

.annonces-empty {
  background: rgba(8, 13, 23, 0.72);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: clamp(2.4rem, 6vw, 3.4rem);
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  margin-top: clamp(2rem, 5vw, 3rem);
}

.section--annonce-detail {
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.annonce-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.75);
  transition: color 0.3s ease;
}

.annonce-detail__back:hover {
  color: rgba(250, 204, 21, 0.95);
}

.annonce-detail__layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  align-items: start;
}

.annonce-detail__gallery {
  background: rgba(8, 13, 23, 0.72);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.18);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.vehicle-gallery__main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(15, 23, 42, 0.9);
}

.vehicle-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.vehicle-gallery__thumb {
  width: 104px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.vehicle-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-gallery__thumb:is(:hover, :focus-visible) {
  border-color: rgba(56, 189, 248, 0.55);
  transform: translateY(-2px);
}

.vehicle-gallery__thumb.is-active {
  border-color: rgba(250, 204, 21, 0.85);
}

.annonce-detail__summary {
  background: rgba(8, 13, 23, 0.78);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.6rem;
}

.annonce-detail__badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 0.72rem;
  color: rgba(250, 204, 21, 0.85);
}

.annonce-detail__subtitle {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--text-muted);
  font-size: 1rem;
}

.annonce-detail__price {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(250, 204, 21, 0.12));
  border-radius: var(--radius-md);
  border: 1px solid rgba(250, 204, 21, 0.25);
  padding: 1.2rem 1.6rem;
  display: grid;
  gap: 0.45rem;
  box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.12);
}

.annonce-detail__price span {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: rgba(250, 204, 21, 0.75);
}

.annonce-detail__price strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: 0.06em;
}

.annonce-detail__specs {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.annonce-detail__specs div {
  display: grid;
  gap: 0.3rem;
}

.annonce-detail__specs dt {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--text-subtle);
}

.annonce-detail__specs dd {
  margin: 0;
  font-size: 1.02rem;
}

.annonce-detail__options ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.annonce-detail__options li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.annonce-detail__options i {
  color: rgba(56, 189, 248, 0.9);
}

.annonce-detail__description p {
  color: var(--text-muted);
}

.annonce-detail__cta {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.95));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.annonce-detail__cta h2 {
  font-size: 1.25rem;
}

.admin-annonce-toolbar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.admin-annonces-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.admin-annonces-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.admin-annonces-empty {
  background: rgba(8, 13, 23, 0.78);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.admin-annonce-card {
  background: rgba(8, 13, 23, 0.78);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.admin-annonce-card__media {
  position: relative;
  overflow: hidden;
}

.admin-annonce-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.admin-annonce-card__price {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.88);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.admin-annonce-card__body {
  padding: clamp(1.6rem, 4vw, 2.2rem);
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.admin-annonce-card__brand {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.85);
}

.admin-annonce-card__meta {
  color: var(--text-muted);
}

.admin-annonce-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-annonce-card__actions form {
  display: inline-flex;
}

.services-grid {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}

.section-heading + .services-grid {
  margin-top: 2.2rem;
}

.service-card {
  position: relative;
  display: grid;
  margin-top: 2.2rem;
  gap: 1.1rem;
  padding: 1.8rem;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.35);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-media {
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.service-card h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.contact-section {
  display: grid;
  margin-top: 2.2rem;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.page-content.page-home .stats-grid,
.page-content.page-home .services-grid,
.page-content.page-home .section-heading + .services-grid,
.page-content.page-home .contact-section {
  margin-top: 30px;
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(249, 115, 22, 0.24);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-card ul {
  list-style: none;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.7rem;
  color: var(--text-muted);
}

.hours-list {
  list-style: none;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.45rem;
  color: var(--text-muted);
  padding-left: 0;
}

.form-field {
  display: grid;
  margin-top: 2.2rem;
  gap: 0.5rem;
}

.form-field small {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.contact-card a {
  color: inherit;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
  min-height: 360px;
  width: 100%;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.contact-cta {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(14, 116, 144, 0.15));
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid rgba(14, 165, 233, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-cta span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(125, 211, 252, 0.85);
  font-size: 0.78rem;
}

.contact-cta strong {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1.6rem;
}

.footer-grid {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: clamp(2.4rem, 5vw, 3.6rem) 0 1.8rem;
}

footer {
  background: rgba(5, 11, 20, 0.95);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-column img {
  width: 180px;
  margin-bottom: 1.1rem;
}

.footer-column h4 {
  font-family: 'Poppins', 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.5rem;
  color: var(--text-muted);
}

.footer-column a {
  color: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1.4rem 0 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--text-subtle);
  font-size: 0.92rem;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.footer-credit a {
  color: inherit;
  font-weight: 600;
}

.footer-credit img {
  height: 24px;
  width: auto;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.35));
}

.admin-area {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.admin-container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: grid;
  margin-top: 2.2rem;
  gap: 2rem;
}

.admin-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(12, 74, 110, 0.55));
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: var(--shadow-soft);
}

.admin-header h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-header p {
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.admin-nav {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-nav__link {
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.admin-nav__link.is-active,
.admin-nav__link:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(250, 204, 21, 0.85));
  border-color: transparent;
  color: #0b1120;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.25);
}

.admin-nav__link--logout {
  border-color: rgba(239, 68, 68, 0.45);
  color: rgba(248, 250, 252, 0.85);
}

.admin-nav__link--logout:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: rgba(239, 68, 68, 0.55);
  color: #fecaca;
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.2);
}

.admin-stats {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.admin-stat {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(56, 189, 248, 0.18);
  padding: 1.6rem;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.admin-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.admin-stat:hover::after {
  opacity: 1;
}

.admin-stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.admin-stat__value {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.admin-stat__hint {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.admin-alert {
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.65);
  color: var(--text-primary);
}

.admin-alert--success {
  border-color: rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.admin-alert--info {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.18);
  color: #dbeafe;
}

.admin-alert--danger {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
}

.admin-alert ul {
  display: grid;
  margin-top: 2.2rem;
  gap: 0.4rem;
  list-style: disc inside;
}

.admin-layout {
  display: grid;
  gap: clamp(1.8rem, 3vw, 2.6rem);
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: clamp(1rem, 4vw, 2rem);
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.4rem, 4vw, 1.8rem);
  background: rgba(8, 13, 23, 0.78);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.admin-sidebar__group {
  display: grid;
  gap: 0.65rem;
}

.admin-sidebar__title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.admin-sidebar__nav {
  display: grid;
  gap: 0.35rem;
}

.admin-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.admin-sidebar__nav a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--accent-alt);
}

.admin-sidebar__nav a.is-active {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(14, 116, 144, 0.28);
  color: var(--text-primary);
}

.admin-sidebar__nav a:hover,
.admin-sidebar__nav a:focus-visible {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(14, 116, 144, 0.2);
  color: var(--text-primary);
}

.admin-form {
  display: grid;
  gap: 2.4rem;
  background: rgba(8, 13, 23, 0.75);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.16);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-soft);
}

.admin-main {
  display: grid;
  gap: 2.4rem;
}

.admin-form__section {
  display: grid;
  gap: 1.4rem;
  scroll-margin-top: 4.5rem;
}

.admin-form__section[hidden] {
  display: none;
}

.admin-form__section h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-section__hint {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.admin-grid {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.is-hidden {
  display: none !important;
}

.admin-gallery-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-gallery-item {
  background: rgba(15, 23, 42, 0.45);
  border: 1px dashed rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.admin-gallery-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.admin-gallery-path {
  font-size: 0.78rem;
  color: var(--text-muted);
  word-break: break-all;
  flex: 1 1 auto;
}

.admin-gallery-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.admin-grid--compact {
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-subsection {
  margin-top: 2.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.6rem;
  background: rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 1.4rem;
}

.admin-subsection legend {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0 0.4rem;
}

.form-field--checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-field--checkbox .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.form-field--checkbox input[type='checkbox'] {
  width: auto;
  height: auto;
  accent-color: var(--accent-primary);
}

.repeater-card {
  border: 1px dashed rgba(148, 163, 184, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: grid;
  margin-top: 2.2rem;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.45);
}

.options-repeater {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.options-repeater .repeater-card {
  margin-top: 0;
  padding: 1rem;
  gap: 0.8rem;
}

.options-repeater [data-repeater-add] {
  grid-column: 1 / -1;
  justify-self: flex-start;
}

.admin-form__actions {
  display: flex;
  justify-content: flex-end;
}

.admin-members {
  display: grid;
  margin-top: 2.2rem;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.admin-panel {
  background: rgba(18, 18, 22, 0.82);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: clamp(1.8rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.4rem;
}

.admin-panel--wide {
  gap: 1.8rem;
  grid-column: 1 / -1;
}

.admin-form--compact {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.2rem;
}

.form-field {
  display: grid;
  margin-top: 2.2rem;
  gap: 0.45rem;
}

.admin-cover-preview {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  max-width: 260px;
}

.admin-cover-preview img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.form-field small {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.form-category {
  display: grid;
  margin-top: 2.2rem;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.45);
}

@media (max-width: 960px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 1100px) {
  .annonce-detail__layout {
    grid-template-columns: 1fr;
  }

  .admin-annonce-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .annonces-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .vehicle-gallery__thumb {
    width: 92px;
  }
}

@media (max-width: 720px) {
  .annonces-header h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .annonce-card__media {
    aspect-ratio: 16 / 10;
  }

  .vehicle-gallery__main {
    aspect-ratio: 4 / 3;
  }

  .vehicle-gallery__thumb {
    width: calc(50% - 0.5rem);
  }

  .annonce-detail__specs {
    grid-template-columns: 1fr;
  }

  .annonce-detail__cta {
    text-align: center;
  }
}

.form-category h3 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

label {
  font-weight: 600;
  letter-spacing: 0.04em;
}

input[type='text'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='number'],
input[type='color'],
select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(7, 14, 26, 0.75);
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition);
}

input[type='color'] {
  padding: 0.35rem;
  height: 3rem;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

fieldset {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.45);
  display: grid;
  margin-top: 2.2rem;
  gap: 1rem;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.admin-table th,
.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  text-align: left;
}

.admin-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-subtle);
}

.admin-table__actions {
  width: 180px;
  text-align: right;
}

.admin-inline-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-table__hint {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.admin-table__empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-size: 0.95rem;
}

.login-card {
  max-width: 440px;
  margin: clamp(4rem, 10vw, 6rem) auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: clamp(2rem, 6vw, 3rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.5rem;
}

.login-card h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  text-align: center;
  letter-spacing: 0.08em;
}

.login-card button {
  width: 100%;
}

.user-area {
  display: flex;
  justify-content: center;
}

.user-area__card {
  width: min(880px, 100%);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: clamp(2rem, 6vw, 3.4rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.7rem;
}

.user-area__tabs {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.user-area__tab {
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}

.user-area__tab.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #0f172a;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.35);
}

.user-area__feedback {
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
}

.user-area__feedback ul {
  list-style: none;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.4rem;
}

.user-area__feedback--error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.user-area__feedback--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.user-area__feedback--info {
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #bfdbfe;
}

.user-area__panels {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.5rem;
}

.user-area__panel {
  display: none;
}

.user-area__panel.is-active {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.25rem;
}

.user-area__panel form {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.1rem;
}

.user-area__panel form button,
.user-area__panel form .btn-primary,
.user-area__panel form .btn-secondary {
  margin-top: 0.25rem;
  justify-self: flex-start;
}

.user-area__panel h2 {
  font-family: 'Poppins', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.user-area__details {
  list-style: none;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.45rem;
  color: var(--text-muted);
}

.user-area__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-hero {
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 3.8rem);
  background: linear-gradient(140deg, rgba(249, 115, 22, 0.18), rgba(56, 189, 248, 0.22));
  border: 1px solid rgba(249, 115, 22, 0.28);
  box-shadow: var(--shadow-soft);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.1rem;
}

.contact-hero h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 3rem);
  border: 1px solid rgba(56, 189, 248, 0.22);
  display: grid;
  margin-top: 2.2rem;
  gap: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.contact-form__row {
  display: grid;
  margin-top: 2.2rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-form small {
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.contact-feedback {
  margin-bottom: 1rem;
}

.contact-sidebar {
  display: grid;
  margin-top: 2.2rem;
  gap: 1.2rem;
}

.contact-sidebar__card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250, 204, 21, 0.24);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid;
  margin-top: 2.2rem;
  gap: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.contact-sidebar__card ul {
  list-style: none;
  display: grid;
  margin-top: 2.2rem;
  gap: 0.55rem;
  color: var(--text-muted);
}

.contact-sidebar__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.contact-sidebar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

@media (max-width: 1100px) {
  :root {
    --sidebar-width: clamp(220px, 30vw, 280px);
  }

  .sidebar-logo {
    width: clamp(120px, 28vw, 160px);
    height: clamp(120px, 28vw, 160px);
  }

  .sidebar-logo img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 960px) {
  .app-shell {
    padding-left: 0;
    margin-top: 0;
  }

  .sidebar-logo {
    width: clamp(110px, 42vw, 150px);
    height: clamp(110px, 42vw, 150px);
  }

  .sidebar-toggle {
    display: inline-flex;
    right: clamp(1rem, 4vw, 1.6rem);
    left: auto;
    top: 1rem;
  }

  .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 9, 20, 0.65);
    z-index: 180;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar {
    width: min(320px, 82vw);
    transform: translateX(-100%);
    border-bottom: none;
    border-radius: 0;
    box-shadow: var(--shadow-heavy);
    padding: clamp(2rem, 6vw, 2.6rem);
    padding-top: max(0.5rem, calc(clamp(2rem, 6vw, 2.6rem) - 1.875rem));
    -webkit-overflow-scrolling: touch;
  }

  .sidebar-nav ul,
  .sidebar-actions,
  .sidebar-user {
    margin-top: max(0.25rem, calc(2.2rem - 1.875rem));
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .sidebar-close {
    display: inline-flex;
  }

  body.sidebar-open {
    overflow: hidden;
  }

  .content-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem clamp(1.1rem, 4vw, 1.8rem);
    background: rgba(8, 13, 23, 0.78);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  }
}

@media (max-width: 720px) {
  .content-header__cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .content-header__cta .btn-outline,
  .content-header__cta .btn-secondary {
    width: 100%;
  }

  .page-content {
    padding: 2rem 1.2rem 3rem;
    margin-top: 1.6rem;
  }

  .call-to-action {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slider {
    border-radius: 24px;
  }

  .slide {
    height: clamp(420px, 110vw, 560px);
  }

  .slide-content {
    padding: 1.8rem 1.2rem 2.6rem;
    align-items: flex-start;
    text-align: left;
    gap: 1.1rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    padding: 0.4rem 0.9rem;
  }

  .slide-content h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
    letter-spacing: 0.04em;
  }

  .call-to-action {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero-btn {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
  }

  .slider-control {
    display: none;
  }

  .slider-dots {
    bottom: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .user-area__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Carte grise page */
.page-content.page-carte-grise {
  gap: clamp(2.6rem, 6vw, 3.6rem);
}

.page-content.page-carte-grise .section:first-of-type {
  margin-top: 0;
}

.carte-grise-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2.6rem, 6vw, 4.2rem);
  border-radius: clamp(1.8rem, 4vw, 2.8rem);
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(10, 18, 36, 0.94), rgba(8, 25, 48, 0.82));
  border: 1px solid rgba(56, 189, 248, 0.25);
  overflow: hidden;
  align-items: center;
}

.carte-grise-hero__grid::after {
  content: '';
  position: absolute;
  inset: 12% -30% -40% 45%;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.28), transparent 70%);
  pointer-events: none;
}

.carte-grise-hero__intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
}

.carte-grise-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-soft, rgba(125, 211, 252, 0.85));
}

.carte-grise-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.7));
}

.carte-grise-hero__intro h1 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
}

.carte-grise-lead {
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.08rem;
  max-width: 62ch;
}

.carte-grise-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: clamp(1.6rem, 4vw, 2.4rem) 0 clamp(2.4rem, 5vw, 3rem);
  padding: 0;
}

.carte-grise-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(8, 16, 29, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: transform 160ms ease, border-color 160ms ease;
}

.carte-grise-list li:hover {
  border-color: rgba(250, 204, 21, 0.45);
  transform: translateY(-2px);
}

.carte-grise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.9), rgba(249, 115, 22, 0.85));
  color: #0b1224;
  font-size: 1.15rem;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.25);
}

.carte-grise-item-text {
  font-weight: 600;
  letter-spacing: 0.015em;
  color: rgba(226, 232, 240, 0.95);
}

.carte-grise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.carte-grise-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #051021;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(250, 204, 21, 0.92));
  border: 1px solid rgba(249, 115, 22, 0.48);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.carte-grise-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.32);
}

.carte-grise-button--alt {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(56, 189, 248, 0.45);
}

.carte-grise-button--alt:hover {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(59, 130, 246, 0.88));
  color: #051021;
  box-shadow: 0 22px 48px rgba(56, 189, 248, 0.3);
}

.carte-grise-button i {
  font-size: 1.05rem;
}

.carte-grise-assistance {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.85);
}

.carte-grise-assistance i {
  color: rgba(56, 189, 248, 0.95);
  font-size: 1.3rem;
}

.carte-grise-hero__visual {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 38vw, 460px);
}

.carte-grise-visual {
  background-image: var(--visual-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: clamp(1.6rem, 4vw, 3rem);
}

.carte-grise-visual--primary {
  position: absolute;
  inset: 0;
}

.carte-grise-visual--secondary {
  position: absolute;
  width: clamp(160px, 24vw, 260px);
  aspect-ratio: 1;
  right: clamp(-1rem, -3vw, -2rem);
  bottom: clamp(-1.5rem, -5vw, -2.5rem);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.carte-grise-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.6rem, 4vw, 2.4rem);
}

.carte-grise-highlight {
  background: rgba(8, 16, 29, 0.68);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.2rem);
  display: grid;
  gap: 1rem;
  transition: transform 160ms ease, border-color 160ms ease;
}

.carte-grise-highlight:hover {
  transform: translateY(-4px);
  border-color: rgba(250, 204, 21, 0.4);
}

.carte-grise-highlight i {
  font-size: 1.8rem;
  color: rgba(250, 204, 21, 0.95);
}

.carte-grise-highlight h2 {
  font-size: 1.25rem;
}

.carte-grise-highlight p {
  color: rgba(226, 232, 240, 0.78);
}

@media (max-width: 1080px) {
  .carte-grise-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .carte-grise-hero__intro {
    justify-items: center;
  }

  .carte-grise-list {
    text-align: left;
  }

  .carte-grise-actions {
    justify-content: center;
  }

  .carte-grise-assistance {
    text-align: left;
  }

  .carte-grise-hero__visual {
    margin-top: 2rem;
  }

  .carte-grise-visual--secondary {
    right: clamp(1rem, 12vw, 4rem);
    bottom: clamp(-1rem, -3vw, -2rem);
  }
}

@media (max-width: 640px) {
  .carte-grise-hero__grid {
    padding: clamp(2rem, 7vw, 2.6rem);
  }

  .carte-grise-list li {
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    padding: 0.85rem 1.1rem;
  }

  .carte-grise-actions {
    gap: 0.75rem;
  }

  .carte-grise-button {
    width: 100%;
  }

  .carte-grise-visual--secondary {
    position: relative;
    margin: 0 auto;
    right: auto;
    bottom: auto;
  }
}
