:root{
  /* ===== PALETTE (ONE ACCENT) ===== */
  --bg:#f6f8fb;
  --surface:#ffffff;
  --card:#ffffff;

  --text:#0f172a;     /* slate-900 */
  --muted:#475569;    /* slate-600 */
  --border:rgba(15,23,42,.10);

  --accent:#16a34a;   /* GREEN accent (one) */
  --accent-2:#15803d; /* darker same hue */
  --accent-soft:rgba(22,163,74,.10);
  --accent-soft2:rgba(22,163,74,.16);

  --radius:16px;
  --radius-lg:22px;
  --shadow:0 18px 42px rgba(15,23,42,.10);
  --shadow-sm:0 10px 22px rgba(15,23,42,.06);

  --container:1120px;
  --gap:18px;
  --font:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Noto Sans",Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  line-height:1.55;
  background: radial-gradient(
    1200px 620px at 12% -12%,
    rgba(22,163,74,.16) 0%,
    rgba(22,163,74,.06) 38%,
    #f6f8fb 70%,
    #f6f8fb 100%
  );
  background-attachment: fixed;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
a:hover{color:var(--accent)}
:focus-visible{outline:2px solid var(--accent); outline-offset:2px}

.container{width:min(var(--container), calc(100% - 32px)); margin:0 auto;}
.muted{color:var(--muted)}
.small{font-size:14px}

/* ===== MICRO TYPO ===== */
h1,h2,h3{letter-spacing:-.2px}
p{margin:0 0 10px}

/* ===== BADGE ===== */
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.78);
  font-size:13px;
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.92);
  color:var(--text);
  text-decoration:none;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  position:relative;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow-sm);
  border-color:rgba(22,163,74,.28);
}
.btn:active{transform:translateY(0)}

.btn--primary{
  background:linear-gradient(180deg, rgba(22,163,74,.98), rgba(21,128,61,.92));
  border-color:rgba(22,163,74,.38);
  color:#fff;
  box-shadow:0 16px 26px rgba(22,163,74,.16);
}
.btn--primary:hover{
  border-color:rgba(22,163,74,.60);
  color:#fff;
  box-shadow:0 22px 36px rgba(22,163,74,.20);
}

/* subtle “shine” to make CTAs look more “premium” */
.btn--primary:before{
  content:"";
  position:absolute; inset:1px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,0));
  pointer-events:none;
}

/* ===== HEADER ===== */
.siteHeader{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.74);
  border-bottom:1px solid var(--border);
}
.siteHeader__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.logo{display:flex; align-items:center; gap:10px; text-decoration:none;}
.logo__mark{
  width:80px;
  height:80px;
  border-radius:12px;
  background: url("/assets/img/logo.svg") center/contain no-repeat;
  box-shadow:none;
}

.logo__text{font-weight:900; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:16px}
.nav__list{display:flex; align-items:center; gap:14px; list-style:none; padding:0; margin:0}
.nav__item{position:relative}

.nav__link{
  padding:10px 12px; border-radius:999px;
  text-decoration:none; color:var(--muted);
  display:inline-flex; align-items:center; gap:8px;
}
.nav__link:hover{color:var(--text); background:rgba(22,163,74,.06)}

.nav__link[aria-current="page"]{
  color:var(--text);
  border:1px solid rgba(22,163,74,.22);
  background:rgba(22,163,74,.08);
}

.nav__submenu{
  position:absolute; top:calc(100% + 0px); left:0; min-width:260px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.98);
  box-shadow:var(--shadow);
  padding:8px; display:none;
}
.nav__item:focus-within .nav__submenu,
.nav__item:hover .nav__submenu{display:block}

.nav__submenu a{
  display:block; padding:10px 12px; border-radius:12px;
  text-decoration:none; color:var(--muted)
}
.nav__submenu a:hover{background:rgba(22,163,74,.06); color:var(--text)}

.headerActions{display:flex; align-items:center; gap:10px}

.burger{
  display:none; width:44px;height:44px; border-radius:12px;
  border:1px solid var(--border); background:rgba(255,255,255,.92);
}
.burger span{display:block; width:18px;height:2px; background:var(--text); margin:0 auto; position:relative}
.burger span:before,.burger span:after{content:""; position:absolute; left:0; width:18px;height:2px; background:var(--text)}
.burger span:before{top:-6px} .burger span:after{top:6px}
@media (max-width: 1024px){ .nav{display:none} .burger{display:inline-flex; align-items:center; justify-content:center} }

@media (max-width: 700px){.siteHeader__row{padding: 8px 0;}.logo__mark{width: 60px;height: 60px;}.logo__text{font-size: .9em;}.headerActions .btn{font-size:.8em;padding: 8px 10px;}.main{padding: 2px 20px !important;}.section {padding: 14px 0 !important;}}
@media (max-width: 510px){.logo__mark{width: 48px;height: 48px;}.logo__text{font-size: .8em;}.headerActions .btn--primary{display:none;}}
@media (max-width: 420px){.price_table{font-size:.8em}}
@media (max-width: 380px){.price_table{font-size:.6em}}


/* ===== DRAWER ===== */
.drawer{position:fixed; inset:0; display:none; z-index:80}
.drawer[aria-hidden="false"]{display:block}
.drawer__backdrop{position:absolute; inset:0; background:rgba(15,23,42,.32)}
.drawer__panel{
  position:absolute; right:0; top:0; height:100%;
  width:min(360px, 88vw);
  background:rgba(255,255,255,.98);
  border-left:1px solid var(--border);
  box-shadow:var(--shadow);
  padding:16px; overflow:auto;
}
.drawer__head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding-bottom:10px; border-bottom:1px solid var(--border)
}
.drawer__close{
  width:44px;height:44px;border-radius:12px;border:1px solid var(--border);
  background:rgba(255,255,255,.92); color:var(--text); cursor:pointer
}
.drawer__nav{padding:14px 0}
.drawer__nav a{display:block; padding:12px 10px; border-radius:12px; text-decoration:none; color:var(--muted)}
.drawer__nav a:hover{background:rgba(22,163,74,.06); color:var(--text)}
.drawer__nav .drawer__group{margin-top:10px; padding-top:10px; border-top:1px dashed rgba(15,23,42,.12)}

.main{padding: 26px 0 40px}

.section{padding: 28px 0}
.section__head{display:flex; flex-direction:column; gap:8px; margin-bottom:16px}
.section__title{font-size:clamp(20px,2.2vw,28px); margin:0}
.section__subtitle{margin:0; color:var(--muted)}

/* ===== CARDS / GRID ===== */
.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--card);
  box-shadow:0 1px 0 rgba(15,23,42,.03) inset, var(--shadow-sm);
}
.card__body{padding:16px}

.grid{display:grid; gap:var(--gap)}
.grid--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid--4{grid-template-columns:repeat(4, minmax(0,1fr))}
@media (max-width: 980px){ .grid--4,.grid--3{grid-template-columns:repeat(2, minmax(0,1fr))} }
@media (max-width: 640px){ .grid--4,.grid--3,.grid--2{grid-template-columns:1fr} }

/* ===== BREADCRUMBS ===== */
.breadcrumbs{
  display:flex; flex-wrap:wrap; gap:8px;
  padding:10px 0 0;
  color:var(--muted); font-size:13px
}
.breadcrumbs a{color:var(--muted); text-decoration:none}
.breadcrumbs a:hover{color:var(--text)}

/* ===== HERO (more unique) ===== */
.hero{
  border:1px solid rgba(22,163,74,.18);
  border-radius:var(--radius-lg);
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(22,163,74,.14), transparent 55%),
    radial-gradient(760px 320px at 95% 15%, rgba(15,23,42,.06), transparent 60%),
    rgba(255,255,255,.88);
  padding:22px;
  overflow:hidden;
  position:relative;
}
.hero:after{
  content:"";
  position:absolute;
  right:-120px; top:-120px;
  width:280px; height:280px;
  border-radius:50%;
  background:rgba(22,163,74,.10);
  filter:blur(2px);
}
.hero__grid{display:grid; grid-template-columns:1.2fr .8fr; gap:18px; align-items:center; position:relative}
.hero__title{margin:0; font-size:clamp(26px,3.1vw,40px); line-height:1.1}
.hero__subtitle{margin:10px 0 0; color:var(--muted)}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.hero__bullets{margin:14px 0 0; padding-left:18px; color:var(--muted)}
.hero__media{
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(22,163,74,.08), rgba(22,163,74,0)),
    #fff;
  min-height:210px
}
.hero__media img{width:100%; height:100%; object-fit:cover}
@media (max-width: 980px){ .hero__grid{grid-template-columns:1fr} .hero__media{min-height:160px} }

/* ===== TRUST ITEMS ===== */
.trustItem{display:flex; gap:12px}
.trustItem__icon{
  width:40px;height:40px;border-radius:14px;
  background:rgba(22,163,74,.12);
  border:1px solid rgba(22,163,74,.24);
  display:flex; align-items:center; justify-content:center; flex:0 0 auto;
  color:var(--accent);
  font-weight:900;
}
.trustItem__icon--accent{
  background:rgba(22,163,74,.18);
  border-color:rgba(22,163,74,.30);
  color:var(--accent-2);
}
.trustItem__title{margin:0 0 4px; font-weight:900}
.trustItem__text{margin:0; color:var(--muted); font-size:14px}

/* ===== SERVICE CARDS ===== */
.serviceCard__title{margin:0 0 6px; font-weight:900}
.serviceCard__text{margin:0 0 12px; color:var(--muted); font-size:14px}
.serviceCard__link{
  color:var(--accent);
  text-decoration:none;
  font-weight:800;
}
.serviceCard__link:hover{text-decoration:underline}

/* ===== TABLE ===== */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--surface);
}
.table th,.table td{
  padding:12px 12px;
  border-bottom:1px solid rgba(15,23,42,.08);
  text-align:left;
  vertical-align:top
}
.table th{
  color:var(--muted);
  font-weight:900;
  font-size:13px;
  background:rgba(22,163,74,.04);
}
.table tr:last-child td{border-bottom:none}
.table__note{color:var(--muted); font-size:13px; margin-top:10px}

/* ===== FAQ ===== */
.faq{display:flex; flex-direction:column; gap:10px}
.faq details{
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.94);
  padding:10px 12px
}
.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none
}
.faq summary::-webkit-details-marker{display:none}
.faq__a{color:var(--muted); margin-top:8px}

/* ===== FORMS ===== */
.form{display:flex; flex-direction:column; gap:12px}
.field{display:flex; flex-direction:column; gap:6px}
.field label{font-size:13px; color:var(--muted)}
.input,.textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  padding:12px 12px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.input:focus,.textarea:focus{
  border-color:rgba(22,163,74,.38);
  box-shadow:0 0 0 4px rgba(22,163,74,.12);
  outline:none;
}
.input[type="file"]{
  padding:10px 12px;
}

.textarea{min-height:120px; resize:vertical}
.help{font-size:12px; color:var(--muted)}
.hp{position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden}

/* ===== CTA ===== */
.cta{
  border:1px solid rgba(22,163,74,.20);
  border-radius:var(--radius-lg);
  background:
    radial-gradient(820px 320px at 10% 0%, rgba(22,163,74,.14), transparent 60%),
    rgba(255,255,255,.92);
  padding:18px;
}
.cta__row{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.cta__title{margin:0; font-size:20px; font-weight:900}
.cta__subtitle{margin:6px 0 0; color:var(--muted); max-width:70ch}

.mapEmbed iframe{
    border-radius: var(--radius);
    margin-bottom: 10px;
}

/* ===== MODAL ===== */
.modal{position:fixed; inset:0; z-index:90; display:none}
.modal[aria-hidden="false"]{display:block}
.modal__backdrop{position:absolute; inset:0; background:rgba(15,23,42,.42)}
.modal__panel{
  position:relative;
  width:min(720px, calc(100% - 32px));
  margin:7vh auto;
  background:rgba(255,255,255,.98);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:16px;
}
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom:10px
}
.modal__close{
  width:44px;height:44px;border-radius:12px;border:1px solid var(--border);
  background:rgba(255,255,255,.92); color:var(--text); cursor:pointer
}
/* ===== CONSENT CHECK ===== */
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border-radius:14px;
  background:rgba(255,255,255,.92);
}
.check__box{
  width:18px;
  height:18px;
  margin-top:2px;
  accent-color: var(--accent);
  flex:0 0 auto;
}
.check__text{
  margin-top:2px;
  font-size:13px;
  color:var(--muted);
  line-height:1.35;
}


/* ===== FOOTER ===== */
.siteFooter{
  border-top:1px solid var(--border);
  padding:26px 0;
  color:var(--muted);
  background:rgba(15,23,42,.02);
}
.footerGrid{
  display:grid;
  gap:18px;
  grid-template-columns: 1.2fr .9fr .9fr 1.2fr;
  align-items:start;
}
@media (max-width:980px){
  .footerGrid{grid-template-columns:1fr 1fr}
}
@media (max-width:640px){
  .footerGrid{grid-template-columns:1fr}
}

.footerLogo{display:inline-flex}
.footerTitle{
  margin:0 0 10px;
  font-weight:900;
}
.footerTitle a{
  color:inherit;
  text-decoration:none;
}
.footerTitle a:hover{color:var(--accent)}

.footerList{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footerList a{
  color:var(--muted);
  text-decoration:none;
}
.footerList a:hover{
  color:var(--text);
  text-decoration:underline;
}


.footerLinks{display:flex; flex-wrap:wrap; gap:10px}
.footerLinks a{color:var(--muted); text-decoration:none}
.footerLinks a:hover{color:var(--text)}

/* ===== FOOTER CONTACTS (no card) ===== */
.footerContacts{
  padding:0;
}
.footerContactLine{
  margin:0 0 8px;
}
.footerContactLine a{
  color:var(--text);
  text-decoration:none;
  font-weight:900;
}
.footerContactLine a:hover{
  color:var(--accent);
  text-decoration:underline;
}

.footerLabel{
  margin:12px 0 4px;
}
.footerAddress{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}

.footerCopyright{
  margin:12px 0 0;
  color:var(--muted);
  font-size:13px;
}

