
:root{
  --primary:#2b6777;      /* Petrol */
  --accent:#52ab98;       /* Header green / accent */
  --muted:#c8d8e4;        /* Light blue-gray */
  --paper:#edf3f2;        /* Softer page bg (less white) */
  --surface:#e8f0ee;      /* Section alt bg */
  --card:#f7faf9;         /* Card background */
  --border:#dbe7e4;       /* Card/section borders */
  --text:#22303a;         /* Main text */
  --text-muted:#4b5d63;   /* Muted text */
  --ring: rgba(82,171,152,.28);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,Helvetica,sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height:1.7;
}
.container{max-width:1100px;margin:0 auto;padding:0 1.2rem}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}

/* Header: green with white menu text */
.header{position:sticky;top:0;background:var(--accent);border-bottom:1px solid rgba(0,0,0,.12);z-index:10}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.9rem 0}
.brand{display:flex;align-items:center}
.brand img{height:44px;max-width:170px;width:auto;display:block}
.menu{display:flex;gap:1.1rem;flex-wrap:wrap;margin-left:auto}
.menu a{color:#ffffff;opacity:.95;font-weight:600}
.menu a:hover{color:#ffffff;opacity:1}
.menu a:focus{outline:2px solid rgba(255,255,255,.6);outline-offset:2px;border-radius:6px}

.hero{
  padding:4.2rem 0 2.6rem;
  background-image: url("assets/head_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;

  position:relative;
}
.hero::before{content:"";position:absolute;inset:0;background: linear-gradient(180deg, rgba(237,243,242,.92) 0%, rgba(237,243,242,.86) 35%, rgba(237,243,242,.78) 100%);z-index:0}
.hero > .container{position:relative; z-index:1}

.badge{display:inline-block;padding:.25rem .6rem;border:1px solid var(--border);border-radius:999px;
  font-size:.85rem;color:var(--text-muted);background:#ffffff88}
h2{font-size:2.05rem;margin:.6rem 0 1rem;color:var(--primary)}
.lead{font-size:1.1rem;color:var(--text-muted);max-width:780px}
.cta{margin-top:1.1rem;display:flex;gap:.8rem;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.72rem 1rem;border-radius:12px;
  border:1px solid var(--border);background:var(--card);color:var(--text);font-weight:600;box-shadow:0 1px 0 #e5e7eb22}
.btn.primary{background:var(--accent);color:#fff;border-color:var(--accent)}
.btn.primary:hover{filter:brightness(1.03)}
.grid{display:grid;gap:1rem}
.grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
@media (max-width:900px){.grid.cols-3{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.grid.cols-3,.grid.cols-2{grid-template-columns:1fr}}
.card{background:var(--card);border:1px solid var(--border);padding:1rem;border-radius:14px;box-shadow:0 8px 20px rgba(0,0,0,.03)}
.card h3{margin:.2rem 0 .5rem;color:var(--primary)}
.card p{color:var(--text)} 
.section{padding:2.8rem 0;border-top:1px solid var(--border);background:var(--paper)}
.section.alt{background:var(--surface)}
.kpis{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.kpi{padding:.7rem 1rem;border-radius:12px;border:1px dashed var(--border);background:#fff}
.kpi strong{font-size:1.15rem;display:block;color:var(--accent)}
.list{margin:.6rem 0 0;padding-left:1.1rem}
.list li{margin:.2rem 0}
.process{counter-reset:step}
.step{display:flex;gap:.8rem;align-items:flex-start}
.step:before{counter-increment:step;content:counter(step);width:32px;height:32px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;background:var(--accent);color:#fff;font-weight:800;margin-top:.2rem}
.footer{padding:2rem 0;color:var(--text-muted);border-top:1px solid var(--border);background:var(--surface)}
.footer a{color:var(--text-muted)}
.small{font-size:.92rem;color:var(--text-muted)}
.badges{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.8rem}
.badges .chip{border:1px solid var(--border);border-radius:999px;padding:.25rem .6rem;background:#fff;color:var(--text-muted);font-size:.85rem}
input,textarea{outline:none;background:#fff;border:1px solid var(--border);color:var(--text);border-radius:10px;padding:.6rem}
input:focus,textarea:focus{box-shadow:0 0 0 4px var(--ring);border-color:var(--accent)}
address{font-style:normal;white-space:pre-line}
.notice{border-left:4px solid var(--accent);padding:.6rem 1rem;background:#f0fdf9;border-radius:8px}
