:root{
  --bg:#f7f7f8;
  --surface:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --accent:#1f7a4f;
  --accent2:#145a39;
  --radius:20px;
  --shadow:0 18px 45px rgba(2,6,23,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Segoe UI",system-ui,-apple-system,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:1120px;margin:0 auto;padding:0 22px}

/* Header */
.topbar{
  position:sticky; top:0; z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:16px;
  font-weight:700;
  white-space:nowrap;
}
.brand img{
  height:180px; /* doubled again */
  width:auto;
  display:block;
}
.brand span{
  font-size:36px; /* doubled brand text */
  letter-spacing:.2px;
}

.navlinks{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:14px;
  color:var(--muted);
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  padding:10px 12px;
  border-radius:14px;
}
.navlinks a:hover{background:#f1f5f9;color:var(--text)}
.cta{
  background:var(--accent);
  color:#fff!important;
  padding:10px 14px!important;
  border-radius:14px;
}
.cta:hover{background:var(--accent2)!important}

/* Mobile: usable without a hamburger */
@media (max-width: 760px){
  .nav{flex-direction:column; align-items:flex-start}
  .navlinks{justify-content:flex-start}
  .brand img{height:120px}
  .brand span{font-size:28px}
}

/* Hero */
.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}

.hero-card,.hero-side{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:var(--shadow);
}

.kicker{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-bottom:10px;
}

h1{
  margin:0 0 12px;
  font-size:clamp(34px, 4.8vw, 56px);
  line-height:1.08;
  letter-spacing:-.5px;
}

.lead{
  color:var(--muted);
  margin:0 0 18px;
  max-width:62ch;
}

.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:700;
  font-size:14px;
}
.btn:hover{background:#f8fafc}
.btn.primary{
  background:var(--accent);
  color:#fff;
  border:none;
}
.btn.primary:hover{background:var(--accent2)}

.note{font-size:12px;color:var(--muted);margin:0}

.hero-side h3{margin:0 0 8px;font-size:16px}
.hero-side p{margin:0 0 14px;color:var(--muted);font-size:14px}
.mini{border-top:1px solid var(--line);padding-top:14px;margin-top:14px}
.checks{margin:0;padding-left:18px;color:var(--muted);font-size:14px}
.checks li{margin:8px 0}

/* Sections / cards */
.section{padding:28px 0}
.section h2{margin:0 0 10px;font-size:22px;letter-spacing:-.2px}
.section p{margin:0;color:var(--muted)}

.band{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  margin-top:16px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media (max-width: 900px){
  .split{grid-template-columns:1fr}
}
.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.list li{margin:8px 0}

.hr{
  height:1px;
  background:var(--line);
  margin:18px 0;
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 24px rgba(2,6,23,.05);
}
.card h3{margin:0 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:14px}

/* Images */
.hero-img{
  width:100%;
  border-radius:var(--radius);
  border:1px solid var(--line);
  display:block;
}

/* FAQ accordions */
.faq details{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  margin:12px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq details p{
  margin:10px 0 0;
  color:var(--muted);
}

/* Forms */
label{font-size:14px;font-weight:700;color:var(--text)}
input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  padding:12px;
  font:inherit;
  background:#fff;
}

/* Footer */
.footer{
  margin-top:28px;
  border-top:1px solid var(--line);
  padding:22px 0;
  font-size:13px;
  color:var(--muted);
}
.footer .row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer a{color:var(--muted);text-decoration:underline}
/* Mobile header fix */
@media (max-width: 760px){
  .nav{
    flex-wrap: wrap;
  }

  .brand{
    max-width: 100%;
    overflow: hidden;
  }

  .brand span{
    font-size: 24px;          /* reduce text size on mobile */
    line-height: 1.2;
    white-space: normal;     /* allow wrapping */
  }

  .brand img{
    height: 90px;             /* keep logo visible but not dominant */
  }
}
