:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.09);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 14px 40px rgba(0,0,0,0.45);
  --brand: #69d2ff;
  --brand2: #a6ffcb;
  --danger: #ff8a8a;
  --ok: #7dffb2;
  --max: 1120px;
}

html { scroll-behavior: smooth; scroll-padding-top: 40px; }
section[id] { scroll-margin-top: 40px; }
div { word-break: break-word; overflow-wrap: break-word; }

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 700px at 15% 10%, rgba(105,210,255,0.16), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(166,255,203,0.12), transparent 55%),
              var(--bg);
  line-height: 1.55;
}
a{ color: inherit; }
img{ max-width:100%; height:auto; display:block; }

.shell{
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

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

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(10,18,33,0.92), rgba(10,18,33,0.70));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 180px;
}
.brand__logo{
  text-decoration:none;
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 20px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, rgba(105,210,255,0.16), rgba(166,255,203,0.10));
}
.brand__meta{ display:flex; flex-direction:column; gap:2px; }
.brand__tagline{ font-size: 12px; color: var(--muted); }
.brand__micro{ font-size: 12px; color: rgba(255,255,255,0.62); }

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav__link{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,0.85);
  border: 1px solid transparent;
}
.nav__link:hover{
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.nav__link.is-active{
  border-color: rgba(105,210,255,0.35);
  background: rgba(105,210,255,0.10);
}

.topbar__cta{
  display:flex;
  align-items:center;
  gap: 12px;
}
.topbar__phone{ display:flex; flex-direction:column; align-items:flex-end; gap:2px; }
.topbar__phoneLabel{ font-size: 11px; color: rgba(255,255,255,0.62); }
.topbar__phoneValue{ font-size: 13px; color: rgba(255,255,255,0.92); text-decoration:none; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(135deg, rgba(105,210,255,0.18), rgba(166,255,203,0.12));
  color: rgba(255,255,255,0.95);
  text-decoration:none;
  font-weight: 700;
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}
.btn:hover{ filter: brightness(1.06); }
.btn--ghost{
  background: rgba(255,255,255,0.05);
}
.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.hero{
  min-height: calc(84vh - 68px);
  display:flex;
  align-items:center; /* center on Y axis */
  position:relative;
  padding: 64px 0;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}
.hero__overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(900px 520px at 15% 20%, rgba(11,18,32,0.05), rgba(11,18,32,0.82) 65%),
              linear-gradient(180deg, rgba(11,18,32,0.18), rgba(11,18,32,0.86));
}
.hero__content{
  position:relative;
  text-align:center;
  width: 100%;
}
.hero__panel{
  margin: 0 auto;
  max-width: 780px;
  padding: 26px 18px;
  border-radius: 22px;
  background: rgba(10,18,33,0.62);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.hero__kicker{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.hero__subtitle{
  margin: 0 auto 18px;
  max-width: 60ch;
  color: rgba(255,255,255,0.78);
}
.hero__actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.section{
  padding: 56px 0;
}
.section--tight{ padding: 44px 0; }
.section__header{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-bottom: 18px;
  text-align: center;
}
.section__title{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.2px;
}
.section__lead{
  margin: 6px 0 0;
  color: rgba(255,255,255,0.72);
  max-width: 70ch;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow:hidden;
}
.card__body{ padding: 18px; }
.card__title{ margin: 0 0 8px; font-size: 18px; letter-spacing: -0.1px; }
.card__text{ margin: 0; color: rgba(255,255,255,0.74); }
.card__meta{ margin-top: 12px; color: rgba(255,255,255,0.62); font-size: 12px; }
.card__img{
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.span-4{ grid-column: span 4; }
.span-3{ grid-column: span 3; }
.span-5{ grid-column: span 5; }
.span-6{ grid-column: span 6; }
.span-7{ grid-column: span 7; }
.span-8{ grid-column: span 8; }
.span-12{ grid-column: span 12; }

.pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.pill__dot{
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(105,210,255,0.12);
}

.formwrap{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: stretch;
}
.formbox{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}
.formbox__title{ margin: 0 0 6px; font-size: 20px; }
.formbox__hint{ margin: 0 0 14px; color: rgba(255,255,255,0.72); }
.formgrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.field{ grid-column: span 12; }
.field--half{ grid-column: span 6; }
.label{ display:block; font-weight: 700; margin: 0 0 6px; color: rgba(255,255,255,0.86); }
.input, .select, .textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(9,14,26,0.55);
  color: rgba(255,255,255,0.92);
  outline: none;
}
.textarea{ min-height: 110px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus{
  border-color: rgba(105,210,255,0.55);
  box-shadow: 0 0 0 4px rgba(105,210,255,0.14);
}
.select option { color: black; background-color: white; }
.checkrow{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.checkrow input{ margin-top: 3px; }
.checkrow__text{ color: rgba(255,255,255,0.78); font-size: 13px; }
.checkrow__text a{ color: rgba(105,210,255,0.95); }
.notice{
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  padding: 14px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
}
.notice strong{ color: rgba(255,255,255,0.92); }
.error{
  border-color: rgba(255,138,138,0.35);
  background: rgba(255,138,138,0.08);
}

.footer{
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(10,18,33,0.66);
}
.footer__inner{ padding: 44px 0 20px; }
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 18px;
}
.footer__brand{
  font-weight: 900;
  letter-spacing: 0.6px;
  font-size: 18px;
  margin-bottom: 10px;
}
.footer__text{ margin: 0 0 14px; color: rgba(255,255,255,0.72); }
.footer__contactRow{ display:flex; gap: 10px; margin: 8px 0; }
.footer__label{ width: 62px; color: rgba(255,255,255,0.62); font-size: 12px; }
.footer__value{ color: rgba(255,255,255,0.84); font-size: 13px; text-decoration:none; }
.footer__title{ font-weight: 800; margin-bottom: 10px; }
.footer__list{ list-style:none; padding:0; margin:0; display:grid; gap: 6px; }
.footer__link{ color: rgba(255,255,255,0.80); text-decoration:none; padding: 6px 0; display:inline-block; }
.footer__link:hover{ color: rgba(105,210,255,0.95); }
.footer__bottom{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 18px;
}
.footer__small{ color: rgba(255,255,255,0.62); font-size: 12px; }

.cookie{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99;
}
.cookie__inner{
  max-width: var(--max);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,18,33,0.92);
  box-shadow: var(--shadow);
}
.cookie__text{ color: rgba(255,255,255,0.78); font-size: 13px; }
.cookie__link{ color: rgba(105,210,255,0.95); }

.page{
  padding: 42px 0 20px;
}
.page__title{
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.3px;
}
.page__lead{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
  max-width: 75ch;
}
.prose{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 20px;
}
.prose h2{ margin: 18px 0 8px; font-size: 20px; }
.prose p{ margin: 0 0 12px; color: rgba(255,255,255,0.76); }
.prose ul{ margin: 0 0 12px; color: rgba(255,255,255,0.76); }
.prose li{ margin: 6px 0; }
.prose a{ color: rgba(105,210,255,0.95); }

.centerbox{
  text-align: center;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
}
.centerbox .btn{ justify-content:center; }

@media (max-width: 980px){
  .footer__grid{ grid-template-columns: 1fr; }
  .topbar__phone{ display:none; }
  .formwrap{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .topbar__inner{ flex-wrap: wrap; justify-content:center; }
  .brand{ width:100%; justify-content:center; }
  .topbar__cta{ width:100%; justify-content:center; }
  .field--half{ grid-column: span 12; }
  .hero{ min-height: calc(86vh - 68px); }
  .section__header{ align-items:center; }
}

@media (max-width: 520px){
  .cookie{ left: 10px; right: 10px; bottom: 10px; }
  .cookie__inner{
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 12px;
  }
  .cookie__text{ font-size: 13px; }
  #cookieAccept{ width: 100%; }
}


