:root {
  --bg: #0a0a0f;
  --bg-elevated: #121218;
  --bg-card: #16151f;
  --border: #29273a;
  --text: #f2f1f7;
  --text-muted: #a8a4b8;
  --text-faint: #6f6c82;
  --violet: #8b5cf6;
  --violet-bright: #a78bfa;
  --violet-dim: #6d28d9;
  --white: #ffffff;
  --radius: 14px;
  --max-width: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(139, 92, 246, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(139, 92, 246, 0.10), transparent 60%);
}

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

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.brand img {
  height: 32px;
  width: 32px;
  filter: invert(1);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--violet);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover { background: var(--violet-bright); transform: translateY(-1px); }

.nav-toggle { display: none; }

/* Hero */
.hero {
  padding: 100px 24px 90px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-bright);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--violet-bright), #d8b4fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.15s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--violet);
  color: var(--white);
}

.btn-primary:hover { background: var(--violet-bright); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover { border-color: var(--violet-bright); color: var(--violet-bright); }

/* Sections */
section { padding: 90px 24px; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.about-grid p { color: var(--text-muted); margin-bottom: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.stat .num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--violet-bright);
}

.stat .label { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }

.about-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.25), transparent 60%);
}

.about-visual img {
  width: 140px;
  height: 140px;
  filter: invert(1);
  position: relative;
  z-index: 1;
}

/* Services / Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }

.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-step { position: relative; padding-top: 8px; }

.process-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--violet-dim);
  -webkit-text-stroke: 1px var(--violet-bright);
  margin-bottom: 16px;
}

.process-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }

.process-step p { color: var(--text-muted); font-size: 0.92rem; }

/* CTA band */
.cta-band {
  max-width: var(--max-width);
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-band p { color: var(--text-muted); margin-bottom: 32px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }

.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.94rem; }

.contact-item a:hover { color: var(--violet-bright); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--violet-bright);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form button { margin-top: 8px; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  background: var(--bg-elevated);
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand { margin-bottom: 14px; }

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; max-width: 280px; }

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a, .footer-col span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col a:hover { color: var(--violet-bright); }

.footer-address { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a:hover { color: var(--violet-bright); }

/* Legal / static pages */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.legal-page .eyebrow { margin-bottom: 18px; }

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.legal-updated { color: var(--text-faint); font-size: 0.88rem; margin-bottom: 48px; }

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--violet-bright);
}

.legal-page p, .legal-page li { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 14px; }

.legal-page ul, .legal-page ol { padding-left: 22px; margin-bottom: 14px; }

.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.legal-toc h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-faint); margin-bottom: 14px; }

.legal-toc ol { padding-left: 20px; margin-bottom: 0; }

.legal-toc a { color: var(--text-muted); font-size: 0.92rem; }

.legal-toc a:hover { color: var(--violet-bright); }

/* Help / Support page */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 56px;
}

.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.help-card .contact-icon { margin-bottom: 14px; }

.help-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }

.help-card p { font-size: 0.9rem; margin-bottom: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }

.faq-item p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 0; }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .card-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 20px 60px; }
  section { padding: 64px 20px; }
}
