:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --white: #fafafa;
  --white-muted: #a0a0a0;
  --gold: #c9a84c;
  --gold-light: #e0c56a;
  --gold-dark: #a88a30;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  background: rgba(201, 168, 76, 0.05);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  max-width: 900px;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--white-muted);
  max-width: 560px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* === STATS BAR === */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* === PROBLEM === */
.problem {
  padding: 120px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.problem-list {
  list-style: none;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.problem-list .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* === FEATURES === */
.features {
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.feature-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === INDUSTRIES === */
.industries {
  padding: 120px 24px;
  background: var(--black-light);
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  margin-bottom: 72px;
}

.industries-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.industries-header p {
  color: var(--white-muted);
  margin-top: 16px;
  font-size: 1.1rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  background: var(--black);
  transition: border-color 0.3s;
}

.industry-card:hover {
  border-color: var(--gold);
}

.industry-card .ind-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.industry-card p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === PRICING === */
.pricing {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-header p {
  color: var(--white-muted);
  margin-top: 16px;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  background: var(--black-card);
  position: relative;
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08) 0%, var(--black-card) 100%);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 4px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-card .tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.price-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white-muted);
}

.price-card .price-desc {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-top: 8px;
  margin-bottom: 32px;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--white-muted);
}

.price-features .check {
  color: var(--gold);
  font-weight: 700;
}

/* === CLOSING === */
.closing {
  padding: 160px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.closing p {
  color: var(--white-muted);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 24px auto 0;
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

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

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-brand .gold {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-grid,
  .industry-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-bar {
    flex-direction: column;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 20px 60px;
  }

  .problem,
  .features,
  .pricing,
  .closing {
    padding: 80px 20px;
  }

  .industries {
    padding: 80px 20px;
  }
}