:root {
  --bg-dark: #0d0d0d;
  --bg-card: #161616;
  --gold: #c9a84c;
  --gold-hover: #b8973d;
  --text-primary: #f0ece4;
  --text-muted: #8a8680;
  --border-color: #2a2520;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--gold);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: var(--bg-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--gold-hover);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--bg-dark);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}

.mobile-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-image: url('./images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.6) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

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

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background-color: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

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

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

.image-content img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
}

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.text-content ul {
  list-style: none;
  margin-top: 24px;
}

.text-content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.text-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.program-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
}

.form-section {
  background-color: var(--bg-card);
  padding: 80px 0;
}

.lead-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-dark);
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 14px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.lead-form .btn {
  width: 100%;
  margin-top: 16px;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.form-group.error .form-control {
  border-color: #ff6b6b;
}

.form-group.error .error-message {
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  cursor: pointer;
}

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

.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

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

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

.cta-section {
  text-align: center;
  padding: 120px 0;
  background-image: linear-gradient(to top, rgba(201, 168, 76, 0.05), transparent);
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

footer {
  background-color: var(--bg-dark);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-header {
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.content-section {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin: 40px 0 24px;
  color: var(--gold);
}

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

.content-section ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-muted);
}

.content-section li {
  margin-bottom: 8px;
}

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

.success-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-card);
  border-top: 1px solid var(--gold);
  padding: 24px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

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

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