*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #e85d04;
  --color-primary-dark: #c44d00;
  --color-bg: #0f1419;
  --color-bg-card: #1a2332;
  --color-bg-light: #f4f6f8;
  --color-text: #1a1a2e;
  --color-text-muted: #5a6270;
  --color-white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg-light);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background: var(--color-bg);
  color: var(--color-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo strong {
  display: block;
  font-size: 1rem;
}

.logo span {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--color-white);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-bg) 0%, #1e2a3a 100%);
  color: var(--color-white);
  padding: 4rem 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  color: #b0b8c4;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card h2 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.hero__card ul {
  list-style: none;
}

.hero__card li {
  margin-bottom: 1.25rem;
}

.hero__card li:last-child {
  margin-bottom: 0;
}

.hero__card span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.hero__card a {
  color: var(--color-white);
  text-decoration: none;
}

.hero__card a:hover {
  color: var(--color-primary);
}

.hero__card p {
  color: #d1d5db;
  font-size: 0.95rem;
}

/* Services */
.services {
  padding: 4rem 0;
}

.services h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Info section */
.info {
  padding: 4rem 0;
  background: var(--color-white);
}

.info h2 {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.info__subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid #e5e7eb;
}

.info-card h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-primary);
}

.info-card dl > div {
  margin-bottom: 1rem;
}

.info-card dl > div:last-child {
  margin-bottom: 0;
}

.info-card dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.info-card dd {
  font-size: 0.95rem;
  font-weight: 500;
}

.info-card dd ul {
  list-style: none;
  padding: 0;
}

.info-card dd li {
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.info-card dd li:last-child {
  margin-bottom: 0;
}

.info-card a {
  color: var(--color-primary);
  text-decoration: none;
}

.info-card a:hover {
  text-decoration: underline;
}

.status {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status--active {
  background: #dcfce7;
  color: #166534;
}

/* Footer */
.footer {
  background: var(--color-bg);
  color: #9ca3af;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer__inner p + p {
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .info__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header__inner {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 2.5rem 0;
  }
}
