/* =============================================
   Parking Jardins des Halles — Premium Theme
   ============================================= */

:root {
  --bg-primary: #061220;
  --bg-secondary: #0a1a2e;
  --bg-card: rgba(9, 29, 55, 0.55);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(88, 123, 171, 0.4);

  --accent: #093d81;
  --accent-light: #95b2cf;
  --accent-bright: #acc3da;
  --accent-dark: #062d61;
  --accent-gold: #d4af37;
  --accent-gold-surface: #fddf01;
  --accent-safety-yellow: #fddf01;

  --text-primary: #f4f7fa;
  --text-secondary: rgba(244, 247, 250, 0.7);
  --text-muted: rgba(244, 247, 250, 0.45);

  --font-body: 'Outfit', system-ui, sans-serif;
  --font-brand: "GFS Didot", "Didot", "Bodoni 72", "Libre Bodoni", serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(9, 61, 129, 0.15);

  --header-height: 100px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background:
    radial-gradient(1200px 700px at 8% -12%, rgba(88, 123, 171, 0.3) 0%, rgba(88, 123, 171, 0) 62%),
    radial-gradient(950px 620px at 92% 6%, rgba(9, 61, 129, 0.35) 0%, rgba(9, 61, 129, 0) 66%),
    linear-gradient(165deg, #030a16 0%, #061220 46%, #08203d 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.header--scrolled {
  background: rgba(6, 18, 32, 0.96);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo__img {
  display: block;
  height: 76px;
  width: auto;
  object-fit: contain;
}

.footer__logo {
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--accent-bright);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--accent-bright);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: rgba(9, 61, 129, 0.12);
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transform-origin: 32% 50%;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle[aria-expanded="true"] {
  gap: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, #587bab, var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(9, 61, 129, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(9, 61, 129, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  background: rgba(9, 61, 129, 0.08);
}

.btn--full {
  width: 100%;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 50vh;
  min-height: 50dvh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 1.1s ease;
}

.hero__image--base {
  opacity: 1;
}

.hero__image--alt {
  opacity: 0;
  object-position: center 55%;
}

.hero.is-alt .hero__image--base {
  opacity: 0;
}

.hero.is-alt .hero__image--alt {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 18, 32, 0.05) 0%, rgba(6, 18, 32, 0.2) 70%, var(--bg-primary) 100%);
}

/* ---- Intro (titre + CTA) ---- */

.section--intro {
  padding: 48px 0 0;
  background: transparent;
}

.section--intro .hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.section--intro .hero__title {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  width: 100%;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}

.section--intro .hero__title-line {
  display: block;
}

.parking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(9, 61, 129, 0.22);
  color: var(--accent-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-accent);
}

.section--intro .gallery-caption {
  margin: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.45;
  color: #587bab;
  letter-spacing: 0.02em;
}

.section--intro .hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  width: auto;
}

.section--intro .hero__actions .btn {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ---- Tarifs + badge 1h (accueil) ---- */

.section--pricing-home {
  padding: 40px 0;
}

.pricing-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.pricing-offer-grid__pricing {
  display: flex;
  flex-direction: column;
}

.pricing-offer-grid__pricing .section__header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-offer-grid__pricing .section__title {
  margin-bottom: 0;
}

.pricing-offer-grid__pricing .section__title::after {
  margin-top: 12px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-offer-grid__pricing .pricing-board--summary {
  max-width: none;
}

.pricing-offer-grid__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}

.offer-badge-flip {
  position: relative;
  width: min(90vw, 380px);
  aspect-ratio: 1;
  perspective: 1100px;
  -webkit-perspective: 1100px;
  cursor: pointer;
  outline: none;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.offer-badge-flip::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(88, 123, 171, 0.14);
  pointer-events: none;
  z-index: 0;
}

.offer-badge-flip:hover:not(.is-flipped),
.offer-badge-flip:focus-visible:not(.is-flipped) {
  transform: translateY(-3px) scale(1.02);
}

.offer-badge-flip__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-badge-flip.is-flipped .offer-badge-flip__inner {
  transform: rotateY(180deg);
}

.offer-badge-flip__face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.offer-badge-flip__face--front {
  z-index: 2;
  transform: rotateY(0deg) translateZ(2px);
}

.offer-badge-flip__face--back {
  transform: rotateY(180deg) translateZ(2px);
  container-type: inline-size;
}

.offer-badge-flip.is-flipped .offer-badge-flip__face--front {
  visibility: hidden;
  pointer-events: none;
}

.offer-badge-flip:not(.is-flipped) .offer-badge-flip__face--back {
  visibility: hidden;
  pointer-events: none;
}

.offer-badge {
  --offer-blue: var(--accent-bright);
  --offer-text: var(--accent-bright);
  width: 100%;
  height: 100%;
  padding: 0;
  border: 1.5px solid rgba(88, 123, 171, 0.48);
  border-radius: 50%;
  background: linear-gradient(155deg, #0c2d56 0%, #061220 100%);
  box-shadow:
    0 0 0 1px rgba(88, 123, 171, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.offer-badge-flip__face--front.offer-badge {
  background:
    radial-gradient(circle at 50% 38%, rgba(9, 61, 129, 0.35) 0%, transparent 52%),
    linear-gradient(155deg, #0c2d56 0%, #061220 100%);
}

.offer-badge__pulse {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: none;
  border-radius: 50%;
  overflow: hidden;
}

.offer-badge-flip--pulse.is-pulse-active:not(.is-flipped) .offer-badge__pulse {
  display: block;
}

.offer-badge__pulse-ring {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 18%;
  right: 14%;
  width: 44px;
  height: 44px;
  margin: 0;
  transform-origin: center center;
  border-radius: 50%;
  border: 2px solid rgba(149, 178, 207, 0.42);
  animation: card-flip-pulse 2.6s ease-out infinite;
}

.offer-badge__pulse-ring:nth-child(2) {
  animation-delay: 0.85s;
}

.offer-badge__pulse-ring:nth-child(3) {
  animation-delay: 1.7s;
}

.offer-badge-flip__face--back.offer-badge {
  background: linear-gradient(155deg, #0a2548 0%, #050f1c 100%);
}

.offer-badge-flip:hover:not(.is-flipped) .offer-badge,
.offer-badge-flip:focus-visible:not(.is-flipped) .offer-badge {
  border-color: rgba(149, 178, 207, 0.72);
  box-shadow:
    0 0 28px rgba(9, 61, 129, 0.22),
    0 24px 56px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-badge__inner,
.offer-badge-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.offer-badge__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  width: 100%;
  height: 100%;
  padding: 11% 12%;
  text-align: center;
}

.offer-badge__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.64rem, 1.9vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(172, 195, 218, 0.85);
  line-height: 1.3;
  margin: 0;
}

.offer-badge__hours {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3.8rem, 14vw, 5.8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0.05em 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.offer-badge__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  margin: 0.05em 0;
}

.offer-badge__line {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(1.18rem, 4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.offer-badge__line--brand {
  color: var(--text-primary);
}

.offer-badge__line--gold {
  color: var(--offer-blue);
}

.offer-badge__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 200px;
  margin: 0.1em 0;
  color: rgba(149, 178, 207, 0.8);
}

.offer-badge__rule {
  flex: 1;
  height: 1.5px;
  background: currentColor;
  opacity: 0.7;
}

.offer-badge__car {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.offer-badge__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;
  margin: 0.05em 0 0;
}

.offer-badge__footer-line {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.6rem, 1.75vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(172, 195, 218, 0.8);
  line-height: 1.35;
}

.offer-badge-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 11% 10%;
  text-align: center;
  gap: 0.75em;
}

.offer-badge-back__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 4cqw, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  line-height: 1.3;
}

.offer-badge-back__subtitle {
  margin: 0 0 0.15em;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 3.2cqw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.3;
}

.offer-badge-back__names {
  margin: 0;
  max-width: 18em;
  font-family: var(--font-body);
  font-size: clamp(0.76rem, 3.8cqw, 0.95rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.offer-badge-back__note {
  margin: 0;
  max-width: 16em;
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 2.8cqw, 0.7rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted);
}

.offer-badge-back__btn {
  margin-top: 0.5em;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 3.2cqw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(88, 123, 171, 0.22);
  border: 1px solid rgba(149, 178, 207, 0.55);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

.offer-badge-back__btn:hover {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
  background: rgba(9, 61, 129, 0.35);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .offer-badge-flip__inner {
    transition: none;
  }

  .offer-badge-flip:hover:not(.is-flipped),
  .offer-badge-flip:focus-visible:not(.is-flipped) {
    transform: none;
  }

  .offer-badge__pulse-ring {
    animation: none;
  }
}

@media (min-width: 769px) {
  .pricing-offer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
  }

  .pricing-offer-grid__pricing .pricing-home-cta {
    justify-content: center;
  }

  .pricing-offer-grid__pricing .pricing-disclaimer {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-offer-grid__badge {
    justify-content: center;
  }

  .offer-badge-flip {
    width: min(100%, 420px);
  }
}

/* ---- Sections ---- */

.section {
  padding: 100px 0;
  position: relative;
}

.section--advantages {
  padding: 48px 0 48px;
  background: transparent;
  overflow: visible;
}

.section--advantages .section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section--advantages .section__title {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 0;
}

.section--advantages .section__title::after,
.section--pricing .section__title::after,
.section--pricing-page .section__title::after,
.section--subscription .section__title::after,
.section--location .section__title::after,
.section--contact .section__title::after,
.section--contact-page .section__title::after {
  content: '';
  display: block;
  width: clamp(100px, 14vw, 160px);
  height: 4px;
  margin: 16px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(14, 74, 143, 0.45) 18%,
    #093d81 50%,
    rgba(14, 74, 143, 0.45) 82%,
    transparent 100%
  );
}

.section--advantages .card {
  background: #f8fafc;
  border-color: rgba(9, 61, 129, 0.1);
  box-shadow: 0 4px 20px rgba(9, 61, 129, 0.06);
}

.section--advantages .card:hover {
  box-shadow: 0 8px 28px rgba(9, 61, 129, 0.1);
}

/* ---- Galerie ---- */

.section--gallery {
  padding: 16px 0 48px;
  background: var(--bg-primary);
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: var(--text-primary);
  margin: 0 auto 28px;
  max-width: 720px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid:has(.gallery-item:only-child) {
    grid-template-columns: 1fr;
    max-width: 960px;
    margin: 0 auto;
  }

  .subscription-carousel__track {
    gap: 24px;
    padding: 32px 0 40px;
  }

  .subscription-card {
    flex-basis: 380px;
    height: 500px;
  }
}

.section--steps {
  background: transparent;
}

.section--pricing {
  background: transparent;
  padding: 40px 0 40px;
}

.section--pricing .section__header {
  margin-bottom: 20px;
}

.section--pricing .section__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
}

.section--pricing .section__title::after {
  margin-top: 12px;
}

.section--subscription {
  background: transparent;
  padding: 48px 0 56px;
}

.section--subscription .section__header {
  margin-bottom: 28px;
}

.section--subscription .section__title::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 223, 1, 0.45) 18%,
    var(--accent-safety-yellow) 50%,
    rgba(253, 223, 1, 0.45) 82%,
    transparent 100%
  );
}

.section--location {
  background: transparent;
  padding: 56px 0 48px;
}

.section--location .section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}

.section--location .section__title {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 0;
}

.section--location .section__desc {
  margin-top: 14px;
  text-align: center;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.5;
}

.location-header__address {
  margin: 14px 0 0;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-primary);
}

.location-visual {
  max-width: 720px;
  margin: 24px auto 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transform: translateZ(0);
}

.location-visual__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.location-visual__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(30%) contrast(1.1);
}

.location-visual--map {
  margin-top: 0;
}

.location-access__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.location-visuals {
  display: contents;
}

.location-note {
  max-width: 520px;
  margin: 12px auto 0;
  text-align: center;
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: #587bab;
}

.section--faq {
  background: transparent;
  padding: 56px 0 80px;
}

.section--faq .section__header {
  margin-bottom: 32px;
  max-width: none;
}

.section--faq .section__title::after {
  content: '';
  display: block;
  width: clamp(100px, 14vw, 160px);
  height: 4px;
  margin: 16px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 223, 1, 0.45) 18%,
    var(--accent-safety-yellow) 50%,
    rgba(253, 223, 1, 0.45) 82%,
    transparent 100%
  );
}

.section--contact {
  background: transparent;
  padding: 56px 0 80px;
}

.section--contact .section__header {
  margin-bottom: 40px;
  max-width: none;
}

.section--contact .section__intro,
.section--contact-page .section__intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.8;
}

.contact-info__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.contact-info__item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.contact-info__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-info__value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}

a.contact-info__value {
  color: var(--accent-bright);
  text-decoration: none;
  transition: color var(--transition);
}

a.contact-info__value:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-form .btn {
  width: 100%;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ---- Cards Grid ---- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.assistance-banner {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  justify-self: center;
  padding: 18px 28px;
  background: linear-gradient(135deg, #0e4a8f 0%, #093d81 100%);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(9, 61, 129, 0.35);
}

.assistance-banner__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 123, 171, 0.55);
  border-radius: 50%;
  color: #ffffff;
}

.assistance-banner__icon svg {
  width: 26px;
  height: 26px;
}

.assistance-banner__content {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.45em;
}

.assistance-banner__title {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  white-space: nowrap;
}

.assistance-banner__text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.45;
  white-space: nowrap;
}

.section--advantages .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 18px 16px 20px;
  position: relative;
}

.card__step {
  position: absolute;
  top: 6px;
  left: 6px;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-safety-yellow);
  color: #061220;
  border: none;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(253, 223, 1, 0.45);
}

.section--advantages .card__icon {
  width: 100%;
  max-width: 320px;
  height: 148px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 0;
  flex-shrink: 0;
}

.section--advantages .card__icon:has(img) {
  max-width: 320px;
  margin-bottom: 0;
}

.section--advantages .card__icon img {
  max-height: 145px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.section--advantages .card__icon svg {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
}

.section--advantages .card__title {
  color: #0a1a2e;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  flex-shrink: 0;
}

.section--advantages .card__text {
  color: rgba(10, 26, 46, 0.65);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

/* ---- Carte retournable (entrée sans ticket) ---- */

.section--advantages .card--flip {
  padding: 0;
  overflow: hidden;
  backdrop-filter: none;
  position: relative;
  align-self: stretch;
  isolation: isolate;
  contain: paint;
}

.card--flip {
  perspective: 1200px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.card--flip:hover {
  transform: none;
}

.card-flip__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  z-index: 1;
}

.card--flip.is-flipped .card-flip__inner {
  transform: rotateY(90deg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.card--flip.is-flipped .card-flip__face--front {
  visibility: hidden;
}

.card-flip__face {
  border: none;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

.card-flip__face--front {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
  text-align: center;
  padding: 18px 16px 20px;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-flip__face--back {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease 0.18s, visibility 0.4s ease 0.18s;
}

.card--flip.is-flipped .card-flip__face--back {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.card-flip__face--back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.card-flip__pulse {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
  overflow: hidden;
}

.card--flip--pulse.is-centered:not(.is-flipped) .card-flip__pulse {
  display: block;
}

.card-flip__pulse-ring {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 20px;
  right: 16px;
  width: 56px;
  height: 56px;
  margin: 0;
  transform-origin: center center;
  border-radius: 50%;
  border: 2px solid rgba(9, 61, 129, 0.35);
  animation: card-flip-pulse 2.6s ease-out infinite;
}

.card-flip__pulse-ring:nth-child(2) {
  animation-delay: 0.85s;
}

.card-flip__pulse-ring:nth-child(3) {
  animation-delay: 1.7s;
}

.card-flip__pulse-dot {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 41px;
  right: 37px;
  width: 14px;
  height: 14px;
  margin: 0;
  border-radius: 50%;
  background: rgba(9, 61, 129, 0.28);
  animation: card-flip-pulse-dot 2.6s ease-in-out infinite;
}

@keyframes card-flip-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.55;
  }

  70% {
    opacity: 0.12;
  }

  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes card-flip-pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-flip__inner,
  .card-flip__face--back {
    transition: none;
  }

  .card-flip__pulse-ring,
  .card-flip__pulse-dot {
    animation: none;
    opacity: 0.35;
  }
}

.card {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.card__icon {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 12px;
  color: var(--accent);
}

.card__icon:has(img) {
  max-width: 300px;
  margin-bottom: 10px;
}

.card:has(.card__icon img) {
  padding: 20px 18px 22px;
}

.card:has(.card__icon img) .card__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.card:has(.card__icon img) .card__text {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.card__icon img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.card__icon svg {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto 4px;
}

.card__title {
  font-family: var(--font-body);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ---- Steps ---- */

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 48px;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step__number {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 20px;
  line-height: 1;
}

.step__title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.step__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step__connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin-top: 48px;
  flex-shrink: 0;
  opacity: 0.4;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.info-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.info-card__icon svg {
  width: 100%;
  height: 100%;
}

.info-card__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.info-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Pricing ---- */

.pricing-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pricing-board {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(9, 61, 129, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.pricing-board--summary {
  max-width: 480px;
}

.pricing-board__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--font-body);
}

.pricing-board__table thead th {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  padding: 12px 10px;
  text-align: center;
  width: 50%;
}

.pricing-board__table tbody td {
  background: #ffffff;
  color: #0a1a2e;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  font-weight: 500;
  padding: 10px 10px;
  border-bottom: 1px solid #e6ebf0;
  text-align: center;
  width: 50%;
}

.pricing-board__table tbody td:last-child {
  font-weight: 600;
  color: var(--accent);
}

.pricing-row--free td:last-child {
  color: #4ade80;
}

.pricing-board__table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-accent);
}

.pricing-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(9, 61, 129, 0.12), rgba(9, 61, 129, 0.03));
  box-shadow: var(--shadow-glow);
}

.pricing-card__duration {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__duration {
  color: var(--accent);
}

.pricing-card__price {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-card--featured .pricing-card__price {
  color: var(--accent-bright);
}

.pricing-full {
  margin-bottom: 32px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: var(--bg-glass);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.pricing-toggle:hover {
  background: rgba(9, 61, 129, 0.1);
}

.pricing-toggle[aria-expanded="true"] .pricing-toggle__icon {
  transform: rotate(180deg);
}

.pricing-toggle__icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.pricing-table-wrapper {
  margin-top: 24px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  animation: fadeIn 0.4s ease;
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-column {
  display: flex;
  flex-direction: column;
}

.pricing-column__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row__duration {
  color: var(--text-secondary);
}

.pricing-row__price {
  text-align: right;
  font-weight: 500;
  color: var(--text-primary);
}

.pricing-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-home-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-home-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ---- Page Tarifs (détail complet) ---- */

.page-tarifs {
  background: var(--bg-primary);
}

.section.section--pricing-page {
  padding: calc(var(--header-height) + 20px) 0 80px;
  background: transparent;
}

.section--pricing-page .section__header {
  margin-bottom: 16px;
}

.section--pricing-page .section__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
}

.section--pricing-page .section__title::after {
  margin-top: 10px;
}

.section--pricing-page .section__desc {
  margin: 10px 0 0;
  font-size: 1rem;
}

.pricing-page__tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-board--page {
  margin-bottom: 0;
  width: 100%;
  max-width: none;
}

.pricing-disclaimer--page {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  line-height: 1.75;
}

.pricing-page__back {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.nav__link--active {
  color: var(--accent-bright);
}

.nav__link--active::after {
  width: 100%;
}

.pricing-table-wrapper--light {
  background: #ffffff;
  border: 1px solid rgba(9, 61, 129, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.pricing-table-wrapper--light .pricing-column {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 8px 16px 16px;
}

.pricing-table-wrapper--light .pricing-column__header {
  color: var(--accent);
  border-bottom-color: rgba(9, 61, 129, 0.2);
  font-weight: 600;
}

.pricing-table-wrapper--light .pricing-row {
  border-bottom-color: #e8edf2;
}

.pricing-table-wrapper--light .pricing-row__duration {
  color: #4a5568;
}

.pricing-table-wrapper--light .pricing-row__price {
  color: var(--accent);
  font-weight: 600;
}

/* ---- Subscription ---- */

.subscription-box {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px;
  background: linear-gradient(135deg, rgba(9, 61, 129, 0.08), rgba(9, 61, 129, 0.02));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.subscription-box__content {
  flex: 1;
}

.subscription-box__text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 16px 0 32px;
  max-width: 520px;
  line-height: 1.8;
}

.subscription-box__visual {
  flex-shrink: 0;
  width: 160px;
  color: var(--accent);
  opacity: 0.5;
}

.subscription-box__visual svg {
  width: 100%;
  height: auto;
}

.pricing-offer {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  color: var(--accent-bright);
  margin: 0 auto 8px;
  padding: 10px 20px;
  max-width: 480px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-sm);
}

.subscription-offer {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
}

.subscription-offer__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.9);
  margin-bottom: 6px;
}

.subscription-offer__text {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto 40px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.plan-card--featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(9, 61, 129, 0.14), rgba(9, 61, 129, 0.04));
  box-shadow: var(--shadow-glow);
}

.plan-card__title {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px;
  line-height: 1.3;
}

.plan-card__details {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  width: 100%;
}

.plan-card__details li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.plan-card__details strong {
  color: var(--text-primary);
  font-weight: 500;
}

.plan-card__price {
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 600;
  color: var(--accent-bright);
  margin: 0 0 4px;
  line-height: 1.1;
}

.plan-card__price span {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.plan-card__price-ttc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.pro-tickets {
  max-width: 1040px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 8px 32px rgba(9, 61, 129, 0.25);
}

.pro-tickets__header {
  padding: 24px 28px;
  background: linear-gradient(135deg, #0e4a8f 0%, #093d81 100%);
  text-align: center;
}

.pro-tickets__title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.pro-tickets__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 500;
  color: rgba(212, 175, 55, 0.95);
  margin: 0;
}

.pro-tickets__body {
  padding: 28px;
  text-align: center;
  background: rgba(9, 29, 55, 0.55);
}

.pro-tickets__pack {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.pro-tickets__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 8px;
}

.pro-tickets__cta {
  margin-top: 20px;
}

.subscription-contact {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.subscription-contact a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subscription-contact a:hover {
  color: var(--text-primary);
}

.subscription-teaser {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 28px;
  text-align: center;
  background: linear-gradient(
    165deg,
    rgba(9, 29, 55, 0.78) 0%,
    rgba(9, 61, 129, 0.32) 100%
  );
  border: 1px solid rgba(149, 178, 207, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.subscription-teaser__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subscription-teaser__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  text-align: left;
  background: rgba(253, 223, 1, 0.07);
  border: 1px solid rgba(253, 223, 1, 0.22);
  border-radius: var(--radius-md);
}

.subscription-teaser__name {
  font-size: clamp(1.3rem, 3.6vw, 1.55rem);
  font-weight: 700;
  color: var(--accent-safety-yellow);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.subscription-teaser__detail {
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Subscription carousel (homepage) ---- */

.section--subscription .container {
  overflow: visible;
}

.subscription-carousel {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  perspective: 1400px;
}

.subscription-carousel__viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
}

.subscription-carousel__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.subscription-carousel__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 32px 0 40px;
  transform: translate3d(0, 0, 0);
}

.subscription-card {
  position: relative;
  flex: 0 0 min(72vw, 300px);
  height: clamp(400px, 66vw, 480px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  transform: scale(0.82) rotateY(0deg);
  opacity: 0.55;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: none;
}

.subscription-card--clone {
  pointer-events: none;
}

a.subscription-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.subscription-card__media {
  position: absolute;
  inset: 0;
}

.subscription-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subscription-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 18, 32, 0.05) 0%,
    rgba(6, 18, 32, 0.18) 60%,
    rgba(6, 18, 32, 0.32) 100%
  );
}

.subscription-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 20px 22px 24px;
  text-align: center;
  border-radius: 0 0 22px 22px;
}

.subscription-card--light .subscription-card__content {
  background: #ffffff;
}

.subscription-card--blue .subscription-card__content {
  background: linear-gradient(135deg, #062d61 0%, #041018 100%);
  box-shadow: 0 -8px 24px rgba(4, 16, 24, 0.35);
}

.subscription-card--light .subscription-card__tag {
  color: #062d61;
}

.subscription-card--light .subscription-card__name {
  color: #093d81;
}

.subscription-card--light .subscription-card__detail {
  color: #0a1a2e;
}

.subscription-card--blue .subscription-card__tag {
  color: rgba(255, 255, 255, 0.82);
}

.subscription-card--blue .subscription-card__name {
  color: #ffffff;
}

.subscription-card--blue .subscription-card__detail {
  color: rgba(255, 255, 255, 0.92);
}

.subscription-card__tag {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.subscription-card__name {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.subscription-card__detail {
  margin: 0;
  font-size: clamp(0.9rem, 2.6vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}

.subscription-carousel__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  padding: 0;
  text-align: center;
}

.page-abonnements {
  background: var(--bg-primary);
}

.section.section--subscription-page {
  padding: calc(var(--header-height) + 48px) 0 80px;
  background: transparent;
}

.section--subscription-page .section__header {
  margin-bottom: 28px;
}

.section--subscription-page .section__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
}

.section--subscription-page .section__title::after {
  content: '';
  display: block;
  width: clamp(100px, 14vw, 160px);
  height: 4px;
  margin: 16px auto 24px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 223, 1, 0.45) 18%,
    var(--accent-safety-yellow) 50%,
    rgba(253, 223, 1, 0.45) 82%,
    transparent 100%
  );
}

.subscription-page__back {
  text-align: center;
  margin-top: 40px;
}

/* ---- Contact page ---- */

.page-contact {
  background: var(--bg-primary);
}

.section.section--contact-page {
  padding: calc(var(--header-height) + 48px) 0 80px;
  background: transparent;
}

.section--contact-page .section__header {
  margin-bottom: 40px;
  max-width: none;
}

.section--contact-page .section__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
}

.section--contact-page .section__title::after {
  margin-top: 12px;
}

.section--contact-page .section__desc {
  margin-top: 16px;
}

.contact-page__visuals {
  margin-top: 0;
}

.contact-page__form-header {
  max-width: 720px;
  margin: 80px auto 24px;
  text-align: center;
}

.contact-page__form-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
}

.contact-page__form-title::after {
  content: '';
  display: block;
  width: clamp(80px, 12vw, 120px);
  height: 4px;
  margin: 12px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(14, 74, 143, 0.45) 18%,
    #093d81 50%,
    rgba(14, 74, 143, 0.45) 82%,
    transparent 100%
  );
}

.contact-page__form-desc {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (min-width: 1025px) {
  .contact-page__form-header {
    max-width: 1040px;
  }

  .contact-page__form-desc {
    max-width: none;
    white-space: nowrap;
  }
}

.contact-page__form {
  max-width: 720px;
  margin: 0 auto;
}

.contact-page__back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1040px;
  margin: 48px auto 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: rgba(9, 61, 129, 0.15);
  color: var(--accent-bright);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__title {
  margin: 0 0 10px;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card__desc {
  margin: 0 0 24px;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.contact-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

a.contact-card__action[href^="tel:"],
a.contact-card__action[href^="mailto:"] {
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-card__action:hover {
  border-color: var(--accent);
  background: rgba(9, 61, 129, 0.18);
  color: var(--accent-bright);
}

/* ---- Legal pages ---- */

.page-legal {
  background: var(--bg-primary);
}

.section.section--legal-page {
  padding: calc(var(--header-height) + 48px) 0 80px;
}

.section--legal-page .section__header {
  margin-bottom: 32px;
}

.section--legal-page .section__title {
  margin-bottom: 0;
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
}

.section--legal-page .section__title::after {
  content: '';
  display: block;
  width: clamp(100px, 14vw, 160px);
  height: 4px;
  margin: 16px auto 24px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(253, 223, 1, 0.45) 18%,
    var(--accent-safety-yellow) 50%,
    rgba(253, 223, 1, 0.45) 82%,
    transparent 100%
  );
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 32px 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--accent-bright);
  transition: color var(--transition);
}

.legal-content a:hover {
  color: #ffffff;
}

.legal-note {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(88, 123, 171, 0.35);
  background: rgba(9, 61, 129, 0.12);
  font-size: 14px;
}

.legal-back {
  margin-top: 40px;
  text-align: center;
}

.legal-back a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer__copy a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__copy a:hover {
  color: var(--accent-bright);
}

/* ---- Subscription detail page ---- */

.subscription-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  width: 100%;
  max-width: none;
  margin: 0 auto 56px;
}

.subscription-other {
  margin-top: 32px;
}

.subscription-other .section__header {
  margin-bottom: 28px;
}

.subscription-other-grid {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 56px;
}

.plan-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.plan-detail-item .plan-detail {
  width: 100%;
}

.plan-detail__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

.plan-detail__contact-link:hover {
  color: var(--accent-bright);
}

.plan-detail {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  background: var(--bg-card);
  height: 100%;
}

.plan-detail--featured {
  box-shadow: 0 22px 52px rgba(9, 61, 129, 0.35);
}

.plan-detail__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.plan-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-detail__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 18, 32, 0.05) 0%,
    rgba(6, 18, 32, 0.2) 100%
  );
}

.plan-detail__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
  text-align: center;
}

.plan-detail--light .plan-detail__content {
  background: rgba(255, 255, 255, 0.97);
}

.plan-detail--blue .plan-detail__content {
  background: linear-gradient(135deg, #062d61 0%, #041018 100%);
}

.plan-detail__title {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #093d81;
}

.plan-detail__lead {
  margin: 0 0 12px;
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  line-height: 1.45;
}

.plan-detail--light .plan-detail__lead {
  color: #2a3f5c;
}

.plan-detail--blue .plan-detail__lead {
  color: rgba(255, 255, 255, 0.88);
}

.plan-detail__details {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  text-align: center;
}

.plan-detail__details li {
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  line-height: 1.45;
  margin-bottom: 4px;
}

.plan-detail__details-spacer,
.plan-detail__price--placeholder {
  visibility: hidden;
}

.plan-detail__more-link {
  display: inline-block;
  margin: 0 0 14px;
  font-size: clamp(0.88rem, 2vw, 0.95rem);
  font-weight: 500;
  color: #093d81;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.plan-detail__more-link:hover {
  color: #062d61;
}

.plan-detail--light .plan-detail__details li {
  color: #2a3f5c;
}

.plan-detail--blue .plan-detail__details li {
  color: rgba(255, 255, 255, 0.88);
}

.plan-detail__details strong {
  font-weight: 600;
}

.plan-detail--light .plan-detail__details strong {
  color: #041018;
}

.plan-detail--blue .plan-detail__details strong {
  color: #ffffff;
}

.plan-detail__pricing {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(9, 61, 129, 0.12);
}

.plan-detail--light .plan-detail__pricing {
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: -20px;
  padding: 14px 16px 20px;
  background: linear-gradient(135deg, #093d81 0%, #062d61 100%);
  border-top: none;
  border-radius: 0 0 19px 19px;
}

.plan-detail--light .plan-detail__pricing .plan-detail__price {
  color: #ffffff;
}

.plan-detail--light .plan-detail__pricing .plan-detail__price span {
  color: rgba(255, 255, 255, 0.78);
}

.plan-detail--light .plan-detail__pricing .plan-detail__price-ttc {
  color: rgba(255, 255, 255, 0.88);
}

.plan-detail--blue .plan-detail__pricing {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.plan-detail__price {
  margin: 0 0 2px;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
}

.plan-detail--light .plan-detail__price {
  color: #093d81;
}

.plan-detail--blue .plan-detail__price {
  color: var(--accent-safety-yellow);
}

.plan-detail__price span {
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.plan-detail--light .plan-detail__price span {
  color: #5a6f88;
}

.plan-detail--blue .plan-detail__price span {
  color: rgba(255, 255, 255, 0.7);
}

.plan-detail__price--quote {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
}

.plan-detail__price-ttc {
  margin: 0;
  font-size: 14px;
}

.plan-detail--light .plan-detail__price-ttc {
  color: #2a3f5c;
}

.plan-detail--blue .plan-detail__price-ttc {
  color: rgba(255, 255, 255, 0.82);
}

.pro-tickets--detailed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.pro-tickets--detailed .pro-tickets__visual {
  min-height: 320px;
  background: #061220;
}

.pro-tickets--detailed .pro-tickets__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pro-tickets--detailed .pro-tickets__panel {
  display: flex;
  flex-direction: column;
}

.pro-tickets--detailed .pro-tickets__header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, #062d61 0%, #041018 100%);
}

.pro-tickets--detailed .pro-tickets__body {
  flex: 1;
  padding: 24px 28px 32px;
  text-align: left;
  background: rgba(255, 255, 255, 0.97);
}

.pro-tickets--detailed .pro-tickets__pack,
.pro-tickets--detailed .pro-tickets__text {
  color: #2a3f5c;
}

.pro-tickets--detailed .pro-tickets__pack strong {
  color: #041018;
}

.pro-tickets--detailed .pro-tickets__subtitle {
  color: var(--accent-safety-yellow);
}

.assistance-banner__phone {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  white-space: nowrap;
}

.location-address__contact {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-bright);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

.location-address__contact:hover {
  text-decoration: underline;
}

.footer__contact {
  margin-top: 8px;
  font-size: 14px;
}

.footer__contact a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--accent-bright);
}

/* ---- Location ---- */

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  width: 100%;
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 32px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.location-address {
  font-size: clamp(1.15rem, 3.4vw, 1.4rem);
  line-height: 1.8;
  margin: 0;
  color: var(--text-secondary);
  text-align: center;
  font-style: normal;
}

.location-address strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(1.4rem, 4.5vw, 1.75rem);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 6px;
}

.location-address__subtitle {
  display: block;
  color: var(--accent-bright);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.location-detail svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.location-map {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  transform: translateZ(0);
}

.location-cta {
  align-self: center;
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 16px 32px;
  font-size: 14px;
}

.location-cta svg {
  width: 20px;
  height: 20px;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(30%) contrast(1.1);
}

/* ---- Contact ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2395b2cf' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(9, 61, 129, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1px solid var(--border-accent);
  border-radius: 4px;
  transition: background var(--transition);
  position: relative;
}

.checkbox input:checked + .checkbox__mark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox input:checked + .checkbox__mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.form-feedback--success {
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-feedback--error {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-legal {
  margin: 14px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

.form-legal a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Footer ---- */

.footer {
  padding: 48px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__brand p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  gap: 24px;
}

.footer__nav a {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.route-modal[hidden] {
  display: none;
}

.route-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.route-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.72);
}

.route-modal__panel {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(92vw, 420px);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
}

.route-modal__title {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.22rem;
  margin: 0 0 6px;
  text-align: center;
}

.route-modal__option,
.route-modal__cancel {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
}

.route-modal__option {
  background: linear-gradient(135deg, #587bab, var(--accent));
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.route-modal__cancel {
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
}

/* ---- Partner flyer pop-up ---- */

.partner-flyer[hidden] {
  display: none;
}

.partner-flyer {
  position: fixed;
  inset: 0;
  z-index: 2100;
}

.partner-flyer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 18, 0.82);
}

.partner-flyer__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(96vw, 560px);
  max-height: 92vh;
  overflow: hidden;
  padding: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
}

.partner-flyer__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  background: rgba(9, 29, 55, 0.85);
  color: var(--text-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.partner-flyer__close:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: rgba(9, 61, 129, 0.35);
}

.partner-flyer__body {
  position: relative;
  max-height: calc(92vh - 24px);
}

.partner-flyer__body::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: linear-gradient(to top, rgba(2, 8, 18, 0.88) 0%, rgba(2, 8, 18, 0.45) 55%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.partner-flyer__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 24px);
  object-fit: contain;
  object-position: top center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.partner-flyer__cta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: auto;
  justify-content: center;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
}

@media (min-width: 769px) {
  .partner-flyer__panel {
    width: min(90vw, 640px);
    padding: 14px;
  }

  .partner-flyer__body {
    max-height: calc(92vh - 28px);
  }

  .partner-flyer__image {
    max-height: calc(92vh - 28px);
  }
}

/* ---- Animations ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .subscription-plans {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pro-tickets--detailed .pro-tickets__visual {
    min-height: 260px;
    max-height: 320px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cards-grid .card--flip:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc((100% - 24px) / 2);
    justify-self: center;
  }

  .pricing-highlight {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-table-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  body {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  body::-webkit-scrollbar {
    display: none;
    width: 0;
  }

  .section {
    padding: 72px 0;
  }

  .plan-detail__media {
    aspect-ratio: 2 / 1;
  }

  .plan-detail__content {
    padding: 14px 14px 18px;
  }

  .plan-detail--light .plan-detail__pricing {
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: -18px;
    padding: 12px 14px 18px;
  }

  .subscription-detail-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    gap: 40px;
  }

  .subscription-other-grid {
    max-width: 340px;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .logo {
    position: relative;
    z-index: 1001;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(6, 18, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform var(--transition);
    padding: calc(var(--header-height) + 24px) 40px 40px;
  }

  .nav.open {
    transform: translateX(0);
  }

  .header--menu-open {
    background: rgba(6, 18, 32, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  }

  .nav__link {
    font-size: 18px;
  }

  .logo__img {
    height: 68px;
  }

  .hero {
    min-height: 42vh;
    min-height: 42dvh;
  }

  .section--intro {
    padding: 36px 0 0;
  }

  .section--gallery {
    padding: 8px 0 32px;
  }

  .section--intro .hero__center {
    gap: 20px;
  }

  .section--intro .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 3rem);
    letter-spacing: 0.015em;
  }

  .section--intro .hero__actions .btn {
    padding: 12px 22px;
    font-size: 12px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cards-grid .card--flip:nth-child(3) {
    grid-column: auto;
    max-width: none;
    width: calc(100% - 56px);
    justify-self: center;
  }

  .section--advantages {
    padding: 36px 0 40px;
  }

  .section--pricing-home {
    padding: 32px 0 28px;
  }

  .section--pricing {
    padding: 32px 0 28px;
  }

  .section--pricing .section__header {
    margin-bottom: 16px;
  }

  .section--pricing .pricing-board {
    margin-bottom: 20px;
  }

  .pricing-home-cta {
    margin-bottom: 12px;
  }

  .section--subscription {
    padding: 36px 0 44px;
  }

  .subscription-plans {
    grid-template-columns: 1fr;
    gap: 16px;
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .pro-tickets {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
  }

  .pro-tickets__header,
  .pro-tickets__body {
    padding: 20px 18px;
  }

  .subscription-offer {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
    padding: 14px 18px;
  }

  .subscription-teaser {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
    padding: 24px 20px;
  }

  .subscription-carousel__track {
    gap: 16px;
    padding: 24px 0 32px;
  }

  .subscription-card {
    flex-basis: 78vw;
    height: clamp(380px, 68vw, 460px);
  }

  .subscription-carousel__cta {
    margin-top: 4px;
    padding: 0;
  }

  .section.section--subscription-page {
    padding: calc(var(--header-height) + 40px) 0 64px;
  }

  .section--pricing .section__header {
    margin-bottom: 12px;
  }

  .section--pricing .pricing-board {
    margin-bottom: 16px;
  }

  .pricing-home-cta {
    margin-bottom: 12px;
  }

  .pricing-disclaimer {
    margin-bottom: 0;
  }

  .section--location {
    padding: 44px 0 36px;
  }

  .section--location .section__header {
    margin-bottom: 16px;
  }

  .location-card {
    width: 100%;
    padding: 28px 20px;
    gap: 20px;
  }

  .location-cta {
    padding: 14px 26px;
    font-size: 13px;
  }

  .location-visual {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .location-visual:last-child {
    margin-bottom: 20px;
  }

  .location-note {
    width: auto;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .location-grid {
    gap: 16px;
  }

  .section--faq {
    padding: 44px 0 64px;
  }

  .section--faq .section__header {
    margin-bottom: 20px;
  }

  .section--faq .section__desc {
    margin-top: 8px;
    white-space: normal;
  }

  .section--contact {
    padding: 44px 0 64px;
  }

  .section--contact .section__header {
    margin-bottom: 24px;
  }

  .section--contact .section__desc {
    white-space: normal;
  }

  .section.section--contact-page {
    padding: calc(var(--header-height) + 40px) 0 64px;
  }

  .section--contact-page .section__desc {
    white-space: normal;
  }

  .contact-page__visuals {
    display: none;
  }

  .contact-page__form-header {
    margin-top: 40px;
  }

  .section.section--pricing-page {
    padding: calc(var(--header-height) + 16px) 0 64px;
  }

  .section--pricing-page .section__header {
    margin-bottom: 12px;
  }

  .section--advantages .card,
  .section--advantages .card--flip,
  .pricing-board {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-board {
    max-width: none;
  }

  .pricing-page__tables {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-page__tables .pricing-board {
    width: calc(100% - 56px);
  }

  .pricing-board__table thead th,
  .pricing-board__table tbody td {
    padding: 7px 8px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .pricing-board__table thead th {
    padding: 9px 8px;
    font-size: 0.92rem;
  }

  .section--advantages .card {
    padding: 8px 14px 18px;
    min-height: 0;
    overflow: visible;
    justify-content: flex-start;
  }

  .section--advantages .card--flip {
    padding: 0;
    overflow: hidden;
    justify-content: flex-start;
    min-height: 0;
  }

  .card-flip__face--front {
    padding: 8px 14px 18px;
  }

  .section--advantages .card__icon {
    height: auto;
    max-width: 100%;
    margin-bottom: 4px;
    line-height: 0;
    overflow: hidden;
    display: block;
  }

  .section--advantages .card__icon img {
    max-height: 200px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    transform: none;
    display: block;
    margin-bottom: 0;
  }

  .section--advantages .card__icon svg {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto 4px;
  }

  .section--advantages .card__title {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    line-height: 1.15;
  }

  .assistance-banner {
    width: calc(100% - 56px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 18px;
    gap: 16px;
  }

  .assistance-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .assistance-banner__title,
  .assistance-banner__text {
    white-space: normal;
  }

  .assistance-banner__icon {
    width: 50px;
    height: 50px;
  }

  .assistance-banner__icon svg {
    width: 24px;
    height: 24px;
  }

  .card {
    padding: 20px 16px;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step__connector {
    width: 1px;
    height: 32px;
    margin: 0 auto;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .pricing-highlight {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-table-grid {
    grid-template-columns: 1fr;
  }

  .subscription-box {
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
  }

  .subscription-box__text {
    margin-left: auto;
    margin-right: auto;
  }

  .subscription-box__visual {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .pricing-highlight {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pricing-card {
    padding: 20px 12px;
  }

  .pricing-card__price {
    font-size: 1.4rem;
  }
}

/* ---- FAQ ---- */

.placeholder {
  font-style: italic;
  color: var(--text-muted);
  opacity: 0.85;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent-bright);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---- Desktop layout ---- */

@media (min-width: 1025px) {
  .hero {
    min-height: 58vh;
  }

  .hero__image--base {
    object-position: center 78%;
  }

  .hero__image--alt {
    object-position: center 65%;
  }

  .section--intro {
    padding: 56px 0 0;
  }

  .nav {
    gap: 24px;
  }

  .location-visuals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1040px;
    margin: 24px auto 28px;
  }

  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }

  .location-visuals .location-visual {
    max-width: none;
    margin: 0;
  }

  .subscription-detail-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .subscription-detail-grid .plan-detail-item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
  }

  .subscription-other-grid {
    max-width: calc((100% - 32px) / 2);
  }

  .section--advantages .cards-grid {
    gap: 32px;
  }

  .section--advantages .card__icon {
    max-width: 360px;
    height: 186px;
  }

  .section--advantages .card__icon:has(img) {
    max-width: 360px;
  }

  .section--advantages .card__icon img {
    max-height: 182px;
  }

  .section--advantages .card__title {
    margin-bottom: 2px;
  }

  .section--faq .section__desc {
    white-space: nowrap;
  }

  .section--contact .section__desc {
    white-space: nowrap;
  }

  .section--contact-page .section__desc {
    white-space: nowrap;
  }

  .subscription-card {
    flex-basis: 420px;
    height: 530px;
  }

  .section.section--pricing-page,
  .section.section--subscription-page,
  .section.section--legal-page,
  .section.section--contact-page {
    padding-top: calc(var(--header-height) + 48px);
  }

  .footer__inner {
    align-items: flex-start;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .subscription-detail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .subscription-detail-grid .plan-detail-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc((100% - 28px) / 2);
    justify-self: center;
  }

  .subscription-other-grid {
    max-width: calc((100% - 28px) / 2);
  }
}

.faq-item a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
