/* ===== Design tokens ===== */
:root {
  --brand-blue: #2f6fed;
  --brand-blue-dark: #1d54c4;
  --brand-blue-light: #eaf1ff;
  --ink: #0b0f19;
  --ink-soft: #4b5567;
  --ink-faint: #8891a3;
  --bg-soft: #f6f8fb;
  --border: #e7eaf2;
  --success: #16a34a;
  --star: #f5a524;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 4px 14px rgba(15, 23, 42, 0.06);
}

* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

section { padding: 88px 0; }
@media (max-width: 767.98px) {
  section { padding: 56px 0; }
}

.eyebrow {
  color: var(--brand-blue);
  font-weight: 700;
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
  margin-bottom: 48px;
}
.section-title .accent { color: var(--brand-blue); }

/* ===== Buttons ===== */
.btn-marketing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn-marketing:hover { transform: translateY(-1px); }

.btn-primary-marketing {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 111, 237, 0.35);
}
.btn-primary-marketing:hover { background: var(--brand-blue-dark); color: #fff; }

.btn-outline-dark-marketing {
  background: transparent;
  color: var(--ink);
  border-color: rgba(11, 15, 25, 0.18);
}
.btn-outline-dark-marketing:hover { border-color: var(--ink); color: var(--ink); }

.btn-outline-light-marketing {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline-light-marketing:hover { border-color: #fff; color: #fff; }

.btn-white-marketing {
  background: #fff;
  color: var(--brand-blue-dark);
}
.btn-white-marketing:hover { background: #f1f5ff; color: var(--brand-blue-dark); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand svg { color: var(--ink); }
.brand .dot { color: var(--brand-blue); }

.main-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 8px 0;
}
.main-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .login-link { font-weight: 700; font-size: 0.94rem; color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 991.98px) {
  .main-nav { display: none; }
  .header-actions .login-link { display: none; }
  .nav-toggle { display: inline-flex; }
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }

/* ===== Hero ===== */
.hero {
  background: radial-gradient(1200px 600px at 85% -10%, #17233f 0%, transparent 60%), linear-gradient(180deg, #0a0e1a 0%, #0c1120 100%);
  color: #fff;
  padding: 76px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .accent { color: #5b8dff; }
.hero p.lede {
  color: #b7c0d6;
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero .trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #93a0bd;
  font-size: 0.86rem;
  font-weight: 600;
}
.hero .trust-row .sep { color: #465066; }
.hero .trust-row svg { color: #5b8dff; flex-shrink: 0; }

/* Hero mockup illustration */
.hero-visual { position: relative; min-height: 420px; }
.hero-visual .backdrop {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(91, 141, 255, 0.18), rgba(15, 20, 36, 0.4)),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 26px);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-visual .car-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0.9;
  color: rgba(91, 141, 255, 0.55);
}
.mock-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
  color: var(--ink);
  width: 280px;
}
.mock-card-job { top: 18px; right: 0; }
.mock-card-offers { bottom: 18px; left: 0; width: 300px; }
.mock-card .mock-title { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); font-weight: 700; margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; }
.mock-card .mock-heading { font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.mock-card .mock-row { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 4px; }
.mock-card .mock-row svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--ink-faint); }

.offer-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--border); }
.offer-row:first-of-type { border-top: none; }
.offer-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.offer-info { flex: 1; min-width: 0; }
.offer-name { font-weight: 700; font-size: 0.84rem; display: flex; align-items: center; gap: 4px; }
.offer-meta { font-size: 0.72rem; color: var(--ink-faint); }
.offer-price { font-weight: 800; color: var(--success); font-size: 0.9rem; }
.chosen-banner {
  display: flex; align-items: center; gap: 8px;
  background: #ecfdf3; color: var(--success);
  border-radius: var(--radius-sm); padding: 8px 12px;
  font-size: 0.78rem; font-weight: 700; margin-top: 10px;
}

/* ===== How it works ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
@media (max-width: 767.98px) {
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
}
.step { text-align: center; position: relative; }
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-num { color: var(--brand-blue); font-weight: 800; font-size: 0.78rem; margin-bottom: 6px; }
.step-title { font-weight: 800; margin-bottom: 6px; }
.step-desc { color: var(--ink-soft); font-size: 0.86rem; line-height: 1.5; }
.step-arrow {
  position: absolute; top: 32px; right: -18px;
  color: var(--ink-faint); z-index: 1;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 991.98px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.service-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--brand-blue-light); color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-title { font-weight: 800; margin-bottom: 6px; font-size: 1rem; }
.service-desc { color: var(--ink-soft); font-size: 0.85rem; line-height: 1.5; }
.view-all-link { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 32px; font-weight: 700; color: var(--brand-blue); }

/* ===== See it in action ===== */
.action-section { background: var(--bg-soft); }
.action-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
@media (max-width: 991.98px) { .action-grid { grid-template-columns: 1fr; } }
.action-copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 12px; }
.action-copy p { color: var(--ink-soft); margin-bottom: 24px; }
.checklist { list-style: none; padding: 0; margin: 0 0 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-weight: 600; font-size: 0.94rem; }
.checklist svg { color: var(--success); flex-shrink: 0; margin-top: 2px; }

.action-visual { position: relative; }
.map-panel {
  border-radius: var(--radius-lg);
  height: 340px;
  background:
    radial-gradient(circle at 30% 40%, rgba(47,111,237,0.12), transparent 55%),
    repeating-linear-gradient(0deg, #e9edf6 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, #e9edf6 0 1px, transparent 1px 44px),
    #f1f4fa;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.map-pin {
  position: absolute; top: 46%; left: 42%;
  width: 30px; height: 30px; border-radius: 50% 50% 50% 0;
  background: var(--brand-blue); transform: rotate(-45deg);
  box-shadow: 0 6px 16px rgba(47,111,237,0.4);
}
.map-pin::after {
  content: ""; position: absolute; inset: 8px; background: #fff; border-radius: 50%;
}
.offers-panel {
  position: absolute; top: 20px; right: -12px;
  width: 260px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 14px 16px;
}
@media (max-width: 575.98px) { .offers-panel { position: static; margin-top: 16px; width: 100%; } }
.offers-panel .panel-title { font-weight: 800; font-size: 0.86rem; margin-bottom: 8px; display: flex; justify-content: space-between; }
.offers-panel .panel-title span { color: var(--ink-faint); font-weight: 600; }
.job-detail-card {
  position: absolute; bottom: -20px; left: -12px;
  width: 250px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 16px 18px;
}
@media (max-width: 575.98px) { .job-detail-card { position: static; margin-top: 16px; width: 100%; } }
.job-detail-card .mock-title { color: #93a0bd; }
.job-detail-card .mock-row { color: #c3cbdd; }
.job-detail-card .mock-row svg { color: #6b7690; }

/* ===== For professionals ===== */
.pro-section {
  background: linear-gradient(180deg, #0a0e1a 0%, #0c1120 100%);
  color: #fff;
}
.pro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
@media (max-width: 991.98px) { .pro-grid { grid-template-columns: 1fr; } }
.pro-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #17233f, #0c1120);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pro-visual svg { width: 42%; height: 42%; color: rgba(91,141,255,0.55); }
.pro-visual .badge-verified {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; color: #fff;
}
.pro-visual .badge-verified svg { width: 16px; height: 16px; color: #5b8dff; }

.pro-copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 26px; }
.pro-copy h2 .accent { color: #5b8dff; }
.pro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 32px; }
@media (max-width: 575.98px) { .pro-features { grid-template-columns: 1fr; } }
.pro-feature { display: flex; gap: 12px; align-items: flex-start; }
.pro-feature-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(91,141,255,0.14); color: #5b8dff;
  display: flex; align-items: center; justify-content: center;
}
.pro-feature-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 2px; }
.pro-feature-desc { font-size: 0.8rem; color: #93a0bd; }
.pro-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Trust badges ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 767.98px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item svg { width: 30px; height: 30px; color: var(--brand-blue); margin-bottom: 10px; }
.trust-item { color: var(--ink-soft); font-weight: 700; font-size: 0.86rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  color: #fff;
  padding: 48px 0;
}
.cta-banner .container-xl {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.cta-banner h3 { font-size: 1.4rem; margin: 0; }
.cta-banner .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-soft); padding: 60px 0 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
@media (max-width: 767.98px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--ink-soft); font-size: 0.86rem; margin: 14px 0 18px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
}
.footer-social a:hover { color: var(--brand-blue); border-color: var(--brand-blue); }
.footer-col h6 { font-weight: 800; font-size: 0.86rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-soft); font-size: 0.86rem; }
.footer-col a:hover { color: var(--brand-blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: 0.8rem; color: var(--ink-faint);
}
.footer-bottom .heart { color: #ef4444; }

/* ===== Simple content pages (About/Blog) ===== */
.page-hero {
  background: var(--bg-soft);
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.prose { max-width: 720px; margin: 0 auto; padding: 64px 24px; color: var(--ink-soft); line-height: 1.8; }
.prose h2 { color: var(--ink); font-size: 1.3rem; margin: 32px 0 12px; }
