/* ─── Fonts ─── */
:root {
  --bg: #0A0B0F;
  --surface: #0F1017;
  --surface-2: #141620;
  --border: #1a1f2e;
  --blue: #0A84FF;
  --blue-dim: rgba(10, 132, 255, 0.12);
  --gold: #F5C842;
  --text: #E8EAF0;
  --text-muted: #6B7280;
  --text-dim: #3d4455;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-headline {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text);
  margin-bottom: 20px;
}

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 24px 60px;
}

.hero-glow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.glow-orb-1 {
  width: 600px; height: 500px;
  top: -100px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(10,132,255,0.18) 0%, transparent 70%);
}

.glow-orb-2 {
  width: 350px; height: 350px;
  top: 40%; left: 15%;
  background: radial-gradient(circle, rgba(10,132,255,0.08) 0%, transparent 70%);
}

.glow-orb-3 {
  width: 300px; height: 300px;
  top: 50%; right: 10%;
  background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-services-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid rgba(10,132,255,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  background: var(--blue-dim);
}

.pill-sep { color: var(--text-dim); font-size: 14px; }

/* PC Illustration */
.hero-pc-illustration {
  max-width: 560px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.pc-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(10,132,255,0.2));
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  padding: 20px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: fit-content;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ─── Services ─── */
.services {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(10,132,255,0.4);
  transform: translateY(-3px);
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-detail {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  font-family: 'Syne', sans-serif;
}

/* ─── The Build ─── */
.the-build {
  padding: 100px 24px;
  background: var(--bg);
}

.the-build-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.the-build-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(10,132,255,0.25);
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.step-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Syne', sans-serif;
}

.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Guarantees ─── */
.guarantees {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantees-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.guarantees-headline {
  margin-bottom: 60px;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
  text-align: left;
}

.guarantee {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.guarantee-icon {
  margin-bottom: 16px;
}

.guarantee h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
}

.guarantee p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing-stripe {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  opacity: 0.5;
}

.closing-headline {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.closing-cta {
  margin-top: 48px;
  opacity: 0.6;
}

/* ─── Footer ─── */
.footer {
  padding: 40px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .the-build-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; gap: 16px; width: 100%; }
  .stat-divider { width: 60px; height: 1px; }
  .hero { padding: 60px 20px 50px; }
  .services, .the-build, .guarantees, .closing { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-headline { font-size: 28px; }
  .closing-headline { font-size: 28px; }
}
