:root {
  --bg: #050509;
  --fg: #ffffff;
  --muted: #a0a0b5;
  --accent: #f9b233;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --container: 1120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #050509;
  color: var(--fg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 9, 0.85);
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  transition: 0.2s;
}

.nav-links a:hover {
  color: var(--fg);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f9b233, #f97316);
  color: #050509;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text span:first-child {
  font-weight: 600;
  font-size: 15px;
}

.logo-text span:last-child {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #f9b233, #f97316);
  color: #050509;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  display: inline-flex;
  transition: 0.15s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
}

.hero-sub {
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
}

.hero-btn {
  margin-top: 28px;
}

/* SERVICES */
.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  width: 100%;
  padding: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;

  transition: 0.25s ease;
}

.service-card:hover {
  border-color: rgba(249, 178, 51, 0.4);
  box-shadow: 0 0 22px rgba(249, 178, 51, 0.18);
  transform: translateY(-4px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.25s; }
.service-card:nth-child(3) { animation-delay: 0.4s; }
.service-card:nth-child(4) { animation-delay: 0.55s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card ul {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ABOUT */
.about {
  padding: 80px 0;
  text-align: center;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* CONTACT */
.contact {
  padding: 80px 0;
  text-align: center;
}

.contact p {
  color: var(--muted);
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  padding: 30px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--muted);
}
