/* =======================
   TOKENS
   ======================= */
:root {
  --bg: #0B1628;
  --bg-2: #0F1E35;
  --bg-card: #132340;
  --fg: #F5F0E8;
  --fg-muted: #8A9AB5;
  --accent: #FF5C1A;
  --accent-dim: #CC490F;
  --border: rgba(255,255,255,0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* =======================
   RESET + BASE
   ======================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =======================
   NAV
   ======================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(11,22,40,0.9);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-logo .accent { color: var(--accent); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--fg); }
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =======================
   HERO
   ======================= */
.hero {
  padding: 96px 48px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.accent-text { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 6px;
  max-width: 90px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Widget */
.widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.widget-dot.red { background: #FF5F57; }
.widget-dot.yellow { background: #FEBC2E; }
.widget-dot.green { background: #28C840; }
.widget-title {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-left: 6px;
  font-family: var(--font-body);
}
.widget-feed { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-tiktok .card-icon { background: rgba(255, 0, 80, 0.15); color: #FF0050; }
.card-instagram .card-icon { background: rgba(228, 64, 95, 0.15); color: #E4405F; }
.card-facebook .card-icon { background: rgba(24, 119, 242, 0.15); color: #1877F2; }
.card-title { font-size: 0.82rem; font-weight: 500; color: var(--fg); }
.card-meta { font-size: 0.72rem; color: var(--fg-muted); margin-top: 2px; }

/* =======================
   SERVICES
   ======================= */
.services { padding: 80px 48px; background: var(--bg-2); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 680px;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(255,92,26,0.4); }
.service-icon { color: var(--accent); margin-bottom: 4px; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.service-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; flex: 1; }
.service-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
  padding: 4px 10px;
  background: rgba(255,92,26,0.1);
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

/* =======================
   NICHE
   ======================= */
.niche { padding: 80px 48px; }
.niche-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.niche-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.niche-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.niche-item { display: flex; align-items: flex-start; gap: 14px; }
.niche-check { flex-shrink: 0; margin-top: 2px; }
.niche-item span:last-child { font-size: 0.9rem; color: var(--fg); line-height: 1.5; }
.niche-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.niche-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.niche-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.niche-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 16px;
}
.niche-card-divider { height: 1px; background: var(--border); margin: 28px 0; }
.niche-card-note { font-size: 0.82rem; color: var(--fg-muted); font-style: italic; }

/* =======================
   PROCESS
   ======================= */
.process { padding: 80px 48px; background: var(--bg-2); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.step { flex: 1; }
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 24px;
  margin-top: -40px;
}

/* =======================
   CLOSING
   ======================= */
.closing { padding: 96px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.closing-cta {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: inline-block;
  text-align: left;
}
.closing-detail { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; }

/* =======================
   FOOTER
   ======================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-logo .accent { color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }
.footer-location { font-size: 0.82rem; color: var(--fg-muted); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.78rem; color: var(--fg-muted); }

/* =======================
   RESPONSIVE
   ======================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .niche-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .nav { padding: 0 24px; }
  .hero { padding: 64px 24px 56px; }
  .services { padding: 64px 24px; }
  .niche { padding: 64px 24px; }
  .process { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; }
}

/* =======================
   SUCCESS PAGE
   ======================= */
.success-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.success-inner {
  text-align: center;
  max-width: 520px;
}
.success-icon {
  color: #34d399;
  margin-bottom: 28px;
}
.success-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}
.success-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}