/* ===== ГЛОБАЛЬНІ ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #7C3AED #0A0A0A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ШУМ ===== */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  mix-blend-mode: overlay;
}
.noise-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(124, 58, 237, 0.15);
  mix-blend-mode: multiply;
}

/* ===== КРАСИВИЙ СКРОЛБАР ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7C3AED, #A78BFA);
  border-radius: 4px;
  transition: all 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6D28D9, #7C3AED);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* ===== ХЕДЕР ===== */
.header {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: headerSlide 0.6s ease;
}

@keyframes headerSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #A78BFA, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulseGlow 3s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #A1A1AA;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
}

.nav__link-icon {
  font-size: 12px;
  color: #7C3AED;
  transition: all 0.3s;
  opacity: 0.5;
}

.nav__link-text {
  position: relative;
  transition: all 0.3s;
}

.nav__link:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.nav__link:hover .nav__link-icon {
  opacity: 1;
  transform: scale(1.2) rotate(90deg);
  color: #A78BFA;
}

.nav__link:hover .nav__link-text {
  color: #FFFFFF;
}

.nav__link.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
  color: #A78BFA;
}

.nav__link.active .nav__link-icon {
  opacity: 1;
  color: #A78BFA;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7C3AED, #A78BFA);
  transition: all 0.3s;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav__link:hover::after {
  width: 60%;
}

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

.nav__link:hover .nav__link-icon {
  animation: iconFloat 1.5s ease-in-out infinite;
}

/* ===== ЗАГАЛЬНІ СЕКЦІЇ ===== */
.section {
  padding: 100px 0;
  opacity: 0;
  animation: sectionFade 1s ease forwards;
  scroll-margin-top: 80px;
}

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

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #7C3AED, #A78BFA);
  margin: 12px auto 0;
  border-radius: 2px;
  animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleLine {
  0%, 100% { width: 60px; }
  50% { width: 120px; }
}

.highlight {
  background: linear-gradient(135deg, #A78BFA, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== БЛОК 1: ПРО МЕНЕ ===== */
.about {
  background: radial-gradient(circle at 30% 20%, #1A0B2E, #0A0A0A 70%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about__image {
  flex: 0 0 auto;
  position: relative;
}

/* ===== ЛОГОТИП (СТАТИЧНИЙ) ===== */
.about__logo-wrapper {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #0A0A0A;
  padding: 20px;
  transition: transform 0.3s ease;
  display: block;
}

.about__logo-wrapper:hover .about__logo {
  transform: scale(1.05);
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.about__content {
  flex: 1;
}

.about__text {
  font-size: 18px;
  color: #D4D4D8;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__text strong {
  color: #A78BFA;
  font-weight: 600;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.about__list li {
  color: #D4D4D8;
  font-size: 17px;
  padding: 8px 0 8px 30px;
  position: relative;
  transition: all 0.3s;
  cursor: default;
}

.about__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #7C3AED;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.about__list li:hover {
  color: #A78BFA;
  transform: translateX(8px);
}

.about__list li:hover::before {
  color: #A78BFA;
  transform: translateY(-50%) scale(1.3);
}

/* ===== БЛОК 2: ПРОДУКТИ ===== */
.products {
  background: #0A0A0A;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: linear-gradient(145deg, #121212, #0D0D0D);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #1F1F1F;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: #7C3AED;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2);
}

.product-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__btn-wrapper {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: center;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at center, #1A1A2E, #0D0D0D);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 80%;
  max-height: 80%;
}

.product-card:hover .product-card__image img {
  transform: scale(1.08) rotate(-2deg);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1), transparent 70%);
  pointer-events: none;
  border-radius: 16px;
}

.product-card__image .no-image {
  font-size: 48px;
  color: #7C3AED;
  opacity: 0.5;
}

.product-card__tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(167, 139, 250, 0.1));
  color: #A78BFA;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 14px;
  border: 1px solid rgba(124, 58, 237, 0.25);
  align-self: flex-start;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.product-card:hover .product-card__tag {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(167, 139, 250, 0.2));
  border-color: rgba(124, 58, 237, 0.5);
  transform: scale(1.05);
}

.product-card__tag.soon {
  background: linear-gradient(135deg, rgba(255, 200, 0, 0.15), rgba(255, 200, 0, 0.05));
  color: #FBBF24;
  border-color: rgba(255, 200, 0, 0.25);
}

.product-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.product-card:hover .product-card__title {
  color: #A78BFA;
}

.product-card__description {
  font-size: 14px;
  color: #A1A1AA;
  flex: 1;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* ===== ЦІНА ===== */
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}

.product-card__price-main {
  font-size: 24px;
  font-weight: 700;
  color: #A78BFA;
  transition: all 0.3s;
}

.product-card:hover .product-card__price-main {
  transform: scale(1.05);
}

.product-card__price-crypto {
  font-size: 14px;
  color: #71717A;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.product-card__price-crypto::before {
  content: 'crypto ';
  font-size: 12px;
}

.product-card__price.soon-price .product-card__price-main {
  color: #FBBF24;
  font-size: 18px;
}

.product-card__price.soon-price .product-card__price-crypto {
  display: none;
}

.product-card__btn {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  border: none;
  color: #FFFFFF;
  padding: 14px 0;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
  width: 80%;
  display: block;
  margin: 0 auto;
}

.product-card__btn::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;
}

.product-card__btn:hover:not(:disabled)::before {
  left: 100%;
}

.product-card__btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(124, 58, 237, 0.5);
}

.product-card__btn:active:not(:disabled) {
  transform: scale(0.95);
}

.product-card__btn:disabled {
  background: #2A2A2A;
  color: #71717A;
  cursor: not-allowed;
  box-shadow: none;
  border: 1px solid #3F3F46;
}

/* ===== БЛОК 3: ВІДГУКИ ===== */
.reviews {
  background: radial-gradient(circle at 70% 80%, #1A0B2E, #0A0A0A 70%);
}

.reviews__telegram {
  text-align: center;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 50px;
  transition: all 0.4s;
}

.reviews__telegram:hover {
  border-color: #7C3AED;
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.1);
  transform: scale(1.01);
}

.telegram__text {
  font-size: 18px;
  margin-bottom: 16px;
  color: #D4D4D8;
}

.telegram__btn {
  display: inline-block;
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: #fff;
  padding: 14px 48px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.telegram__btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
}

.telegram__btn:hover::before {
  left: 100%;
}

.telegram__btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review-card {
  background: linear-gradient(145deg, #121212, #0D0D0D);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #1F1F1F;
  transition: all 0.4s;
  position: relative;
}

.review-card:hover {
  border-color: #7C3AED;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 0 40px rgba(124, 58, 237, 0.6); }
}

.review-card__name {
  font-weight: 600;
  font-size: 16px;
}

.review-card__date {
  font-size: 12px;
  color: #71717A;
}

.review-card__stars {
  color: #A78BFA;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 18px;
}

.review-card__text {
  color: #D4D4D8;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== БЛОК 4: УМОВИ ===== */
.terms {
  background: radial-gradient(circle at 50% 50%, #1A0B2E, #0A0A0A 70%);
  padding: 80px 0;
}

.terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.terms__card {
  background: linear-gradient(145deg, #121212, #0D0D0D);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #1F1F1F;
  transition: all 0.4s;
  text-align: center;
}

.terms__card:hover {
  border-color: #7C3AED;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
}

.terms__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.terms__title {
  font-size: 20px;
  font-weight: 700;
  color: #A78BFA;
  margin-bottom: 12px;
}

.terms__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms__list li {
  color: #D4D4D8;
  font-size: 14px;
  line-height: 1.8;
  padding: 4px 0;
}

.terms__footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: rgba(124, 58, 237, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.terms__footer p {
  color: #D4D4D8;
  font-size: 16px;
}

.terms__tg-link {
  color: #A78BFA;
  font-weight: 600;
  transition: all 0.3s;
}

.terms__tg-link:hover {
  color: #7C3AED;
  text-decoration: underline;
}

/* ===== МОДАЛКА ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: modalFade 0.3s ease;
}

@keyframes modalFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.modal__content {
  background: linear-gradient(145deg, #121212, #0D0D0D);
  border: 1px solid #7C3AED;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__content::-webkit-scrollbar {
  width: 6px;
}
.modal__content::-webkit-scrollbar-track {
  background: #0A0A0A;
  border-radius: 4px;
}
.modal__content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7C3AED, #A78BFA);
  border-radius: 4px;
}

.modal__close {
  position: sticky;
  float: right;
  top: 0;
  font-size: 32px;
  background: none;
  border: none;
  color: #A1A1AA;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.modal__close:hover {
  color: #A78BFA;
  transform: rotate(90deg) scale(1.1);
}

.modal__body {
  clear: both;
}

.modal__body h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #A78BFA;
}

.modal__body p {
  color: #D4D4D8;
  margin-bottom: 12px;
  line-height: 1.8;
}

.modal__body ul {
  color: #D4D4D8;
  margin: 16px 0;
  list-style: none;
  padding: 0;
}

.modal__body ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.modal__body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #7C3AED;
}

/* ===== ЦІНИ В МОДАЛЦІ ===== */
.modal__body .price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  justify-content: center;
  margin: 20px 0 0;
}

.modal__body .price-main {
  font-size: 32px;
  font-weight: 700;
  color: #A78BFA;
}

.modal__body .price-crypto {
  font-size: 16px;
  color: #71717A;
  font-weight: 400;
}

.modal__body .price-crypto::before {
  content: 'crypto ';
  font-size: 14px;
}

.modal__order-btn {
  background: linear-gradient(135deg, #7C3AED, #6D28D9);
  color: #fff;
  border: none;
  padding: 16px 0;
  width: 100%;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 24px;
}

.modal__order-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.modal__order-btn:disabled {
  background: #3F3F46;
  color: #71717A;
  cursor: not-allowed;
}

/* ===== АНІМАЦІЇ ===== */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ПІДВАЛ ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid #1F1F1F;
  background: #0A0A0A;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer__tg {
  font-weight: 600;
  color: #A78BFA;
  transition: all 0.3s;
}

.footer__tg:hover {
  color: #7C3AED;
  text-decoration: underline;
  transform: scale(1.05);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    gap: 12px;
  }
  
  .nav {
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .nav__link {
    padding: 6px 12px;
    font-size: 12px;
  }

  .nav__link-icon {
    font-size: 10px;
  }

  .about {
    min-height: auto;
    padding: 60px 0;
  }

  .about__inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about__logo-wrapper {
    width: 160px;
    height: 160px;
    padding: 6px;
  }

  .about__logo {
    padding: 18px;
  }

  .about__list li {
    text-align: left;
  }

  .section-title {
    font-size: 24px;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 20px;
  }

  .product-card__image {
    padding: 12px;
  }

  .product-card__image img {
    max-width: 70%;
    max-height: 70%;
  }

  .product-card__price-main {
    font-size: 20px;
  }

  .product-card__price-crypto {
    font-size: 12px;
  }

  .product-card__btn {
    width: 90%;
    padding: 12px 0;
    font-size: 14px;
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .terms__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .modal__content {
    padding: 24px;
    margin: 10px;
  }

  .modal__body h3 {
    font-size: 22px;
  }

  .modal__body .price-main {
    font-size: 26px;
  }

  .modal__body .price-crypto {
    font-size: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__logo-wrapper {
    width: 180px;
    height: 180px;
  }
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.about__logo-wrapper {
  width: 100px;
  height: 100px;
}


/* ===== БЛОК ПРО ПРОЕКТ ===== */
.about {
  background: radial-gradient(circle at 30% 20%, #1A0B2E, #0A0A0A 70%);
  padding: 80px 0;
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.about__logo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #0A0A0A;
  padding: 16px;
  transition: transform 0.3s ease;
  display: block;
}

.about__logo-wrapper:hover .about__logo {
  transform: scale(1.05);
}

/* СІРА РАМКА ЗІ СВІТІННЯМ */
.about__content-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
}

.about__content-box:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.15), inset 0 0 30px rgba(124, 58, 237, 0.03);
  transform: translateY(-4px);
}

.about__text-wrapper {
  font-size: 17px;
  color: #D4D4D8;
  line-height: 1.8;
  min-height: 100px;
}

.about__text-wrapper .typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #A78BFA;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Заголовок у рамці – без підкреслення, щоб не дублювати */
.about__content-box .section-title {
  margin-bottom: 20px;
}
.about__content-box .section-title::after {
  display: none;
}


@media (max-width: 768px) {
  .about__content-box {
    padding: 20px;
  }

  .about__text-wrapper {
    font-size: 15px;
  }

  .about__logo-wrapper {
    width: 90px;
    height: 90px;
  }
}

.about__text-wrapper .typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #A78BFA;
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

/* ===== ТЕКСТИ В КАРТКАХ УМОВ ===== */
.terms__text {
  font-size: 15px;
  color: #D4D4D8;
  line-height: 1.7;
  margin-top: 6px;
}
.terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 20px;
}