/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 14 2026 | 16:59:48 */
.taxik-airport-checklist{
  --check-bg: #061022;
  --check-card: rgba(255,255,255,0.08);
  --check-card-strong: rgba(109,220,255,0.12);
  --check-border: rgba(255,255,255,0.12);
  --check-text: #f7fbff;
  --check-muted: rgba(229,238,252,0.72);
  --check-blue: #6ddcff;
  --check-gold: #ffd45c;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(64px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(109,220,255,0.14), transparent 24%),
    radial-gradient(circle at 88% 22%, rgba(255,212,92,0.10), transparent 20%),
    linear-gradient(180deg, #071121 0%, #081224 100%);
  color: var(--check-text);
}

.taxik-airport-checklist__bg,
.taxik-airport-checklist__glow{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.taxik-airport-checklist__bg{
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .14;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.24));
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.24));
}

.taxik-airport-checklist__glow{
  border-radius: 999px;
  filter: blur(80px);
}

.taxik-airport-checklist__glow--blue{
  top: 12%;
  left: -10%;
  width: 320px;
  height: 320px;
  background: rgba(109,220,255,0.16);
}

.taxik-airport-checklist__glow--gold{
  right: -8%;
  bottom: 10%;
  width: 360px;
  height: 360px;
  background: rgba(255,212,92,0.12);
}

.taxik-airport-checklist__inner{
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.taxik-airport-checklist__intro{
  position: sticky;
  top: 110px;
}

.taxik-airport-checklist__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109,220,255,0.16);
  background: rgba(109,220,255,0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #97e4ff;
}

.taxik-airport-checklist__eyebrow span{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--check-blue), var(--check-gold));
  box-shadow: 0 0 0 6px rgba(109,220,255,0.10);
}

.taxik-airport-checklist__title{
  margin: 22px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .96;
  letter-spacing: -0.05em;
  color: #fff;
  text-wrap: balance;
}

.taxik-airport-checklist__text{
  margin: 18px 0 0;
  max-width: 640px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--check-muted);
}

.taxik-airport-checklist__panel{
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15,26,50,0.74), rgba(8,14,31,0.9));
  border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}

.taxik-airport-checklist__progress-top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.taxik-airport-checklist__progress-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(247,251,255,0.58);
}

.taxik-airport-checklist__progress-count{
  font-size: 16px;
  letter-spacing: -0.03em;
  color: #fff;
}

.taxik-airport-checklist__bar{
  position: relative;
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.07);
}

.taxik-airport-checklist__bar-fill{
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6ddcff 0%, #7ff0d9 52%, #ffd45c 100%);
  box-shadow: 0 0 24px rgba(109,220,255,0.28);
  transition: width .35s ease;
}

.taxik-airport-checklist__status{
  margin-top: 22px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.taxik-airport-checklist__status-badge{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(109,220,255,0.12);
  color: #9be7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.taxik-airport-checklist__status-text{
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(235,243,255,0.8);
}

.taxik-airport-checklist__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.taxik-airport-checklist__cta,
.taxik-airport-checklist__reset{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.taxik-airport-checklist__cta{
  background: linear-gradient(135deg, #ffffff 0%, #dff6ff 55%, #effff4 100%);
  color: #07101d;
  box-shadow: 0 18px 42px rgba(109,220,255,0.16);
}

.taxik-airport-checklist__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(109,220,255,0.22);
}

.taxik-airport-checklist__reset{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.taxik-airport-checklist__reset:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
}

.taxik-airport-checklist__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.taxik-check-card{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--check-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  color: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.taxik-check-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,0.12) 50%, transparent 76%);
  transform: translateX(-120%);
  transition: transform .8s ease;
}

.taxik-check-card:hover{
  transform: translateY(-4px);
  border-color: rgba(109,220,255,0.22);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.taxik-check-card:hover::before{
  transform: translateX(120%);
}

.taxik-check-card__icon{
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 24px;
}

.taxik-check-card__content{
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.taxik-check-card__content strong{
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}

.taxik-check-card__content small{
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(229,238,252,0.68);
}

.taxik-check-card__state{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}

.taxik-check-card__state::before{
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.taxik-check-card.is-done{
  border-color: rgba(109,220,255,0.22);
  background:
    linear-gradient(180deg, rgba(109,220,255,0.12), rgba(255,255,255,0.06));
  box-shadow:
    0 20px 46px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.taxik-check-card.is-done .taxik-check-card__icon{
  background: linear-gradient(135deg, rgba(109,220,255,0.18), rgba(255,212,92,0.16));
  border-color: rgba(109,220,255,0.18);
}

.taxik-check-card.is-done .taxik-check-card__state{
  background: rgba(109,220,255,0.14);
  border-color: rgba(109,220,255,0.2);
}

.taxik-check-card.is-done .taxik-check-card__state::before{
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #6ddcff, #ffd45c);
  box-shadow: 0 0 0 5px rgba(109,220,255,0.12);
}

.taxik-check-card.is-done .taxik-check-card__content strong{
  color: #f9fdff;
}

.taxik-airport-checklist.is-complete .taxik-airport-checklist__status-badge{
  background: rgba(127,240,217,0.16);
  color: #b8ffea;
}

@media (max-width: 1080px){
  .taxik-airport-checklist__inner{
    grid-template-columns: 1fr;
  }

  .taxik-airport-checklist__intro{
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px){
  .taxik-airport-checklist{
    padding: 56px 0;
  }

  .taxik-airport-checklist__inner{
    width: min(100% - 28px, 1280px);
  }

  .taxik-airport-checklist__panel{
    padding: 20px;
    border-radius: 24px;
  }

  .taxik-airport-checklist__grid{
    grid-template-columns: 1fr;
  }

  .taxik-check-card{
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
  }

  .taxik-check-card__icon{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 22px;
  }

  .taxik-check-card__content strong{
    font-size: 17px;
  }

  .taxik-airport-checklist__actions{
    flex-direction: column;
  }

  .taxik-airport-checklist__cta,
  .taxik-airport-checklist__reset{
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce){
  .taxik-airport-checklist *,
  .taxik-airport-checklist *::before,
  .taxik-airport-checklist *::after{
    animation: none !important;
    transition: none !important;
  }
}
