/* ==========================================================================
   #PRICING SECTION COMPONENTS
   ========================================================================== */
.pricing-section {
  padding: 2rem 0 6rem 0;
  background: var(--background-color);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(at 10% 20%, rgba(74, 108, 247, 0.03) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(124, 58, 237, 0.03) 0px, transparent 50%);
}

.pricing-section .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.pricing-section .section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  text-align: center;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1.5rem;
  perspective: 1000px;
}

/* Stagger animation for pricing cards */
.pricing-grid > :nth-child(1) {
  animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.pricing-grid > :nth-child(2) {
  animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s forwards;
}

.pricing-grid > :nth-child(3) {
  animation: slideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

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

/* Pricing Card */
.pricing-card {
  --card-bg: var(--background-color);
  --card-border: 1px solid rgba(15, 23, 42, 0.08);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--card-bg);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  --card-shadow: 0 20px 60px rgba(74, 108, 247, 0.15);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(74, 108, 247, 0.2);
}

.pricing-card.is-highlight {
  --card-border: 2px solid var(--primary-color);
  --card-bg: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
  border-top: 3px solid var(--primary-color);
  position: relative;
  z-index: 2;
  animation: subtlePulse 3s ease-in-out infinite;
}

.pricing-card.is-highlight:hover {
  --card-shadow: 0 25px 80px rgba(74, 108, 247, 0.2);
  transform: translateY(-12px) scale(1.03);
  animation: none;
}

/* Header */
.pricing-card__header {
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
}

.pricing-card__header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.5rem;
}

/* Ribbon */
.pricing-card__ribbon {
  position: absolute;
  top: 0.5rem;
  right: -2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
  color: white;
  padding: 0.35rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  transform-origin: center;
  text-align: center;
  width: 8rem;
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: ribbonSlide 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  opacity: 0;
}

/* Most Popular Badge */
.pricing-card.is-highlight > div:nth-child(2) {
  animation: badgeBounce 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
  opacity: 0;
}

@keyframes badgeBounce {
  from {
    opacity: 0;
    transform: scale(0.8) translateX(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@keyframes ribbonSlide {
  from {
    opacity: 0;
    transform: rotate(45deg) translateX(20px);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) translateX(0);
  }
}

/* Price Display */
.price-display {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.05) 0%, transparent 100%);
  border-radius: 1rem;
  animation: fadeIn 0.6s ease 0.3s forwards;
  opacity: 0;
}

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

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes iconBounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 108, 247, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 108, 247, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 108, 247, 0);
  }
}

@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-currency {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--primary-color), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.price-breakdown {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.price-savings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted, #6b7280);
}

.discount-badge {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.price-equivalent {
  font-size: 0.9rem;
  color: var(--text-muted, #6b7280);
}

/* Features */
.pricing-features {
  margin: 1.5rem 0;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color, #374151);
  opacity: 0;
  animation: featureSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transition: color 0.3s ease;
}

.pricing-card:nth-child(1) .pricing-features li:nth-child(1) { animation-delay: 0.5s; }
.pricing-card:nth-child(1) .pricing-features li:nth-child(2) { animation-delay: 0.55s; }
.pricing-card:nth-child(1) .pricing-features li:nth-child(3) { animation-delay: 0.6s; }
.pricing-card:nth-child(1) .pricing-features li:nth-child(4) { animation-delay: 0.65s; }
.pricing-card:nth-child(1) .pricing-features li:nth-child(5) { animation-delay: 0.7s; }

.pricing-card:nth-child(2) .pricing-features li:nth-child(1) { animation-delay: 0.65s; }
.pricing-card:nth-child(2) .pricing-features li:nth-child(2) { animation-delay: 0.7s; }
.pricing-card:nth-child(2) .pricing-features li:nth-child(3) { animation-delay: 0.75s; }
.pricing-card:nth-child(2) .pricing-features li:nth-child(4) { animation-delay: 0.8s; }
.pricing-card:nth-child(2) .pricing-features li:nth-child(5) { animation-delay: 0.85s; }
.pricing-card:nth-child(2) .pricing-features li:nth-child(6) { animation-delay: 0.9s; }

.pricing-card:nth-child(3) .pricing-features li:nth-child(1) { animation-delay: 0.8s; }
.pricing-card:nth-child(3) .pricing-features li:nth-child(2) { animation-delay: 0.85s; }
.pricing-card:nth-child(3) .pricing-features li:nth-child(3) { animation-delay: 0.9s; }
.pricing-card:nth-child(3) .pricing-features li:nth-child(4) { animation-delay: 0.95s; }
.pricing-card:nth-child(3) .pricing-features li:nth-child(5) { animation-delay: 1s; }

.pricing-features li:hover {
  color: var(--primary-color, #4A6CF7);
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--success-color, #10B981);
  animation: iconBounce 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Footer */
.pricing-card__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 108, 247, 0.1);
  opacity: 0;
  animation: fadeIn 0.6s ease 0.6s forwards;
}

.pricing-card__cta {
  width: 100%;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(74, 108, 247, 0.2);
}

.pricing-card__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.pricing-card__cta:hover::before {
  left: 100%;
}

.pricing-card__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(74, 108, 247, 0.3);
}

.pricing-card__cta:active {
  transform: translateY(0) scale(0.98);
}

.pricing-card.is-highlight .pricing-card__cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
  color: white;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(74, 108, 247, 0.35);
}

.pricing-card.is-highlight .pricing-card__cta:hover {
  box-shadow: 0 12px 35px rgba(74, 108, 247, 0.45);
  transform: translateY(-3px) scale(1.03);
}

.pricing-legal {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.7s forwards;
}

.pricing-legal a {
  color: #4A6CF7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pricing-legal a:hover {
  text-decoration: underline;
  color: #7c3aed;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem auto 0;
  max-width: 800px;
  padding: 0 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #e5e7eb;
}

.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

.trust-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: #4A6CF7;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 1.75rem;
  }
  
  .pricing-card {
    padding: 2rem;
  }
  
  .pricing-card.is-highlight {
    transform: scale(1);
  }
  
  .pricing-section {
    padding: 4rem 0;
  }
  
  .pricing-section .section-title {
    font-size: 2rem;
  }
  
  .pricing-section .section-description {
    font-size: 1.0625rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 3rem 0;
  }
  
  .pricing-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .pricing-section .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .pricing-grid {
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .pricing-card {
    padding: 1.75rem 1.5rem;
    border-radius: 1rem;
  }
  
  .pricing-card.is-highlight {
    padding: 1.75rem 1.5rem;
  }
  
  .pricing-card__header h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .pricing-card__amount {
    font-size: 2.5rem;
  }
  
  .price-value {
    font-size: 2.5rem !important;
  }
  
  .price-period {
    font-size: 0.9rem;
  }
  
  .pricing-card__term {
    font-size: 0.9375rem;
  }
  
  .pricing-features li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .pricing-card__cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    margin-top: 1rem;
  }
  
  .pricing-legal {
    font-size: 0.8rem;
    text-align: left;
    padding: 0 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .trust-badge {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   #PRICING CARD COMPONENTS
   ========================================================================== */
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(74, 108, 247, 0.12);
  color: rgba(37, 99, 235, 0.9);
  width: fit-content;
}

.pricing-card__badge--accent {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.35));
  color: #0f172a;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.pricing-card__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card__currency {
  font-size: 1.4rem;
}

.pricing-card__amount {
  font-size: 2.5rem;
  line-height: 1.2;
}

.pricing-card__term {
  font-size: 1.05rem;
  color: rgba(30, 41, 59, 0.7);
}

.pricing-card__meta {
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(30, 41, 59, 0.72);
}

.pricing-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(148, 163, 184, 0.18);
  color: rgba(55, 65, 81, 0.9);
  width: fit-content;
}

.pricing-card__chip--accent {
  background: rgba(37, 99, 235, 0.15);
  color: rgba(23, 37, 84, 0.92);
}

.pricing-card__comparison {
  font-size: 0.9rem;
  color: rgba(30, 41, 59, 0.62);
}

.pricing-card__savings {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(22, 101, 52, 0.88);
}

.pricing-card__savings--muted {
  color: rgba(30, 41, 59, 0.6);
  font-weight: 500;
  background: rgba(100, 116, 139, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.pricing-card__original {
  position: relative;
  font-size: 0.95rem;
  color: rgba(30, 41, 59, 0.55);
}

.pricing-card__original::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px solid rgba(239, 68, 68, 0.7);
  transform: translateY(-50%) rotate(-4deg);
}

.pricing-card__discount {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.14);
  color: rgba(22, 101, 52, 0.95);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(30, 41, 59, 0.72);
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(30, 41, 59, 0.72);
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.85rem;
  line-height: 1.55;
}

.pricing-card__features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.pricing-card__cta {
  width: min(260px, 100%);
}

.pricing-disclaimer {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(15, 23, 42, 0.05);
  padding: 1.15rem 1.5rem;
  border-radius: 1.25rem;
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-disclaimer strong {
  color: #2563eb;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 3.5rem 0;
  }
  
  .pricing-section .section-title {
    font-size: 2rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .pricing-toggle {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.5rem;
    width: 100%;
    max-width: 320px;
  }

  .pricing-toggle__link {
    width: 100%;
    justify-content: center;
  }

  .pricing-card {
    padding: 2rem;
    gap: 1.25rem;
  }

  .pricing-card.is-highlight {
    transform: translateY(-4px);
  }
}

@media (max-width: 540px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.75rem;
    border-radius: 1.35rem;
  }

  .pricing-card__features {
    gap: 0.7rem;
  }
}

/* ==========================================================================
   #FAQ COMPONENTS
   ========================================================================== */
.faq__title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xl);
  color: var(--text-color);
  font-weight: 700;
}

.faq__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq__item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq__item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.faq__item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   #PRICING TOGGLE COMPONENT
   ========================================================================== */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: rgba(74, 108, 247, 0.08);
  border-radius: 999px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  box-shadow: inset 0 0 0 1px rgba(74, 108, 247, 0.18);
}

.pricing-toggle__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(30, 41, 59, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.pricing-toggle__link:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.45);
  outline-offset: 2px;
}

.pricing-toggle__link.is-active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(37, 99, 235, 0.34));
  color: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.2);
}

.pricing-toggle__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(59, 130, 246, 0.12);
  color: rgba(30, 58, 138, 0.95);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-toggle__badge-accent {
  font-weight: 700;
  color: var(--primary-color);
}

/* ==========================================================================
   #ALERT COMPONENTS
   ========================================================================== */
.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  color: white;
}

.alert-success {
  background-color: var(--success-color);
}

.alert-error {
  background-color: var(--error-color);
}

/* ==========================================================================
   #SUCCESS ANIMATION COMPONENT
   ========================================================================== */
.success-animation {
  padding: 2rem 0;
}

.success-animation .checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: block;
}

.checkmark__circle {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-linecap: round;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  stroke: var(--success-color);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

/* ==========================================================================
   #BROWSER UI COMPONENTS
   ========================================================================== */
.card-header {
  padding: 0.75rem 1.25rem;
  background: var(--background-alt);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
}

.browser-dots span:first-child { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:last-child { background: #10b981; }

.card-content {
  padding: 2rem;
  text-align: center;
}

/* ==========================================================================
   #LOADING COMPONENTS
   ========================================================================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.visible {
  opacity: 1;
  visibility: visible;
}