/* ===== HOME PAGE STYLES ===== */
/* Стили для домашней страницы */

/* Оптимизация производительности для мобильных устройств */
@media (max-width: 768px) {
  * { -webkit-tap-highlight-color: transparent; }
  .feature-card, .seo-card, .bonus-item { will-change: auto; }
  .float-item, .feature-icon-modern .icon-bg, .bonus-icon { animation: none; }
}

/* Hero Section */
.hero { padding: 64px 24px; text-align: center; margin-bottom: 24px; }
.neon { font-size: 44px; line-height: 1.1; letter-spacing: .5px; background: linear-gradient(135deg,#fff 0%,#C8FE00 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; }
.lead { color: #CCCCCC; font-size: 18px; margin-bottom: 16px; }

/* Features */
.cards { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  width: 100%;
  margin-top: 40px;
}

.feature { 
  padding: 24px; 
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Glass effect */
.glass {
  background: linear-gradient(135deg,rgba(255,255,255,0.1),rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3),inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4),0 0 20px rgba(200,254,0,0.2),inset 0 1px 0 rgba(255,255,255,0.3);
  border-color: rgba(200,254,0,0.3);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(200,254,0,0.3));
  animation: float 3s ease-in-out infinite;
}

.feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  background: linear-gradient(135deg,#fff 0%,#C8FE00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature p {
  color: #CCCCCC;
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 14px;
}

.feature-visual {
  margin-top: 20px;
  padding: 16px;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  border: 1px solid rgba(200,254,0,0.2);
}

/* Time saver animation */
.time-saver-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 24px;
}

.clock {
  animation: tick 2s ease-in-out infinite;
}

.arrow {
  color: #C8FE00;
  font-size: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.checkmark {
  animation: bounce 2s ease-in-out infinite;
}

/* Automation flow animation */
.automation-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
}

.gear {
  animation: rotate 3s linear infinite;
}

.dots {
  color: #C8FE00;
  font-size: 16px;
  animation: blink 1s ease-in-out infinite;
}

.result {
  animation: scale 2s ease-in-out infinite;
}

/* Search animation */
.search-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
}

.warehouse {
  animation: shake 2s ease-in-out infinite;
}

.search-icon {
  color: #C8FE00;
  animation: search 2s ease-in-out infinite;
}

.success {
  animation: glow 2s ease-in-out infinite;
}

/* Animations */

@keyframes tick { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(15deg); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.1); } }
@keyframes bounce { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-5px); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scale { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes shake { 0%,100% { transform: translateX(0px); } 25% { transform: translateX(-2px); } 75% { transform: translateX(2px); } }
@keyframes search { 0%,100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(10deg); } }
@keyframes glow { 0%,100% { filter: drop-shadow(0 0 5px rgba(200,254,0,0.5)); transform: scale(1); } 50% { filter: drop-shadow(0 0 15px rgba(200,254,0,0.8)); transform: scale(1.1); } }

/* ===== MODERN HOME PAGE STYLES ===== */

/* Hero Section - Modern Design */
.hero-modern {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px 20px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.badge-text {
  background: linear-gradient(135deg,rgba(200,254,0,0.1),rgba(200,254,0,0.05));
  border: 1px solid rgba(200,254,0,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #C8FE00;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(200,254,0,0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
  display: block;
  color: #FFFFFF;
  font-weight: 300;
  margin-bottom: 8px;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg,#C8FE00 0%,#fff 50%,#C8FE00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 0 30px rgba(200,254,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #CCCCCC;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg,#C8FE00 0%,#A8E000 100%);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 32px rgba(200,254,0,0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

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

.btn-modern:hover::before {
  left: 100%;
}

.btn-modern:hover {
  box-shadow: 0 12px 40px rgba(200,254,0,0.4);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
  /* Убрана анимация перемещения */
}


/* Features Section - Modern Cards */
.features-modern {
  padding: 80px 20px;
  position: relative;
}

/* Мобильная версия features секции */
@media (max-width: 768px) {
  .features-modern { padding: 50px 0 60px 0; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.feature-card {
  background: linear-gradient(135deg,rgba(255,255,255,0.06) 0%,rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center !important;
  will-change: transform;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.03),transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

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

.feature-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.card-header {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
}

.feature-icon-modern {
  display: inline-block;
  position: relative;
}

.icon-bg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,rgba(255,255,255,0.08) 0%,rgba(255,255,255,0.03) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.telegram-icon svg {
  width: 47px;
  height: 47px;
  color: #0088cc;
}

.feature-card:hover .icon-bg {
  background: linear-gradient(135deg,rgba(255,255,255,0.12) 0%,rgba(255,255,255,0.06) 100%);
  border-color: rgba(255,255,255,0.2);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.card-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle,rgba(200,254,0,0.1),transparent 70%);
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.card-content {
  text-align: center !important;
  flex: 1;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-align: center !important;
  line-height: 1.4;
}

.card-description {
  color: #CCCCCC;
  line-height: 1.6;
  font-size: 15px;
  text-align: center !important;
  font-weight: 400;
}

.card-visual {
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 20px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center !important;
  margin-top: auto;
}

.visual-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.flow-item {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flow-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.flow-label {
  font-size: 12px;
  color: #AAAAAA;
  font-weight: 500;
}

.flow-arrow, .flow-dots, .flow-search {
  font-size: 18px;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Specific center alignment for card elements */
.feature-card h3,
.feature-card p,
.feature-card .card-title,
.feature-card .card-description {
  text-align: center !important;
}

/* Additional Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


@keyframes pulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-modern { min-height: 50vh; padding: 40px 16px 30px 16px; }
  .hero-title { font-size: clamp(1.75rem,7.5vw,2.5rem); line-height: 1.1; margin-bottom: 20px; }
  .title-line { margin-bottom: 4px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 32px; line-height: 1.4; }
  .btn-modern { padding: 21px 42px; font-size: 22px; width: 100%; max-width: 420px; justify-content: center; }
  .features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
  .feature-card { padding: 24px 20px; margin: 0; transition: none; border-radius: 16px; }
  .feature-card:hover { transform: none; }
  .card-content { text-align: center; }
  .card-title { text-align: center; font-size: 1.2rem; margin-bottom: 12px; line-height: 1.3; }
  .card-description { text-align: center; font-size: 14px; line-height: 1.5; }
  .visual-flow { flex-direction: column; gap: 8px; padding: 12px; }
  .flow-item { flex-direction: row; gap: 6px; justify-content: center; }
  .flow-arrow, .flow-dots, .flow-search { transform: rotate(90deg); animation: none; font-size: 14px; }
  .flow-icon { font-size: 16px; }
  .flow-label { font-size: 10px; }
  .icon-bg { width: 48px; height: 48px; font-size: 20px; border-radius: 10px; }
  .card-visual { display: none; }
  .seo-content { padding: 50px 16px; }
  .seo-grid { grid-template-columns: 1fr; gap: 20px; }
  .seo-card { padding: 20px; }
  .seo-title { font-size: clamp(1.5rem,6vw,1.8rem); margin-bottom: 30px; line-height: 1.3; }
  .seo-card-title { font-size: 1.2rem; margin-bottom: 12px; }
  .seo-list-item { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
  .bonus-section { padding: 50px 16px; }
  .bonus-card { padding: 30px 20px; border-radius: 20px; }
  .bonus-header { margin-bottom: 30px; }
  .bonus-icon { font-size: 3rem; margin-bottom: 16px; }
  .bonus-title { font-size: clamp(1.5rem,6vw,1.8rem); margin-bottom: 12px; line-height: 1.2; }
  .bonus-subtitle { font-size: 1rem; line-height: 1.4; }
  .bonus-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .bonus-item { padding: 20px 16px; border-radius: 16px; }
  .bonus-item-icon { font-size: 2.5rem; margin-bottom: 16px; }
  .bonus-item-title { font-size: 1.2rem; margin-bottom: 8px; }
  .bonus-item-description { font-size: 14px; line-height: 1.4; }
  .bonus-button { padding: 16px 32px; font-size: 16px; width: 100%; max-width: 280px; }
  .bonus-note { font-size: 13px; margin-top: 16px; }
}

/* SEO Content Section - Unique Classes */
.seo-content {
  padding: 80px 20px;
  position: relative;
  background: linear-gradient(135deg,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.05) 50%,rgba(0,0,0,0.1) 100%);
  border-top: 1px solid rgba(255,215,0,0.1);
  border-bottom: 1px solid rgba(255,215,0,0.1);
}

.seo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.seo-title {
  font-size: clamp(1.8rem,4vw,2.2rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg,#fff 0%,#FFD700 50%,#fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(255,215,0,0.2);
  position: relative;
}

.seo-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 1px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.seo-card {
  background: linear-gradient(135deg,rgba(255,255,255,0.08),rgba(255,255,255,0.04));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center !important;
  will-change: transform;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15), 0 0 15px rgba(255,215,0,0.1);
  min-height: 80px;
}

.collapsible-card {
  cursor: default;
}

.seo-card-header {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,215,0,0.1);
  position: relative;
}

.seo-card-header:hover {
  background: rgba(255,215,0,0.02);
  border-color: rgba(255,215,0,0.15);
}


.seo-card-content {
  display: none;
  padding: 24px 28px;
  animation: slideDown 0.3s ease;
}

.seo-card.expanded .seo-card-content {
  display: block;
}

.expand-icon {
  font-size: 18px;
  font-weight: bold;
  color: #FFD700;
  transition: all 0.3s ease;
  user-select: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  border: 2px solid rgba(255,215,0,0.3);
  box-shadow: 0 2px 8px rgba(255,215,0,0.2);
}

.seo-card-header:hover .expand-icon {
  background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.1));
  border-color: rgba(255,215,0,0.4);
  box-shadow: 0 3px 8px rgba(255,215,0,0.2);
  transform: scale(1.02);
}

.seo-card.expanded .expand-icon {
  background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,215,0,0.2));
  border-color: rgba(255,215,0,0.6);
  box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

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

.seo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,215,0,0.03),transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

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

.seo-card:hover {
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15),0 0 12px rgba(255,215,0,0.08);
}

.seo-card.expanded {
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2),0 0 20px rgba(255,215,0,0.15);
}

.seo-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  background: linear-gradient(135deg,#fff 0%,#FFD700 50%,#fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: left !important;
}

.seo-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  text-align: center !important;
}

.seo-list-item {
  color: #DDDDDD;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 15px;
  text-align: center !important;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.seo-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 14px;
  filter: drop-shadow(0 0 3px rgba(255,215,0,0.3));
}

.seo-list ol {
  counter-reset: seo-list-counter;
}

.seo-list ol li {
  counter-increment: seo-list-counter;
}

.seo-list ol li::before {
  content: counter(seo-list-counter) '.';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 14px;
  filter: drop-shadow(0 0 3px rgba(255,215,0,0.3));
}

/* Responsive SEO Content */
@media (max-width: 768px) {
  .seo-content { padding: 50px 16px; }
  .seo-grid { grid-template-columns: 1fr; gap: 20px; }
  .seo-card { border-radius: 12px; min-height: 70px; }
  .seo-card-header { padding: 20px; }
  .seo-card-header::after { display: none; }
  .seo-card-content { padding: 20px; }
  .seo-title { font-size: clamp(1.5rem,6vw,1.8rem); margin-bottom: 30px; line-height: 1.3; }
  .seo-card-title { font-size: 1.1rem; }
  .seo-list-item { font-size: 14px; margin-bottom: 10px; line-height: 1.5; padding: 6px 0; }
  .expand-icon { font-size: 16px; width: 32px; height: 32px; }
}

/* Bonus Section Styles */
.bonus-section {
  padding: 80px 20px;
  position: relative;
}

.bonus-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bonus-card {
  background: linear-gradient(135deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  padding: 50px 35px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2),0 0 20px rgba(255,215,0,0.1),inset 0 1px 0 rgba(255,255,255,0.1);
  text-align: center;
}

.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,215,0,0.05),transparent);
  opacity: 0.3;
}

.bonus-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.bonus-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255,215,0,0.3));
}

.bonus-title {
  font-size: clamp(1.8rem,4vw,2.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  background: linear-gradient(135deg,#fff 0%,#FFD700 50%,#fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(255,215,0,0.2);
}

.bonus-subtitle {
  font-size: 1.2rem;
  color: #CCCCCC;
  margin: 0;
  line-height: 1.6;
}

.bonus-content {
  position: relative;
  z-index: 2;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 50px;
}

.bonus-item {
  background: linear-gradient(135deg,rgba(255,255,255,0.06),rgba(255,255,255,0.02));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.bonus-item:hover {
  border-color: rgba(255,215,0,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15),0 0 12px rgba(255,215,0,0.08);
}

.bonus-item-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.2));
}

.bonus-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  background: linear-gradient(135deg,#fff 0%,#FFD700 50%,#fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bonus-item-description {
  color: #CCCCCC;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.bonus-cta {
  text-align: center;
}

.bonus-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg,#FFD700 0%,#FFA500 100%);
  color: #000;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255,215,0,0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.bonus-button:hover::before {
  left: 100%;
}

.bonus-button:hover {
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

.bonus-button-icon {
  transition: transform 0.3s ease;
}

.bonus-button:hover .bonus-button-icon {
  /* Убрана анимация перемещения */
}

.bonus-note {
  color: #AAAAAA;
  font-size: 14px;
  margin: 0;
  font-style: italic;
}

/* Bonus Section Animations */
@keyframes bounce {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive Bonus Section */
@media (max-width: 768px) {
  .bonus-section { padding: 50px 16px; }
  .bonus-card { padding: 30px 20px; border-radius: 20px; }
  .bonus-header { margin-bottom: 30px; }
  .bonus-icon { font-size: 3rem; margin-bottom: 16px; }
  .bonus-title { font-size: clamp(1.5rem,6vw,1.8rem); margin-bottom: 12px; line-height: 1.2; }
  .bonus-subtitle { font-size: 1rem; line-height: 1.4; }
  .bonus-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 30px; }
  .bonus-item { padding: 20px 16px; border-radius: 16px; }
  .bonus-item-icon { font-size: 2.5rem; margin-bottom: 16px; }
  .bonus-item-title { font-size: 1.2rem; margin-bottom: 8px; }
  .bonus-item-description { font-size: 14px; line-height: 1.4; }
  .bonus-button { padding: 16px 32px; font-size: 16px; width: 100%; max-width: 280px; }
  .bonus-note { font-size: 13px; margin-top: 16px; }
}

/* Дополнительные медиа-запросы для очень маленьких экранов */
@media (max-width: 480px) {
  .hero-modern {
    min-height: 45vh;
    padding: 30px 12px 20px 12px;
  }
  
  .hero-title {
    font-size: clamp(1.4rem, 6.5vw, 2rem);
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .btn-modern {
    padding: 18px 36px;
    font-size: 21px;
    max-width: 390px;
  }
  
  .features-modern {
    padding: 40px 8px;
  }
  
  .features-grid {
    gap: 6px;
    padding: 0 8px;
  }
  
  .feature-card {
    padding: 8px;
  }
  
  .card-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  
  .card-description {
    font-size: 11px;
    line-height: 1.3;
  }
  
  .visual-flow {
    padding: 8px;
    gap: 6px;
  }
  
  .flow-icon {
    font-size: 14px;
  }
  
  .flow-label {
    font-size: 9px;
  }
  
  .icon-bg {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .seo-content {
    padding: 40px 12px;
  }
  
  .seo-card {
    padding: 16px;
  }
  
  .seo-title {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
  
  .bonus-section {
    padding: 40px 12px;
  }
  
  .bonus-card {
    padding: 24px 16px;
  }
  
  .bonus-title {
    font-size: clamp(1.3rem, 5vw, 1.5rem);
  }
  
  .bonus-item {
    padding: 16px 12px;
  }
  
  .bonus-button {
    padding: 14px 28px;
    font-size: 15px;
    max-width: 260px;
  }
}

/* Улучшения для touch-интерфейса */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover {
    transform: none;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(200, 254, 0, 0.1);
  }
  
  .seo-card:hover {
    transform: none;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(200, 254, 0, 0.1);
  }
  
  .bonus-item:hover {
    transform: none;
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(200, 254, 0, 0.1);
  }
  
  .btn-modern:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(200, 254, 0, 0.3);
  }
  
  .bonus-button:hover {
    transform: none;
    box-shadow: 0 10px 40px rgba(200, 254, 0, 0.4);
  }
}

/* Улучшения для landscape ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-modern {
    min-height: 40vh;
    padding: 20px 16px 15px 16px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .features-modern {
    padding: 40px 16px;
  }
  
  .seo-content {
    padding: 40px 16px;
  }
  
  .bonus-section {
    padding: 40px 16px;
  }
}

/* Улучшения accessibility для мобильных устройств */
@media (max-width: 768px) {
  .btn-modern,
  .bonus-button {
    min-height: 44px; /* Минимальный размер для touch-целей */
    min-width: 44px;
  }
  
  .feature-card,
  .seo-card,
  .bonus-item {
    min-height: 44px; /* Обеспечиваем достаточный размер для touch */
  }
  
  /* Улучшаем читаемость текста на мобильных */
  .card-description,
  .seo-list-item,
  .bonus-item-description {
    line-height: 1.6;
  }
  
  /* Увеличиваем контрастность для лучшей читаемости */
  .card-title,
  .seo-card-title,
  .bonus-item-title {
    font-weight: 600;
  }
}

/* News Section Styles */
.news-section {
  padding: 40px 20px;
  position: relative;
  background: linear-gradient(135deg,rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.02) 50%,rgba(0,0,0,0.05) 100%);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Instructions Section Styles */
.instructions-section {
  padding: 40px 20px;
  position: relative;
  background: linear-gradient(135deg,rgba(0,0,0,0.1) 0%,rgba(0,0,0,0.05) 50%,rgba(0,0,0,0.1) 100%);
  border-top: 1px solid rgba(255,215,0,0.1);
  border-bottom: 1px solid rgba(255,215,0,0.1);
}

.instructions-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Import news styles for landing */
.news-section .news-block,
.instructions-section .news-instructions-block {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.news-section .news-block-header,
.instructions-section .news-block-header {
  text-align: center;
  margin-bottom: 24px;
}

.news-section .news-block-title h2,
.instructions-section .news-block-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 600;
  background: linear-gradient(135deg,#fff 0%,#C8FE00 50%,#fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(200,254,0,0.2);
  margin-bottom: 20px;
}

.news-section .news-compact-action-button,
.instructions-section .news-compact-action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg,rgba(200,254,0,0.1),rgba(200,254,0,0.05));
  border: 1px solid rgba(200,254,0,0.3);
  border-radius: 8px;
  color: #C8FE00;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.news-section .news-compact-action-button:hover,
.instructions-section .news-compact-action-button:hover {
  background: linear-gradient(135deg,rgba(200,254,0,0.2),rgba(200,254,0,0.1));
  border-color: rgba(200,254,0,0.5);
  box-shadow: 0 4px 12px rgba(200,254,0,0.2);
}

/* Responsive News and Instructions Sections */
@media (max-width: 768px) {
  .news-section,
  .instructions-section {
    padding: 30px 16px;
  }
  
  .news-container,
  .instructions-container {
    max-width: 100%;
  }
  
  .news-section .news-block-header,
  .instructions-section .news-block-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .news-section,
  .instructions-section {
    padding: 24px 12px;
  }
  
  .news-section .news-block-header,
  .instructions-section .news-block-header {
    margin-bottom: 16px;
  }
}
