:root {
  /* Base Colors */
  --bg: #0f172a;
  --card: #1e293b;
  --muted: #9aa3b2;
  --text: #e9eef6;
  --pri: #4A90A4;
  --acc: #fbbf24;
  --ok: #34d399;
  --warn: #f59e0b;
  --err: #ef4444;
  --pricebg: #1a1f35;
  
  /* Border and Shadow Colors */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.12);
  --border-light: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-hover: rgba(0, 0, 0, 0.4);
  --shadow-light: rgba(0, 0, 0, 0.2);
  
  /* Additional Colors */
  --pri-light: #7dd3fc;
  --pri-dark: #0369a1;
  --acc-light: #fcd34d;
  --acc-dark: #d97706;
  --ok-light: #6ee7b7;
  --ok-dark: #059669;
  --warn-light: #fbbf24;
  --warn-dark: #d97706;
  
  /* Table Colors */
  --table-header: rgba(74, 144, 164, 0.1);
  --table-row-odd: rgba(255, 255, 255, 0.02);
  --table-row-even: rgba(255, 255, 255, 0.04);
  --table-border: rgba(255, 255, 255, 0.1);
}

/* Light theme variables */
[data-theme="light"] {
  --bg: #ffffff;
  --card: #f8fafc;
  --muted: #64748b;
  --text: #334155;
  --pri: #4A90A4;
  --acc: #fbbf24;
  --ok: #34d399;
  --warn: #f59e0b;
  --err: #ef4444;
  --pricebg: #cbd5e1;
  
  /* Border and Shadow Colors - Light Theme */
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.12);
  --border-light: rgba(0, 0, 0, 0.05);
  --border-medium: rgba(0, 0, 0, 0.1);
  --shadow: rgba(0, 0, 0, 0.06);
  --shadow-hover: rgba(0, 0, 0, 0.1);
  --shadow-light: rgba(0, 0, 0, 0.04);
  
  /* Additional Colors - Light Theme */
  --pri-light: #7dd3fc;
  --pri-dark: #0369a1;
  --acc-light: #fcd34d;
  --acc-dark: #d97706;
  --ok-light: #6ee7b7;
  --ok-dark: #059669;
  --warn-light: #fbbf24;
  --warn-dark: #d97706;
  
  /* Table Colors - Light Theme */
  --table-header: rgba(74, 144, 164, 0.1);
  --table-row-odd: rgba(0, 0, 0, 0.01);
  --table-row-even: rgba(0, 0, 0, 0.02);
  --table-border: rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 system-ui, Segoe UI, Roboto, Helvetica, Arial;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
h1 {
  font-size: 32px;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--pri), var(--acc));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: 22px;
  margin: 32px 0 16px;
  border-left: 6px solid var(--pri);
  padding-left: 16px;
  position: relative;
  color: var(--text);
}
h2::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, var(--pri), var(--acc));
  border-radius: 3px;
}
h3 {
  font-size: 18px;
  margin: 16px 0 10px;
  color: var(--text);
  font-weight: 600;
}
p {
  margin: 12px 0;
  color: var(--text);
  line-height: 1.7;
}
.muted {
  color: var(--muted);
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  margin: 32px 0;
  box-shadow: 0 8px 32px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pri),
    transparent
  );
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-hover);
  border-color: var(--border-hover);
}
.grid {
  display: grid;
  gap: 24px;
}
.g-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.g-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.table th {
  background: var(--table-header);
  color: var(--text);
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  font-size: 14px;
}

.table td {
  padding: 16px;
  border-bottom: 1px solid var(--table-border);
  color: var(--text);
  font-size: 14px;
}

.table tr:nth-child(even) {
  background: var(--table-row-even);
}

.table tr:nth-child(odd) {
  background: var(--table-row-odd);
}

.table tr:hover {
  background: var(--border-light);
}

.table tr:last-child td {
  border-bottom: none;
}
.note {
  border-left: 4px solid var(--acc);
  padding: 16px 20px;
  background: rgba(12, 18, 36, 0.8);
  border-radius: 12px;
  margin: 24px 0;
}
.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #07181a, #0a2a2d);
  color: #bff6e1;
  font-weight: 700;
  border: 1px solid rgba(191, 246, 225, 0.2);
  box-shadow: 0 4px 16px rgba(191, 246, 225, 0.1);
}
.price-card {
  background: var(--card);
  border: 2px solid var(--border-medium);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pri), var(--acc), var(--ok));
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-hover);
  border-color: var(--border-hover);
}
.price-card h3 {
  margin-bottom: 12px;
  color: var(--pri);
  font-size: 20px;
}
.price {
  font-size: 32px;
  font-weight: bold;
  color: var(--ok);
  margin: 16px 0;
  text-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}
.per {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}
.features {
  text-align: left;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.features li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: var(--text);
}
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: bold;
}
.timeline {
  position: relative;
  padding: 32px 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--pri),
    var(--acc),
    var(--ok),
    var(--warn),
    var(--pri)
  );
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.3);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 70px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-marker {
  position: absolute;
  left: 15px;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 4px solid var(--card);
  box-shadow: 0 0 0 6px var(--bg), 0 0 20px rgba(125, 211, 252, 0.4);
  animation: pulse 2s infinite;
}
.timeline-content {
  background: var(--card);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 16px var(--shadow);
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pri),
    transparent
  );
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
  border-color: var(--border-hover);
}
.timeline-item:nth-child(1) .timeline-content:hover {
  border-color: var(--pri);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.3);
}
.timeline-item:nth-child(2) .timeline-content:hover {
  border-color: var(--acc);
  box-shadow: 0 0 20px rgba(240, 171, 252, 0.3);
}
.timeline-item:nth-child(3) .timeline-content:hover {
  border-color: var(--ok);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}
.timeline-item:nth-child(4) .timeline-content:hover {
  border-color: var(--warn);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}
.timeline-item:nth-child(5) .timeline-content:hover {
  border-color: var(--pri);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.3);
}
.timeline-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
  position: relative;
  align-items: stretch;
}
.timeline-horizontal .timeline-horizontal-line {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--pri),
    var(--acc),
    var(--ok),
    var(--warn),
    var(--pri)
  );
  border-radius: 1px;
  z-index: 1;
  pointer-events: none;
}
.timeline-item-horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1 1 0;
  min-width: 220px;
  max-width: 1fr;
}
.timeline-marker-horizontal {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--card);
  box-shadow: 0 0 0 4px var(--bg);
  margin-bottom: 15px;
  z-index: 2;
  background-clip: padding-box;
}
.timeline-content-horizontal {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  width: 100%;
  min-height: 280px;
  height: 100%;
}
.timeline-content-horizontal:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.timeline-content-horizontal h3 {
  color: var(--pri);
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
}
.timeline-duration {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}
.timeline-content-horizontal ul {
  margin: 8px 0 0;
  padding-left: 16px;
  list-style: none;
  text-align: left;
  flex-grow: 1;
}
.timeline-content-horizontal li {
  margin-bottom: 4px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  font-size: 13px;
}
.timeline-content-horizontal li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--acc);
  font-weight: bold;
}

.welcome-component {
  background: linear-gradient(135deg, var(--bg), var(--card));
  border: 1px solid var(--border);
  border-radius: 0;
  margin: 0;
  box-shadow: 0 20px 60px var(--shadow);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.welcome-component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pri),
    var(--acc),
    transparent
  );
}
.welcome-component.slide-up {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.page-flip-up {
  transform-origin: top center;
  animation: flipUp 0.6s ease forwards;
}
@keyframes flipUp {
  from {
    transform: perspective(1000px) rotateX(0);
    opacity: 1;
  }
  to {
    transform: perspective(1000px) rotateX(-90deg);
    opacity: 0;
  }
}
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: var(--pri);
  opacity: 0.9;
  animation: enhancedBounce 2s ease-in-out infinite;
  z-index: 10;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 8px rgba(74, 144, 164, 0.3));
  text-shadow: 0 0 20px rgba(74, 144, 164, 0.5);
}

@keyframes enhancedBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 0.9;
  }
  25% {
    transform: translateX(-50%) translateY(-15px) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 0.9;
  }
  75% {
    transform: translateX(-50%) translateY(-8px) scale(1.05);
    opacity: 0.95;
  }
}
.welcome-header {
  background: linear-gradient(
    135deg,
    var(--pri) 0%,
    #7dd3fc 25%,
    var(--acc) 50%,
    var(--ok) 75%,
    var(--pri) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  padding: 40px 48px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 0 auto;
  width: 90%;
  box-shadow: 0 20px 40px var(--shadow),
    0 0 0 1px var(--border),
    inset 0 1px 0 var(--border-hover);
  z-index: 2;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.welcome-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  opacity: 1;
  border-radius: 24px;
  z-index: 1;
}

.welcome-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  animation: shimmer 3s ease-in-out infinite;
  border-radius: 24px;
  z-index: 1;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.welcome-header h2 {
  font-size: 32px;
  margin: 0 0 16px 0;
  font-weight: 800;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #f1f5f9;
  letter-spacing: 0.3px;
}
.welcome-steps {
  padding: 32px 48px;
  min-height: 280px;
  position: relative;
  background: var(--card);
  border-radius: 20px;
  margin: 48px 32px 24px 32px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

.welcome-step {
  display: none;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInSlide 0.8s ease forwards;
}

.welcome-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.step-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 16px var(--shadow));
  animation: float 3s ease-in-out infinite;
  display: block;
}

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

.welcome-step h3 {
  color: var(--pri);
  font-size: 22px;
  margin: 0 0 24px 0;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px var(--shadow);
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--pri) 0%, var(--pri-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.step-content li {
  margin-bottom: 0;
  padding: 16px 20px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.step-content li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4a90a4, #7dd3fc, #f0abfc);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-content li:hover {
  background: var(--card);
  transform: translateY(-4px) scale(1.02);
  border-color: var(--pri);
  box-shadow: 0 12px 32px var(--shadow-hover),
    0 0 0 1px var(--border-hover);
}

.step-content li:hover::before {
  opacity: 1;
}

.step-content strong {
  color: var(--pri);
  font-weight: 700;
  text-shadow: 0 1px 2px var(--shadow);
}

.welcome-footer {
  padding: 28px 48px;
  background: var(--card);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 32px;
  border-radius: 0 0 20px 20px;
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.step-indicators {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 0;
}

.step-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0 2px 8px var(--shadow);
}

.step-dot:hover {
  background: var(--border-medium);
  transform: scale(1.2);
  box-shadow: 0 4px 16px var(--shadow-hover);
}

.step-dot.active {
  background: linear-gradient(135deg, var(--pri), var(--pri-light));
  border-color: var(--border-hover);
  transform: scale(1.3);
  box-shadow: 0 0 20px var(--pri),
    0 4px 16px var(--shadow-hover);
}

.step-dot::after {
  content: attr(title);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-dot:hover::after {
  opacity: 1;
}

.fixed-step-indicators {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  pointer-events: auto;
}

.fixed-step-indicators .step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fixed-step-indicators .step-dot:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fixed-step-indicators .step-dot.active {
  background: linear-gradient(135deg, #4a90a4, #7dd3fc);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.4);
  box-shadow: 0 0 25px rgba(74, 144, 164, 0.7),
    0 4px 16px rgba(0, 0, 0, 0.3);
}

.fixed-step-indicators .step-dot::after {
  right: 35px;
  left: auto;
  transform: translateX(0);
  white-space: nowrap;
}

.welcome-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.btn-success {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(52, 211, 153, 0.6);
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px var(--bg), 0 0 20px rgba(125, 211, 252, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px var(--bg), 0 0 30px rgba(125, 211, 252, 0.6);
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 4px 16px rgba(191, 246, 225, 0.1);
  }
  100% {
    box-shadow: 0 4px 24px rgba(191, 246, 225, 0.3),
      0 0 32px rgba(191, 246, 225, 0.2);
  }
}
.price-card:nth-child(1):hover {
  border-color: var(--ok);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(52, 211, 153, 0.3);
}
.price-card:nth-child(2):hover {
  border-color: var(--acc);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(240, 171, 252, 0.3);
}
.price-card:nth-child(3):hover {
  border-color: var(--pri);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(125, 211, 252, 0.3);
}
@media (max-width: 900px) {
  .g-2,
  .g-3 {
    grid-template-columns: 1fr;
  }
  .wrap {
    padding: 24px 16px;
  }
  .card {
    padding: 20px;
  }
  .timeline-item {
    padding-left: 60px;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-marker {
    left: 11px;
  }
  .timeline-horizontal {
    flex-direction: column;
    gap: 20px;
  }
  .timeline-horizontal .timeline-horizontal-line {
    display: none;
  }
  .timeline-marker-horizontal {
    width: 40px;
    height: 40px;
  }
  .timeline-content-horizontal {
    min-height: unset;
    height: auto;
  }

  .fixed-step-indicators {
    right: 20px;
    gap: 16px;
  }

  .fixed-step-indicators .step-dot {
    width: 18px;
    height: 18px;
  }
}
