@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  --bg-color: #0a0a12;
  --bg-color-light: #161625;
  --text-color: #f0f0f5;
  --text-muted: #a0a0b5;
  --accent-gold: #d4a017;
  --accent-gold-hover: #e8b326;
  --accent-pink: #e0449a;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(to right, var(--text-color), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-gold);
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 5rem 0;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bg-color);
  background: var(--accent-gold);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 160, 23, 0.3);
}

.btn:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(212, 160, 23, 0.6);
}

.btn-pink {
  background: var(--accent-pink);
  color: white;
  box-shadow: 0 0 15px rgba(224, 68, 154, 0.3);
}

.btn-pink:hover {
  background: #f15cb0;
  box-shadow: 0 0 25px rgba(224, 68, 154, 0.6);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  background-color: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-color);
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--accent-pink);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 18, 0.3), rgba(10, 10, 18, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.benefits {
  background-color: var(--bg-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--bg-color-light);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 160, 23, 0.3);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--accent-pink);
  margin-bottom: 1.5rem;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

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

.split-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(224, 68, 154, 0.2), transparent);
  pointer-events: none;
}

.split-content {
  flex: 1;
}

.course-features {
  margin-top: 2rem;
}

.course-features li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.course-features li::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 2px;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--bg-color), var(--bg-color-light));
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--accent-gold);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  background: var(--bg-color-light);
  border-radius: 10px;
  padding: 1.5rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-pink);
}

.faq-answer {
  color: var(--text-muted);
}

.footer {
  background-color: var(--bg-color-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-page {
  padding-top: 150px;
  padding-bottom: 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-color-light);
  padding: 3rem;
  border-radius: 15px;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  color: var(--text-color);
}

.legal-content p, .legal-content ul {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.success-page {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/disco-vibe.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.success-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 18, 0.85);
}

.success-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 3rem;
  background: rgba(22, 22, 37, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(212, 160, 23, 0.3);
}

.success-content h1 {
  margin-bottom: 1rem;
}

.success-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(22, 22, 37, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.cookie-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

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

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

@media (max-width: 992px) {
  .split-section, .split-section.reverse {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 3rem 0;
  }

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