:root{
  --green:#059000;
  --green-dark:#046f00;
  --black:#050505;
  --brown:#160d02;
  --cream:#f8f7f2;
  --white:#ffffff;
  --text:#171717;
  --muted:#6b7280;
  --border:#e7e7e7;
  --success:#027a48;
  --gold:#f4b740;
  --shadow:0 14px 40px rgba(0,0,0,.08);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:'Nunito Sans','Arial Rounded MT Bold',Arial,sans-serif;
  color:var(--text);
  background:var(--cream);
  line-height:1.6;
}

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

.container{
  width:min(1180px,92%);
  margin:auto;
}

.nav{
  background:var(--white);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:50;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:20px;
}

.logo-img{
  height:46px;
  width:auto;
  object-fit:contain;
}

.logo-img.dark-nav{
  max-width:210px;
}

.logo-img.footer-logo{
  height:54px;
  max-width:245px;
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
  font-weight:800;
  color:#222;
}

.nav-links a:hover{color:var(--green)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:999px;
  padding:12px 20px;
  font-weight:900;
  cursor:pointer;
  background:var(--green);
  color:#fff;
  transition:.2s ease;
  font-family:inherit;
  box-shadow:0 8px 18px rgba(5,144,0,.18);
}

.btn:hover{
  background:var(--green-dark);
  transform:translateY(-1px);
}

.btn.secondary{
  background:#fff;
  color:var(--green);
  border:1px solid var(--green);
  box-shadow:none;
}

.btn.black{
  background:var(--black);
  color:#fff;
  box-shadow:none;
}

.btn.light{
  background:#fff;
  color:var(--black);
  box-shadow:none;
}

.hero{
  padding:76px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(5,144,0,.32), transparent 28%),
    linear-gradient(135deg,#050505 0%,#0a0a0a 60%,#160d02 100%);
  color:#fff;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:44px;
  align-items:center;
}

.hero-logo{
  height:70px;
  width:auto;
  margin-bottom:24px;
}

.hero h1{
  font-size:54px;
  line-height:1.04;
  margin:0 0 18px;
  letter-spacing:-1.5px;
  font-weight:1000;
}

.hero p{
  font-size:18px;
  color:#ededed;
  margin-bottom:28px;
}

.search-box{
  background:#fff;
  padding:16px;
  border-radius:24px;
  display:grid;
  grid-template-columns:1.4fr 1fr auto;
  gap:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.28);
}

input, select, textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:13px 15px;
  font:inherit;
  background:#fff;
  outline:none;
}

input:focus,select:focus,textarea:focus{
  border-color:var(--green);
  box-shadow:0 0 0 4px rgba(5,144,0,.08);
}

textarea{min-height:150px;resize:vertical}

.hero-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  padding:30px;
  backdrop-filter:blur(10px);
  box-shadow:0 24px 70px rgba(0,0,0,.24);
}

.hero-card h2{font-size:30px;margin:0 0 10px}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:22px;
}

.stat{
  background:#fff;
  color:var(--text);
  border-radius:20px;
  padding:18px;
  text-align:center;
}

.stat strong{
  display:block;
  font-size:28px;
  color:var(--green);
  font-weight:1000;
}

.section{padding:58px 0}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:24px;
}

.section-title h2{
  font-size:36px;
  line-height:1.1;
  margin:0;
  letter-spacing:-.7px;
  font-weight:1000;
}

.section-title p{
  color:var(--muted);
  margin:8px 0 0;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.card h3{margin-top:0;font-size:22px}

.icon-circle{
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(5,144,0,.1);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:1000;
  margin-bottom:14px;
}

.badge{
  display:inline-flex;
  align-items:center;
  background:#ecfdf3;
  color:var(--success);
  padding:6px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  margin:2px;
}

.badge.gold{
  background:#fff7e6;
  color:#92400e;
}

.badge.dark{
  background:#111;
  color:#fff;
}

.job-list{
  display:grid;
  gap:16px;
}

.job-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
}

.job-card h3{margin:10px 0 6px}

.meta{
  color:var(--muted);
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:14px;
}

.layout{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  padding:36px 0;
}

.sidebar{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:20px;
  height:max-content;
  position:sticky;
  top:90px;
  box-shadow:var(--shadow);
}

.sidebar a{
  display:block;
  padding:11px 13px;
  border-radius:14px;
  margin-bottom:5px;
  font-weight:900;
  color:#454545;
}

.sidebar a.active,.sidebar a:hover{
  background:#ecfdf3;
  color:var(--green);
}

.table-wrap{
  overflow:auto;
  border:1px solid var(--border);
  border-radius:18px;
}

table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

th,td{
  padding:15px;
  border-bottom:1px solid var(--border);
  text-align:left;
  vertical-align:top;
}

th{
  background:#fafafa;
  color:#4b5563;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.full{grid-column:1/-1}

.pricing-card{
  position:relative;
  overflow:hidden;
}

.pricing-card.featured{
  border:2px solid var(--green);
}

.price{
  font-size:40px;
  font-weight:1000;
  margin:10px 0;
}

.footer{
  background:#050505;
  color:#e5e5e5;
  padding:42px 0;
  margin-top:50px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr repeat(3,1fr);
  gap:24px;
}

.footer h4{color:#fff;margin-bottom:8px}
.footer p{color:#cfcfcf}

.mobile-menu{display:none;font-weight:1000;font-size:24px}

@media(max-width:900px){
  .hero-grid,.grid-3,.grid-2,.layout,.footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .search-box{grid-template-columns:1fr}
  .nav-links{display:none}
  .mobile-menu{display:block}
  .form-grid{grid-template-columns:1fr}
  .sidebar{position:static}
  .job-card{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .section-title{display:block}
  .logo-img.dark-nav{max-width:180px}
}
