@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-y: auto;
  position: relative;
  /* Обеспечиваем прижатие футера к низу даже на страницах с малым контентом */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo {
  display: flex;
  align-items: center;
  color: transparent; /* убираем статичный цвет */
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, filter 0.25s ease;
  background: linear-gradient(
    45deg,
    #ff0075,
    #7b6dff,
    #00e0ff,
    #7b6dff,
    #ff0075
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}
.logo:hover {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 6px rgba(123, 109, 255, 0.6));
}
.logo:active {
  transform: scale(0.96);
  filter: drop-shadow(0 0 4px rgba(255, 140, 0, 0.6));
}

.logo-img {
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.logo-img-title {
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  animation: fadeInDown 1s ease;
  position: fixed; /* закрепляем меню */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8); /* затемнённый фон */
  backdrop-filter: blur(10px);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

.menu {
  list-style: none;
  display: flex;
  gap: 12px;
}

.menu li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
}

.menu li a:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Premium navigation item with dynamic gradient */
.menu li a.premium-nav-item {
  background: linear-gradient(45deg, #7b6dff, #00e0ff, #ff0075, #7b6dff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: premiumNavGlow 3s ease-in-out infinite;
  font-weight: 600;
}

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

.menu li a.premium-nav-item:hover {
  opacity: 0.6;
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 2px 8px rgba(123, 109, 255, 0.4));
}

/* Active page indicator */
.menu li a.active {
  background: linear-gradient(
    135deg,
    rgba(123, 109, 255, 0.3),
    rgba(0, 224, 255, 0.2)
  );
  border: 1px solid rgba(123, 109, 255, 0.3);
  color: #fff;
}

/* Keep Premium gradient text even when active */
.menu li a.active.premium-nav-item {
  background: linear-gradient(
    135deg,
    rgba(123, 109, 255, 0.3),
    rgba(0, 224, 255, 0.2)
  );
  border: 1px solid rgba(123, 109, 255, 0.3);
  /* Keep the gradient text effect */
  color: transparent;
  position: relative;
}

.menu li a.active.premium-nav-item::before {
  content: 'Premium';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #7b6dff, #00e0ff, #ff0075, #7b6dff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: premiumNavGlow 3s ease-in-out infinite;
  z-index: 1;
}

.login-btn {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative; /* для выпадающего меню */
}

.login-btn:hover {
  background-color: #333;
}

/* === Back to Top Button === */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #7b6dff;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
  z-index: 100;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #8a7fff;
  transform: translateY(-3px);
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeIn 1.5s ease;
  padding: 120px 10px 100px; /* сверху место для фиксированного меню, снизу – футер */
  flex: 1 0 auto; /* растягиваем контент, чтобы футер был внизу */
}

.content {
  transform: translateY(-50px);
  width: 100%;
}

.content h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.input-container {
  display: flex;
  align-items: center;
  background-color: #333;
  border-radius: 25px;
  padding: 8px 16px;
  width: 600px;
  max-width: 90%;
  margin: 0 auto 20px auto;
  animation: fadeInUp 1s ease;
  border: 1px solid #444;
  transition: all 0.3s ease;
}

.input-container input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  padding: 12px 8px;
  width: 100%;
  font-size: 16px;
}

.input-container:focus-within {
  border-color: #666;
  background-color: #3a3a3a;
}

.send-btn {
  background-color: #555;
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.send-btn:hover {
  background-color: #666;
  transform: scale(1.05);
}

.suggestions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
  max-width: 100%;
}

.suggestions button {
  background-color: #111;
  border: 1px solid #333;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s, transform 0.3s;
  white-space: nowrap;
}

.suggestions button:hover {
  background-color: #222;
  transform: translateY(-3px);
}

.extra-btn {
  display: none;
}

.gradient-equalizer {
  position: absolute;
  bottom: -30vh;
  /* bottom: 0; */
  left: 0;
  width: 100%;
  height: 550px;
  background: linear-gradient(
    to top,
    #7b6dff 10%,
    #8a7fff 40%,
    transparent 85%
  );
  filter: blur(100px);
  opacity: 1;
  transform-origin: bottom;
  transition: transform 0.3s ease;
  animation: wave 5s infinite ease-in-out alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.05);
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    /* Initially hidden for mobile; we'll animate open/close via max-height, opacity and transform */
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 0 0; /* keep padding out of the animated height */
    z-index: 10;
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 320ms cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 220ms ease, transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  /* When active, expand with a smooth slide-down */
  .menu.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 420px; /* large enough to contain menu items; keeps animation smooth */
    padding: 10px 0; /* restore vertical padding when open */
  }

  .menu li {
    padding: 10px;
    text-align: center;
  }

  .input-container {
    width: 95%;
    padding: 8px 12px;
  }

  .content h1 {
    font-size: 1.5rem;
  }

  .suggestions button {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}

.extra-buttons {
  width: 100%;
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.extra-btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .extra-buttons {
    flex-wrap: wrap;
  }
}

/* ===== Footer & Page Styles ===== */
.site-footer {
  background-color: #111;
  padding: 40px 20px 20px;
  color: #fff;
  position: relative;
  z-index: 2;
  /* Автоматический отступ сверху, чтобы футер уходил в самый низ */
  margin-top: auto;
}

.site-footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  min-width: 180px;
  flex: 1 1 200px;
}

.footer-section h4 {
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== FOOTER MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-footer {
    padding: 32px 16px 16px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer-section {
    min-width: 100%;
    flex: none;
    text-align: center;
  }

  .footer-section.brand {
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
  }

  .footer-section.brand .logo {
    font-size: 1.4rem;
    justify-content: center;
    margin-bottom: 8px;
  }

  .footer-section.brand p {
    max-width: 280px;
    margin: 12px auto 0;
    line-height: 1.5;
    color: #ccc;
    font-size: 0.95rem;
  }

  .footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
  }

  .footer-section ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: space-around;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-section ul li {
    margin-bottom: 0;
  }

  .footer-section ul li a {
    min-width: 140px;
    max-width: 320px;
    font-size: 0.9rem;
    color: #ddd;
    display: block;
    padding: 4px 0;
    transition: all 0.3s ease;
  }

  .footer-section ul li a:hover {
    color: #7b6dff;
    transform: translateY(-2px);
  }

  .footer-bottom {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #222;
  }

  .footer-bottom p {
    font-size: 0.85rem;
    color: #999;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 24px 12px 12px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-section.brand .logo {
    font-size: 1.2rem;
  }

  .footer-section.brand p {
    font-size: 0.9rem;
    max-width: 260px;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .footer-section ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-section ul li a {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 14px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

.page-main {
  display: block;
  padding: 120px 20px 200px; /* Увеличиваем нижний отступ */
  height: auto;
  overflow: visible;
  position: relative;
  z-index: 2;
  /* Занимаем всё доступное пространство между навбаром и футером */
  flex: 1 0 auto;
}

.hero-section {
  margin-top: 40px;
}

.hero-text {
  text-align: left;
}

/* ===== About Page Styles ===== */
/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text {
  flex: 1 1 320px;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-text h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.35;
}
.hero-text p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #ccc;
}
.cta-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.3s;
  position: relative; /* for pseudo-element */
  z-index: 0;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px; /* толщ. обводки */
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    #ff4d8c,
    #b347ff,
    #007bff,
    #00e0ff,
    #ff4d8c
  );
  background-size: 400% 400%;
  animation: ctaBorderShift 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; /* Safari */
  mask-composite: exclude; /* Other browsers */
  pointer-events: none;
}
@keyframes ctaBorderShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cta-btn:hover {
  background-color: #111;
  transform: translateY(-3px);
}
.hero-img {
  flex: 1 1 320px;
  text-align: center;
}
.hero-img img {
  max-width: 450px;
  width: 100%;
  height: auto;
  animation: fadeIn 1.5s ease;
}

/* Why Section */
.why-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch; /* растягиваем, чтобы высота колонки timeline совпадала с why-list */
  max-width: 1200px;
  margin: 120px auto 0;
}
.why-list {
  flex: 1 1 320px;
  text-align: left;
}
.why-list h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.why-list ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}
.timeline {
  flex: 1 1 320px;
  border-left: 2px solid #7b6dff;
  padding-left: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; /* вертикальное центрирование пунктов */
}
.timeline-item {
  margin-bottom: 40px;
  position: relative;
}
.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #7b6dff;
  border-radius: 50%;
  position: absolute;
  left: -38px;
  top: 4px;
}
.timeline-item h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.timeline-item p {
  font-size: 1rem;
  color: #ddd;
}

/* Unique Section */
.unique-section {
  max-width: 1200px;
  margin: 120px auto 0;
  text-align: center;
}
.unique-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background-color: #111;
  padding: 30px 20px;
  border-radius: 20px;
  flex: 1 1 260px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.card p {
  font-size: 1rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text h2 {
    font-size: 1.3rem;
  }
  .why-section {
    margin-top: 80px;
  }
  .unique-section {
    margin-top: 80px;
  }
}

/* ===== Telegram News Feed ===== */
.telegram-feed {
  /* расширяем контейнер на всю доступную ширину */
  max-width: none;
  width: 100%;
  direction: ltr; /* колонки формируются слева направо */
}

/* убираем ненужное переопределение для детей */
.telegram-feed > * {
  direction: initial;
}

.home-page .home-main {
  min-height: calc(100vh); /* умеренное пространство для градиента */
  position: relative;
}

/* ===== News Page Spacing ===== */
.news-section h1 {
  margin-bottom: 40px; /* Отступ после заголовка «Новости» */
}

/* Отступы между постами Telegram-ленты */
#tg-feed > * + * {
  margin-top: 0;
}

/* ===== News Page Side Padding ===== */
.news-section {
  padding-left: 72px;
  padding-right: 72px;
}
@media (min-width: 1200px) {
  .news-section {
    padding-left: 96px;
    padding-right: 96px;
  }
}

/* ===== Switch Telegram Feed to Grid for horizontal ordering ===== */
.telegram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  grid-auto-rows: 10px; /* базовая высота строки для расчёта masonry */
  grid-auto-flow: dense;
}
/* убираем прежний margin между элементами, т.к. gap уже учитывает */
.telegram-feed > * {
  margin: 0;
}

/* На мобильных: одна колонка */
@media (max-width: 640px) {
  .telegram-feed {
    column-width: 100%;
  }
}

/* Удаляем старые медиа-правила для column-count */
@media (max-width: 1024px) {
  /* отключено */
}
@media (max-width: 640px) {
  /* отключено */
}

/* Снова убираем внутренние margin, которые могли сбиться ранее */
#tg-feed > * + * {
  margin-top: 0;
}

.telegram-feed {
  gap: 28px; /* умеренный отступ между постами */
}

/* доп. внутренние отступы по бокам карточек */
.telegram-feed iframe,
.telegram-feed .telegram-post,
.telegram-feed div[data-telegram-post] {
  padding-left: 6px;
  padding-right: 6px;
}

.colorful-gradient {
  background: linear-gradient(
    45deg,
    #ff0075,
    #ff8c00,
    #ffe600,
    #00e0ff,
    #7b6dff,
    #ff0075
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

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

/* Footer documentation & legal links */
.footer-links {
  margin-top: 8px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 4px;
}
.footer-links a:hover {
  color: #fff;
}
.separator {
  margin: 0 4px;
  color: #555;
}

/* ===== Coming Soon Section Styles ===== */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}
.coming-soon h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}
.coming-soon p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 640px;
  animation: fadeInUp 1s ease;
}
.coming-soon .cta-btn {
  margin-top: 30px;
}

/* ===== Summary Section (About Page) ===== */
.summary-section {
  max-width: 800px;
  margin: 100px auto 120px;
  text-align: center;
}
.summary-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.summary-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 32px;
}
/* keep .cta-btn global styles */

/* ===== PREMIUM PAGE ===== */
.premium-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 120px 40px;
  background: linear-gradient(180deg, #000 0%, #120021 100%);
}
.premium-hero .hero-content {
  flex: 1 1 380px;
  max-width: 540px;
  text-align: left;
  color: #fff;
}
.premium-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
.premium-hero h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #ccc;
}
.premium-hero .hero-illustration {
  flex: 1 1 300px;
  text-align: center;
}
.premium-hero .hero-illustration img {
  max-width: 440px;
  width: 100%;
  height: auto;
  animation: fadeInUp 1s ease;
}

/* Comparison */
.premium-comparison {
  padding: 120px 24px;
  display: flex;
  justify-content: center;
}
.comparison-card {
  background: #111;
  border-radius: 24px;
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}
.comparison-card .card-header {
  font-size: 1.6rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.premium-badge {
  width: 32px;
  height: 32px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table th,
.comparison-table td {
  padding: 12px 8px;
  text-align: center;
}
.comparison-table th {
  background: #181818;
  color: #fff;
}
.comparison-table tbody tr:nth-child(odd) {
  background: #151515;
}
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #ddd;
}

@media (max-width: 640px) {
  .comparison-table thead {
    display: none;
  }
  .comparison-table tr {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid #222;
  }
  .comparison-table td {
    display: block;
    text-align: right;
  }
  .comparison-table td:first-child {
    order: -1;
    text-align: left;
    font-weight: 600;
    color: #fff;
  }
}

/* Limitations */
.free-limitations {
  max-width: 1000px;
  margin: 120px auto;
  padding: 0 24px;
  text-align: center;
}
.free-limitations h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}
.limitations-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.limitations-list li {
  background: #111;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #ddd;
  transition: transform 0.3s;
}
.limitations-list li:hover {
  transform: translateY(-4px);
}
.limitations-list img {
  width: 32px;
  height: 32px;
}

/* Banner */
.premium-banner {
  margin: 120px 0 140px;
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(135deg, #22004a 0%, #3d08a0 100%);
}
.premium-banner h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.premium-banner p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #ddd;
}

@media (max-width: 768px) {
  .premium-hero {
    padding: 80px 20px;
  }
  .premium-hero h1 {
    font-size: 2.2rem;
  }
  .premium-hero h2 {
    font-size: 1.2rem;
  }
  .premium-banner {
    padding: 80px 20px;
  }
  .premium-banner h2 {
    font-size: 2rem;
  }
}
