/* VICTORY INCAM — Company Profile (HTML + CSS) */

:root{
  --bg: #0B1220;
  --bg2:#070B13;
  --txt: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);

  --a1:#4DA3FF;
  --a2:#86E7FF;

  --r: 18px;
  --r2: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --w: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Noto Sans Khmer", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--txt);
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(77,163,255,.25), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(134,231,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg2), var(--bg) 30%, var(--bg2));
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.92}
img{display:block;max-width:100%}
.container{width:min(var(--w), calc(100% - 40px)); margin:0 auto}

.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}

.skip{
  position:absolute; left:10px; top:10px;
  transform: translateY(-140%);
  background:#fff; color:#111;
  padding:10px 12px; border-radius:12px; z-index:9999;
}
.skip:focus{transform:translateY(0)}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(7,11,19,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__logo{
  width:44px;height:44px;border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:8px;
}
.brand__name{font-weight:800;letter-spacing:.2px}
.brand__sub{font-size:12px;color:var(--muted2);margin-top:2px}

.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.nav a{
  color:var(--muted);
  padding:10px 12px; border-radius:12px;
  border:1px solid transparent;
  transition: .15s ease;
}
.nav a:hover{
  color:var(--txt);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  background: linear-gradient(135deg, var(--a1), var(--a2));
  color:#06101f; font-weight:800; border:0;
  box-shadow: 0 10px 30px rgba(77,163,255,.18);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color:var(--txt);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}
.btn--sm{padding:10px 12px; border-radius:12px}

/* CSS-only mobile menu */
.navchk{display:none}
.navbtn{display:none; width:44px;height:44px; border-radius:12px; cursor:pointer;
  border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06);
  align-items:center; justify-content:center; gap:4px; flex-direction:column;
}
.navbtn span{display:block; width:18px; height:2px; background:var(--txt); border-radius:2px; opacity:.9}

.hero{position:relative; overflow:hidden; padding:64px 0 28px}
.hero__grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:26px; align-items:start}
.pill{
  display:inline-flex; padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted); font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.15;
}
.lead{margin:0 0 18px; color:var(--muted); font-size:16px}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px}

.stats{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px}
.stat{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding:14px;
}
.stat__k{font-weight:900; font-size:20px; color:#d9f2ff}
.stat__v{margin-top:6px; font-size:13px; color:var(--muted2)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding:18px;
}
.card h2{margin:6px 0 12px; font-size:18px}
.check{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.check li{position:relative; padding-left:26px; color:var(--muted)}
.check li::before{
  content:"✓"; position:absolute; left:0; top:0;
  width:18px;height:18px; display:grid; place-items:center;
  border-radius:6px;
  background: rgba(77,163,255,.18);
  border:1px solid rgba(77,163,255,.35);
  color:#d9f2ff; font-weight:900;
}
.note{
  margin-top:14px; padding:12px;
  border-radius:14px;
  background: rgba(255,255,255,.05);
  border:1px dashed rgba(255,255,255,.18);
  color:var(--muted2);
  display:flex; align-items:center; gap:10px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--a2);
  box-shadow: 0 0 0 6px rgba(134,231,255,.10);
}

/* background shapes */
.bg{position:absolute; inset:0; z-index:-1; pointer-events:none}
.blob{position:absolute; border-radius:999px; filter:blur(30px); opacity:.55}
.b1{width:420px;height:420px; left:-120px; top:120px; background: rgba(77,163,255,.25)}
.b2{width:520px;height:520px; right:-200px; top:-120px; background: rgba(134,231,255,.18)}
.grid{
  position:absolute; inset:-40px;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(closest-side at 50% 40%, rgba(0,0,0,.45), rgba(0,0,0,0));
  opacity:.25;
}

.section{padding:58px 0}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.sec__head{max-width:820px; margin-bottom:22px}
.sec__head h2{margin:0 0 10px; font-size:28px}
.sec__head p{margin:0; color:var(--muted)}

.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.box{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding:18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.ico{
  width:42px;height:42px;border-radius:14px;
  background: rgba(77,163,255,.14);
  border:1px solid rgba(77,163,255,.25);
  display:grid; place-items:center;
  margin-bottom:10px; font-size:18px;
}
.box h3{margin:0 0 8px}
.box p{margin:0; color:var(--muted)}
.list{margin:0; padding-left:18px; color:var(--muted); display:grid; gap:6px}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.feat{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding:16px;
}
.feat__ico{
  width:44px;height:44px;border-radius:14px;
  background: rgba(134,231,255,.10);
  border:1px solid rgba(134,231,255,.22);
  display:grid; place-items:center;
  margin-bottom:10px;
}
.feat h3{margin:0 0 6px}
.feat p{margin:0; color:var(--muted)}

.callout{
  margin-top:16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius: var(--r2);
  background: linear-gradient(135deg, rgba(77,163,255,.12), rgba(134,231,255,.08));
  border:1px solid rgba(255,255,255,.14);
}
.callout h3{margin:0 0 6px}
.callout p{margin:0; color:var(--muted); max-width:70ch}

.two{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.panel{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--r2);
  padding:18px;
}
.panel h3{margin:0 0 10px}

.steps{list-style:none; margin:0; padding:0; display:grid; gap:12px}
.steps li{
  display:grid; grid-template-columns: 56px 1fr; gap:12px;
  padding:16px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.steps li span{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(77,163,255,.16);
  border:1px solid rgba(77,163,255,.28);
  color:#d9f2ff;
}
.steps h3{margin:0 0 6px}
.steps p{margin:0; color:var(--muted)}

.tablewrap{
  overflow:auto;
  border-radius: var(--r2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.table{
  width:100%;
  border-collapse: collapse;
  min-width: 620px;
}
.table th, .table td{
  text-align:left;
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  vertical-align:top;
}
.table th{width:280px; font-weight:800}
.table td{color:var(--muted)}
.table tr:last-child th, .table tr:last-child td{border-bottom:0}

.infobox{
  margin-top:12px;
  padding:14px 16px;
  border-radius: var(--r2);
  background: rgba(255,255,255,.05);
  border:1px dashed rgba(255,255,255,.18);
  color:var(--muted);
}

.contact{display:grid; grid-template-columns: .95fr 1.05fr; gap:14px; align-items:start}
.citem{
  padding:12px;
  border-radius:14px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  margin-top:10px;
}
.clabel{color:var(--muted2); font-size:13px}
.cval{margin-top:4px}
.muted{color:var(--muted2); font-size:13px}

.btnrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.form label{display:grid; gap:6px; margin-bottom:12px}
.form input, .form select, .form textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:var(--txt);
  outline:none;
}
.form input::placeholder, .form textarea::placeholder{color:rgba(255,255,255,.45)}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: rgba(77,163,255,.55);
  box-shadow: 0 0 0 4px rgba(77,163,255,.16);
}

.footer{
  padding:26px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(7,11,19,.55);
}
.foot__inner{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.foot__left{display:flex; align-items:center; gap:12px}
.foot__logo{
  width:38px;height:38px;border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding:8px;
}
.foot__name{font-weight:800}
.foot__tiny{color:var(--muted2); font-size:12px; margin-top:2px}
.foot__right{display:flex; gap:12px; flex-wrap:wrap; color:var(--muted)}
.foot__right a{padding:8px 10px; border-radius:12px; border:1px solid transparent}
.foot__right a:hover{border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.05); color:var(--txt)}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}

  .navbtn{display:flex}
  .nav{
    position:absolute;
    right:0; top:62px;
    width:min(360px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(7,11,19,.92);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
  }
  .nav a{width:100%}
  .navchk:checked ~ .nav{display:flex}
}
