@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600&family=Unbounded:wght@500;700;900&display=swap');

:root {
  --bg-dark: #120A16;
  --bg-card: #201126;
  --text-main: #FDF9FF;
  --text-muted: #D1C5D6;
  --accent-fuchsia: #E81A6F;
  --accent-coral: #FF5A5F;
  --accent-gradient: linear-gradient(135deg, var(--accent-fuchsia), var(--accent-coral));

  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Golos Text', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent-gradient);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 26, 111, 0.4);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 10, 22, 0.95) 0%, rgba(18, 10, 22, 0.6) 50%, rgba(18, 10, 22, 0.2) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 500;
}

.audience {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 60px;
  text-align: center;
}

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

.audience-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.audience-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent-coral);
}

.format {
  padding: 100px 0;
  background-color: var(--bg-card);
}

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

.format-content {
  flex: 1;
}

.format-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.format-list {
  list-style: none;
  margin-top: 32px;
}

.format-list li {
  margin-bottom: 24px;
  padding-left: 32px;
  position: relative;
}

.format-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-fuchsia);
  font-weight: bold;
}

.results {
  padding: 100px 0;
}

.results-flex {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 60px;
}

.results-content {
  flex: 1;
}

.results-image {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
}

.result-item {
  margin-bottom: 32px;
}

.result-item h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.result-item p {
  color: var(--text-muted);
}

.program {
  padding: 100px 0;
  background-color: var(--bg-card);
}

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

.program-card {
  background: var(--bg-dark);
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid var(--accent-fuchsia);
}

.program-card h4 {
  margin-bottom: 12px;
}

.program-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 16px;
}

.lead {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.lead-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-dark);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lead-container h2 {
  text-align: center;
  margin-bottom: 16px;
}

.lead-container p {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-fuchsia);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.checkbox-group input {
  margin-top: 6px;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkbox-group a {
  color: var(--accent-coral);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-error {
  color: var(--accent-coral);
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

footer {
  background-color: #0A050D;
  padding: 60px 0 40px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 20px;
  z-index: 1000;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-text {
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
}

.btn-outline {
  padding: 10px 20px;
  border: 1px solid var(--text-muted);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.btn-small {
  padding: 10px 20px;
  background: var(--accent-gradient);
  border-radius: 50px;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-content {
  max-width: 600px;
  padding: 40px;
  background: var(--bg-card);
  border-radius: 24px;
}

.success-content h1 {
  margin-bottom: 24px;
  color: var(--accent-coral);
}

.legal-page {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 40px;
}

.legal-content h2 {
  margin: 40px 0 20px;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.simple-nav {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.simple-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-link {
  color: var(--accent-coral);
  font-weight: 500;
}

@media (max-width: 768px) {
  .format-flex, .results-flex {
    flex-direction: column;
  }

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

  .hero {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}
