/* ─── À propos — Modern Design with Neon Effects ───────────────────────────────────────────────── */

.anv-page--a-propos {
  --anv-glow-blue: rgba(10, 89, 255, 0.45);
  --anv-glow-red: rgba(255, 51, 77, 0.4);
  --anv-glow-cyan: rgba(188, 236, 242, 0.3);
  --anv-neon-blue: #0A59FF;
  --anv-neon-red: #ff334d;
  --anv-dark: #071433;
  --anv-glass: rgba(255, 255, 255, 0.85);
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.anv-page--a-propos *,
.anv-page--a-propos *::before,
.anv-page--a-propos *::after {
  box-sizing: border-box;
}

/* ─── Hero Section with Neon Glow ───────────────────────────────────────────────────── */

.cc-hero-only {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  padding: clamp(90px, 12vw, 140px) clamp(20px, 4vw, 56px);
  font-family: "Satoshi", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #071433;
  position: relative;
  isolation: isolate;
}

.cc-hero-only::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 25%, var(--anv-glow-blue), transparent 40%),
    radial-gradient(circle at 12% 82%, var(--anv-glow-red), transparent 35%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  pointer-events: none;
}

.cc-hero-content {
  max-width: 650px;
  animation: heroFadeIn 0.8s cubic-bezier(.22, 1, .36, 1) both;
}

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

.cc-eyebrow {
  width: fit-content;
  padding: 12px 24px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7ff 100%);
  color: #0A59FF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 12px 40px rgba(10, 89, 255, 0.12),
    inset 0 0 0 1px rgba(10, 89, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: badgePulse 2s ease-in-out infinite;
}

.cc-eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 89, 255, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(10, 89, 255, 0.12), inset 0 0 0 1px rgba(10, 89, 255, 0.1); }
  50% { box-shadow: 0 16px 50px rgba(10, 89, 255, 0.18), inset 0 0 0 1px rgba(10, 89, 255, 0.15); }
}

.cc-eyebrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(10, 89, 255, 0.2);
}

.cc-hero-only h1 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 900;
  color: #071433;
  animation: heroTitleIn 1s cubic-bezier(.22, 1, .36, 1) 0.2s both;
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.cc-hero-only h1 span {
  display: block;
  color: #0A59FF;
  position: relative;
}

.cc-hero-only h1 span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--anv-neon-blue), var(--anv-neon-red));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 1.2s cubic-bezier(.22, 1, .36, 1) 0.6s both;
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.cc-hero-only p {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.62;
  color: rgba(7, 20, 51, 0.66);
  letter-spacing: -0.015em;
  animation: heroTextIn 1s cubic-bezier(.22, 1, .36, 1) 0.4s both;
}

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

.cc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  animation: heroActionsIn 1s cubic-bezier(.22, 1, .36, 1) 0.6s both;
}

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

.cc-primary-btn,
.cc-secondary-btn {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cc-primary-btn {
  background: linear-gradient(135deg, #0A59FF 0%, #0047cc 100%);
  color: #ffffff;
  box-shadow:
    0 18px 45px rgba(10, 89, 255, 0.28),
    0 0 0 0 rgba(10, 89, 255, 0.4);
  border: none;
}

.cc-primary-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cc-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 60px rgba(10, 89, 255, 0.35),
    0 0 20px rgba(10, 89, 255, 0.4);
}

.cc-primary-btn:hover::before {
  opacity: 1;
}

.cc-secondary-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #0A59FF;
  border: 2px solid rgba(10, 89, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(10, 89, 255, 0.08);
}

.cc-secondary-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 89, 255, 0.4);
  box-shadow: 0 18px 45px rgba(10, 89, 255, 0.15);
  background: rgba(255, 255, 255, 1);
}

.cc-hero-stats {
  display: flex;
  gap: clamp(46px, 8vw, 110px);
  margin-top: clamp(70px, 9vw, 120px);
  animation: heroStatsIn 1s cubic-bezier(.22, 1, .36, 1) 0.8s both;
}

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

.cc-hero-stats div {
  display: grid;
  gap: 10px;
  position: relative;
}

.cc-hero-stats div::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--anv-neon-blue), transparent);
  border-radius: 999px;
}

.cc-hero-stats strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.07em;
  color: #071433;
  font-weight: 900;
  background: linear-gradient(135deg, #071433 0%, #0A59FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cc-hero-stats span {
  font-size: 15px;
  color: rgba(7, 20, 51, 0.55);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cc-hero-visual {
  display: flex;
  justify-content: center;
  animation: heroVisualIn 1.2s cubic-bezier(.22, 1, .36, 1) 0.3s both;
}

@keyframes heroVisualIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.cc-image-card {
  width: min(100%, 590px);
  aspect-ratio: 4 / 5;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, #e9ecf2, #d8e1f0);
  box-shadow:
    0 50px 110px rgba(7, 20, 51, 0.18),
    0 20px 60px rgba(10, 89, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1), box-shadow 0.5s ease;
}

.cc-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.3);
}

.cc-image-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(45deg, transparent, rgba(10, 89, 255, 0.3), transparent, rgba(255, 51, 77, 0.3), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cc-image-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 60px 130px rgba(7, 20, 51, 0.2),
    0 25px 70px rgba(10, 89, 255, 0.15);
}

.cc-image-card:hover::before {
  opacity: 1;
}

.cc-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.cc-image-card:hover img {
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.01);
}

@media (max-width: 980px) {
  .cc-hero-only {
    grid-template-columns: 1fr;
    gap: 54px;
    text-align: center;
    padding: 80px clamp(20px, 4vw, 56px) 100px;
  }

  .cc-hero-content {
    margin: 0 auto;
  }

  .cc-eyebrow,
  .cc-hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .cc-hero-only p {
    margin-left: auto;
    margin-right: auto;
  }

  .cc-hero-stats {
    justify-content: center;
    margin-top: 54px;
  }

  .cc-image-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .cc-hero-only {
    padding: 60px 18px 80px;
  }

  .cc-hero-only h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .cc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-primary-btn,
  .cc-secondary-btn {
    width: 100%;
  }

  .cc-hero-stats {
    gap: 34px;
    margin-top: 44px;
  }

  .cc-image-card {
    border-radius: 28px;
  }
}

/* ─── Booking Modal ───────────────────────────────────────────── */

.cc-booking-modal,
.cc-booking-modal * {
  box-sizing: border-box;
}

.cc-booking-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
}

.cc-booking-modal.is-open {
  display: flex;
}

.cc-booking-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(10, 89, 255, 0.22), transparent 32%),
    radial-gradient(circle at 82% 76%, rgba(255, 51, 77, 0.18), transparent 34%),
    rgba(248, 250, 255, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  animation: ccBackdropIn 0.3s ease both;
}

@keyframes ccBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cc-booking-card {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  border-radius: 28px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(209, 213, 219, 0.4);
  box-shadow:
    0 45px 120px rgba(7, 20, 51, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: ccBookingIn 0.4s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes ccBookingIn {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cc-booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7, 20, 51, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #071433;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.cc-booking-close:hover {
  transform: rotate(90deg) scale(1.08);
  background: linear-gradient(135deg, #0A59FF, #0047cc);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(10, 89, 255, 0.35);
}

.cc-booking-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 680px;
}

.cc-booking-side {
  position: relative;
  padding: 52px 42px;
  background:
    linear-gradient(145deg, rgba(7, 20, 51, 0.98), rgba(10, 89, 255, 0.92)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(255, 51, 77, 0.15), transparent 35%),
    #071433;
  color: #ffffff;
  overflow: hidden;
}

.cc-booking-side::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at 72% 76%, rgba(255, 51, 77, 0.28), transparent 28%);
  opacity: 0.85;
  pointer-events: none;
  animation: sideGlow 8s ease-in-out infinite alternate;
}

@keyframes sideGlow {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0.95; transform: scale(1.05); }
}

.cc-booking-brand,
.cc-booking-side h2,
.cc-booking-side p,
.cc-booking-mini {
  position: relative;
  z-index: 2;
}

.cc-booking-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 62px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-booking-brand span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff334d;
  box-shadow:
    0 0 0 8px rgba(255, 51, 77, 0.2),
    0 0 20px rgba(255, 51, 77, 0.4);
  animation: brandPulse 2s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255, 51, 77, 0.2), 0 0 20px rgba(255, 51, 77, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255, 51, 77, 0.3), 0 0 30px rgba(255, 51, 77, 0.5); }
}

.cc-booking-side h2 {
  max-width: 380px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.cc-booking-side p {
  max-width: 400px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 600;
}

.cc-booking-mini {
  display: grid;
  gap: 14px;
  margin-top: 52px;
}

.cc-booking-mini div {
  padding: 16px 18px;
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}

.cc-booking-mini div:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.cc-booking-mini strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.cc-booking-mini span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cc-booking-form {
  min-width: 0;
  padding: 48px 46px 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.85));
  overflow: auto;
}

.cc-booking-progress {
  margin-bottom: 30px;
}

.cc-booking-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cc-step-label,
.cc-step-name {
  color: #647084;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-step-label strong {
  color: #0A59FF;
}

.cc-progress-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(7, 20, 51, 0.08);
  overflow: hidden;
  position: relative;
}

.cc-progress-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.cc-progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0A59FF, #ff334d);
  transition: width 0.35s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 0 20px rgba(10, 89, 255, 0.4);
}

.cc-booking-step {
  animation: ccStepIn 0.3s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes ccStepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.cc-booking-step[hidden] {
  display: none;
}

.cc-step-head {
  margin-bottom: 28px;
}

.cc-step-head span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ff334d;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cc-step-head h3 {
  margin: 0;
  color: #071433;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.cc-step-head p {
  max-width: 580px;
  margin: 14px 0 0;
  color: rgba(7, 20, 51, 0.62);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.cc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cc-field-grid label,
.cc-full-field {
  display: grid;
  gap: 10px;
  color: #23324a;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cc-field-grid input,
.cc-field-grid select,
.cc-full-field input,
.cc-full-field select,
.cc-full-field textarea {
  width: 100%;
  border: 2px solid rgba(7, 20, 51, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #071433;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  padding: 16px 18px;
  box-shadow: 0 12px 32px rgba(7, 20, 51, 0.04);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.cc-full-field {
  margin-top: 18px;
}

.cc-full-field textarea {
  resize: vertical;
  min-height: 120px;
}

.cc-field-grid input:focus,
.cc-field-grid select:focus,
.cc-full-field input:focus,
.cc-full-field select:focus,
.cc-full-field textarea:focus {
  background: #ffffff;
  border-color: rgba(10, 89, 255, 0.6);
  box-shadow:
    0 0 0 5px rgba(10, 89, 255, 0.12),
    0 18px 45px rgba(7, 20, 51, 0.08);
  transform: translateY(-2px);
}

.cc-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cc-choice {
  cursor: pointer;
}

.cc-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cc-choice span {
  min-height: 120px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85));
  border: 2px solid rgba(209, 213, 219, 0.5);
  box-shadow: 0 14px 38px rgba(7, 20, 51, 0.06);
  transition:
    transform 0.25s cubic-bezier(.22, 1, .36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cc-choice span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 89, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cc-choice span:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 89, 255, 0.3);
  box-shadow: 0 20px 50px rgba(10, 89, 255, 0.12);
}

.cc-choice span:hover::before {
  opacity: 1;
}

.cc-choice input:checked + span {
  border-color: rgba(10, 89, 255, 0.7);
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
  box-shadow:
    0 0 0 4px rgba(10, 89, 255, 0.12),
    0 24px 55px rgba(10, 89, 255, 0.18);
  transform: translateY(-3px);
}

.cc-choice input:checked + span::before {
  opacity: 1;
}

.cc-choice strong {
  color: #071433;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.cc-choice em {
  color: rgba(7, 20, 51, 0.58);
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 650;
}

.cc-final-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 89, 255, 0.08), rgba(10, 89, 255, 0.05));
  border: 1px solid rgba(10, 89, 255, 0.15);
  color: rgba(7, 20, 51, 0.72);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
}

.cc-final-note strong {
  color: #071433;
  font-weight: 950;
}

.cc-booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
}

.cc-back-btn,
.cc-next-btn,
.cc-submit-btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.25s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.cc-back-btn {
  border: 2px solid rgba(7, 20, 51, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: #071433;
}

.cc-back-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 20, 51, 0.2);
  box-shadow: 0 12px 30px rgba(7, 20, 51, 0.1);
}

.cc-next-btn,
.cc-submit-btn {
  margin-left: auto;
  border: none;
  background: linear-gradient(135deg, #0A59FF, #0047cc);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(10, 89, 255, 0.28);
}

.cc-next-btn:hover,
.cc-submit-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0052ff, #0040b8);
  box-shadow: 0 24px 60px rgba(10, 89, 255, 0.35);
}

.cc-privacy-note {
  margin: 18px 0 0;
  text-align: right;
  color: rgba(7, 20, 51, 0.5);
  font-size: 11px;
  font-weight: 700;
}

body.cc-booking-locked {
  overflow: hidden;
}

@media (max-width: 880px) {
  .cc-booking-card {
    overflow: auto;
  }

  .cc-booking-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cc-booking-side {
    padding: 38px 28px;
  }

  .cc-booking-brand {
    margin-bottom: 32px;
  }

  .cc-booking-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
  }

  .cc-booking-form {
    padding: 34px 28px 28px;
  }
}

@media (max-width: 640px) {
  .cc-booking-modal {
    padding: 14px;
  }

  .cc-booking-card {
    max-height: calc(100vh - 28px);
    border-radius: 24px;
  }

  .cc-booking-close {
    top: 14px;
    right: 14px;
  }

  .cc-booking-mini,
  .cc-field-grid,
  .cc-choice-grid {
    grid-template-columns: 1fr;
  }

  .cc-booking-actions {
    flex-direction: column;
  }

  .cc-back-btn,
  .cc-next-btn,
  .cc-submit-btn {
    width: 100%;
  }

  .cc-privacy-note {
    text-align: center;
  }
}

/* ─── Mission / Notre Méthode Section ──────────────────────────────────────────── */

.cc-mission-section {
  width: 100%;
  font-family: "Satoshi", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #071433;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 56px);
  position: relative;
  isolation: isolate;
}

.cc-mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 85%, var(--anv-glow-cyan), transparent 40%),
    radial-gradient(circle at 88% 18%, var(--anv-glow-red), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  pointer-events: none;
}

.cc-mission-card {
  width: 100%;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(50px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 5vw, 60px);
  border-radius: 42px;
  background: linear-gradient(145deg, #ffffff, #f9faff);
  border: 1px solid rgba(7, 20, 51, 0.08);
  box-shadow:
    0 35px 90px rgba(7, 20, 51, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.cc-mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 2px, rgba(10, 89, 255, 0.03) 2px 4px, transparent 4px),
    radial-gradient(circle at 92% 8%, rgba(10, 89, 255, 0.06), transparent 30%);
  opacity: 0.8;
  pointer-events: none;
}

.cc-mission-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 45px 110px rgba(7, 20, 51, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.6);
}

.cc-mission-image {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #f3f5f8, #e8ecf4);
  position: relative;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1), box-shadow 0.5s ease;
}

.cc-mission-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.4);
}

.cc-mission-image:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 50px rgba(7, 20, 51, 0.12);
}

.cc-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.cc-mission-image:hover img {
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.01);
}

.cc-mission-content {
  max-width: 680px;
}

.cc-mission-badge {
  width: fit-content;
  padding: 12px 22px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6f8ff, #eef4ff);
  color: #0A59FF;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(10, 89, 255, 0.1),
    0 12px 35px rgba(10, 89, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-mission-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 89, 255, 0.2), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.cc-mission-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1px rgba(10, 89, 255, 0.15),
    0 18px 45px rgba(10, 89, 255, 0.18);
}

.cc-mission-content h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 900;
  color: #071433;
}

.cc-mission-content h2 span {
  display: block;
  color: #0A59FF;
  position: relative;
}

.cc-mission-content h2 span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--anv-neon-blue), var(--anv-neon-red));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.cc-mission-card:hover .cc-mission-content h2 span::after {
  transform: scaleX(1);
}

.cc-mission-content p {
  margin: 26px 0 0;
  max-width: 640px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: rgba(7, 20, 51, 0.66);
  font-weight: 500;
}

.cc-mission-content p:first-of-type {
  margin-top: 30px;
}

.cc-mission-list {
  list-style: none;
  padding: 0;
  margin: 42px 0 0;
  display: grid;
  gap: 20px;
}

.cc-mission-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(7, 20, 51, 0.72);
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(10, 89, 255, 0.03);
  border: 1px solid rgba(10, 89, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cc-mission-list li:hover {
  transform: translateX(8px);
  background: rgba(10, 89, 255, 0.06);
  border-color: rgba(10, 89, 255, 0.15);
}

.cc-list-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A59FF, #0047cc);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow:
    0 12px 32px rgba(10, 89, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-mission-list li:hover .cc-list-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow:
    0 16px 40px rgba(10, 89, 255, 0.35),
    0 0 20px rgba(10, 89, 255, 0.3);
}

.cc-mission-btn {
  width: fit-content;
  min-height: 56px;
  margin-top: 44px;
  padding: 0 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0A59FF, #0047cc);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  box-shadow:
    0 18px 45px rgba(10, 89, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cc-mission-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cc-mission-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0052ff, #0040b8);
  box-shadow: 0 25px 60px rgba(10, 89, 255, 0.35);
}

.cc-mission-btn:hover::before {
  opacity: 1;
}

@media (max-width: 980px) {
  .cc-mission-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px;
    gap: 44px;
  }

  .cc-mission-content {
    margin: 0 auto;
  }

  .cc-mission-badge,
  .cc-mission-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .cc-mission-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cc-mission-list li {
    justify-content: center;
    text-align: left;
  }

  .cc-mission-image {
    max-width: 580px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .cc-mission-section {
    padding: 64px 18px;
  }

  .cc-mission-card {
    border-radius: 32px;
    padding: 24px;
    gap: 36px;
  }

  .cc-mission-image {
    border-radius: 26px;
  }

  .cc-mission-content h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .cc-mission-list li {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 14px;
  }

  .cc-list-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 11px;
  }

  .cc-mission-btn {
    width: 100%;
    min-height: 52px;
  }
}

/* ─── Team Section with Enhanced Hover Effects ───────────────────────────────────── */

.cc-team-section {
  width: 100%;
  font-family: "Satoshi", Inter, system-ui, sans-serif;
  color: #071735;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 4vw, 56px);
  position: relative;
  isolation: isolate;
}

.cc-team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 92% 12%, var(--anv-glow-blue), transparent 38%),
    radial-gradient(circle at 8% 88%, var(--anv-glow-cyan), transparent 42%),
    linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  pointer-events: none;
}

.cc-team-wrap {
  max-width: 92%;
  margin: 0 auto;
}

.cc-team-head {
  max-width: 860px;
  margin-bottom: 54px;
}

.cc-team-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #f4f7ff);
  color: #2563ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 14px 38px rgba(8, 17, 32, 0.08),
    inset 0 0 0 1px rgba(37, 99, 255, 0.1);
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-team-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 255, 0.15), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.cc-team-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 48px rgba(8, 17, 32, 0.12),
    inset 0 0 0 1px rgba(37, 99, 255, 0.15);
}

.cc-team-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 900;
  color: #071735;
}

.cc-team-title span {
  color: #1463ff;
  display: block;
  position: relative;
}

.cc-team-title span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1463ff, #ff334d);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.cc-team-head:hover .cc-team-title span::after {
  transform: scaleX(1);
}

.cc-team-subtitle {
  margin: 26px 0 0;
  max-width: 680px;
  font-size: 19px;
  line-height: 1.75;
  color: #6f7a8c;
  font-weight: 500;
}

.cc-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.cc-team-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(8, 17, 32, 0.08);
  box-shadow:
    0 22px 60px rgba(8, 17, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.4s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}

.cc-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 255, 0.08), transparent 50%),
    linear-gradient(180deg, transparent, rgba(8, 17, 32, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cc-team-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 32px 80px rgba(8, 17, 32, 0.16),
    0 0 0 2px rgba(37, 99, 255, 0.1);
  background: #ffffff;
  border-color: rgba(37, 99, 255, 0.15);
}

.cc-team-card:hover::before {
  opacity: 1;
}

.cc-team-photo {
  height: 300px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8edf4, #d8e1f0);
  position: relative;
}

.cc-team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 17, 32, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cc-team-card:hover .cc-team-photo::after {
  opacity: 1;
}

.cc-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1), filter 0.5s ease;
}

.cc-team-card:hover .cc-team-photo img {
  transform: scale(1.03);
  filter: saturate(1.03) contrast(1.01);
}

.cc-team-body {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.cc-role {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef4ff, #e4edff);
  color: #2563ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  transition:
    transform 0.35s cubic-bezier(.22, 1, .36, 1),
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 255, 0.12);
  text-transform: uppercase;
}

.cc-team-card:hover .cc-role {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #2563ff, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 255, 0.25);
}

.cc-name {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: #071735;
  transition: color 0.3s ease;
}

.cc-team-card:hover .cc-name {
  color: #2563ff;
}

.cc-specialty {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  color: #2563ff;
  transition: transform 0.3s ease;
}

.cc-team-card:hover .cc-specialty {
  transform: translateX(4px);
}

.cc-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6f7a8c;
  font-weight: 500;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.cc-team-card:hover .cc-desc {
  color: #4a5568;
  transform: translateX(2px);
}

@media (max-width: 1200px) {
  .cc-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .cc-team-photo {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .cc-team-section {
    padding: 80px 20px;
  }

  .cc-team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cc-team-head {
    margin-bottom: 38px;
  }

  .cc-team-title {
    font-size: clamp(38px, 11vw, 52px);
  }

  .cc-team-subtitle {
    font-size: 17px;
    line-height: 1.65;
  }

  .cc-team-photo {
    height: 380px;
  }

  .cc-team-body {
    padding: 24px;
  }

  .cc-name {
    font-size: 24px;
  }
}

/* ─── Animations for Scroll Reveal ───────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
  .cc-mission-section,
  .cc-team-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
  }

  .cc-mission-section.in-view,
  .cc-team-section.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .cc-mission-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1) 0.2s, transform 0.8s cubic-bezier(.22, 1, .36, 1) 0.2s;
  }

  .cc-mission-section.in-view .cc-mission-card {
    opacity: 1;
    transform: translateY(0);
  }

  .cc-team-card {
    opacity: 0;
    transform: translateY(30px);
  }

  .cc-team-section.in-view .cc-team-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(.22, 1, .36, 1), transform 0.6s cubic-bezier(.22, 1, .36, 1);
  }

  .cc-team-card:nth-child(1) { transition-delay: 0.1s; }
  .cc-team-card:nth-child(2) { transition-delay: 0.2s; }
  .cc-team-card:nth-child(3) { transition-delay: 0.3s; }
  .cc-team-card:nth-child(4) { transition-delay: 0.4s; }
}

@media (prefers-reduced-motion: reduce) {
  .cc-booking-card,
  .cc-booking-backdrop,
  .cc-booking-step,
  .cc-progress-track span,
  .cc-choice span,
  .cc-back-btn,
  .cc-next-btn,
  .cc-submit-btn,
  .cc-hero-only,
  .cc-mission-card,
  .cc-team-card,
  .cc-image-card,
  .cc-mission-image {
    animation: none !important;
    transition: none !important;
  }

  .cc-eyebrow,
  .cc-mission-badge,
  .cc-team-badge {
    animation: none !important;
  }

  .cc-eyebrow::before,
  .cc-mission-badge::before,
  .cc-team-badge::before {
    animation: none !important;
  }
}

/* ─── Responsive Enhancements ───────────────────────────────────────────── */

@media (max-width: 480px) {
  .cc-hero-only h1 {
    font-size: clamp(38px, 14vw, 52px);
  }

  .cc-mission-content h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .cc-team-title {
    font-size: clamp(36px, 12vw, 50px);
  }
}

/* ─── CTA Band Section with Neon Glow ───────────────────────────────────────────── */

.cc-cta-section {
  width: 100%;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
  position: relative;
  isolation: isolate;
}

.cc-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 25% 20%, var(--anv-glow-blue), transparent 30%),
    radial-gradient(circle at 75% 80%, var(--anv-glow-red), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  pointer-events: none;
}

.cc-cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 100px;
  background: linear-gradient(180deg, var(--ccs-soft), transparent);
  pointer-events: none;
}

.cc-cta-card {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 5vw, 70px);
  border-radius: 48px;
  background: linear-gradient(145deg, #ffffff, #f9faff);
  border: 1px solid rgba(7, 20, 51, 0.08);
  box-shadow:
    0 35px 90px rgba(7, 20, 51, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  text-align: center;
}

.cc-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7, 20, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 51, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.4;
  pointer-events: none;
}

.cc-cta-card::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 50%, rgba(10, 89, 255, 0.15), transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ctaGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.cc-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6f8ff, #eef4ff);
  border: 1px solid rgba(10, 89, 255, 0.15);
  color: #0A59FF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cc-cta-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff334d;
  box-shadow: 0 0 18px rgba(255, 51, 77, 0.8);
  animation: ctaBadgePulse 2s ease-in-out infinite;
}

@keyframes ctaBadgePulse {
  0%, 100% { box-shadow: 0 0 18px rgba(255, 51, 77, 0.8); }
  50% { box-shadow: 0 0 25px rgba(255, 51, 77, 1); }
}

.cc-cta-card h2 {
  max-width: 800px;
  margin: 0 auto;
  color: #071433;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.075em;
  font-weight: 900;
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
}

.cc-cta-card p {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(7, 20, 51, 0.66);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  font-weight: 500;
}

.cc-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cc-cta-btn-primary,
.cc-cta-btn-secondary {
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition:
    transform 0.3s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cc-cta-btn-primary {
  background: linear-gradient(135deg, #0A59FF, #0047cc);
  color: #ffffff;
  box-shadow:
    0 20px 50px rgba(10, 89, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: none;
}

.cc-cta-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cc-cta-btn-primary:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #0052ff, #0040b8);
  box-shadow:
    0 28px 70px rgba(10, 89, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cc-cta-btn-primary:hover::before {
  opacity: 1;
}

.cc-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #0A59FF;
  border: 2px solid rgba(10, 89, 255, 0.2);
  box-shadow: 0 12px 35px rgba(10, 89, 255, 0.08);
}

.cc-cta-btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(10, 89, 255, 0.4);
  box-shadow: 0 18px 45px rgba(10, 89, 255, 0.15);
}

.cc-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
}

.cc-cta-glow-blue {
  width: 400px;
  height: 400px;
  background: rgba(10, 89, 255, 0.4);
  top: -200px;
  right: -100px;
}

.cc-cta-glow-red {
  width: 350px;
  height: 350px;
  background: rgba(255, 51, 77, 0.35);
  bottom: -150px;
  left: -100px;
}

@media (max-width: 980px) {
  .cc-cta-card {
    padding: 50px 32px;
  }

  .cc-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-cta-btn-primary,
  .cc-cta-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cc-cta-section {
    padding: 70px 20px;
  }

  .cc-cta-card {
    border-radius: 36px;
    padding: 40px 24px;
  }

  .cc-cta-card h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .cc-cta-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .cc-cta-badge {
    font-size: 11px;
    padding: 10px 18px;
  }
}

/* ─── Additional Utility Classes ───────────────────────────────────────────── */

.anv-section {
  width: 100%;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 4vw, 56px);
}

.anv-container {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.anv-dark-band {
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 60px);
  border-radius: 42px;
  background: linear-gradient(145deg, #071433, #0a1d44);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.anv-dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(239, 239, 239, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 239, 239, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.3;
  pointer-events: none;
}

.anv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.anv-dark-band .h2 {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.075em;
  font-weight: 900;
  font-family: "Satoshi", "Inter", system-ui, sans-serif;
}

.anv-btn-primary,
.anv-btn-secondary {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition:
    transform 0.3s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.anv-btn-primary {
  background: linear-gradient(135deg, #0A59FF, #0047cc);
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(10, 89, 255, 0.35);
  border: none;
}

.anv-btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0052ff, #0040b8);
  box-shadow: 0 28px 70px rgba(10, 89, 255, 0.45);
}

.anv-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.anv-btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.anv-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.anv-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Additional Animations ───────────────────────────────────────────── */

@keyframes ctaGlowPulse {
  0% {
    opacity: 0.5;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1) translate(10px, -10px);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05) translate(-5px, 5px);
  }
}

/* ─── Print Styles ───────────────────────────────────────────── */

@media print {
  .cc-booking-modal,
  .cc-cta-glow {
    display: none !important;
  }

  .cc-hero-only,
  .cc-mission-section,
  .cc-team-section {
    page-break-inside: avoid;
  }
}
