body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
}

* {
  box-sizing: border-box;
}

.site-wrapper {
  overflow-x: hidden;
}

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

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2a1a00, #000000);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.4);
  color: #fde68a;
  margin-bottom: 24px;
}

h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 28px;
}

.hero-text,
p {
  color: #d4d4d8;
  line-height: 1.7;
  font-size: 18px;
}

.button-group {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-button,
.secondary-button,
.outline-button,
.secondary-outline-button {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
}

.primary-button {
  background: #eab308;
  color: black;
}

.primary-button:hover {
  background: #facc15;
}

.outline-button {
  border: 1px solid #eab308;
  color: white;
}

.outline-button:hover {
  background: #eab308;
  color: black;
}

.secondary-button {
  background: black;
  color: white;
}

.secondary-button:hover {
  background: #18181b;
}

.secondary-outline-button {
  border: 1px solid black;
  color: black;
}

.secondary-outline-button:hover {
  background: black;
  color: white;
}

.small-text {
  margin-top: 18px;
  font-size: 14px;
  color: #a1a1aa;
}

.model-card,
.role-card {
  background: #111111;
  border: 1px solid #27272a;
  border-radius: 28px;
  padding: 30px;
}

.model-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.icon-box,
.role-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #eab308;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.model-grid {
  display: grid;
  gap: 16px;
}

.model-item {
  background: black;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #27272a;
}

.model-item strong {
  display: block;
  color: #fde047;
  margin-bottom: 6px;
}

.section {
  padding: 90px 0;
}

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

.dark-section {
  background: #111111;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

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

.role-card h4 {
  color: #fde047;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ca8a04, #facc15);
}

.cta-section h2,
.cta-section p {
  color: black;
}

@media (max-width: 900px) {
  .hero-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }
}