
:root{
  --bg:#0b0b0f;
  --card:#11111a;
  --card2:#0f0f16;
  --text:#f5f5f7;
  --muted:#b9bbca;
  --line:rgba(255,255,255,.10);
  --brand1:#ffbf00;
  --brand2:#7a2cff;
  --brand3:#ff3d7a;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 700px at 15% 10%, rgba(122,44,255,.18), transparent 55%),
              radial-gradient(900px 600px at 85% 20%, rgba(255,61,122,.14), transparent 55%),
              radial-gradient(900px 600px at 50% 95%, rgba(255,191,0,.10), transparent 55%),
              var(--bg);
  color:var(--text);
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
a:hover{opacity:.95}
.container{width:min(1120px, 92vw); margin-inline:auto}

.skip{
  position:absolute; left:-999px; top:0; background:#fff; color:#000; padding:10px 12px; border-radius:12px;
}
.skip:focus{left:14px; top:14px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,14,.55);
  border-bottom:1px solid var(--line);
}
.topbar__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:130px; height:44px; object-fit:cover;
  border-radius:14px; border:1px solid var(--line);
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.nav{display:flex; align-items:center; gap:14px}
.nav__toggle{
  display:none;
  background:transparent; color:var(--text);
  border:1px solid var(--line);
  padding:10px 12px; border-radius:14px;
}
.nav__menu{display:flex; gap:16px; align-items:center}
.nav__menu a{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav__menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.topbar__cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,191,0,.95), rgba(122,44,255,.75));
  color:#0c0c10;
  font-weight:700;
  box-shadow: 0 14px 35px rgba(0,0,0,.35);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn:active{transform: translateY(0px)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  box-shadow:none;
}
.btn--lg{padding:14px 16px; border-radius:18px}

.fab{
  position:fixed; right:18px; bottom:18px; z-index:60;
  display:flex; gap:10px; align-items:center;
  padding:12px 14px; border-radius:999px;
  background: rgba(17,17,26,.88);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.fab__icon{
  width:34px; height:34px; border-radius:999px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,191,0,.95), rgba(255,61,122,.75));
  color:#0c0c10; font-weight:900;
}
.fab__text{color:var(--text); font-weight:700; font-size:.95rem}

.hero{position:relative; padding:54px 0 28px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.hero__copy h1{
  font-size: clamp(2.0rem, 3.6vw, 3.1rem);
  line-height:1.05;
  margin:14px 0 10px;
}
.lead{color:var(--muted); font-size:1.05rem; line-height:1.6; margin:0 0 18px}
.hero__actions{display:flex; flex-wrap:wrap; gap:12px; margin:18px 0 18px}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg, var(--brand1), var(--brand3));
  box-shadow:0 0 0 6px rgba(255,191,0,.12);
}

.trust{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:12px; margin-top:10px}
.trust__item{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px; border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.trust__icon{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
}
.trust__title{font-weight:800}
.trust__desc{color:var(--muted); font-size:.9rem; margin-top:2px}

.hero__media{display:grid; gap:14px}
.mediaCard{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.mediaCard img{width:100%; height:330px; object-fit:cover}
.mediaCard__badge{
  position:absolute; left:14px; bottom:14px;
  background: rgba(10,10,14,.75);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 12px; border-radius:16px;
  font-weight:800;
}
.mediaStack{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.mediaStack img{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  height:170px; width:100%; object-fit:cover;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.hero__bg{
  position:absolute; inset:auto 0 0 0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}

.section{padding:56px 0}
.section--alt{
  background: radial-gradient(900px 500px at 20% 40%, rgba(255,191,0,.08), transparent 55%),
              rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section--thin{padding:44px 0}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 6px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}
.section__head p{margin:0; color:var(--muted); line-height:1.6}

.cards{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px; margin-top:18px;
}
.card{
  padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.card__icon{
  width:46px; height:46px; border-radius:16px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,191,0,.85), rgba(255,61,122,.55));
  color:#0c0c10; font-weight:900;
  margin-bottom:10px;
}
.card h3{margin:6px 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.notice{
  margin-top:18px;
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.notice__left h3{margin:0 0 6px}
.notice__left p{margin:0; color:var(--muted)}
.notice__right{display:flex; flex-wrap:wrap; gap:10px}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:18px}
.listCard{
  padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.listCard h3{margin:0 0 8px}
.checklist{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}
.checklist li{margin:6px 0}
.imageRow{margin-top:14px}
.imageRow img{
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
  margin-top:18px;
}
.gItem{
  grid-column: span 4;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  position:relative;
}
.gItem img{height:220px; width:100%; object-fit:cover}
.gItem__cap{
  position:absolute; left:12px; bottom:12px;
  background: rgba(10,10,14,.72);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 10px; border-radius:14px;
  font-weight:800; font-size:.9rem;
}

.branches{display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:18px}
.branch{
  padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.branch h3{margin:0 0 8px}
.branch p{margin:0 0 8px; color:var(--muted); line-height:1.6}
.branch .mini{color:var(--muted)}
.branch__actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}

.contactGrid{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:14px; margin-top:18px;
}
.contactCard{
  padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.contactList{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.contactList li{display:flex; gap:10px; align-items:flex-start; color:var(--muted); line-height:1.5}
.contactList span{margin-top:2px}
.mapWrap{
  margin-top:14px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  height:280px;
}
.mapWrap iframe{width:100%; height:100%; border:0}

.form{
  padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.form h3{margin:0 0 12px}
label{display:grid; gap:8px; color:var(--muted); font-weight:600}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(10,10,14,.5);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(255,191,0,.65)}
.form__row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form__actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.form__note{margin:12px 0 0; color:var(--muted); font-size:.9rem; line-height:1.5}

.socialGrid{display:grid; grid-template-columns:1.2fr .8fr; gap:14px; margin-top:18px}
.embedCard{
  padding:12px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.embedCard iframe{width:100%; height:560px; border-radius:18px}
.embedFallback{margin-top:10px; color:var(--muted)}
.socialCard{
  padding:18px; border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  display:flex; flex-direction:column; gap:10px;
}
.divider{height:1px; background:rgba(255,255,255,.10); margin:6px 0}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:34px 0 22px;
  background: rgba(0,0,0,.18);
}
.footer__grid{
  display:grid; grid-template-columns:1.2fr .8fr .8fr;
  gap:14px; align-items:start;
}
.footer__brand img{
  width:140px; height:46px; object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
}
.footer__list{list-style:none; padding:0; margin:10px 0 0; display:grid; gap:10px}
.footer__bottom{
  display:flex; justify-content:space-between; gap:12px;
  margin-top:18px; padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}
.mini{font-size:.95rem}

.lightbox{
  position:fixed; inset:0; z-index:80;
  display:none; place-items:center;
  background: rgba(0,0,0,.78);
  padding:22px;
}
.lightbox img{
  max-width:min(1020px, 92vw);
  max-height:82vh;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:fixed; top:16px; right:16px;
  width:46px; height:46px; border-radius:16px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(17,17,26,.75);
  color:var(--text); font-size:26px;
  cursor:pointer;
}

/* Animations */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1; transform:none}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:16px}
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .trust{grid-template-columns:1fr}
  .mediaCard img{height:280px}
}
@media (max-width: 760px){
  .nav__toggle{display:inline-flex}
  .nav__menu{
    position:absolute;
    right:4vw; top:64px;
    display:none;
    flex-direction:column;
    background: rgba(17,17,26,.92);
    border:1px solid rgba(255,255,255,.16);
    padding:10px; border-radius:18px;
    min-width: 210px;
  }
  .nav__menu.is-open{display:flex}
  .topbar__cta{display:none}
  .grid2{grid-template-columns:1fr}
  .branches{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .form__row{grid-template-columns:1fr}
  .socialGrid{grid-template-columns:1fr}
  .embedCard iframe{height:520px}
  .gallery{grid-template-columns:repeat(6, 1fr)}
  .gItem{grid-column:span 6}
}
