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

:root {
  --bg: #0c0c14;
  --surface: #12121e;
  --border: #1e1e30;
  --text: #e8e8f0;
  --muted: #7a7a9a;
  --accent: #7c6af7;
  --accent-glow: rgba(124, 106, 247, 0.15);
  --green: #34d399;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

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

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(12, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent) !important;
  border: 1px solid rgba(124, 106, 247, 0.4);
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent-glow);
  border-color: var(--accent) !important;
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(124, 106, 247, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(52, 211, 153, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner { max-width: 720px; position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(124, 106, 247, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

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

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

/* SECTIONS */
section {
  padding: 100px 24px;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* SERVICES */
#services { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

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

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

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

.service-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

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

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 16px;
}

.why-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-list .check {
  width: 22px; height: 22px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: var(--green);
}

.why-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-list span {
  font-size: 14px;
  color: var(--muted);
}

.why-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.why-callout blockquote {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.why-callout blockquote em {
  font-style: normal;
  color: var(--accent);
}

.why-callout p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, rgba(124, 106, 247, 0.1) 0%, rgba(52, 211, 153, 0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 24px;
}

.cta-strip h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.cta-strip p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

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

/* CONTACT PAGE */
.page-hero {
  padding: 140px 24px 60px;
  text-align: center;
}

.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px 100px;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

input, textarea, select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(124, 106, 247, 0.6);
}

textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.88; }

.contact-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.contact-note a { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
}
