/* === RESET & VARIABLES === */
:root {
  --primary: #FFCC33;
  --secondary: #2F364E;
  --accent: #ED1925;
  --light-bg: #F8F9FA;
  --text-dark: #2F364E;
  --text-light: #6C757D;
  --border: #E9ECEF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* === HERO SECTION === */
.hero {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.07;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--secondary);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* === BENEFITS GRID === */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 204, 51, 0.15);
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.benefit-card ul {
  list-style: none;
  padding-left: 0;
}

.benefit-card li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.3rem;
  font-size: 1rem;
}

.benefit-card li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

/* === SUPPORT BLOCK === */
.support-block {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.support-block p {
  margin-bottom: 1rem;
}

.bot-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(47, 54, 78, 0.18);
  letter-spacing: -0.02em;
}

.bot-button:hover {
  background: #1a1f35;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 54, 78, 0.28);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .hero {
    padding: 1.8rem 1.2rem;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .bot-button {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
  }
}


/* === ELIGIBILITY SECTION === */
.eligibility {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  max-width: 700px;
}

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

.eligibility-card {
  border-radius: 16px;
  padding: 1.6rem;
  transition: all 0.3s ease;
}

.can {
  background: rgba(40, 167, 69, 0.06);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.cannot {
  background: rgba(237, 25, 37, 0.05);
  border: 1px solid rgba(237, 25, 37, 0.2);
}

.eligibility-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.eligibility-card ul {
  list-style: none;
  padding-left: 0;
}

.eligibility-card li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.3rem;
  font-size: 1rem;
}

/* Иконки вместо точек */
.can li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

.cannot li::before {
  content: "✗";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
}

.note-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.note-box strong {
  color: var(--secondary);
}

/* HOVER EFFECTS */
.eligibility-card.can:hover {
  border-color: #28a745;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

.eligibility-card.cannot:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(237, 25, 37, 0.1);
}

.content-card {
  background: white;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  margin-bottom: 2.5rem;
}

/* === STEPS PROCESS === */
.steps-process {
  margin: 2rem 0;
}

.step-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border);
}

.step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  background: var(--primary);
  color: var(--secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 204, 51, 0.3);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.step-content p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.step-content a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 600;
}

.step-content a:hover {
  color: var(--accent);
}

.mt-2 {
  margin-top: 2rem;
}

/* === REGISTRATION STEPS === */
.registration-steps {
  margin: 2rem 0;
}

/* CTA BUTTON */
.cta-block {
  text-align: center;
  padding-top: 1.8rem;
  border-top: 1px dashed var(--border);
  margin-top: 2rem;
}

.cta-block p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

/* === КНОПКА РЕГИСТРАЦИИ — ГАРАНТИРОВАННО РАБОТАЕТ === */
.register-button {
  display: inline-block !important;
  background: var(--secondary) !important;
  color: white !important;
  text-decoration: none !important;
  padding: 1rem 2.4rem !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(47, 54, 78, 0.25) !important;
  letter-spacing: -0.02em !important;
  text-align: center !important;
  line-height: 1.2 !important;
  border: none !important;
  cursor: pointer !important;
  max-width: 100% !important;
  word-break: break-word !important;
}

.register-button:hover {
  background: #1a1f35 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 9px 26px rgba(47, 54, 78, 0.35) !important;
}

/* Мобильная адаптация */
@media (max-width: 600px) {
  .register-button {
    width: 100% !important;
    padding: 1.1rem 1.5rem !important;
    font-size: 1.2rem !important;
  }
}

/* === TIPS GRID — УЛУЧШЕННЫЙ === */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin: 1.8rem 0;
}

.tip-category {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  transition: all 0.3s ease;
}

.tip-category:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(255, 204, 51, 0.1);
}

.tip-category h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.tip-category ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tip-category li {
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.3rem;
}

.tip-category li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 1.1rem;
}

/* ИКОНКИ (эмодзи) */
.tip-category h3::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 0.5rem;
  text-align: center;
  line-height: 1;
}

.tip-category h3[data-icon="🎒"]::before { content: "🎒"; }
.tip-category h3[data-icon="💧"]::before { content: "💧"; }
.tip-category h3[data-icon="📍"]::before { content: "📍"; }
.tip-category h3[data-icon="⚠️"]::before { content: "⚠️"; }

/* Мобильная адаптация */
@media (max-width: 600px) {
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .tip-category {
    padding: 1.4rem;
  }
}

.closing-content {
  padding: 2rem;
  text-align: center;
}

.closing-text {
  font-size: 1.15rem;
  margin: 1.5rem 0;
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* === HONEST INTRO === */
.honest-intro {
  padding: 1.8rem;
  background: rgba(47, 54, 78, 0.04);
  border-radius: 16px;
  border-left: 4px solid var(--secondary);
}

.honest-intro h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.honest-intro p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.02rem;
  color: var(--text-dark);
}

.honest-intro p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--accent);
}
