/* landing.css — KILLMEJOB landing page styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --surface: #fff;
  --bg: #f1f5f9;
  --text: #0f172a;
  --text-secondary: #475569;
  --muted: #94a3b8;
  --border: #e2e8f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; background: #fff; color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.d-flex { display: flex; }
.w-100 { width: 100%; }
.tag { background: var(--primary-light); color: var(--primary-dark); padding: 4px 10px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; display: inline-block; }
.tag-success { background: #d1fae5; color: #065f46; }
.tag-warning { background: #fef3c7; color: #92400e; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 999px; padding: 11px 22px; font-weight: 700; font-size: 0.93rem;
  border: none; cursor: pointer;
  transition: transform 0.16s, box-shadow 0.16s, background 0.16s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.28); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 20px rgba(37,99,235,0.36); }
.btn-secondary { background: var(--primary-light); color: var(--primary-dark); }
.btn-secondary:hover { background: #dbeafe; }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.btn-white:hover { background: #f0f7ff; }
.btn-sm { padding: 7px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.15rem; color: var(--primary-dark); letter-spacing: -0.02em; }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), #60a5fa); color: #fff; display: grid; place-items: center; font-weight: 900; box-shadow: 0 4px 10px rgba(37,99,235,0.26); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 7px 12px; border-radius: 10px; color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; transition: color 0.14s, background 0.14s; }
.nav-links a:hover { color: var(--primary); background: var(--primary-light); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.22s, opacity 0.22s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 0 18px; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 10px 8px; border-radius: 10px; color: var(--text-secondary); font-weight: 600; transition: color 0.14s, background 0.14s; }
.mobile-menu a:hover { color: var(--primary); background: var(--primary-light); }
.mobile-menu.open { display: flex; }

/* HERO */
.hero { padding: 72px 0 64px; background: linear-gradient(160deg, #fff 0%, #f0f7ff 50%, #dbeafe 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-light); color: var(--primary); border-radius: 999px; padding: 6px 14px; font-size: 0.84rem; font-weight: 700; margin-bottom: 20px; }
.pulse-dot { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.4; transform: scale(0.8); } }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; line-height: 1.12; color: var(--text); letter-spacing: -0.025em; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero > .container > .hero-grid > div > p { font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-pill { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 10px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); min-width: 100px; }
.trust-pill .num { font-size: 1rem; font-weight: 800; color: var(--primary-dark); }
.trust-pill .lbl { font-size: 0.75rem; color: var(--text-secondary); }
/* Search card */
.search-card { background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 24px 64px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.04); }
.search-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.search-card .sub { font-size: 0.87rem; color: var(--text-secondary); margin-bottom: 20px; }
.search-field { display: grid; gap: 5px; margin-bottom: 14px; }
.search-field label { font-size: 0.84rem; font-weight: 600; }
.search-field input, .search-field select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 11px; font: inherit; color: var(--text); transition: border-color 0.18s, box-shadow 0.18s; width: 100%; background: #fff; }
.search-field input:focus, .search-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.10); }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip { background: var(--primary-light); color: var(--primary-dark); border-radius: 999px; padding: 5px 12px; font-size: 0.79rem; font-weight: 600; cursor: pointer; transition: background 0.14s; border: none; }
.chip:hover { background: #dbeafe; }

/* STATS STRIP */
.stats-strip { background: var(--primary); padding: 38px 0; }
.stats-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.strip-stat { text-align: center; color: #fff; }
.snum { font-size: 2rem; font-weight: 900; line-height: 1; }
.slab { font-size: 0.85rem; opacity: 0.82; margin-top: 4px; }

/* SECTION COMMONS */
.section { padding: 80px 0; }
.sec-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.sec-title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 14px; }
.sec-sub { font-size: 0.98rem; color: var(--text-secondary); max-width: 560px; margin-bottom: 40px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 26px; transition: border-color 0.18s, box-shadow 0.18s; }
.feat-card:hover { border-color: #93c5fd; box-shadow: 0 8px 32px rgba(37,99,235,0.08); }
.feat-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-light); display: grid; place-items: center; font-size: 1.25rem; margin-bottom: 14px; }
.feat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 7px; }
.feat-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* STEPS */
.steps-section { padding: 80px 0; background: #f8fafc; }
.steps-center { text-align: center; }
.steps-center .sec-sub { margin: 0 auto 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card { text-align: center; padding: 32px 24px; }
.step-num { width: 58px; height: 58px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-size: 1.3rem; font-weight: 900; margin: 0 auto 18px; box-shadow: 0 8px 22px rgba(37,99,235,0.28); }
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.89rem; color: var(--text-secondary); }

/* JOBS PREVIEW */
.jobs-preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.jp-card { background: #fff; border: 1.5px solid var(--border); border-radius: 18px; padding: 20px; transition: border-color 0.18s, box-shadow 0.18s; }
.jp-card:hover { border-color: #93c5fd; box-shadow: 0 6px 24px rgba(37,99,235,0.09); }
.jp-co { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; margin-bottom: 4px; }
.jp-title { font-size: 0.98rem; font-weight: 700; margin-bottom: 6px; }
.jp-meta { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 12px; }
.jp-foot { display: flex; justify-content: space-between; align-items: center; gap: 8px; }

/* REVIEWS */
.reviews-section { padding: 80px 0; background: #f8fafc; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.review-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 24px; }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.review-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #60a5fa); color: #fff; display: grid; place-items: center; font-size: 0.82rem; font-weight: 800; flex-shrink: 0; }
.rev-name { font-weight: 700; font-size: 0.9rem; }
.rev-role { font-size: 0.76rem; color: var(--text-secondary); }

/* CTA SPLIT */
.cta-section { padding: 80px 0; }
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.cta-box { background: linear-gradient(135deg, var(--primary-dark), var(--primary), #60a5fa); border-radius: 28px; padding: 48px; color: #fff; position: relative; overflow: hidden; }
.cta-box::before { content:''; position:absolute; top:-60px; right:-60px; width:240px; height:240px; border-radius:50%; background:rgba(255,255,255,0.07); }
.cta-box h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-box p { opacity: 0.88; margin-bottom: 20px; font-size: 0.96rem; }
.cta-list { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
.cta-list li { font-size: 0.92rem; display: flex; align-items: center; gap: 8px; }
.cta-list li::before { content:'✓'; width:20px; height:20px; border-radius:50%; background:rgba(255,255,255,0.18); display:grid; place-items:center; font-size:0.7rem; flex-shrink:0; }
.cta-info h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-info p { color: var(--text-secondary); margin-bottom: 20px; font-size: 0.96rem; }
.info-list { list-style: none; display: grid; gap: 11px; margin-bottom: 28px; }
.info-list li { font-size: 0.9rem; color: var(--text-secondary); display: flex; gap: 8px; align-items: flex-start; }

/* FOOTER */
.site-footer { background: #0f172a; color: #94a3b8; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 56px 0 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.footer-bmark { width: 34px; height: 34px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), #60a5fa); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 0.85rem; }
.footer-desc { font-size: 0.87rem; line-height: 1.7; max-width: 260px; }
.fcol h4 { font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.fcol a { display: block; font-size: 0.87rem; margin-bottom: 9px; transition: color 0.14s; }
.fcol a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.84rem; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-preview-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .nav-actions { display: none; }
  .hero { padding: 48px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .search-card { padding: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .steps-section { padding: 56px 0; }
  .reviews-section { padding: 56px 0; }
  .cta-section { padding: 56px 0; }
  .cta-box, .cta-info { padding: 32px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { gap: 24px; }
}
