:root {
  --green: #2d7a4f;
  --green-dark: #1f5c3a;
  --green-light: #3a9960;
  --ink: #1a2e20;
  --muted: #4a6352;
  --line: #d6e8dc;
  --bg: #f3f8f4;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.6 system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; }

/* Top-right sign-in / my-jobs button */
.top-action {
  position: absolute;
  top: 20px; right: 28px;
  z-index: 10;
}
.btn-nav {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background .15s ease;
}
.btn-nav:hover { background: rgba(255,255,255,0.28); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-primary {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.24); }
.btn-secondary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(45,122,79,.3);
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--green-dark); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d7a4f 0%, rgb(39 138 74 / 0.4) 20%, #1a5035 100%);
  color: #fff;
  padding: 88px 24px 96px;
  text-align: center;
}
.hero-globe {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  opacity: 0.55;
  pointer-events: none;
}
@media (max-width: 760px) {
  .hero-globe { display: none; }
}
.hero .badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { font-size: 52px; margin: 0 0 16px; letter-spacing: -.02em; }
.hero p {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 19px;
  color: rgba(255,255,255,.92);
}

/* Layout container */
.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
section h2 { font-size: 30px; margin: 0 0 12px; letter-spacing: -.01em; }
section .lead { color: var(--muted); max-width: 680px; margin: 0 0 40px; font-size: 17px; }

.about p { max-width: 760px; color: var(--muted); font-size: 17px; }
.about strong { color: var(--ink); }

/* Analysis cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20,60,30,.1); }
.card .icon { font-size: 30px; margin-bottom: 14px; }
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step { position: relative; padding-left: 56px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}
.step h3 { margin: 4px 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.how { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Final CTA */
.cta { text-align: center; }
.cta h2 { margin-bottom: 24px; }

footer {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 40px 24px;
}

@media (max-width: 560px) {
  .hero h1 { font-size: 38px; }
  .hero { padding: 64px 20px 72px; }
  section { padding: 56px 0; }
}

/* Pricing page */
.hero-pricing { padding: 72px 24px 80px; }
.hero-pricing h1 { font-size: 42px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform .12s ease, box-shadow .12s ease;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(20,60,30,.1); }
.pricing-card.featured {
  border: 2px solid var(--green);
  box-shadow: 0 8px 24px rgba(45,122,79,.15);
}
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 10px;
}
.plan-price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1;
}
.plan-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.plan-tagline {
  font-size: 15px;
  color: var(--muted);
  margin: 8px 0 24px;
}
.plan-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.plan-features li {
  font-size: 15px;
  color: var(--ink);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: var(--green);
  color: #fff;
  transition: background .12s ease, transform .12s ease;
}
.plan-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.plan-cta.outline {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.plan-cta.outline:hover { background: var(--green); color: #fff; }
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 600px;
  margin: 32px auto 0;
}
@media (max-width: 560px) {
  .hero-pricing h1 { font-size: 32px; }
}
