@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --primary: #7e3af2;
  --primary-dark: #4f46e5;
  --accent: #ec4899;
  --blue: #4f7df0;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #94a3b8;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: #eef2ff;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(79, 70, 229, 0.28);
}

.hero {
  padding: 64px 0 56px;
}

.hero-card {
  background: radial-gradient(80% 80% at 50% 20%, rgba(126, 58, 242, 0.14), rgba(79, 125, 240, 0.05)),
    linear-gradient(135deg, #fff, #f9f5ff);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f0ff;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 16px 0 12px;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

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

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

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

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.stat-card {
  background: rgba(126, 58, 242, 0.08);
  border: 1px solid rgba(126, 58, 242, 0.2);
  border-radius: 14px;
  padding: 14px;
}

.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f3f0ff;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin-top: 8px;
}

.highlight {
  color: var(--text);
  font-weight: 600;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-grid .card {
  min-height: 180px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 0.85rem;
}

.jobs-grid .card {
  display: grid;
  gap: 10px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea,
.field select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1rem;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.helper {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.alert {
  border-radius: 12px;
  padding: 12px 14px;
  background: #ecfeff;
  color: #0f172a;
  border: 1px solid #67e8f9;
  display: none;
}

.alert.error {
  background: #fef2f2;
  border-color: #fecdd3;
  color: #9f1239;
}

footer {
  background: #0b1021;
  color: #e2e8f0;
  padding: 32px 0;
  margin-top: 40px;
}

footer a {
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, background 0.15s ease;
}

.social a:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 68px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    flex-direction: column;
    min-width: 220px;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-card {
    padding: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
