/* jobbi.space — лендинг стили */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Nunito+Sans:wght@400;500;600&display=swap');

:root {
  --p50:  #f5f0ff;
  --p100: #ede0ff;
  --p300: #be8aff;
  --p400: #a45ef5;
  --p500: #8b3de8;
  --p600: #7228cc;
  --p700: #5a1aa8;
  --p900: #2d0d5c;
  --a400: #ff8c3a;
  --a500: #e8630a;
  --ink:  #1a0533;
  --mid:  #4a3560;
  --muted:#8b7aa0;
  --ghost:#e8e0f0;
  --success: #059669;
  --font-display: 'Nunito', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --shadow-btn: 0 4px 14px rgba(138,61,232,.35);
  --shadow-card: 0 4px 24px rgba(114,40,204,.12);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--mid);
  background: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, section, .section, .hero, .cws-banner, .cta-section { flex-shrink: 0; }

.site-footer { margin-top: auto; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ghost);
  padding: 14px 0;
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  color: var(--p600); text-decoration: none;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 15px; color: var(--mid); text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--p600); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700;
  border-radius: var(--r-xl); border: none; cursor: pointer;
  text-decoration: none; transition: all .18s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--p500), var(--p700));
  color: #fff; padding: 14px 28px; font-size: 16px;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(138,61,232,.45); }
.btn-secondary {
  background: linear-gradient(135deg, var(--a400), var(--a500));
  color: #fff; padding: 12px 24px; font-size: 15px;
}
.btn-secondary:hover { transform: translateY(-1px); }
.btn-ghost {
  background: var(--p50); color: var(--p600);
  border: 1.5px solid var(--p300); padding: 12px 22px; font-size: 15px;
}
.btn-ghost:hover { background: var(--p100); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── Hero ── */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, var(--p50) 0%, #fff 60%);
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--p100); color: var(--p700);
  border-radius: 20px; padding: 6px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ink); line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--p600); }
.hero-sub {
  font-size: 18px; color: var(--muted); max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 16px; font-size: 13px; color: var(--muted);
}

/* ── CWS Badge ── */
.cws-banner {
  background: linear-gradient(135deg, var(--p600), var(--p700));
  padding: 20px 0;
  text-align: center;
  color: #fff;
}
.cws-banner .container {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.cws-banner-text {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.cws-banner-sub { font-size: 13px; opacity: .8; }
.btn-cws {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--p600);
  border-radius: var(--r-xl); padding: 10px 20px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all .18s;
}
.btn-cws:hover { background: var(--p50); }

/* ── Stats / Problem ── */
.section { padding: 72px 0; }
.section-alt { background: var(--p50); }
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--ink); margin-bottom: 12px; letter-spacing: -.5px;
}
.section-sub { color: var(--muted); font-size: 16px; max-width: 540px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; margin-top: 48px;
}
.stat-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--p400);
}
.stat-number {
  font-family: var(--font-display); font-weight: 900;
  font-size: 48px; color: var(--p600); line-height: 1;
}
.stat-label { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 48px; }
.step-card {
  background: #fff; border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--p500), var(--p700));
  color: #fff; font-family: var(--font-display); font-weight: 900;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--ink); margin-bottom: 8px;
}
.step-card p { font-size: 14px; color: var(--muted); }

/* ── Features ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 48px;
}
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: var(--r-md); padding: 20px;
  box-shadow: 0 2px 12px rgba(114,40,204,.08);
}
.feature-icon {
  font-size: 28px; flex-shrink: 0; line-height: 1;
}
.feature-item h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--ink); margin-bottom: 4px;
}
.feature-item p { font-size: 13px; color: var(--muted); }

/* ── Pricing preview ── */
.pricing-preview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 760px; margin: 48px auto 0;
}
.price-card {
  border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.price-card--free { background: #fff; border: 2px solid var(--ghost); }
.price-card--paid {
  background: linear-gradient(160deg, var(--p600), var(--p700));
  color: #fff;
}
.price-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 8px;
}
.price-card--paid .price-label { color: rgba(255,255,255,.7); }
.price-amount {
  font-family: var(--font-display); font-weight: 900;
  font-size: 40px; color: var(--ink); line-height: 1;
}
.price-card--paid .price-amount { color: #fff; }
.price-period { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.price-card--paid .price-period { color: rgba(255,255,255,.7); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; }
.price-features li::before { content: '✓'; color: var(--success); font-weight: 700; }
.price-card--paid .price-features li { color: rgba(255,255,255,.9); }
.price-card--paid .price-features li::before { color: #a8f5d7; }
.price-card--paid .price-label { color: rgba(255,255,255,.7); }

/* ── Bottom CTA ── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--p600), var(--p900));
  text-align: center; color: #fff;
}
.cta-section h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 4vw, 44px); margin-bottom: 16px; letter-spacing: -.5px;
}
.cta-section p { font-size: 17px; opacity: .8; margin-bottom: 36px; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--p600);
  border-radius: var(--r-xl); padding: 16px 32px;
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  text-decoration: none; transition: all .18s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── Footer ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  color: #fff;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .pricing-preview { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
