:root {
  color: #f8fafc;
  background: #020617;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #020617;
  color: #f8fafc;
}
a {
  color: inherit;
  text-decoration: none;
}
.page {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.05rem;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand span {
  color: #f8c25f;
}
nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
nav a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}
nav a:hover,
nav a.active {
  color: #f8c25f;
}
.action-button {
  background: #d39a2f;
  color: #020617;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(211, 154, 47, 0.25);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding-bottom: 3rem;
}
.hero-copy {
  max-width: 620px;
}
.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
.hero-copy h1 strong {
  color: #f8c25f;
  font-weight: 800;
}
.hero-copy p {
  max-width: 40rem;
  margin-bottom: 1.75rem;
  color: #cbd5e1;
  font-size: 1.05rem;
}
.hero-copy .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #d39a2f;
  color: #020617;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(211, 154, 47, 0.22);
}
.hero-copy .hero-cta:hover {
  transform: translateY(-2px);
}
.hero-visual {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  min-height: 420px;
  background: radial-gradient(circle at top left, rgba(248, 194, 95, 0.18), transparent 35%),
              linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}
.section-heading {
  text-align: center;
  margin: 4rem auto 2rem;
  max-width: 720px;
}
.section-heading p {
  color: #f8c25f;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.section-heading h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  color: #f8fafc;
  margin-bottom: 1rem;
}
.section-heading h2 + p {
  color: #cbd5e1;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(248, 194, 95, 0.14);
  border-radius: 1.25rem;
  padding: 1.65rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 194, 95, 0.35);
}
.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(248, 194, 95, 0.16);
  color: #f8c25f;
  font-size: 1.2rem;
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: #f8fafc;
}
.service-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 3rem 0 5rem;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(248, 194, 95, 0.14);
  border-radius: 1.25rem;
  padding: 1.5rem;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  color: #f8c25f;
  margin-bottom: 0.65rem;
}
.stat-card span {
  display: block;
  color: #cbd5e1;
  font-size: 0.95rem;
}
footer#contact .page {
  padding: 1rem 0 4rem;
  color: #94a3b8;
  text-align: center;
  font-size: 0.98rem;
}
footer#contact .page a {
  color: #f8c25f;
}
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .services-grid,
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .page { width: calc(100% - 1.5rem); }
  header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  nav { flex-wrap: wrap; gap: 1rem; }
  .services-grid,
  .stats { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.8rem; }
}
