.pricing-container {
  max-width: 1100px;
  margin: 60px auto 40px;
  padding: 0 20px;
  color: #fff;
}

/* Стилі для великого логотипу */
.big-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.big-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.big-logo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease-in-out;
}

.big-logo::before {
  content: '';
  position: absolute;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: rgba(156, 39, 176, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(15px);
  animation: big-constant-glow 4s infinite;
  box-shadow: 0 0 20px 10px rgba(156, 39, 176, 0.6);
  opacity: 0.9;
}

.big-shine-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  transform-origin: center center;
}

.big-shine-effect::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -150%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.03) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: big-shining-effect 8s linear infinite;
}

.pricing-header {
  font-size: 2.8em;
  margin-top: 15px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #673AB7, #9C27B0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.pricing-subtitle {
  font-size: 1.4em;
  color: #e0e0e0;
  margin-bottom: 15px;
  text-align: center;
}

.call-to-action {
  font-size: 1.2em;
  color: #fff;
  background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(103, 58, 183, 0.2));
  padding: 12px 25px;
  border-radius: 10px;
  border: 1px solid rgba(156, 39, 176, 0.3);
  margin: 10px 0 25px;
  text-align: center;
  animation: pulse-border 2s infinite;
}

.call-to-action .highlight {
  font-weight: 600;
  background: linear-gradient(to right, #FF9800, #F44336);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(156, 39, 176, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(156, 39, 176, 0);
  }
}

.guarantee-section {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(156, 39, 176, 0.1));
  border-radius: 10px;
  border: 1px solid rgba(33, 150, 243, 0.2);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-icon {
  font-size: 2.5em;
  color: #2196F3;
  padding-right: 15px;
}

.guarantee-text {
  color: #e0e0e0;
}

.guarantee-text p:first-child {
  font-size: 1.2em;
  margin-bottom: 5px;
  font-weight: 500;
  color: #fff;
}

.guarantee-text p:last-child {
  font-size: 0.95em;
  margin-bottom: 0;
  color: #bbb;
}

/* Оригінальні стилі */
.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.toggle-btn {
  background: none;
  border: 1px solid #444;
  color: #fff;
  font-size: 1.1em;
  padding: 10px 32px;
  margin: 0 8px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.toggle-btn.active {
  background: #222;
  color: #fff;
  border-bottom: 2px solid #673AB7;
}
.toggle-btn .save {
  color: #2196F3;
  font-size: 0.95em;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.pricing-card {
  background: #181818;
  border: 1.5px solid #333;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 38px 32px 32px 32px;
  min-width: 270px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #2196F3, #3F51B5, #673AB7, #9C27B0);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.pricing-card:hover::before {
  opacity: 1;
}
.pricing-card.free {
  border: 1.5px solid #444;
}
.pricing-card.pro {
  border: 1.5px solid #2196F3;
  background: linear-gradient(135deg, #181818 80%, #2196F322 100%);
}
.pricing-card.proplus {
  border: 1.5px solid #9C27B0;
  background: linear-gradient(135deg, #181818 80%, #9C27B022 100%);
}
.plan-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-card.pro .plan-title {
  background: linear-gradient(to right, #2196F3, #3F51B5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-card.proplus .plan-title {
  background: linear-gradient(to right, #673AB7, #9C27B0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan-price {
  font-size: 2.6em;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.plan-price .currency {
  font-size: 0.7em;
  vertical-align: super;
}
.plan-price .per {
  font-size: 0.45em;
  color: #aaa;
  margin-left: 2px;
}
.plan-includes {
  font-size: 1.1em;
  margin-bottom: 24px;
  color: #fff;
}
.plan-includes ul {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: #bbb;
  font-size: 0.98em;
}
.plan-btn {
  background: #222;
  color: #fff;
  border: 1.5px solid #444;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.plan-btn:hover:not(:disabled) {
  background: linear-gradient(to right, #2196F3, #3F51B5);
  color: #fff;
  border: 1.5px solid #3F51B5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(63, 81, 181, 0.3);
}
.pricing-card.proplus .plan-btn:hover:not(:disabled) {
  background: linear-gradient(to right, #673AB7, #9C27B0);
  color: #fff;
  border: 1.5px solid #9C27B0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(156, 39, 176, 0.3);
}
.plan-btn:disabled {
  background: #333;
  color: #aaa;
  cursor: not-allowed;
}
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    max-width: 100%;
    min-width: 220px;
    width: 100%;
  }
}

@keyframes big-constant-glow {
  0% {
    box-shadow: 0 0 20px 10px rgba(156, 39, 176, 0.7);
    opacity: 0.9;
  }
  50% {
    box-shadow: 0 0 35px 15px rgba(156, 39, 176, 0.5);
    opacity: 0.7;
  }
  100% {
    box-shadow: 0 0 20px 10px rgba(156, 39, 176, 0.7);
    opacity: 0.9;
  }
}

@keyframes big-shining-effect {
  0%, 75% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* Модальне вікно оплати */
.payment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.payment-modal.show {
  opacity: 1;
  visibility: visible;
}

.payment-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 2px solid rgba(156, 39, 176, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.7) translateY(50px);
  transition: all 0.3s ease;
}

.payment-modal.show .payment-modal-content {
  transform: scale(1) translateY(0);
}

.payment-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.payment-close:hover {
  color: #9C27B0;
}

.payment-header {
  text-align: center;
  margin-bottom: 30px;
}

.payment-title {
  font-size: 2em;
  font-weight: 600;
  background: linear-gradient(to right, #673AB7, #9C27B0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.payment-subtitle {
  color: #bbb;
  font-size: 1.1em;
}

.payment-plan-info {
  background: rgba(156, 39, 176, 0.1);
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.payment-plan-name {
  font-size: 1.3em;
  font-weight: 600;
  color: #9C27B0;
  margin-bottom: 5px;
}

.payment-plan-price {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95em;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  font-size: 1em;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #9C27B0;
  box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: #888;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Зменшуємо ширину поля CVV */
.form-row .form-group:last-child {
  flex: 0 0 80px;
  max-width: 80px;
}

.payment-button {
  background: linear-gradient(135deg, #673AB7, #9C27B0);
  border: none;
  border-radius: 12px;
  padding: 18px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.payment-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
}

.payment-button:active {
  transform: translateY(0);
}

.payment-button.loading {
  pointer-events: none;
}

.payment-button .button-text {
  transition: opacity 0.3s ease;
}

.payment-button.loading .button-text {
  opacity: 0;
}

.payment-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-button.loading .payment-loader {
  opacity: 1;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Анімація успіху */
.success-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-animation.show {
  opacity: 1;
  visibility: visible;
}

.success-content {
  text-align: center;
  transform: scale(0.5);
  transition: transform 0.5s ease;
}

.success-animation.show .success-content {
  transform: scale(1);
}

.success-icon {
  width: 120px;
  height: 120px;
  border: 4px solid #4CAF50;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  position: relative;
  animation: success-pulse 2s infinite;
}

.success-icon::before {
  content: '✓';
  font-size: 60px;
  color: #4CAF50;
  font-weight: bold;
  animation: success-checkmark 0.8s ease-in-out 0.3s both;
  transform: scale(0);
}

.success-title {
  font-size: 2.5em;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 15px;
  animation: success-text 0.8s ease-in-out 0.6s both;
  opacity: 0;
}

.success-message {
  font-size: 1.3em;
  color: #fff;
  margin-bottom: 30px;
  animation: success-text 0.8s ease-in-out 0.9s both;
  opacity: 0;
}

.success-details {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  animation: success-text 0.8s ease-in-out 1.2s both;
  opacity: 0;
}

.success-amount {
  font-size: 1.8em;
  font-weight: 600;
  color: #4CAF50;
  margin-bottom: 10px;
}

.success-plan {
  color: #bbb;
  font-size: 1.1em;
}

@keyframes success-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
  }
}

@keyframes success-checkmark {
  0% {
    transform: scale(0) rotate(45deg);
  }
  50% {
    transform: scale(1.2) rotate(45deg);
  }
  100% {
    transform: scale(1) rotate(45deg);
  }
}

@keyframes success-text {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Конфетті анімація */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #9C27B0;
  animation: confetti-fall 3s linear infinite;
  z-index: 1002;
}

.confetti:nth-child(odd) {
  background: #673AB7;
  animation-duration: 2.5s;
}

.confetti:nth-child(3n) {
  background: #2196F3;
  animation-duration: 3.5s;
}

.confetti:nth-child(4n) {
  background: #4CAF50;
  animation-duration: 2.8s;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Адаптивність */
@media (max-width: 600px) {
  .payment-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .payment-title {
    font-size: 1.6em;
  }
  
  .success-title {
    font-size: 2em;
  }
  
  .success-message {
    font-size: 1.1em;
  }
} 