/* =================================================
   FUTURES SIGNALS PAGE - UNIQUE STYLES
   ================================================= */

/* ============================================
   SECTION: Content Sections Spacing
   ============================================ */
.content-section {
  padding: 4rem 0;
}

.content-section:first-of-type {
  padding-top: 2rem;
}

.content-section+.content-section {
  padding-top: 4rem;
}

.section--alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
  position: relative;
}

.section--alt-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(94, 114, 228, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(94, 114, 228, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================
   SECTION: SEO Intro
   ============================================ */
.section-intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 500;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.08), rgba(94, 114, 228, 0.03));
  border-left: 4px solid #5e72e4;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(94, 114, 228, 0.1);
}

.section-intro-text::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

/* ============================================
   SECTION: Section Titles and Descriptions
   ============================================ */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5e72e4, #7c3aed);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.section-note {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: rgba(94, 114, 228, 0.05);
  border-left: 3px solid #5e72e4;
  border-radius: 8px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================
   SECTION: Mechanics Grid
   ============================================ */
.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.mechanics-card {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.6), rgba(15, 20, 25, 0.4));
  border: 2px solid rgba(94, 114, 228, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mechanics-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5e72e4, #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mechanics-card:hover::before {
  transform: scaleX(1);
}

.mechanics-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #5e72e4;
  box-shadow: 0 16px 48px rgba(94, 114, 228, 0.25), 0 0 0 1px rgba(94, 114, 228, 0.1);
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.8), rgba(15, 20, 25, 0.6));
}

.mechanics-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.mechanics-card__icon {
  font-size: 2.25rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.2), rgba(94, 114, 228, 0.08));
  border: 2px solid rgba(94, 114, 228, 0.3);
  border-radius: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mechanics-card:hover .mechanics-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.3), rgba(94, 114, 228, 0.15));
}

.mechanics-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.mechanics-card__text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ============================================
   SECTION: Exchange Comparison
   ============================================ */
.exchange-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin: 3.5rem 0;
}

.exchange-block {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.7) 0%, rgba(15, 20, 25, 0.5) 100%);
  border: 2px solid rgba(94, 114, 228, 0.2);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.exchange-block::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.exchange-block:hover::after {
  transform: translate(-30%, 30%) scale(1.5);
}

.exchange-block:hover {
  border-color: #5e72e4;
  box-shadow: 0 20px 60px rgba(94, 114, 228, 0.2), 0 0 0 1px rgba(94, 114, 228, 0.15);
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.85) 0%, rgba(15, 20, 25, 0.7) 100%);
}

.exchange-block__header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(94, 114, 228, 0.3);
  position: relative;
}

.exchange-block__header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #5e72e4, transparent);
}

.exchange-block__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: -0.5px;
}

.exchange-block__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.exchange-block__list li {
  padding: 1rem 0;
  padding-left: 2.25rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.exchange-block__list li:last-child {
  border-bottom: none;
}

.exchange-block__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5e72e4;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.exchange-block:hover .exchange-block__list li {
  padding-left: 2.5rem;
  color: var(--text-primary);
}

.exchange-block:hover .exchange-block__list li::before {
  transform: scale(1.2);
}

.exchange-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5e72e4;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #5e72e4;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.exchange-block__link:hover {
  background: #5e72e4;
  color: white;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(94, 114, 228, 0.3);
}

/* ============================================
   SECTION: Telegram Block
   ============================================ */
.telegram-block {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.12) 0%, rgba(94, 114, 228, 0.04) 100%);
  border: 2px solid #5e72e4;
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(94, 114, 228, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.telegram-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.telegram-block__icon {
  font-size: 4rem;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(94, 114, 228, 0.3), 0 0 0 4px rgba(94, 114, 228, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.telegram-block:hover .telegram-block__icon {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(94, 114, 228, 0.4), 0 0 0 6px rgba(94, 114, 228, 0.3);
}

.telegram-block__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.telegram-block__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.telegram-block__text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.telegram-block__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5e72e4;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
  background: rgba(94, 114, 228, 0.1);
  border: 2px solid #5e72e4;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.telegram-block__link:hover {
  background: #5e72e4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 114, 228, 0.4);
}

@media (max-width: 768px) {
  .telegram-block {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2.5rem 2rem;
  }

  .telegram-block__icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}

/* ============================================
   SECTION: Approach Cards (Tariffs)
   ============================================ */
.approach-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.approach-card {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.75), rgba(15, 20, 25, 0.5));
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #5e72e4, #7c3aed);
}

.approach-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  opacity: 0;
}

.approach-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.approach-card--primary::before {
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.approach-card--premium::before {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.approach-card--vip::before {
  background: linear-gradient(90deg, #5e72e4, #3b82f6);
}

.approach-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.9), rgba(15, 20, 25, 0.7));
}

.approach-card--primary:hover {
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 24px 64px rgba(59, 130, 246, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.approach-card--premium:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 24px 64px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.3);
}

.approach-card--vip:hover {
  border-color: rgba(94, 114, 228, 0.4);
  box-shadow: 0 24px 64px rgba(94, 114, 228, 0.25), 0 0 0 1px rgba(94, 114, 228, 0.3);
}

.approach-card__label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #5e72e4;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.approach-card--primary .approach-card__label {
  color: #3b82f6;
}

.approach-card--premium .approach-card__label {
  color: #8b5cf6;
}

.approach-card--vip .approach-card__label {
  color: #5e72e4;
}

.approach-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2rem 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.approach-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.approach-card__features li {
  padding: 1rem 0;
  padding-left: 2.25rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.approach-card__features li:last-child {
  border-bottom: none;
}

.approach-card__features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #5e72e4;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.approach-card:hover .approach-card__features li {
  padding-left: 2.5rem;
  color: var(--text-primary);
}

.approach-card:hover .approach-card__features li::before {
  transform: translateX(4px);
}

.approach-card--primary .approach-card__features li::before {
  color: #3b82f6;
}

.approach-card--premium .approach-card__features li::before {
  color: #8b5cf6;
}

.approach-card--vip .approach-card__features li::before {
  color: #5e72e4;
}

.approach-card__button {
  display: block;
  width: 100%;
  padding: 1.125rem 2rem;
  background: #5e72e4;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.approach-card--primary .approach-card__button {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.approach-card--premium .approach-card__button {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.approach-card--vip .approach-card__button {
  background: linear-gradient(135deg, #5e72e4, #3b82f6);
}

.approach-card__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(94, 114, 228, 0.4);
}

.approach-card--primary .approach-card__button:hover {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.approach-card--premium .approach-card__button:hover {
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.approach-card--vip .approach-card__button:hover {
  box-shadow: 0 12px 32px rgba(94, 114, 228, 0.4);
}

/* ============================================
   SECTION: Principles List
   ============================================ */
.principles-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3rem 0;
}

.principle-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(15, 20, 25, 0.5));
  border: 2px solid rgba(94, 114, 228, 0.15);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.principle-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #5e72e4, #7c3aed);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.principle-item:hover::before {
  transform: scaleY(1);
}

.principle-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}

.principle-item:hover::after {
  right: -20px;
  opacity: 1;
}

.principle-item:hover {
  border-color: #5e72e4;
  box-shadow: 0 16px 48px rgba(94, 114, 228, 0.2), 0 0 0 1px rgba(94, 114, 228, 0.15);
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.85), rgba(15, 20, 25, 0.7));
}

.principle-item__number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #5e72e4, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: linear-gradient(135deg, rgba(94, 114, 228, 0.15), rgba(94, 114, 228, 0.05));
  border-radius: 24px;
  border: 2px solid rgba(94, 114, 228, 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.principle-item:hover .principle-item__number {
  transform: scale(1.1) rotate(-5deg);
  border-color: #5e72e4;
  box-shadow: 0 8px 24px rgba(94, 114, 228, 0.3);
}

.principle-item__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.principle-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.principle-item__text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 1.0625rem;
}

@media (max-width: 768px) {
  .principle-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem;
  }

  .principle-item__number {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
}

/* ============================================
   SECTION: Section Summary
   ============================================ */
.section-summary {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.08), rgba(94, 114, 228, 0.03));
  border-left: 5px solid #5e72e4;
  border-radius: 16px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(94, 114, 228, 0.1);
}

.section-summary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

/* ============================================
   SECTION: Results Grid
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.result-metric {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.75), rgba(15, 20, 25, 0.5));
  border: 2px solid rgba(94, 114, 228, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.result-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5e72e4, #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.result-metric:hover::before {
  transform: scaleX(1);
}

.result-metric::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.5s ease;
}

.result-metric:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.result-metric:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #5e72e4;
  box-shadow: 0 20px 60px rgba(94, 114, 228, 0.25), 0 0 0 1px rgba(94, 114, 228, 0.2);
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.9), rgba(15, 20, 25, 0.7));
}

.result-metric__value {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #5e72e4, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(94, 114, 228, 0.3);
}

.result-metric__label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.result-metric__note {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION: Disclaimer Box
   ============================================ */
.disclaimer-box {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.05));
  border: 2px solid #ef4444;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(239, 68, 68, 0.15);
}

.disclaimer-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.disclaimer-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #dc2626;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}

.disclaimer-box p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION: Reviews Grid
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.review-card {
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.7), rgba(15, 20, 25, 0.5));
  border: 2px solid rgba(94, 114, 228, 0.15);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(94, 114, 228, 0.08);
  line-height: 1;
  font-family: Georgia, serif;
  z-index: 0;
}

.review-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(94, 114, 228, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.review-card:hover::after {
  transform: scale(1.5);
  bottom: -30px;
  left: -30px;
}

.review-card:hover {
  border-color: #5e72e4;
  box-shadow: 0 16px 48px rgba(94, 114, 228, 0.2), 0 0 0 1px rgba(94, 114, 228, 0.15);
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.85), rgba(15, 20, 25, 0.7));
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(94, 114, 228, 0.2);
  position: relative;
  z-index: 1;
}

.reviewer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.3px;
}

.review-card__rating {
  font-size: 1.125rem;
  color: #f59e0b;
  display: flex;
  gap: 2px;
}

.review-card__text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 1.25rem 0;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.review-card__date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION: FAQ
   ============================================ */
.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-dark-secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(94, 114, 228, 0.1);
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-blue);
  font-weight: 300;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  padding: 1rem 0;
}

/* ============================================
   RESPONSIVE: Mobile Adjustments
   ============================================ */
@media (max-width: 768px) {
  .content-section {
    padding: 3rem 0;
  }

  .section-intro-text {
    padding: 1.5rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .mechanics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .mechanics-card {
    padding: 1.75rem;
  }

  .mechanics-card__icon {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }

  .exchange-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
  }

  .exchange-block {
    padding: 2rem;
  }

  .exchange-block__title {
    font-size: 1.5rem;
  }

  .approach-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
  }

  .approach-card {
    padding: 2rem;
  }

  .approach-card__title {
    font-size: 1.75rem;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .result-metric {
    padding: 1.75rem 1.25rem;
  }

  .result-metric__value {
    font-size: 2.75rem;
  }

  .result-metric__label {
    font-size: 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .review-card {
    padding: 1.75rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.0625rem;
  }

  .faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
  }

  .principles-list {
    gap: 1.75rem;
  }

  .disclaimer-box {
    padding: 1.75rem;
    margin-top: 3rem;
  }

  .section-summary {
    padding: 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 2.5rem 0;
  }

  .section-intro-text {
    padding: 1.25rem;
    font-size: 0.9375rem;
  }

  .mechanics-card {
    padding: 1.5rem;
  }

  .mechanics-card__title {
    font-size: 1.0625rem;
  }

  .exchange-block {
    padding: 1.5rem;
  }

  .exchange-block__title {
    font-size: 1.375rem;
  }

  .telegram-block {
    padding: 1.75rem 1.25rem;
  }

  .telegram-block__icon {
    width: 64px;
    height: 64px;
    font-size: 2.5rem;
  }

  .telegram-block__title {
    font-size: 1.375rem;
  }

  .approach-card {
    padding: 1.75rem;
  }

  .approach-card__title {
    font-size: 1.5rem;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .result-metric {
    padding: 1.5rem;
  }

  .result-metric__value {
    font-size: 2.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .reviewer-name {
    font-size: 1.0625rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1rem;
  }

  .principle-item {
    padding: 1.5rem;
  }

  .principle-item__title {
    font-size: 1.25rem;
  }

  .disclaimer-box {
    padding: 1.5rem;
  }

  .disclaimer-box__title {
    font-size: 1.125rem;
  }

  .section-summary {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

/* ============================================
   LEAD FORM SECTION - Footer Spacing
   ============================================ */
.lead-form-section {
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .lead-form-section {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .lead-form-section {
    margin-bottom: 2rem;
  }
}