:root {
  --primary: #c9933f;
  --secondary: #1a1a1a;
  --accent: #e63946;
  --light: #f8f9fa;
  --dark: #0f0f0f;
  --text: #333333;
  --bg: #ffffff;
  --transition: all 0.3s ease;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --container: 1100px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, .brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 18px 36px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(201, 147, 63, 0.3);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 147, 63, 0.4);
}

.btn-secondary {
  background: var(--secondary);
}

.btn-large {
  width: 100%;
  font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  animation: fadeIn 0.8s forwards;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/hero.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero .subheadline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero .urgency {
  font-size: 0.9rem;
  background: var(--accent);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 4px;
  margin-top: 20px;
}

/* Problem Section */
.problem {
  background: var(--light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* Modules Section */
.modules-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.module-item {
  border-left: 4px solid var(--primary);
  padding: 20px;
  background: #fff;
  transition: var(--transition);
}

.module-item:hover {
  background: #fdfaf5;
}

/* Bonuses */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.bonus-card {
  text-align: center;
  border: 2px dashed var(--primary);
  padding: 30px;
  position: relative;
}

.badge-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* CTA & Offer */
.pricing {
  text-align: center;
  background: var(--secondary);
  color: #fff;
  padding: 100px 0;
}

.pricing h2, .pricing h3 {
  color: #fff;
}

.price-tag {
  font-size: 4rem;
  color: var(--primary);
  margin: 20px 0;
}

.price-tag span {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 40px 0; }
  .price-tag { font-size: 3rem; }
}

/* Footer */
footer {
  background: #111;
  color: #888;
  padding: 60px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

footer .company-info {
  margin-bottom: 30px;
}
