:root {
  --background: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --border: rgba(15, 23, 42, 0.08);
  --text-primary: #0f172a;
  --text-muted: #475569;
  --text-soft: #64748b;
  --primary: #2563eb;
  --primary-contrast: #ffffff;
  --primary-soft: rgba(37, 99, 235, 0.14);
  --accent: #38bdf8;
  --success: #22c55e;
  --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 52px rgba(15, 23, 42, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
}

html {
  scroll-behavior: smooth;
}

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

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

.skip-link {
  position: absolute;
  top: -999px;
  left: -999px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  z-index: 1000;
  transition: transform 0.2s ease;
}

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

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

.loading-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.82), rgba(4, 6, 11, 0.95));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-overlay__content {
  display: grid;
  gap: 1rem;
  text-align: center;
  color: rgba(248, 250, 252, 0.92);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.loading-overlay__spinner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  animation: overlaySpin 1s linear infinite;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 6.5rem) 0;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 35%, transparent) 0%, transparent 60%),
    linear-gradient(140deg, color-mix(in srgb, var(--primary) 88%, #0f172a), #0b1224 82%);
  color: var(--primary-contrast);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.15), transparent);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 1.1rem;
  animation: fadeUp 0.8s ease forwards;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-contrast);
  padding: 0.45rem 1.25rem 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(15, 23, 42, 0.35);
  box-shadow: 0 18px 30px rgba(4, 9, 22, 0.5);
  text-decoration: none;
  animation: logoPulse 6s ease-in-out infinite;
}

.brand-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: normal;
  animation: logoOrbit 8s ease-in-out infinite;
}

.brand-logo__text {
  letter-spacing: 0.08em;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.07;
  animation: fadeUp 1s ease 0.1s forwards;
  opacity: 0;
}

.hero__tagline {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero__description {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  animation: fadeUp 1s ease 0.35s forwards;
  opacity: 0;
}

.hero__highlights li {
  position: relative;
  padding-left: 1.5rem;
}

.hero__highlights li::before {
  content: '•';
  position: absolute;
  left: 0.3rem;
  color: color-mix(in srgb, var(--primary) 70%, white);
  font-size: 1.2rem;
  line-height: 1;
  top: 0.2rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-chip__icon {
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(15, 23, 42, 0.2);
  min-height: 320px;
  animation: float 6s ease-in-out infinite;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.9rem 1.65rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: color-mix(in srgb, var(--primary) 92%, #0b1224);
  box-shadow: 0 18px 36px color-mix(in srgb, var(--primary) 35%, transparent);
}

.btn--ghost {
  background: transparent;
  color: var(--primary-contrast);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 0.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-description {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
}

.fleet {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.status-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
  margin: 0 auto 2rem;
}

.vehicle-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  justify-items: stretch;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: min(100%, 360px);
  animation: fadeUp 0.8s ease forwards, cardDrift 9s ease-in-out infinite 0.8s;
  opacity: 0;
}

.vehicle-card:nth-of-type(even) {
  animation: fadeUp 0.8s ease forwards, cardDriftAlt 10s ease-in-out infinite 0.8s;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vehicle-card__media {
  padding: 1.2rem;
  background: var(--surface-alt);
}

.vehicle-slider {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, transparent), rgba(15, 23, 42, 0.1));
}

.vehicle-slider__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(15, 23, 42, 0.05);
}

.vehicle-slider__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vehicle-slider__control:hover {
  background: rgba(15, 23, 42, 0.62);
  transform: translateY(-50%) scale(1.05);
}

.vehicle-slider__control--prev {
  left: 12px;
}

.vehicle-slider__control--next {
  right: 12px;
}

.vehicle-slider__indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.vehicle-slider__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.vehicle-slider__indicator.is-active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.vehicle-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: rgba(15, 23, 42, 0.35);
}

.vehicle-card__body {
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
  flex: 1;
}

.vehicle-card__title {
  margin: 0;
  font-size: 1.3rem;
}

.vehicle-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary);
}

.chip--muted {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text-soft);
}

.vehicle-card__description {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.vehicle-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.vehicle-card__features li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
}

.vehicle-card__actions {
  margin-top: auto;
}

.empty-state {
  margin-top: 2rem;
  padding: 3rem;
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.75rem;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.empty-state__icon {
  font-size: 2.5rem;
}

.about {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.about__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about__content {
  display: grid;
  gap: 0.75rem;
}

.about__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.about__highlights li {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.5rem;
  animation: cardPulse 12s ease-in-out infinite alternate;
}

.about__highlights h3 {
  margin: 0;
}

.enquiry {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, transparent), rgba(15, 23, 42, 0.04));
}

.enquiry__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.enquiry-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.35rem;
  animation: fadeUp 0.8s ease forwards, cardPulse 14s ease-in-out infinite alternate 0.8s;
  opacity: 0;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.75rem 0.95rem;
  font: inherit;
  background: var(--surface-alt);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.form-hint {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.form-status[data-status='success'] {
  color: var(--success);
}

.form-status[data-status='error'] {
  color: #dc2626;
}

.footer {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 92%, #0b1224), color-mix(in srgb, var(--primary) 65%, #0f172a));
  color: rgba(248, 250, 252, 0.92);
  padding: 2.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
  }
}

.footer__brand strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer__brand p {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  max-width: 420px;
}

@media (min-width: 768px) {
  .footer__brand {
    flex: 1 1 260px;
  }

  .footer__grid {
    flex: 2 1 420px;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.footer__column h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.footer__column p {
  margin: 0 0 0.35rem;
  color: rgba(226, 232, 240, 0.78);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(241, 245, 249, 0.88);
  text-decoration: none;
}

.footer__contact-item:hover {
  text-decoration: underline;
}

.footer__contact-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.18);
  font-size: 0.95rem;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__cta::after {
  content: '→';
  font-size: 1rem;
}

.footer__cta:hover {
  background: rgba(15, 23, 42, 0.32);
  transform: translateY(-1px);
}

.footer__note {
  margin: 2rem 0 0;
  text-align: center;
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.9rem;
}

.footer__note a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__media {
    min-height: 200px;
  }

  .hero__image {
    object-fit: contain;
  }

  .vehicle-slider__control {
    display: none;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__cta {
    justify-content: center;
  }
}

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

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9999;
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__content {
  position: relative;
  max-width: min(92vw, 900px);
  max-height: 90vh;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 32px 68px rgba(15, 23, 42, 0.32);
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.3s ease forwards;
}

.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #0b1224;
}

.lightbox__caption {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.86);
}

.lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close:hover {
  background: rgba(15, 23, 42, 0.75);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseShadow {
  0%,
  100% {
    box-shadow: var(--shadow-sm);
  }
  50% {
    box-shadow: 0 26px 52px rgba(15, 23, 42, 0.18);
  }
}

@keyframes overlaySpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 30px rgba(4, 9, 22, 0.5);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 26px 40px rgba(4, 9, 22, 0.55);
  }
}

@keyframes logoOrbit {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg) scale(1.05);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes cardDriftAlt {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes cardTilt {
  0%,
  100% {
    transform: rotateX(0deg) translateY(0);
  }
  50% {
    transform: rotateX(3deg) translateY(-4px);
  }
}

@keyframes cardTiltAlt {
  0%,
  100% {
    transform: rotateX(0deg) translateY(-2px);
  }
  50% {
    transform: rotateX(-3deg) translateY(4px);
  }
}

@keyframes cardPulse {
  0%,
  100% {
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.18);
    transform: translateY(-3px);
  }
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.experience {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.experience__container {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

.experience__intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.experience__intro p {
  color: var(--text-soft);
  margin-top: 0.75rem;
}

.experience__steps {
  list-style: none;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.experience__steps li {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.65rem;
  animation: fadeUp 0.9s ease forwards, cardTilt 11s ease-in-out infinite 0.9s;
  opacity: 0;
}

.experience__steps li:nth-child(even) {
  animation: fadeUp 0.9s ease forwards, cardTiltAlt 13s ease-in-out infinite 0.9s;
}

.experience__steps .badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-contrast);
  font-weight: 700;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--primary) 28%, transparent);
}

.experience__steps h3 {
  margin: 0;
}

.experience__steps p {
  margin: 0;
  color: var(--text-soft);
}
