:root{
  --bg:#ffffff;
  --alt:#f6f7f9;
  --text:#111827;
  --muted:#4b5563;
  --border:#e5e7eb;
  --accent:#0f766e;
  --accent2:#065f46;
  --radius:16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.maxw{max-width:70ch}

.site-header{
  position:sticky; top:0;
  backdrop-filter: blur(8px);
  background: rgba(17, 24, 39, .92); /* darker header so white has contrast */
  border-bottom: 1px solid rgba(255,255,255,.12);
  z-index:50;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.logo {
  font-weight: 700;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
}
.nav{display:flex; gap:18px; align-items:center}

.nav a{ text-decoration:none; font-weight:600;   color: rgba(255,255,255,.88);}
.nav a:hover{
  color: #ffffff;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:var(--accent);
  color:white;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
}
.btn:hover{background:var(--accent2)}
.btn.secondary{
  background:transparent;
  color: rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-color: rgba(255,255,255,.25);
}
.btn.secondary:hover{border-color: rgba(255,255,255,.45);}

.menu-btn{
  display:none;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:white;
  font-weight:700;
}

.hero{padding:56px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:24px;
  align-items:start;
}
h1{font-size:42px; line-height:1.05; margin:0 0 14px}
.lead{font-size:18px; color:var(--muted); margin:0 0 18px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}

.hero-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:white;
  box-shadow: 0 8px 20px rgba(17,24,39,.06);
}
.hero-card h2{font-size:18px; margin:0 0 10px}
.hero-card ul{margin:0; padding-left:18px}
.small{font-size:13px}
.muted{color:var(--muted)}
.trust{
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:10px; margin-top:18px;
}
.trust-item{
  border:1px solid var(--border);
  border-radius:14px;
  padding:10px;
}
.trust-item strong{display:block}
.trust-item span{color:var(--muted); font-size:13px}

.section{padding:56px 0}
.section.alt{background:var(--alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
h2{font-size:28px; margin:0 0 10px}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:white;
}
.card h3{margin:0 0 8px}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:16px;
}
.checklist{padding-left:18px}
.checklist.x li{color:var(--muted)}
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:16px;
}
.step{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:white;
  padding:16px;
}
.step span{
  display:inline-flex;
  width:30px; height:30px;
  align-items:center; justify-content:center;
  border-radius:999px;
  background:var(--alt);
  border:1px solid var(--border);
  font-weight:800;
}

.cta-band{
  margin-top:18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.footer{padding:36px 0}
.footer-grid{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:18px;
  padding-top:10px;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.footer-bottom{padding:14px 0}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr 1fr}
  .two-col{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr}
  h1{font-size:34px}
  .menu-btn{display:inline-flex}
  .nav{
    display:none;
    position:absolute;
    right:20px; top:60px;
    flex-direction:column;
    gap:12px;
    background:white;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:12px;
    box-shadow: 0 10px 24px rgba(17,24,39,.10);
  }
  .nav.open{display:flex}
}

/* FAQ Section */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-top: 14px;
  overflow: hidden;
  background: white;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.faq-question:hover {
  background: var(--alt);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 16px 16px 16px;
}