:root {
  --navy: #0b1b3b;
  --navy-2: #112a57;
  --blue: #2563ff;
  --blue-dark: #1b4dd8;
  --accent: #00d6a4;
  --accent-2: #7c5cff;
  --ink: #0f1729;
  --muted: #5b6679;
  --line: #e7ebf2;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --radius: 16px;
  --shadow-sm: 0 4px 16px rgba(15, 23, 41, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 23, 41, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 23, 41, 0.18);
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(37,99,255,.3); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(37,99,255,.38); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--blue); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--accent-2));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(37,99,255,.35);
}
.brand-name { font-size: 20px; letter-spacing: -.5px; }
.brand-name span { color: var(--blue); }

.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 500; color: var(--muted); font-size: 15px; transition: color .15s; }
.main-nav a:hover { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 16px 24px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a { padding: 10px 4px; color: var(--ink); font-weight: 500; }
.mobile-menu.show { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(124,92,255,.14), transparent 60%),
    radial-gradient(800px 500px at 0% 10%, rgba(37,99,255,.10), transparent 55%),
    var(--bg);
  padding: 70px 0 40px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,255,.10);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 900;
  margin-bottom: 20px;
}
.grad { background: linear-gradient(120deg, var(--blue), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 30px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero-trust .stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.hero-trust .stars strong { color: var(--ink); margin-left: 4px; }
.hero-trust .stars span { color: var(--muted); font-weight: 500; }
.hero-note { font-size: 14px; color: var(--muted); margin-top: 6px; }

/* PHONE MOCKUP */
.hero-visual { position: relative; display: grid; place-items: center; }
.phone {
  position: relative;
  width: 290px; height: 590px;
  background: #0b1b3b;
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #1c2c50;
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 24px; background: #0b1b3b; border-radius: 0 0 16px 16px; z-index: 3;
}
.phone-screen {
  background: linear-gradient(180deg, #f5f7fb, #eef2fa);
  height: 100%; border-radius: 30px; padding: 40px 16px 16px; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.app-top { display: flex; align-items: center; justify-content: space-between; }
.app-hello { font-weight: 800; font-size: 16px; color: var(--ink); }
.app-sub { font-size: 12px; color: var(--muted); }
.app-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--accent-2)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.app-search { background: #fff; border-radius: 12px; padding: 11px 14px; font-size: 13px; color: var(--muted); box-shadow: var(--shadow-sm); }

.job-card {
  background: #fff; border-radius: 14px; padding: 12px; display: flex; align-items: center; gap: 11px; box-shadow: var(--shadow-sm);
}
.job-logo { width: 40px; height: 40px; border-radius: 11px; background: var(--bg-soft); display: grid; place-items: center; font-size: 20px; }
.job-info { flex: 1; min-width: 0; }
.job-info strong { display: block; font-size: 13.5px; }
.job-info span { font-size: 11.5px; color: var(--muted); }
.job-pay { font-weight: 800; font-size: 13px; color: var(--blue); }
.app-apply { margin-top: auto; background: var(--blue); color: #fff; border: 0; border-radius: 12px; padding: 13px; font-weight: 700; font-size: 14px; cursor: pointer; }

.pop { animation: pop .6s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }

.floaty {
  position: absolute; background: #fff; border-radius: 12px; padding: 10px 14px;
  font-size: 13px; font-weight: 700; box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.floaty-1 { top: 70px; left: -6px; color: var(--accent); }
.floaty-2 { bottom: 90px; right: -10px; color: var(--accent-2); animation-delay: 1.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-logos { margin-top: 56px; text-align: center; }
.hero-logos p { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.logo-row span { font-weight: 800; font-size: 18px; color: #aeb7c7; letter-spacing: -.5px; }

/* ============ STATS ============ */
.stats { background: var(--navy); color: #fff; padding: 46px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -1px; }
.stat span { color: #aab6d6; font-size: 14px; }

/* ============ SECTIONS ============ */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head-left { text-align: left; margin: 0 0 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -1px; line-height: 1.12; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(135deg, rgba(37,99,255,.12), rgba(124,92,255,.12)); margin-bottom: 16px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step { background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); position: relative; }
.step-num {
  width: 46px; height: 46px; border-radius: 13px; background: var(--blue); color: #fff;
  font-weight: 900; font-size: 20px; display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(37,99,255,.35);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* CHIPS */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px;
  font-weight: 600; font-size: 15px; transition: .18s; cursor: default;
}
.chip:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* REVIEWS */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.review .stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-size: 16px; color: var(--ink); margin-bottom: 18px; }
.review figcaption { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--muted); }
.ravatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--accent-2)); color: #fff; display: grid; place-items: center; font-weight: 700; }

/* DOWNLOAD */
.download {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(124,92,255,.5), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; padding: 84px 0;
}
.download-inner { max-width: 760px; }
.download-copy h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 900; letter-spacing: -1px; line-height: 1.08; margin-bottom: 16px; }
.download-copy > p { color: #c5cfe8; font-size: 18px; max-width: 520px; margin-bottom: 28px; }

.store-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--navy); border-radius: 14px; padding: 12px 20px;
  transition: transform .18s ease, box-shadow .2s ease;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-btn:first-child { background: var(--accent); color: var(--navy); }
.store-ic { display: grid; place-items: center; }
.store-txt { display: flex; flex-direction: column; line-height: 1.15; }
.store-txt small { font-size: 11px; opacity: .8; }
.store-txt strong { font-size: 17px; }

.download-meta { display: flex; flex-wrap: wrap; gap: 18px; color: #c5cfe8; font-size: 14px; font-weight: 500; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; transition: box-shadow .2s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; font-weight: 700; font-size: 17px; padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--blue); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { color: var(--muted); font-size: 15.5px; padding-bottom: 20px; }

/* CTA BANNER */
.cta-banner { background: var(--blue); color: #fff; padding: 60px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; letter-spacing: -.8px; }

/* FOOTER */
.site-footer { background: var(--navy); color: #c5cfe8; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: 15px; color: #c5cfe8; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 14px; flex-wrap: wrap; gap: 14px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; font-weight: 700; transition: background .2s; }
.socials a:hover { background: var(--blue); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .feature-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .feature-grid, .steps, .review-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .phone { width: 250px; height: 510px; }
}
