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

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --border: #1e1e2e;
  --text: #e8e8f0;
  --text-muted: #6b6b80;
  --accent: #7c6cf8;
  --accent2: #a78bfa;
  --accent-glow: rgba(124, 108, 248, 0.15);
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a { color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: opacity 0.2s !important;
}
.btn-nav:hover { opacity: 0.85 !important; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-primary.btn-large { padding: 16px 36px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(124, 108, 248, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 800px; margin: 0 auto; position: relative; }

.badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(124, 108, 248, 0.3);
  color: var(--accent2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}

.gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 28px 40px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: inline-flex;
}

.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 56px;
  line-height: 1.2;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.problem-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.problem-icon { margin-bottom: 14px; color: var(--accent2); }
.problem-card h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.services h2, .process h2, .about h2, .cta h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

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

.service-card:hover {
  border-color: rgba(124, 108, 248, 0.4);
  transform: translateY(-2px);
}

.service-card.featured {
  border-color: rgba(124, 108, 248, 0.5);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(124, 108, 248, 0.05) 100%);
}

.service-icon { margin-bottom: 16px; color: var(--accent2); }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.service-tag {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(124, 108, 248, 0.3);
  color: var(--accent2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; }

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(124, 108, 248, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent2);
}

.step-content { padding-top: 10px; padding-bottom: 8px; }
.step-content h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.step-connector {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-left: 23px;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; }

.about-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-photo { flex-shrink: 0; }

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(124, 108, 248, 0.4);
  box-shadow: 0 0 40px rgba(124, 108, 248, 0.15);
}

.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.about-text strong { color: var(--text); font-weight: 600; }

.about-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ===== CTA ===== */
.cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124, 108, 248, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta .container { position: relative; max-width: 600px; }
.cta h2 { margin-bottom: 16px; }
.cta > .container > p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note { font-size: 13px; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .about-inner { flex-direction: column; text-align: center; }
  .about-links { justify-content: center; }
  .steps { padding: 0 16px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
