:root {
  --bg: #05070c;
  --panel: #0d1118;
  --panel-2: #121927;
  --text: #f5f7fb;
  --muted: #b5bcc8;
  --line: rgba(255,255,255,.08);
  --accent: #ff7a00;
  --accent-2: #ff9a2f;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, #101626 0%, #05070c 45%, #030406 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 88px 0; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5,7,12,.65);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}
.brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .04em;
}
nav {
  display: flex;
  gap: 24px;
}
nav a {
  color: var(--muted);
  font-weight: 600;
}
nav a:hover { color: var(--text); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(255,122,0,.26), rgba(255,122,0,0));
  filter: blur(10px);
  pointer-events: none;
}
.hero::before { top: -60px; left: -90px; }
.hero::after { bottom: -80px; right: -100px; }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
  margin: 0 0 18px;
}
.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 16px 40px rgba(255,122,0,.2);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.02);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.15);
}
.full { width: 100%; }
.hero-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  padding: 18px 0 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats-grid article {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 20px;
  padding: 22px;
}
.stats-grid strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}
.stats-grid span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.5;
}

.section-head {
  max-width: 700px;
  margin-bottom: 30px;
}
.section-head h2,
.about h2,
.contact h2,
.cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0 0 12px;
}
.section-head p,
.about p,
.contact p,
.cta p {
  color: var(--muted);
  line-height: 1.75;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-grid,
.contact-grid,
.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}
.about-panel,
.contact-card,
.cta-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
}
.check-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}
.mini-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.mini-tags span {
  border: 1px solid rgba(255,122,0,.25);
  color: #ffd6b0;
  background: rgba(255,122,0,.08);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .92rem;
}
.cta-box {
  grid-template-columns: 1fr auto;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 40px;
}
.footer-wrap {
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box,
  .stats-grid,
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card { order: -1; }
}

@media (max-width: 720px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    gap: 14px;
  }
  nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero,
  .section { padding: 64px 0; }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box,
  .stats-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { font-size: 2.2rem; }
}
