:root {
  --bg-dark: #121212;
  --bg-soft: #181818;
  --text-main: #ffffff;
  --text-muted: #b5b5b5;
  --primary-color: #ae0079;
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 36px;
}

h1, h2, h3 {
  font-family: Satoshi, sans-serif;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
}

h2 {
  font-size: 40px;
}

p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-links a {
  margin: 0 12px;
  color: white;
  text-decoration: none;
}

/* BUTTONS */
.btn {
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
}

.btn.primary {
  background: var(--primary-color);
  color: white;
}

.btn.secondary {
  border: 1px solid #333;
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

/* SECTIONS */
section {
  padding: 160px 0;
}

.clients, .services, .projects, .process, .pricing, .faq {
  background: var(--bg-soft);
}

.service-grid,
.project-grid,
.pricing-grid,
.process-steps {
  display: grid;
  gap: 24px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.project-card,
.price-card {
  background: #1e1e1e;
  padding: 32px;
  border-radius: var(--radius);
}

.price-card.featured {
  border: 1px solid var(--primary-color);
}

/* FOOTER */
.footer {
  padding: 60px 0;
  background: #0e0e0e;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}
