/* Minimalistic light theme — nature & purity (no blur). */
:root{
  --bg:#f4fbff;
  --panel:#ffffff;
  --text:#0b1220;
  --muted:rgba(11,18,32,.68);
  --line:rgba(11,18,32,.12);
  --accent:#16a34a;   /* green */
  --accent2:#0ea5e9;  /* sky */
  --soft:#ecfeff;
  --shadow: 0 14px 40px rgba(2, 20, 60, .10);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(22,163,74,.16), transparent 55%),
    linear-gradient(180deg, #f7feff, var(--bg));
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:focus-visible, button:focus-visible{outline:2px solid rgba(14,165,233,.6); outline-offset:3px; border-radius:12px}

.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  background: rgba(255,255,255,.86);
  border-bottom:1px solid var(--line);
  backdrop-filter: none;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand .mark{
  width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow:0 0 0 7px rgba(14,165,233,.12);
}
.brand .name{font-size:16px}

.burger{
  width:44px; height:44px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius:14px;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 8px 22px rgba(2,20,60,.06);
}
.burger span{
  display:block; width:18px; height:2px; background: rgba(11,18,32,.88);
  border-radius:9px;
}
.burger span:nth-child(2){width:14px; opacity:.85}
.burger span:nth-child(3){width:10px; opacity:.75}

.backdrop{
  position:fixed; inset:0; z-index:60;
  background: rgba(2, 10, 25, .42);
}

.drawer{
  position:fixed; top:0; right:0; z-index:70;
  width:min(360px, 92vw); height:100vh;
  background: var(--panel);
  border-left:1px solid var(--line);
  transform: translateX(102%);
  transition: transform .22s ease;
  box-shadow: var(--shadow);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.drawer.is-open{ transform: translateX(0); }

.drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 6px 2px 6px;
}
.drawer__title{font-weight:900; letter-spacing:.2px}
.drawer__close{
  width:40px; height:40px;
  border:1px solid var(--line);
  background: rgba(2,20,60,.03);
  color:var(--text);
  border-radius:14px;
  cursor:pointer;
}

.drawer__nav{
  display:flex; flex-direction:column;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
}
.navlink{
  padding:14px 14px;
  background: rgba(2,20,60,.02);
  border-bottom:1px solid var(--line);
}
.navlink:last-child{border-bottom:none}
.navlink:hover{background: rgba(14,165,233,.07)}

.drawer__actions{margin-top:4px}
.drawer__hint{
  margin-top:auto;
  color:var(--muted);
  font-size:13px;
  padding:10px 8px;
}

.main{max-width:1020px; margin:0 auto; padding:0 18px 46px}

.hero{padding:46px 0 18px}
.hero__inner{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78));
  border-radius: calc(var(--radius) + 6px);
  padding:28px;
  box-shadow: 0 16px 46px rgba(2,20,60,.10);
}

.hero__badge{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px}
.chip{
  font-size:12px;
  color: rgba(11,18,32,.82);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}
.chip--soft{
  background: rgba(14,165,233,.06);
  border-color: rgba(14,165,233,.22);
}

h1{margin:0 0 10px; font-size: clamp(28px, 4vw, 44px); line-height:1.07; letter-spacing:-.35px}
.muted{color:var(--muted)}
.lead{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.55}

.cta{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(14,165,233,.24);
  background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(22,163,74,.14));
  color: var(--text);
  font-weight:800;
  cursor:pointer;
  min-width: 190px;
}
.btn:hover{filter: brightness(0.98)}
.btn--secondary{
  border:1px solid var(--line);
  background: rgba(255,255,255,.95);
}
.btn--secondary:hover{background: rgba(2,20,60,.03)}

.hero__grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 860px){ .hero__grid{grid-template-columns:1fr} }

.mini{
  border:1px solid var(--line);
  background: rgba(255,255,255,.88);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 10px 26px rgba(2,20,60,.06);
}
.mini__icon{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(22,163,74,.12));
  border: 1px solid rgba(14,165,233,.18);
  color: rgba(11,18,32,.86);
}
.mini__icon svg{width:20px; height:20px}
.mini__title{margin-top:10px; font-weight:900}
.mini__text{margin-top:4px; color:var(--muted); font-size:13px; line-height:1.45}

.section{padding:26px 0 6px}
.section__head{display:flex; align-items:baseline; justify-content:space-between; gap:12px; flex-wrap:wrap}
h2{margin:0; font-size:22px; letter-spacing:-.2px}
.section__sub{margin:0; color:var(--muted); font-size:13px}

.cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 860px){ .cards{grid-template-columns:1fr} }

.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.card__label{color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.8px}
.card__value{margin-top:6px; font-size:18px; font-weight:900}
.card__meta{margin-top:6px; color:var(--muted); font-size:13px}

.hintBox{
  margin-top:12px;
  border:1px dashed rgba(14,165,233,.35);
  background: rgba(14,165,233,.06);
  border-radius: var(--radius);
  padding:14px 16px;
}
.hintBox__title{font-weight:900; margin-bottom:4px}
.hintBox__text{color:var(--muted); line-height:1.5}

.tableWrap{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.table{width:100%; border-collapse:collapse}
.table th, .table td{
  padding:14px 14px;
  border-bottom:1px solid var(--line);
}
.table thead th{
  font-size:12px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:var(--muted);
  background: rgba(2,20,60,.02);
}
.table tbody tr:last-child td{border-bottom:none}
.right{text-align:right; font-weight:900}

.note{margin-top:12px; display:flex; gap:8px; flex-wrap:wrap}
.pill{
  font-size:12px;
  color:rgba(11,18,32,.74);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}

.split{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:12px;
}
@media (max-width: 860px){ .split{grid-template-columns:1fr} }

.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.panel--accent{
  background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(22,163,74,.08));
  border-color: rgba(14,165,233,.22);
}
h3{margin:0 0 8px; font-size:18px; letter-spacing:-.2px}
.panel p{margin:0 0 10px; color:var(--muted); line-height:1.55}

.bullets{display:grid; gap:10px; margin-top:10px}
.bullet{display:flex; gap:10px; align-items:flex-start}
.bullet__dot{
  width:10px; height:10px; border-radius:999px;
  margin-top:6px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
}
.bullet__text{color:var(--muted); line-height:1.5}

.kpiGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin: 10px 0 10px;
}
.kpi{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.85);
  border-radius: 16px;
  padding:12px;
}
.kpi__num{font-weight:950; font-size:28px; letter-spacing:-.6px}
.kpi__label{color:var(--muted); font-size:12px}

.smallMuted{color:var(--muted); font-size:13px; margin-top:10px}

.banner{
  margin-top:12px;
  border:1px solid rgba(22,163,74,.22);
  background: rgba(22,163,74,.06);
  border-radius: var(--radius);
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:center;
}
.banner__icon{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(22,163,74,.22);
  color: rgba(11,18,32,.86);
}
.banner__icon svg{width:22px; height:22px}
.banner__title{font-weight:950}
.banner__sub{color:var(--muted); font-size:13px; margin-top:2px}

.serviceGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 920px){ .serviceGrid{grid-template-columns:1fr} }

.serviceCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.serviceCard__title{color:var(--muted); font-size:12px; letter-spacing:.8px; text-transform:uppercase}
.serviceCard__value{margin-top:6px; font-size:18px; font-weight:950}
.serviceCard__text{margin-top:8px; color:var(--muted); line-height:1.55}

.ul{margin:0; padding-left:18px}
.ul li{margin:6px 0}

.steps{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){ .steps{grid-template-columns:1fr} }

.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  gap:12px;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.step__num{
  width:40px; height:40px; border-radius: 16px;
  display:grid; place-items:center;
  font-weight:950;
  color: rgba(11,18,32,.9);
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(22,163,74,.12));
  border:1px solid rgba(14,165,233,.22);
}
.step__title{font-weight:950}
.step__text{color:var(--muted); margin-top:4px; line-height:1.5; font-size:13px}

.callout{
  margin-top:12px;
  border:1px dashed rgba(22,163,74,.34);
  background: rgba(22,163,74,.06);
  border-radius: var(--radius);
  padding:14px 16px;
}
.callout__title{font-weight:950; margin-bottom:4px}
.callout__text{color:var(--muted); line-height:1.5}

.faq{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.faqItem{
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:10px 12px;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.faqItem summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faqItem summary::-webkit-details-marker{display:none}
.faqBody{padding-top:8px; color:var(--muted); line-height:1.55}

.contactGrid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 680px){ .contactGrid{grid-template-columns:1fr} }

.contactCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:16px;
  display:block;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.contactCard:hover{background: rgba(14,165,233,.05)}
.contactCard__label{color:var(--muted); font-size:12px; letter-spacing:.8px; text-transform:uppercase}
.contactCard__value{margin-top:6px; font-size:18px; font-weight:950}
.contactCard__meta{margin-top:6px; color:var(--muted); font-size:13px}

.legalBox{
  margin-top:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding:12px 14px;
  box-shadow: 0 12px 28px rgba(2,20,60,.06);
}
.legalRow{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(11,18,32,.14);
}
.legalRow:last-child{border-bottom:none}
.legalKey{color:var(--muted); font-size:12px; letter-spacing:.8px; text-transform:uppercase; padding-top:3px}
.legalVal{font-weight:900}

.footer{
  margin-top:28px;
  border-top:1px solid var(--line);
  padding:18px 0 0;
}
.footer__inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.footer__brand{font-weight:950; letter-spacing:.3px}
.footer__meta{color:var(--muted); font-size:13px; line-height:1.55}
