:root {
  --bg: #0a0a0a;
  --fg: #f5f0e8;
  --accent: #ff6b2b;
  --accent-2: #ffd166;
  --accent-3: #06d6a0;
  --muted: #8a8578;
  --surface: #141414;
  --surface-2: #1e1e1e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 43, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 209, 102, 0.06) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 4px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-grid {
  display: flex;
  gap: 1rem;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 0;
}

.hero-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.3s, transform 0.3s;
}

.hero-card:hover {
  transform: translateY(-2px);
}

.hc-1 { border-color: rgba(255, 107, 43, 0.25); }
.hc-1:hover { border-color: var(--accent); }
.hc-1 .card-icon { color: var(--accent); }

.hc-2 { border-color: rgba(255, 209, 102, 0.25); }
.hc-2:hover { border-color: var(--accent-2); }
.hc-2 .card-icon { color: var(--accent-2); }

.hc-3 { border-color: rgba(6, 214, 160, 0.25); }
.hc-3:hover { border-color: var(--accent-3); }
.hc-3 .card-icon { color: var(--accent-3); }

.card-icon {
  font-size: 1.2rem;
}

/* ========== SERVICES ========== */
.services {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.services-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-block {
  background: var(--surface);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(245, 240, 232, 0.04);
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.service-block:hover {
  border-color: rgba(245, 240, 232, 0.12);
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.sb-1 .service-number { color: var(--accent); }
.sb-2 .service-number { color: var(--accent-2); }
.sb-3 .service-number { color: var(--accent-3); }

.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.service-block p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.service-tags span {
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  background: rgba(245, 240, 232, 0.05);
  color: rgba(245, 240, 232, 0.6);
}

/* ========== WHY ========== */
.why {
  padding: 6rem 2rem;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(6, 214, 160, 0.05) 0%, transparent 60%),
    var(--surface);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.why-text p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 300;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  padding: 1.5rem 2rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid rgba(245, 240, 232, 0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

/* ========== CLOSING ========== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 107, 43, 0.06) 0%, transparent 50%),
    var(--bg);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 500;
  font-family: var(--font-display);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-location,
.footer-email {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }
  
  .hero-grid {
    flex-direction: column;
    margin-top: 2rem;
  }
  
  .services {
    padding: 5rem 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why {
    padding: 4rem 1.5rem;
  }
  
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .closing {
    padding: 6rem 1.5rem;
  }
  
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}