/* Pure & Polished — simple, responsive one-page site */
:root{
  --bg: #F6F0E6;
  --bg2: #FBF7F1;
  --ink: #0F1C1B;
  --muted: #4A5B59;
  --brand: #0A5C56;
  --brand2: #0F6D66;
  --card: rgba(255,255,255,0.78);
  --border: rgba(15, 28, 27, 0.12);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 30% -10%, rgba(10,92,86,0.16), transparent 60%),
              radial-gradient(900px 500px at 110% 10%, rgba(10,92,86,0.10), transparent 55%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit}
.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  z-index:1000;
}

.header{
  position:sticky;
  top:0;
  z-index:200;
  backdrop-filter: blur(10px);
  background: rgba(246,240,230,0.8);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{display:flex; align-items:center; text-decoration:none}
.brand__logo{
  height:44px;
  width:auto;
  border-radius:10px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background: rgba(10,92,86,0.08); color: var(--ink);}

.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.6);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px;
  background: var(--ink);
  margin:6px 10px;
  border-radius:99px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  background: var(--brand);
  color:#fff !important;
  border:1px solid rgba(0,0,0,0.05);
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  box-shadow: 0 8px 22px rgba(10,92,86,0.18);
}
.btn:hover{background: var(--brand2)}
.btn--ghost{
  background: transparent;
  color: var(--brand) !important;
  box-shadow:none;
  border:1px solid rgba(10,92,86,0.26);
}
.btn--ghost:hover{
  background: rgba(10,92,86,0.08);
}
.btn--small{padding:10px 12px; border-radius:12px; font-size:14px}
.btn--full{width:100%}

.hero{
  padding: 40px 0 10px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap:22px;
  align-items:start;
}

.pill{
  display:inline-flex;
  font-weight:700;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(10,92,86,0.10);
  border:1px solid rgba(10,92,86,0.14);
  color: var(--brand);
  margin: 0 0 14px;
}

h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-0.02em;
  margin: 0 0 12px;
}
.accent{color: var(--brand)}
.lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 18px;
}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom: 16px;
}
.trust{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  color: var(--muted);
  font-weight:600;
}
.trust li{background: rgba(255,255,255,0.55); border:1px solid var(--border); padding:8px 10px; border-radius: 14px}

.hero__card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card__title{margin:0 0 4px; font-size:18px}
.card__sub{margin:0 0 14px; color:var(--muted)}

.mini-form label{
  display:block;
  font-weight:700;
  font-size:12px;
  color: var(--muted);
  margin-bottom: 10px;
}
input, select, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.85);
  font: inherit;
}
textarea{resize:vertical}
input:focus, select:focus, textarea:focus{
  outline: 2px solid rgba(10,92,86,0.22);
  border-color: rgba(10,92,86,0.35);
}
.tiny{font-size:12px; color: var(--muted); margin:10px 0 0}
.muted{color: var(--muted)}
.big{font-size:22px; font-weight:800; margin:8px 0}

.section{
  padding: 56px 0;
}
.section--alt{
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}
.section__head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-0.01em;
}
.section__head p{margin:0; color:var(--muted); max-width: 60ch}

.grid{
  display:grid;
  gap:14px;
}
.cards{grid-template-columns: repeat(3, 1fr)}
.card{
  background: rgba(255,255,255,0.75);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color: var(--muted)}
.list{margin:0; padding-left: 18px; color: var(--muted)}
.list li{margin:6px 0}

.two{grid-template-columns: 1fr 1fr}

.panel{
  background: rgba(255,255,255,0.70);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}
.panel h3{margin:0 0 8px}
.panel p{margin:0; color: var(--muted)}

.callout{
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(10,92,86,0.12), rgba(255,255,255,0.55));
  border:1px solid rgba(10,92,86,0.20);
  border-radius: var(--radius);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.callout h3{margin:0 0 4px}
.callout p{margin:0; color: var(--muted)}

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.steps li{
  background: rgba(255,255,255,0.75);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.steps h3{margin:0 0 8px}
.steps p{margin:0; color: var(--muted)}

.faq details{
  background: rgba(255,255,255,0.75);
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{color: var(--muted); margin: 10px 0 0}

.contact .badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(10,92,86,0.18);
  background: rgba(10,92,86,0.10);
  color: var(--brand);
  font-weight:800;
  font-size:12px;
}
.badges{display:flex; flex-wrap:wrap; gap:8px}
.hr{border:none; border-top:1px solid var(--border); margin:16px 0}

.footer{
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: rgba(246,240,230,0.65);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:14px;
  align-items:center;
}
.footer__brand img{height:40px; border-radius:10px}
.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  justify-content:center;
}
.footer__links a{
  text-decoration:none;
  color: var(--muted);
  font-weight:700;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
}
.footer__links a:hover{background: rgba(10,92,86,0.08); color: var(--ink)}
.footer__cta{display:flex; flex-direction:column; align-items:flex-end; gap:8px}

/* Responsive */
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .hero__grid{grid-template-columns: 1fr}
  .hero{padding-top: 26px}
}
@media (max-width: 720px){
  .nav__toggle{display:block}
  .nav{
    position:absolute;
    right: 4vw;
    top: 70px;
    width:min(92vw, 360px);
    background: rgba(255,255,255,0.92);
    border:1px solid var(--border);
    border-radius: 18px;
    padding: 10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav a{padding:12px 12px}
  .cards{grid-template-columns: 1fr}
  .two{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr; text-align:center}
  .footer__cta{align-items:center}
}

