:root {
  color-scheme: light;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #ffffff;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: #6B5AED;
  color: #ffffff;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 1rem;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #1e293b;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -0.35rem;
  height: 2px;
  background: rgba(107, 90, 237, 0.6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #6B5AED;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid rgba(107, 90, 237, 0.7);
  outline-offset: 4px;
  border-radius: 999px;
}

.mobile-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.mobile-toggle:focus-visible {
  outline: 2px solid rgba(107, 90, 237, 0.5);
  outline-offset: 4px;
}

.mobile-toggle-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle[aria-expanded="true"] {
  border-color: rgba(107, 90, 237, 0.5);
  box-shadow: 0 0 0 4px rgba(107, 90, 237, 0.15);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

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

.mobile-toggle[aria-expanded="true"] .mobile-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  inset: 5rem 1.5rem auto;
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px -40px rgba(15, 23, 42, 0.7);
  z-index: 50;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96) translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.75rem;
}

.mobile-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: background 0.2s ease, border 0.2s ease;
}

.mobile-menu-link::after {
  content: '→';
  font-size: 0.85rem;
  opacity: 0.7;
}

.mobile-menu-link:focus-visible,
.mobile-menu-link:hover {
  background: rgba(107, 90, 237, 0.18);
  border-color: rgba(107, 90, 237, 0.4);
}

.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  background: #ffffff;
  color: #6B5AED;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px rgba(107, 90, 237, 0.7);
}

.float-icons {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(15px 15px at 10% 20%, rgba(107, 90, 237, 0.18) 0, transparent 60%),
    radial-gradient(18px 18px at 80% 15%, rgba(107, 90, 237, 0.15) 0, transparent 65%),
    radial-gradient(12px 12px at 65% 80%, rgba(15, 23, 42, 0.08) 0, transparent 70%);
  animation: floatIcons 14s linear infinite;
}

@keyframes floatIcons {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -8px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.interface-card {
  animation: rise 1s ease-in-out both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.interface-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.field-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.field-value {
  flex: 1;
  text-align: right;
  font-weight: 600;
  color: #0f172a;
  min-height: 1.25rem;
}

.field-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(107, 90, 237, 0.1);
  font-weight: 600;
  color: #4c1d95;
}

.field-pill-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: #6B5AED;
}

.field-status {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  font-weight: 600;
}

.timeline-journey {
  position: relative;
  margin-top: 3.5rem;
  --arrow-footprint: clamp(7rem, 10vw, 8.5rem);
  padding: clamp(3.5rem, 6vw, 4.75rem) clamp(1.5rem, 4vw, 3rem) calc(var(--arrow-footprint) + clamp(2.5rem, 5vw, 3.5rem));
  border-radius: 3rem;
  background:
    radial-gradient(120% 120% at 10% -10%, rgba(107, 90, 237, 0.22), transparent 60%),
    radial-gradient(120% 160% at 90% 0%, rgba(107, 90, 237, 0.16), transparent 65%),
    linear-gradient(135deg, rgba(107, 90, 237, 0.1), rgba(107, 90, 237, 0.02));
  border: 1px solid rgba(107, 90, 237, 0.2);
  box-shadow: 0 55px 120px -70px rgba(15, 23, 42, 0.65);
  overflow: hidden;
}

.timeline-journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 50% 0%, rgba(255, 255, 255, 0.25), transparent 68%);
  pointer-events: none;
}

.timeline-arrow {
  position: absolute;
  top: clamp(3.5rem, 5vw, 4.5rem);
  bottom: var(--arrow-footprint);
  left: 50%;
  width: 10px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(182, 175, 255, 0.1) 0%, rgba(139, 127, 255, 0.35) 25%, rgba(107, 90, 237, 0.9) 75%, rgba(107, 90, 237, 1) 100%);
  border-radius: 999px;
  box-shadow: 0 0 40px -18px rgba(107, 90, 237, 0.8);
  z-index: 0;
}

.timeline-arrow::before {
  content: '';
  position: absolute;
  inset: -50px -260px;
  background: radial-gradient(circle at center, rgba(107, 90, 237, 0.25), transparent 70%);
  opacity: 0.85;
}

.timeline-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 64px;
  height: 64px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(107, 90, 237, 1), rgba(144, 134, 255, 0.85));
  clip-path: polygon(50% 100%, 100% 30%, 50% 0, 0 30%);
  box-shadow: 0 30px 60px -35px rgba(107, 90, 237, 0.8);
}

.timeline-stages {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2.75rem, 4vw, 4.25rem);
}

.timeline-segment {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-content: space-around;
}

.timeline-segment:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-segment-content {
  flex: 1 1 48%;
  min-width: 0;
  align-items: flex-end;
  text-align: right;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.9rem, 3vw, 2.4rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(107, 90, 237, 0.22);
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 90px -55px rgba(15, 23, 42, 0.7);
  --connector-length: clamp(52px, 6vw, 92px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.timeline-segment-content::after {
  content: '';
  position: absolute;
  top: 50%;
  right: calc(var(--connector-length) * -1);
  width: var(--connector-length);
  height: 2px;
  background: linear-gradient(90deg, rgba(107, 90, 237, 0.1) 0%, rgba(107, 90, 237, 0.85) 100%);
  transform: translateY(-50%);
}

.timeline-segment:nth-child(even) .timeline-segment-content {
  align-items: flex-start;
  text-align: left;
}

.timeline-segment:nth-child(even) .timeline-segment-content::after {
  left: calc(var(--connector-length) * -1);
  right: auto;
  background: linear-gradient(270deg, rgba(107, 90, 237, 0.1) 0%, rgba(107, 90, 237, 0.85) 100%);
}

.timeline-segment-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 52px 110px -60px rgba(107, 90, 237, 0.6);
  border-color: rgba(107, 90, 237, 0.4);
}

.timeline-copy {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 24rem;
}

.timeline-segment:not(:nth-child(even)) .timeline-copy {
  align-items: flex-end;
  text-align: right;
}

.timeline-segment:nth-child(even) .timeline-copy {
  align-items: flex-start;
  text-align: left;
}

.timeline-badge {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(107, 90, 237, 1), rgba(145, 135, 255, 0.95));
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px -30px rgba(107, 90, 237, 0.75);
  position: relative;
}

.timeline-badge::after {
  content: '';
  position: absolute;
  inset: -40%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(107, 90, 237, 0.2), transparent 70%);
  z-index: -1;
  opacity: 0.9;
}

.timeline-segment:nth-child(even) .timeline-badge {
  align-self: flex-start;
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(107, 90, 237, 0.95);
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}

.timeline-text {
  margin-top: 0.35rem;
  color: #475569;
  font-size: 0.97rem;
  line-height: 1.7;
}

.timeline-media {
  flex: 1 1 48%;
  min-width: 0;
  position: relative;
  border-radius: 2.15rem;
  padding: 0.45rem;
  background: linear-gradient(135deg, rgba(107, 90, 237, 0.08), rgba(107, 90, 237, 0.02));
  border: 1px solid rgba(107, 90, 237, 0.18);
  box-shadow: 0 32px 80px -55px rgba(15, 23, 42, 0.65);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-media::after {
  content: '';
  position: absolute;
  inset: 12% 18%;
  border-radius: 1.6rem;
  background: radial-gradient(circle at 30% 30%, rgba(107, 90, 237, 0.12), transparent 60%);
  pointer-events: none;
}

.timeline-media:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px -45px rgba(107, 90, 237, 0.45);
}

.timeline-image,
.timeline-video {
  display: block;
  width: 100%;
  border-radius: 1.75rem;
  border: 1px solid rgba(107, 90, 237, 0.1);
  object-fit: cover;
  background: #ffffff;
}

.timeline-video {
  aspect-ratio: 16 / 10;
  height: auto;
  transition: transform 0.35s ease;
  transform-origin: center;
  cursor: zoom-in;
}

.timeline-segment-final {
  margin-top: clamp(3.5rem, 6vw, 5rem);
}

.timeline-segment-final .timeline-segment-content {
  align-self: center;
  align-items: center;
  text-align: center;
  max-width: clamp(24rem, 40vw, 32rem);
  --connector-length: 0;
}

.timeline-segment-final .timeline-segment-content::after {
  display: none;
}

.timeline-media:hover .timeline-video {
  transform: scale(1.05);
}

.timeline-segment-final .timeline-copy {
  align-items: center;
  text-align: center;
}

.timeline-segment-final .timeline-badge {
  align-self: center;
}

.timeline-segment-final .timeline-media {
  align-self: center;
  align-items: center;
}

@media (max-width: 900px) {
  .timeline-journey {
    padding: clamp(2.5rem, 6vw, 3.1rem) 1.6rem;
  }

  .timeline-arrow {
    left: 7%;
    width: 6px;
    box-shadow: 0 0 26px -10px rgba(107, 90, 237, 0.75);
  }

  .timeline-arrow::after {
    width: 46px;
    height: 46px;
  }

  .timeline-stages {
    gap: clamp(2rem, 5vw, 2.8rem);
  }

  .timeline-segment,
  .timeline-segment:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline-segment-content,
  .timeline-segment:nth-child(even) .timeline-segment-content {
    align-items: flex-start;
    text-align: left;
    --connector-length: 0;
  }

  .timeline-segment-content::after,
  .timeline-segment:nth-child(even) .timeline-segment-content::after {
    display: none;
  }

  .timeline-segment:not(:nth-child(even)) .timeline-copy,
  .timeline-segment:nth-child(even) .timeline-copy {
    align-items: flex-start;
    text-align: left;
  }

  .timeline-badge,
  .timeline-segment:nth-child(even) .timeline-badge {
    align-self: flex-start;
  }

  .timeline-segment-final .timeline-segment-content,
  .timeline-segment-final .timeline-copy,
  .timeline-segment-final .timeline-badge {
    align-items: center;
    text-align: center;
    align-self: center;
  }

  .timeline-media,
  .timeline-segment:nth-child(even) .timeline-media {
    width: 100%;
  }
}

.stat-card {
  border-radius: 1.75rem;
  padding: 2.25rem;
  background: #ffffff;
  border: 1px solid rgba(107, 90, 237, 0.12);
  box-shadow: 0 30px 60px -48px rgba(107, 90, 237, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 42px 80px -45px rgba(107, 90, 237, 0.35);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #6B5AED;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.stat-text {
  margin-top: 1rem;
  color: #475569;
  font-size: 0.95rem;
}

.feature-card,
.security-card {
  border-radius: 1.5rem;
  padding: 1.75rem;
  background: #f8fafc;
  border: 1px solid rgba(107, 90, 237, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.feature-card:hover,
.security-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
}

.feature-icon,
.security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(107, 90, 237, 0.12);
  font-size: 1.4rem;
}

.feature-title,
.security-title {
  margin-top: 1.15rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.feature-text,
.security-text {
  margin-top: 0.75rem;
  color: #475569;
  line-height: 1.6;
}

.before-card {
  border-radius: 2rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 30px 60px -52px rgba(15, 23, 42, 0.55);
}

.case-carousel {
  position: relative;
  overflow: hidden;
}

.case-track {
  display: flex;
  gap: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.case-feature.is-active {
  opacity: 1;
}

.case-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.4rem;
  border-radius: 2rem;
  background: linear-gradient(150deg, rgba(107, 90, 237, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(107, 90, 237, 0.16);
  box-shadow: 0 32px 60px -52px rgba(107, 90, 237, 0.45);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  min-width: 100%;
  flex: 0 0 100%;
  opacity: 0.55;
}

.case-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 0%, rgba(107, 90, 237, 0.25), transparent 55%);
  opacity: 0.6;
}

.case-feature:hover,
.case-feature:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -48px rgba(107, 90, 237, 0.5);
}

.case-controls {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.case-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(107, 90, 237, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: #4338ca;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.case-control:hover,
.case-control:focus-visible {
  border-color: rgba(107, 90, 237, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -30px rgba(107, 90, 237, 0.6);
  outline: none;
}

.case-dots {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.case-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.6);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.case-dot:focus-visible {
  outline: 2px solid rgba(107, 90, 237, 0.5);
  outline-offset: 3px;
}

.case-dot.is-active,
.case-dot[aria-selected="true"] {
  background: rgba(107, 90, 237, 0.85);
  transform: scale(1.2);
}

.case-feature-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-chip {
  align-self: flex-start;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(107, 90, 237, 0.18);
  color: #4338ca;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.case-feature-meta {
  margin: 0;
  font-size: 0.95rem;
  color: #64748b;
}

.case-lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1f2937;
}

.case-panels {
  display: grid;
  gap: 1.35rem;
}

.case-panel {
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-panel.is-before {
  background: linear-gradient(145deg, rgba(248, 113, 113, 0.1), rgba(248, 250, 252, 0.95));
  border-color: rgba(248, 113, 113, 0.22);
}

.case-panel.is-after {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.1), rgba(248, 250, 252, 0.95));
  border-color: rgba(52, 211, 153, 0.22);
}

.case-panel-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #475569;
  line-height: 1.6;
}

.case-panel-list li {
  position: relative;
  padding-left: 1.4rem;
}

.case-panel-list li::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(107, 90, 237, 0.7);
  box-shadow: 0 0 0 4px rgba(107, 90, 237, 0.18);
}

.case-panel.is-before .case-panel-list li::before {
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.22);
}

.case-panel.is-after .case-panel-list li::before {
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.case-transition {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.case-transition-line {
  display: block;
  height: 1px;
  width: 28px;
  background: rgba(107, 90, 237, 0.35);
}

.case-transition-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(107, 90, 237, 0.12);
  color: #4338ca;
  font-weight: 600;
  font-size: 1rem;
}

.case-metrics {
  margin: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.case-metrics div {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.case-metrics dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c89a6;
}

.case-metrics dd {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}

@media (min-width: 768px) {
  .case-feature {
    padding: 2.75rem;
  }

  .case-panels {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
  }

  .case-transition {
    flex-direction: column;
    gap: 1.25rem;
  }

  .case-transition-line {
    width: 2px;
    height: 34px;
  }
}

@media (max-width: 767px) {
  .case-feature {
    padding: 2rem;
  }

  .case-transition-line {
    width: 22px;
  }
}

.case-image {
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  object-fit: cover;
}

.pricing-card {
  border-radius: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(107, 90, 237, 0.08), rgba(107, 90, 237, 0.02));
  border: 1px solid rgba(107, 90, 237, 0.15);
  backdrop-filter: blur(6px);
  box-shadow: 0 40px 60px -55px rgba(107, 90, 237, 0.45);
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0f172a;
}

.pricing-price {
  margin-top: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6B5AED;
}

.pricing-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
  list-style: none;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #475569;
  line-height: 1.65;
}

.pricing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(107, 90, 237, 0.12);
  color: #6B5AED;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px -22px rgba(107, 90, 237, 0.8);
}

.faq-item {
  border-radius: 1.5rem;
  background: #f8fafc;
  border: 1px solid rgba(107, 90, 237, 0.08);
  padding: 1.35rem 1.75rem;
  transition: border 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  background: #ffffff;
  border-color: rgba(107, 90, 237, 0.25);
}

.faq-summary {
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  list-style: none;
}

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

.faq-summary::after {
  content: '+';
  float: right;
  font-weight: 600;
  color: rgba(107, 90, 237, 0.8);
  transition: transform 0.2s ease;
}

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

.faq-content {
  margin-top: 1rem;
  color: #475569;
  line-height: 1.7;
}

.contact-form {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 72px -50px rgba(107, 90, 237, 0.55);
}

.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #0f172a;
}

.form-input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #f8fafc;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  color: #0f172a;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(107, 90, 237, 0.55);
  box-shadow: 0 0 0 4px rgba(107, 90, 237, 0.15);
  background: #ffffff;
}

.footer-link {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #e2e8f0;
}

.footer-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 4px;
  border-radius: 999px;
}

.motion-safe\:animate-fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.auto-fill {
  position: relative;
  display: inline-flex;
  justify-content: flex-end;
  font-variant-ligatures: none;
}

.auto-fill::after {
  content: '';
  position: absolute;
  inset-block: calc(100% + 0.15rem) auto auto;
  inset-inline-end: 0;
  width: 100%;
  height: 2px;
  background: rgba(107, 90, 237, 0.25);
  transform: scaleX(0);
  transform-origin: right;
  animation: caretSlide 3.8s ease-in-out infinite;
}

@keyframes caretSlide {
  0%,
  15% {
    transform: scaleX(0);
  }
  35%,
  65% {
    transform: scaleX(1);
  }
  85%,
  100% {
    transform: scaleX(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.quarante{
  width:40%;
}

.soixante {
  width:60%;
}

@media (max-width: 640px) {
  h1,h2,h3,p {
    text-align: center;
  }
  .security-card, .center_tel {
    text-align: center;
  }

  .quarante{
    width:100%;
  }

  .soixante {
    width:100%;
  }

  .centrer {
    display: flex;
    justify-content: space-around;
  }

  .timeline-segment-content {
    flex: 0;
  }

  .example-zone {
    display: none;
  }

  .mobile-menu {
    inset: 4.5rem 1rem auto 1rem;
    border-radius: 1.25rem;
  }

  .mobile-menu-inner {
    padding: 1.25rem;
    gap: 0.5rem;
  }

  .mobile-menu-link {
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 0.75rem;
  }

  .timeline-journey {
    padding: 2.25rem 1.1rem 2.5rem;
    border-radius: 1.75rem;
  }

  .timeline-arrow {
    display: none;
  }

  .timeline-stages {
    gap: 2rem;
  }

  .timeline-segment-content {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }

  .timeline-media {
    margin-top: 1rem;
    padding: 0.35rem;
    border-radius: 1.5rem;
  }

  .timeline-media::after {
    inset: 10% 12%;
    border-radius: 1.2rem;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .timeline-badge {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .stat-card,
  .case-feature,
  .before-card,
  .pricing-card,
  .contact-form {
    padding: 1.75rem;
    border-radius: 1.5rem;
  }

  .case-controls {
    gap: 0.9rem;
  }

  .case-control {
    width: 2.4rem;
    height: 2.4rem;
  }

  .case-dots {
    gap: 0.6rem;
  }

  .pricing-price {
    font-size: 2.1rem;
  }

  .pricing-list {
    gap: 0.75rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .contact-form button[type="submit"] {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }
}

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

/* Video Lightbox */
.lightbox-open {
  overflow: hidden;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.video-lightbox__content {
  position: relative;
  max-width: 92vw;
  max-height: 88vh;
}

.video-lightbox__inner video {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 1rem;
  background: #000;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
}

.video-lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 25px -12px rgba(15, 23, 42, 0.55);
  cursor: pointer;
  z-index: 10;
}

.video-lightbox__close::before {
  content: '\00D7';
  font-size: 1.35rem;
  line-height: 1;
}

.video-lightbox__close:hover {
  transform: translateY(-1px);
}

.video-lightbox__close:focus-visible {
  outline: 2px solid rgba(107, 90, 237, 0.5);
  outline-offset: 2px;
}
