:root{
  --bg:#0b0b0d;
  --card:#121216;
  --text:#f3f3f6;
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.08);
  --accent:#9ad1ff;
  --accent2:#c7b8ff;
  --radius:18px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 800px at 15% 15%, rgba(154,209,255,.10), transparent 60%),
              radial-gradient(900px 600px at 80% 20%, rgba(199,184,255,.08), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{color:inherit;}
img{max-width:100%; display:block;}

.container{max-width:1100px; margin:0 auto; padding:0 18px;}

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10,10,12,.72);
  border-bottom: 1px solid var(--line);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0;}

.brand{display:flex; align-items:baseline; gap:10px; text-decoration:none;}
.brand__mark{font-weight:900; letter-spacing:.08em;}
.brand__text{font-size:11px; opacity:.75; letter-spacing:.14em; text-transform:uppercase;}

.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end;}
.nav__link{font-size:13px; opacity:.82; text-decoration:none;}
.nav__link:hover{opacity:1;}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{border-color:rgba(255,255,255,.22);}
.btn--ghost{background:transparent;}
.btn--sm{padding:10px 12px; font-size:13px;}
.btn--full{width:100%;}

.hero{padding:36px 0 10px;}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:start;}
@media(max-width: 920px){ .hero__grid{grid-template-columns:1fr; } .nav{display:none;} }

.badge{
  display:inline-flex; align-items:center;
  font-size:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding:8px 12px;
  border-radius:999px;
  opacity:.92;
}
.h1{font-size:44px; line-height:1.05; margin:14px 0 12px;}
.h1__accent{background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text; background-clip:text; color:transparent;}
@media(max-width:600px){.h1{font-size:34px;}}

.lead{font-size:16px; color:var(--muted); margin:0 0 14px;}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 12px;}

.hero__proof{display:grid; grid-template-columns:1fr; gap:10px; margin:14px 0;}
.proof{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:12px 12px;
}
.proof__title{font-weight:800; font-size:13px; margin-bottom:4px;}
.proof__text{font-size:13px; color:var(--muted);}

.meta{margin-top:10px; color:var(--muted); font-size:13px;}
.meta__row{display:flex; gap:10px; padding:4px 0;}
.meta__row span{opacity:.8; width:78px;}

.section{padding:34px 0;}
.section__head{margin-bottom:16px;}
.h2{font-size:28px; margin:0;}
.sub{margin:8px 0 0; color:var(--muted);}

.cards{display:grid; grid-template-columns:repeat(2,1fr); gap:14px;}
@media(max-width:820px){.cards{grid-template-columns:1fr;}}

.card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding:16px;
}
.card--glass{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.card__title{font-weight:900; margin-bottom:6px;}
.card__text{color:var(--muted); font-size:14px; line-height:1.4;}

.divider{height:1px; background:var(--line); margin:14px 0;}

.pillrow{display:flex; gap:8px; margin-top:10px; flex-wrap:wrap;}
.pill{
  display:inline-block;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  color:rgba(255,255,255,.9);
}

.note{
  margin-top:14px;
  color:var(--muted);
  border-left:3px solid rgba(154,209,255,.35);
  padding:10px 12px;
  background: rgba(154,209,255,.05);
  border-radius: 12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:10px;
}
@media(max-width:820px){.grid{grid-template-columns: repeat(2,1fr);} }
.work{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:#0f0f12;
}

.about{display:grid; grid-template-columns:.8fr 1.2fr; gap:16px; align-items:start;}
@media(max-width:820px){.about{grid-template-columns:1fr;}}

.about__photo img{
  width:100%;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
}
.list{color:var(--muted); margin:12px 0 0; padding-left:18px;}
.list li{margin:8px 0;}
.certs{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px;}

.faq{display:grid; gap:10px;}
.faq__item{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:12px 14px;
}
.faq__item summary{cursor:pointer; font-weight:800;}
.faq__item p{color:var(--muted); margin:10px 0 0; line-height:1.45;}

.booking{padding-bottom:44px;}
.booking__grid{display:grid; grid-template-columns:1fr .8fr; gap:14px; align-items:start;}
@media(max-width:920px){.booking__grid{grid-template-columns:1fr;}}

.form{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding:16px;
}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom:12px;}
.field span{font-size:12px; opacity:.85;}
.field small{font-size:12px; opacity:.7;}
input,select,textarea{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color: rgba(154,209,255,.55);}

.check{display:flex; gap:10px; align-items:center; font-size:12px; color:var(--muted); margin:10px 0 12px;}
.check input{width:16px; height:16px;}

.msg{margin-top:10px; font-size:13px; color:var(--muted); min-height:18px;}
.links{display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;}
.link{opacity:.86; text-decoration:none; border-bottom:1px dashed rgba(255,255,255,.25);}
.link:hover{opacity:1;}

.side__card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
}
.side__title{font-weight:900; margin-bottom:10px;}
.steps{margin:0; padding-left:18px; color:var(--muted);}
.steps li{margin:8px 0;}
.side__note{margin-top:12px; color:var(--muted);}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  color:rgba(255,255,255,.72);
}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;}
.footer__brand{font-weight:900;}
.footer__meta{font-size:13px; opacity:.85;}

.slider{margin-top:8px;}
.slider__imgwrap{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#0f0f12;
}
.slider__controls{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:10px;
}
.iconbtn{
  width:40px; height:40px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff; cursor:pointer; font-size:22px;
}
.iconbtn:hover{border-color:rgba(255,255,255,.24);}
.slider__label{font-size:12px; opacity:.8; letter-spacing:.12em; text-transform:uppercase;}
.slider__dots{display:flex; gap:6px; justify-content:center; margin-top:10px;}
.dot{
  width:7px; height:7px; border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  opacity:.55;
}
.dot.active{opacity:1; background:rgba(154,209,255,.8); border-color:rgba(154,209,255,.8);}
.hint{margin-top:10px; font-size:12px; opacity:.7;}

/* Floating button */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(22,22,26,.92);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  transform: translateY(0);
  opacity: 1;
  transition: opacity .2s ease, transform .2s ease;
}
.fab:hover{ transform: translateY(-2px); }
.fab .ico{ font-size: 16px; line-height: 1; opacity: .9; }
.fab .txt{ font-size: 13px; }
section { scroll-margin-top: 84px; }
