:root{
  --bg:#0b0f19;
  --card:#121a2a;
  --muted:#8ea0c2;
  --text:#e9eef9;
  --brand:#6ea8ff;
  --brand2:#7ef0c1;
  --border:rgba(255,255,255,.10);
  --shadow: 0 12px 35px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 10%, rgba(110,168,255,.22), transparent 60%),
              radial-gradient(1100px 700px at 85% 10%, rgba(126,240,193,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,15,25,.55);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.logo{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.menu{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.menu a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.menu a:hover{background:rgba(255,255,255,.06); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  gap:10px;
  cursor:pointer;
  transition: transform .08s ease, background .2s ease;
  font-weight:700;
}
.btn:hover{background: rgba(255,255,255,.10)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  border: none;
  background: linear-gradient(135deg, rgba(110,168,255,.95), rgba(126,240,193,.85));
  color:#06101a;
  font-weight:900;
}

/* Language switch */
.lang{
  display:inline-flex;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  overflow:hidden;
}
.lang button{
  border:0;
  background:transparent;
  color:var(--muted);
  padding:8px 10px;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.3px;
}
.lang button.active{
  color:#06101a;
  background: linear-gradient(135deg, rgba(110,168,255,.95), rgba(126,240,193,.85));
}

.hero{padding:62px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 900px){ .hero-grid{grid-template-columns:1fr} }

.card{
  background: rgba(18,26,42,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-main{padding:28px}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  color: var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}
h1{margin:14px 0 10px;font-size:44px;line-height:1.08;letter-spacing:-.6px}
@media (max-width: 520px){ h1{font-size:34px} }
.subtitle{color:var(--muted); font-size:16px; margin:0 0 18px}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.badge{
  font-size:13px;
  color:var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:7px 10px;
  border-radius:999px;
}
.hero-side{padding:22px}
.side-title{margin:0 0 6px; font-size:16px}
.side-text{margin:0 0 14px; color:var(--muted); font-size:14px}
.mini{display:grid; gap:10px}
.mini-item{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.mini-item strong{display:block}

section{padding:18px 0}
.section-title{margin:18px 0 10px;font-size:22px;letter-spacing:-.2px}
.lead{margin:0; color:var(--muted)}
.grid-3{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){ .grid-3{grid-template-columns:1fr} }
.service{padding:18px}
.service h3{margin:6px 0 8px}
.service p{margin:0 0 10px; color:var(--muted)}
ul{margin:0; padding-left:18px; color:var(--text)}
li{margin:6px 0}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
  margin-top:14px;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }
.box{padding:18px}
.box p{margin:0;color:var(--muted)}
.hr{height:1px;background:var(--border);margin:12px 0}

.contact{
  padding:22px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
}
@media (max-width: 900px){ .contact{grid-template-columns:1fr} }
label{display:block; font-size:13px; color:var(--muted); margin:10px 0 6px}
input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(110,168,255,.55)}
.note{font-size:12px; color:var(--muted); margin-top:10px}

footer{
  padding:30px 0 40px;
  color:var(--muted);
  border-top:1px solid var(--border);
  margin-top:22px;
}
.foot{
  display:flex; gap:14px; justify-content:space-between; flex-wrap:wrap;
  align-items:center;
}
.small-links{display:flex; gap:12px; flex-wrap:wrap}
.small-links a{color:var(--muted)}
.small-links a:hover{color:var(--text)}

/* Media blocks */
.media-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
@media (max-width: 900px){ .media-grid{grid-template-columns:1fr} }

.player{
  padding:18px;
}
.player .status{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  margin-bottom:10px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(255,255,255,.25);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}
.dot.live{ background: #ff4d4d; box-shadow: 0 0 0 4px rgba(255,77,77,.18); }
.embed{
  width:100%;
  aspect-ratio: 16 / 9;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.embed iframe{width:100%;height:100%;border:0}
.replay-list{
  display:grid; gap:10px;
}
.replay-item{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:14px;
}
.replay-item .meta{color:var(--muted); font-size:13px}
.replay-item a{display:inline-block;margin-top:8px}
.alert{
  display:none;
  margin-top:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px;
  color:var(--muted);
}
.alert.ok{display:block;border-color: rgba(126,240,193,.35)}
.alert.err{display:block;border-color: rgba(255,77,77,.35)}


/* --- PRO IMAGES / LAYOUT UPGRADES --- */

/* Soft texture overlay */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.06;
  background-image:url("assets/img/bg-noise.png");
  background-size:200px 200px;
  mix-blend-mode:overlay;
}

/* Hero image block */
.hero-visual{
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-visual img{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}

/* About split layout */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:center;
}
@media (max-width: 900px){
  .about-grid{grid-template-columns:1fr}
}
.about-visual img{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Services cards with thumbnails */
.service-thumb{
  margin-bottom:12px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
}
.service-thumb img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

/* Section backgrounds (subtle) */
.section-bg{
  position:relative;
}
.section-bg::before{
  content:"";
  position:absolute;
  inset:-12px;
  border-radius:22px;
  background: radial-gradient(700px 220px at 20% 0%, rgba(110,168,255,.16), transparent 60%),
              radial-gradient(700px 220px at 80% 0%, rgba(126,240,193,.10), transparent 60%);
  pointer-events:none;
  z-index:-1;
}


/* --- BRAND LOGO IN HEADER --- */
.logo-img{
  width:36px;
  height:36px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  object-fit:cover;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* --- MOBILE NAV (BURGER) --- */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(233,238,249,.9);
  border-radius:2px;
}
.nav-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

@media (max-width: 820px){
  .nav{
    align-items:flex-start;
  }
  .nav-toggle{
    display:inline-flex;
    margin-left:6px;
  }
  .nav-links{
    display:none;
    width:100%;
    margin-top:10px;
    padding:10px;
    border-radius:16px;
    border:1px solid var(--border);
    background: rgba(11,15,25,.72);
  }
  .nav-links.open{
    display:flex;
  }
  .menu{
    flex-direction:column;
    align-items:flex-end;
  }
  .menu a{
    width:auto;
  }
  .lang{
    margin-top:6px;
  }
}


/* --- QUICK ACTION BAR (Call / WhatsApp) --- */
.quickbar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quickbar-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(11,15,25,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  font-weight:900;
}
.quickbar-ico{
  font-size:18px;
}
.quickbar-text{
  font-size:14px;
}
@media (min-width: 821px){
  .quickbar{ display:none; }
}

/* Keep content above the bar on mobile */
@media (max-width: 820px){
  body{ padding-bottom: 78px; }
}

/* --- MOBILE FIX (compact + pro) --- */
@media (max-width: 820px){

  header .nav{
    padding:10px 0;
  }

  /* Hide brand text on small screens (logo only) */
  .brand span{
    display:none;
  }

  .logo-img{
    width:34px;
    height:34px;
    border-radius:12px;
  }

  .hero{
    padding:28px 0 14px;
  }
  .hero-main{
    padding:18px;
  }
  h1{
    font-size:32px;
    line-height:1.1;
  }

  .hero-visual{
    padding:12px;
  }
  .hero-visual img{
    max-height:240px;
    width:100%;
    object-fit:cover;
    border-radius:16px;
  }

  .about-visual img{
    max-height:240px;
    object-fit:cover;
  }

  .service-thumb img{
    height:120px;
  }

  .nav-links{
    padding:12px;
  }
  .nav-links a{
    padding:10px 12px;
  }
}

/* Make SVG logo render crisp */
.logo-img{
  image-rendering: -webkit-optimize-contrast;
}
