﻿:root {
  --bg: #090809;
  --panel: #161616;
  --accent: #ffcc00;
  --accent-soft: #f5d76e;
  --text: #f9f5e6;
  --muted: #d3c77f;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #000000 0%, #1c1c1c 40%, #ffcc00 100%);
  color: #fff;
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0;
  line-height: 1.05;
}

.hero p {
  max-width: 680px;
  margin: 1.5rem auto 2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255,204,0,0.25);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

section {
  margin-bottom: 3.5rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: start;
}

.intro p {
  font-size: 1.05rem;
  color: var(--muted);
}

.stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(17, 30, 44, 0.05);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-grid,
.process-grid {
  display: grid;
  gap: 1.5rem;
}

.service-grid article,
.process-grid > div {
  background: var(--panel);
  padding: 1.75rem;
  border-radius: 20px;
  box-shadow: 0 16px 35px rgba(17, 30, 44, 0.06);
}

.service-grid article h3,
.process-grid h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.why-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.why-us li {
  background: #fff;
  padding: 1.25rem 1.4rem;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
  color: #1f1f1f;
}

.contact {
  display: grid;
  gap: 2rem;
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(17, 30, 44, 0.08);
  margin: 0 1.5rem 3rem;
}

.contact h2 {
  margin-top: 0;
  color: #1f1f1f;
}

.contact > div p {
  margin: 0.7rem 0;
  color: #1f1f1f;
}

@media (max-width: 860px) {
  .intro {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.2rem 1rem;
  }

  .hero p {
    margin-bottom: 1.5rem;
  }

  .contact {
    margin: 0 1rem 2rem;
  }
}
