:root{
  --bg:#0b2e23;
  --bg2:#145c3c;
  --ink:#0f172a;
  --muted:#475569;
  --card:#ffffff;
  --line:rgba(15,23,42,.10);
  --brand:#1f7a53;
  --brand2:#0b3f2e;
  --accent:#0ea5e9;
  --radius:18px;
  --shadow:0 18px 40px rgba(2,6,23,.12);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  line-height:1.55;
  background:#fff;
}
a{color:inherit}
.container{width:min(1120px,92%);margin:0 auto}
.small{font-size:13px;color:var(--muted)}
.muted{color:var(--muted)}
/* Header */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(19,60,46,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:10px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand picture, .brand img{display:block}
.brand img{
  width:120px; height:auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.18));
}
.nav{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.nav a{
  color:#fff;
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  opacity:.92;
}
.nav a:hover{background:rgba(255,255,255,.10); opacity:1}
.nav a.active{background:rgba(0,0,0,.18); opacity:1}
.header-cta{
  display:flex; align-items:center; gap:10px;
}
.badge{
  color:#fff;
  font-weight:900;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
  white-space:nowrap;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  cursor:pointer;
}
.btn.primary{
  background:#fff; color:var(--brand2);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.btn.primary:hover{transform: translateY(-1px)}
.btn.secondary{
  background:rgba(0,0,0,.18);
  border-color:rgba(255,255,255,.22);
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
}
/* Hero */
.hero{
  color:#fff;
  padding:82px 0 54px;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(31,122,83,.65), transparent 60%),
    radial-gradient(900px 520px at 85% 0%, rgba(14,165,233,.28), transparent 55%),
    linear-gradient(135deg, rgba(11,46,35,.98), rgba(20,92,60,.92));
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.hero h1{font-size:56px; line-height:1.03; margin:0 0 12px}
.hero p{font-size:18px; margin:0 0 18px; color:rgba(255,255,255,.90)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.trustbar{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.chip{
  display:inline-flex; align-items:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  color:#ffffff;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 10px 20px rgba(0,0,0,.10);
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}

/* Sections */
.section{padding:56px 0}
.section h2{font-size:34px;margin:0 0 10px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:20px;
}
.card h3{margin:0 0 8px}
.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.kicker{font-weight:900; letter-spacing:.02em; text-transform:uppercase; font-size:12px; color:rgba(255,255,255,.82)}
/* Contact bar */
.contact-bar{
  background:#0b2e23;
  color:#fff;
  padding:18px 0;
}
.contact-bar a{color:#fff}
.contact-grid{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
/* Form */
.form-wrap{max-width:940px;margin:0 auto}
.form-card{padding:22px}
.form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.form .full{grid-column:1 / -1}
.field{display:flex;flex-direction:column;gap:8px}
.label{
  font-weight:950;
  font-size:13px;
  letter-spacing:.02em;
  color:rgba(15,23,42,.90);
  text-transform:uppercase;
}
.req{color:#b91c1c;font-weight:950;margin-left:4px}
.input,.select,.textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.14);
  border-radius:14px;
  padding:13px 14px;
  font-size:15px;
  outline:none;
  background:linear-gradient(180deg,#fff,rgba(255,255,255,.96));
  box-shadow:0 8px 18px rgba(15,23,42,.06);
  transition:box-shadow .15s ease,border-color .15s ease,transform .12s ease;
}
.input::placeholder,.textarea::placeholder{color:rgba(71,85,105,.75)}
.input:focus,.select:focus,.textarea:focus{
  border-color:rgba(31,122,83,.60);
  box-shadow:0 0 0 4px rgba(31,122,83,.14),0 12px 26px rgba(15,23,42,.10);
  transform:translateY(-1px);
}
.textarea{min-height:360px;resize:vertical;line-height:1.6}
.form-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin-top:4px}
.notice{font-size:12.5px;color:rgba(71,85,105,.95);margin-top:10px}
/* Footer */
.footer{
  background:#062118;
  color:rgba(255,255,255,.92);
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:18px;align-items:start}
.footer a{color:#fff}
.footer img{width:150px;height:auto;display:block}
/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:44px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .form{grid-template-columns:1fr}
  .textarea{min-height:320px}
  .brand img{width:108px}
  .nav{display:none}
  .mobile-menu{display:inline-flex}
}
.mobile-menu{display:none}
.mobile-drawer{
  display:none;
  background:rgba(19,60,46,.98);
  border-top:1px solid rgba(255,255,255,.10);
}
.mobile-drawer a{
  display:block;
  padding:14px 16px;
  color:#fff;
  text-decoration:none;
  font-weight:850;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mobile-drawer a:hover{background:rgba(255,255,255,.08)}


/* Ensure hero-side cards use dark text (hero section defaults to white text) */
.hero .card{
  color: var(--ink);
}
.hero .card h3{
  color: var(--ink);
}
.hero .card .muted, .hero .card p.muted{
  color: var(--muted);
}
.hero .card a{
  color: var(--brand2);
}



/* HARD FIX: prevent washed-out white text inside hero cards */
.hero .card,
.hero .card h1,
.hero .card h2,
.hero .card h3,
.hero .card p,
.hero .card strong,
.hero .card span{
  color:#0f172a !important;
}

.hero .card a{
  color:#145c3c !important;
}

.hero .card .small,
.hero .card .muted{
  color:#475569 !important;
}

