@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --green: #16A34A;
  --green-light: #22C55E;
  --green-dark: #166534;
  --green-bg: #F0FDF4;
  --green-glow: rgba(22,163,74,0.12);
  --navy: #0F172A;
  --navy2: #1E293B;
  --slate: #334155;
  --muted: #64748B;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-light: #475569;
  --amber: #F59E0B;
  --red: #EF4444;
  --blue: #3B82F6;
  --display: 'Clash Display', sans-serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: 48px;
}

.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}

.nav-logo-text {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.nav-logo-text span { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--green-bg); }
.nav-links a.active { color: var(--green); }

.nav-actions { display:flex; align-items:center; gap:10px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 16px 36px; font-size: 16px; border-radius: 12px; }

/* ─── SECTIONS ─── */
section { padding: 96px 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(22,163,74,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title span { color: var(--green); }

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ─── CARDS ─── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.card:hover {
  border-color: rgba(22,163,74,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-green { background: #DCFCE7; color: #166534; }
.badge-blue { background: #DBEAFE; color: #1D4ED8; }
.badge-amber { background: #FEF3C7; color: #92400E; }
.badge-red { background: #FEE2E2; color: #991B1B; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: #94A3B8;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748B;
  margin: 12px 0 20px;
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
}
.footer-logo-text {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--green-light); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #64748B;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.15s;
}
.social-btn:hover { background: var(--green); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}
.footer-bottom a { color: var(--green-light); text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

.anim { opacity:0; }
.anim.visible { animation: fadeUp 0.5s ease forwards; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 18px; }
label { display:block; font-size:13px; font-weight:600; color:var(--slate); margin-bottom:6px; }
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
textarea { resize: vertical; min-height: 100px; }
.input-icon { position:relative; }
.input-icon input { padding-left: 40px; }
.input-icon .icon { position:absolute; left:13px; top:50%; transform:translateY(-50%); color:var(--muted); font-size:15px; }

/* ─── UTILS ─── */
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.text-navy { color: var(--navy); }
.fw-700 { font-weight: 700; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.gap-2 { gap: 8px; }
.flex { display:flex; }
.flex-center { display:flex; align-items:center; }
.grid-2 { display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }

@media (max-width:768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display:none; }
  section { padding: 64px 0; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
}
