:root{
  --bg:#061a3a;
  --soft:#0b2a57;
  --card:#0d3270;
  --accent:#39c3ff;
  --accent2:#7de3ff;
  --text:#eaf3ff;
  --muted:#b8c9e6;
  --white:#ffffff;
  --shadow: 0 18px 40px rgba(0,0,0,.25);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background: radial-gradient(1200px 600px at 15% -10%, rgba(57,195,255,.22), transparent 60%),
              radial-gradient(1200px 600px at 110% 10%, rgba(125,227,255,.18), transparent 65%),
              linear-gradient(180deg, #061a3a 0%, #04122a 100%);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(var(--max), calc(100% - 32px)); margin-inline:auto}

.topbar{
  position:sticky; top:0; z-index:40;
  background: rgba(4,18,42,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; padding:8px 0;
}
.topbar__left{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.topbar__right{display:flex; gap:10px; align-items:center}
.chip{
  font-size:13px; color:var(--muted);
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.chip--link{color:var(--text)}
.iconbtn{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:12px; border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease;
}
.iconbtn:hover{transform: translateY(-2px); background: rgba(255,255,255,.09)}
.iconbtn svg{width:18px; height:18px; fill: var(--text); opacity:.95}

.header{
  position:sticky; top:49px; z-index:35;
  background: rgba(6,26,58,.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  object-fit: cover;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:800; letter-spacing:.2px; font-size:18px}
.brand__tag{font-weight:700; color: var(--accent2); font-size:14px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:650; font-size:14px}
.nav a:hover{color:var(--text)}
.nav .btn{margin-left:6px}

.navtoggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.navtoggle span{display:block; height:2px; background: var(--text); margin:6px 10px; border-radius:2px; opacity:.9}

.hero{padding:28px 0 12px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(57,195,255,.08);
  color: var(--accent2);
  font-weight:750;
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height:1.1;
  letter-spacing:-.4px;
}
.hero p{color:var(--muted); font-size: 16px; margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(57,195,255,1) 0%, rgba(125,227,255,1) 100%);
  color:#04122a;
  font-weight:850;
  border: none;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover{transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0,0,0,.28)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn--ghost:hover{background: rgba(255,255,255,.10)}
.btn--small{padding:10px 12px; border-radius:14px; font-size:14px}

.hero__badges{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:18px;
}
.badge{
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:650;
  font-size:13px;
}

.hero__media{position:relative}
.hero__imgwrap{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.03);
}
.hero__imgwrap img{width:100%; height:440px; object-fit:cover}
.hero__card{
  position:absolute;
  left: 16px;
  bottom: 16px;
  width: min(320px, calc(100% - 32px));
  border-radius: 20px;
  background: rgba(4,18,42,.72);
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,.12);
  padding:14px;
}
.hero__cardtitle{font-weight:800; color: var(--accent2)}
.hero__cardphone{font-size:20px; font-weight:900; margin:6px 0 10px}
.hero__cardactions{display:flex; gap:10px; flex-wrap:wrap}

.section{padding:52px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.00) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{max-width:720px; margin-bottom:22px}
.section__head h2{
  margin:0 0 8px;
  font-size: clamp(22px, 2.3vw, 34px);
  letter-spacing:-.3px;
}
.section__head p{margin:0; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  padding:16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color: var(--muted); font-size:14px}

.socialgrid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.socialbox{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:14px;
}
.socialbox__head{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
.socialbox__head h3{margin:0; font-size:16px}
.link{color: var(--accent2); font-weight:750}
.embed{border-radius: 16px; overflow:hidden; border:1px solid rgba(255,255,255,.08)}
.embed iframe{width:100%; height:520px}
.igfallback{
  display:grid;
  gap:10px;
  place-items:center;
  text-align:center;
  padding:18px 14px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  min-height:520px;
}
.igfallback img{width:88px; height:88px; border-radius: 22px; border:1px solid rgba(255,255,255,.12); object-fit:cover}
.igfallback p{margin:0; color: var(--muted)}

.benefits{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.benefit{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.benefit__icon{
  width:42px; height:42px; border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(57,195,255,.12);
  border:1px solid rgba(57,195,255,.18);
  flex: 0 0 auto;
}
.benefit h3{margin:0 0 4px; font-size:16px}
.benefit p{margin:0; color:var(--muted); font-size:14px}

.strip{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:18px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(57,195,255,.14), rgba(125,227,255,.06));
  border:1px solid rgba(255,255,255,.10);
}
.strip h3{margin:0 0 4px}
.strip p{margin:0; color: var(--muted)}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.gitem{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  transition: transform .18s ease;
}
.gitem:hover{transform: translateY(-3px)}
.gitem img{
  width:100%;
  height: 210px;
  object-fit: cover;
}

.video{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.02);
}
.video iframe{width:100%; height: 520px; border:0}

.twocol{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.map{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}
.map iframe{width:100%; height: 520px; border:0}

.contact{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:18px;
}
.contact h3{margin:0 0 6px}
.muted{color:var(--muted); font-size:13px}
.form{margin-top:12px; display:grid; gap:12px}
.form__row{display:grid; gap:6px}
label{font-weight:700; font-size:13px; color: var(--muted)}
input, textarea{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(4,18,42,.42);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(125,227,255,.50); box-shadow: 0 0 0 4px rgba(125,227,255,.10)}
.form__actions{display:flex; gap:10px; flex-wrap:wrap}
.form__note{margin-top:4px}

.quick{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:14px;
}
.quick__btn{
  flex:1 1 140px;
  text-align:center;
  padding:12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  font-weight:850;
}

.lightbox{
  position:fixed; inset:0; z-index:60;
  display:none;
  background: rgba(0,0,0,.82);
  padding:18px;
}
.lightbox img{
  max-width:min(1080px, 100%);
  max-height: calc(100vh - 36px);
  margin:auto;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.lightbox__close{
  position:absolute; top:14px; right:14px;
  width:42px; height:42px; border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: var(--text);
  font-size:18px;
  cursor:pointer;
}

.floatwa{
  position:fixed; right:18px; bottom:18px; z-index:55;
  display:flex; gap:10px; align-items:center;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(37, 211, 102, .18);
  border:1px solid rgba(37, 211, 102, .30);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}
.floatwa span{font-weight:900}
.floatwa svg{width:22px; height:22px; fill: #d9ffe9}

.footer{
  padding:26px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.06);
}
.footer__inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
  padding-bottom: 16px;
}
.footer__brand{font-weight:900; font-size:16px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color: var(--muted); font-weight:650}
.footer__bottom{
  padding:14px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  text-align:center;
  font-size:14px;
}
.footer__bottom a{color: var(--accent2); font-weight:750}

.fade{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade.is-visible{opacity:1; transform: translateY(0)}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; }
  .hero__imgwrap img{height:360px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .socialgrid{grid-template-columns:1fr}
  .benefits{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .gitem img{height: 200px}
  .twocol{grid-template-columns:1fr}
  .map iframe{height: 420px}
  .video iframe{height: 420px}
  .header{top:49px}
  .navtoggle{display:block}
  .nav{
    position:fixed;
    top: 102px;
    left: 16px;
    right: 16px;
    display:none;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border-radius: 18px;
    background: rgba(4,18,42,.90);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
}

@media (prefers-reduced-motion: reduce){
  .fade{opacity:1 !important; transform:none !important; transition:none !important}
  .btn, .gitem, .iconbtn{transition:none !important}
}
