:root{
  --bg:#FFFFFF;
  --ink:#424242;
  --muted:#6b6b6b;
  --alt:#EEEEEE;
  --accent:#1976D2;
  --accent-ink:#0f3e73;
  --line:rgba(66,66,66,.16);
  --shadow:0 18px 50px rgba(0,0,0,.08);
  --radius:18px;
  --radius2:26px;
  --max:1160px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,"Noto Sans",sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit}
.sr{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}
.skip{
  position:absolute;
  left:-9999px;top:10px;
  padding:10px 12px;
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:12px;
  z-index:9999;
}
.skip:focus{left:10px}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.header{
  position:sticky;top:0;z-index:80;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid var(--line);
}
.header__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__mark{
  width:34px;height:34px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--accent),#0f5fb0);
  box-shadow:0 10px 26px rgba(25,118,210,.25);
}
.brand__text{display:flex;flex-direction:column;line-height:1.15}
.brand__name{font-weight:700;letter-spacing:.2px}
.brand__sub{font-size:12px;color:var(--muted)}

.nav{display:flex;align-items:center;gap:10px}
.nav__toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--bg);
  cursor:pointer;
}
.nav__toggleLines{
  width:18px;height:12px;display:block;margin:0 auto;
  background:
    linear-gradient(var(--ink),var(--ink)) 0 0/100% 2px no-repeat,
    linear-gradient(var(--ink),var(--ink)) 0 50%/100% 2px no-repeat,
    linear-gradient(var(--ink),var(--ink)) 0 100%/100% 2px no-repeat;
  opacity:.9;
}
.nav__menu{display:flex;align-items:center;gap:6px}
.nav__link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid transparent;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
}
.nav__link:hover{background:rgba(238,238,238,.6);border-color:rgba(66,66,66,.10)}
.nav__link.is-active{background:rgba(25,118,210,.12);border-color:rgba(25,118,210,.25);color:var(--accent-ink)}

.hero{
  padding:44px 0 18px;
  background:
    radial-gradient(1200px 500px at 12% 0%, rgba(25,118,210,.15), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(66,66,66,.10), transparent 55%);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}
.hero__content{padding:12px 0}
.eyebrow{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(238,238,238,.7);
  border:1px solid rgba(66,66,66,.12);
  font-size:12px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:rgba(66,66,66,.9);
}
.h1{font-size:46px;line-height:1.08;margin:14px 0 10px;letter-spacing:-.6px}
.h2{font-size:30px;line-height:1.15;margin:0}
.h3{font-size:18px;line-height:1.25;margin:0}
.h3--tight{margin:0 0 6px}
.lead{font-size:18px;color:rgba(66,66,66,.88);margin:0 0 18px;max-width:62ch}
.muted{color:var(--muted)}
.dot{display:inline-block;width:4px;height:4px;border-radius:50%;background:rgba(66,66,66,.35);transform:translateY(-2px)}
.link{color:var(--accent);text-decoration:none;font-weight:700}
.link:hover{text-decoration:underline}
.link--button{background:transparent;border:0;padding:0;cursor:pointer;font:inherit;color:var(--accent);font-weight:800}

.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 18px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  font-weight:800;
  font-size:14px;
  letter-spacing:.15px;
  transition:transform .06s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:var(--accent);
  border-color:rgba(25,118,210,.65);
  color:#fff;
  box-shadow:0 14px 30px rgba(25,118,210,.25);
}
.btn--primary:hover{box-shadow:0 16px 34px rgba(25,118,210,.30)}
.btn--secondary{
  background:rgba(25,118,210,.12);
  color:var(--accent-ink);
  border-color:rgba(25,118,210,.30);
}
.btn--ghost{
  background:rgba(238,238,238,.65);
  color:var(--ink);
  border-color:rgba(66,66,66,.12);
}
.btn--ghost:hover{background:rgba(238,238,238,.9)}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:10px;
  margin:18px 0 14px;
}
.stat{
  background:rgba(255,255,255,.8);
  border:1px solid rgba(66,66,66,.12);
  border-radius:var(--radius);
  padding:12px 12px 10px;
}
.stat__num{font-weight:900;font-size:20px}
.stat__label{font-size:12px;color:rgba(66,66,66,.72)}
.hero__links{display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin-top:10px}

.hero__media{
  position:relative;
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(66,66,66,.14);
  background:var(--alt);
  box-shadow:var(--shadow);
  min-height:420px;
}
.hero__media img{width:100%;height:100%;object-fit:cover}
.hero__badge{
  position:absolute;
  left:16px;bottom:16px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(66,66,66,.14);
  border-radius:18px;
  padding:10px 12px;
  backdrop-filter: blur(10px);
}
.hero__badgeTitle{font-weight:900}
.hero__badgeText{font-size:12px;color:var(--muted)}

.section{padding:56px 0}
.section--alt{background:var(--alt)}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.section__actions{display:flex;gap:10px;flex-wrap:wrap}

.grid{display:grid;gap:16px}
.cards{grid-template-columns:repeat(3,1fr)}
.card{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.card__img{width:100%;height:190px;object-fit:cover;background:var(--alt)}
.card__body{padding:14px}
.card__meta{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:rgba(25,118,210,.12);
  color:var(--accent-ink);
  border:1px solid rgba(25,118,210,.25);
}
.pill--soft{
  background:rgba(238,238,238,.8);
  color:rgba(66,66,66,.92);
  border-color:rgba(66,66,66,.12);
}
.card__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
}
.price{font-weight:900}

.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.panel{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.panel__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:12px}
.mini{
  background:rgba(238,238,238,.65);
  border:1px solid rgba(66,66,66,.12);
  border-radius:18px;
  padding:12px;
}
.mini__title{font-weight:900;margin-bottom:6px}
.mini__text{font-size:13px;color:rgba(66,66,66,.78);margin-bottom:8px}

.quote{
  margin-top:14px;
  background:linear-gradient(135deg, rgba(25,118,210,.14), rgba(238,238,238,.7));
  border:1px solid rgba(25,118,210,.22);
  border-radius:var(--radius2);
  padding:16px;
}
.quote__text{margin:0 0 10px;font-weight:800}
.quote__by{font-size:12px;color:rgba(66,66,66,.74)}

.featureList{display:flex;flex-direction:column;gap:12px;margin:18px 0}
.feature{display:flex;gap:12px;align-items:flex-start}
.feature__icon{
  width:38px;height:38px;border-radius:14px;
  background:rgba(25,118,210,.14);
  border:1px solid rgba(25,118,210,.25);
  flex:0 0 auto;
}

.actionsRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}

.steps{list-style:none;padding:0;margin:14px 0 0;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:16px;
}
.step__num{font-weight:1000;color:rgba(25,118,210,.85);letter-spacing:.8px}
.step__body{margin-top:10px}

.ctaBand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:20px;
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(66,66,66,.14);
  background:rgba(255,255,255,.75);
}
.ctaBand__actions{display:flex;gap:10px;flex-wrap:wrap}

.reasons{grid-template-columns:repeat(3,1fr)}
.reason{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.reason__top{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}

.faq{display:grid;gap:10px}
.faq__item{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:18px;
  padding:12px 14px;
}
.faq__item summary{cursor:pointer;font-weight:900}
.faq__item p{margin:10px 0 0;color:rgba(66,66,66,.82)}

.wideCards{display:grid;gap:14px;margin-top:18px}
.wideCard{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
}
.checklist{margin:0;padding-left:18px}
.checklist li{margin:6px 0}

.footerLinks{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:22px;
}

.pageHero{
  padding:40px 0 22px;
  background:
    radial-gradient(1200px 520px at 10% 0%, rgba(25,118,210,.14), transparent 62%),
    radial-gradient(900px 420px at 90% 20%, rgba(66,66,66,.10), transparent 55%);
}
.pageHero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.pageHero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.pageHero--image .pageHero__media{
  border-radius:var(--radius2);
  border:1px solid rgba(66,66,66,.14);
  overflow:hidden;
  background:var(--alt);
  box-shadow:var(--shadow);
  min-height:280px;
}
.pageHero--image .pageHero__media img{width:100%;height:100%;object-fit:cover}

.filters{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.filters__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.filters__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

.field{display:flex;flex-direction:column;gap:6px}
label{font-weight:800;font-size:13px}
input,select,textarea{
  border:1px solid rgba(66,66,66,.18);
  border-radius:14px;
  padding:11px 12px;
  font:inherit;
  background:var(--bg);
  color:var(--ink);
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(25,118,210,.55);
  box-shadow:0 0 0 4px rgba(25,118,210,.14);
}
textarea{resize:vertical}

.empty{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:20px;
  text-align:center;
}

.serviceCards{grid-template-columns:repeat(3,1fr)}
.serviceCard{
  background:var(--bg);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.serviceCard__top{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:10px}
.serviceCard--accent{
  border-color:rgba(25,118,210,.35);
  background:linear-gradient(135deg, rgba(25,118,210,.10), rgba(255,255,255,.85));
}
.bullets{margin:10px 0 0;padding-left:18px;color:rgba(66,66,66,.82)}
.bullets li{margin:6px 0}

.contactCards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:16px}
.contactCard{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(66,66,66,.14);
  border-radius:18px;
  padding:12px;
}
.contactCard__title{font-weight:900;margin-bottom:6px}
.note{
  margin-top:14px;
  background:rgba(238,238,238,.7);
  border:1px solid rgba(66,66,66,.12);
  border-radius:18px;
  padding:12px;
}
.note__title{font-weight:900;margin-bottom:4px}
.note__text{color:rgba(66,66,66,.78);font-size:13px}

.formWrap{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(66,66,66,.14);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow:var(--shadow);
}
.form{margin-top:12px}
.grid2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:12px;
  background:rgba(238,238,238,.6);
  border:1px solid rgba(66,66,66,.12);
  border-radius:16px;
  padding:12px;
}
.check input{margin-top:3px}
.error{min-height:16px;color:#b00020;font-size:12px;font-weight:800}
.form__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}
.form__status{margin-top:12px;font-weight:900}

.legalHero{padding:42px 0 10px;background:var(--alt)}
.legal{max-width:88ch}
.tableWrap{overflow:auto;border-radius:18px;border:1px solid rgba(66,66,66,.14);background:var(--bg)}
.table{width:100%;border-collapse:collapse;min-width:720px}
.table th,.table td{padding:12px 12px;border-bottom:1px solid rgba(66,66,66,.14);text-align:left}
.table th{background:rgba(238,238,238,.7);font-weight:900}

.footer{
  background:#111111;
  color:#f2f2f2;
  padding:34px 0 18px;
  margin-top:0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.footer__brand{display:flex;gap:12px;align-items:center;margin-bottom:12px}
.footer__name{font-weight:1000}
.footer__muted{opacity:.78;font-size:12px}
.footer__text{opacity:.86;max-width:58ch}
.footer__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.footer__title{font-weight:1000;margin-bottom:10px}
.footer__link{
  display:block;
  color:#f2f2f2;
  text-decoration:none;
  opacity:.9;
  padding:6px 0;
}
.footer__link:hover{opacity:1;text-decoration:underline}
.footer__textSmall{opacity:.86;font-size:13px;margin:6px 0}
.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.12);
}
.footer__copy{opacity:.84;font-size:13px}

.cookie{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:120;
  padding:14px;
  display:none;
}
.cookie.is-open{display:block}
.cookie__inner{
  max-width:var(--max);
  margin:0 auto;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(66,66,66,.18);
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  backdrop-filter: blur(10px);
}
.cookie__title{font-weight:1000;margin-bottom:6px}
.cookie__text{color:rgba(66,66,66,.8);font-size:13px}
.cookie__actions{display:flex;gap:10px;flex-wrap:wrap}

@media (max-width: 980px){
  .hero__grid,.split,.pageHero__grid,.footer__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .reasons{grid-template-columns:repeat(2,1fr)}
  .serviceCards{grid-template-columns:repeat(2,1fr)}
  .wideCard{grid-template-columns:1fr}
  .panel__grid{grid-template-columns:1fr 1fr}
  .cookie__inner{flex-direction:column;align-items:stretch}
}

@media (max-width: 720px){
  .h1{font-size:36px}
  .hero{padding-top:32px}
  .hero__stats{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .reasons{grid-template-columns:1fr}
  .serviceCards{grid-template-columns:1fr}
  .filters__row{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .contactCards{grid-template-columns:1fr}
  .nav__toggle{display:inline-flex;align-items:center;justify-content:center}
  .nav__menu{
    position:absolute;
    right:18px;top:64px;
    width:min(280px, calc(100vw - 36px));
    background:rgba(255,255,255,.92);
    border:1px solid rgba(66,66,66,.14);
    border-radius:18px;
    padding:10px;
    box-shadow:0 18px 50px rgba(0,0,0,.12);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav__menu.is-open{display:flex}
  .nav__link{padding:12px}
  .footer__cols{grid-template-columns:1fr}
}

.brand__logo{
  width:34px;
  height:34px;
  border-radius:12px;
  object-fit:contain;
  display:block;
}
