/* ==========================
   NCTE Static Site (Elegant)
   ========================== */

:root{
  --bg: #0b1220;
  --bg2:#0f1a2f;
  --card:#0f1b33;
  --text:#eaf0ff;
  --muted:#b9c3e6;
  --line: rgba(255,255,255,.10);

  --brand:#2f6bff;
  --brand2:#00c389;

  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;

  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(47,107,255,.22), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(0,195,137,.15), transparent 55%),
              linear-gradient(180deg, var(--bg), #070b14);
  color:var(--text);
  line-height:1.65;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.container{ max-width:var(--max); margin:0 auto; padding:0 18px; }

/* Top bar */
.topbar{
  position: sticky;
  top:0;
  z-index:999;
  backdrop-filter: blur(14px);
  background: rgba(7,11,20,.62);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}

/* Brand */
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.2px;
  min-width: 280px;
}
.brand img{
  width:48px; height:48px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  padding:6px;
}
.brand .name{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand .name .title{
  font-size:15px;
  font-weight:900;
  letter-spacing:.2px;
}
.brand .name span{
  font-size:13px;
  color:var(--muted);
  font-weight:750;
}

/* Desktop nav links */
.navlinks{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  color:rgba(185,195,230,.92);
}
.navlinks a{
  padding:10px 12px;
  border-radius:12px;
}
.navlinks a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

/* Actions */
.actions{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  font-weight:850;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--text);
}
.btn:hover{
  transform: translateY(-1px);
  transition:.15s ease;
  background: rgba(255,255,255,.085);
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), #1d4dff);
  border-color: transparent;
}
.btn.primary:hover{ filter:brightness(1.06); }
.btn.green{
  background: linear-gradient(135deg, var(--brand2), #00a776);
  border-color: transparent;
}
.btn.small{ padding:10px 12px; border-radius:12px; font-weight:850; }

.burger{
  display:none;
  width:46px; height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-size:18px;
}

.mobile{
  display:none;
  padding:0 0 14px 0;
}
.mobile a{
  display:block;
  padding:12px 12px;
  border-radius:12px;
  color:rgba(185,195,230,.92);
  font-weight:800;
}
.mobile a:hover{ background:rgba(255,255,255,.06); color:var(--text); }

/* Hero */
.hero{ padding:72px 0 34px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.hero-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:30px;
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(750px 320px at 30% 10%, rgba(47,107,255,.18), transparent 60%),
              radial-gradient(750px 320px at 90% 40%, rgba(0,195,137,.12), transparent 60%);
  pointer-events:none;
}
.hero-card > *{ position:relative; }

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:900; letter-spacing:.35px;
  color: rgba(234,240,255,.94);
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
}
.kicker .dot{
  width:10px; height:10px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 6px rgba(47,107,255,.18);
}

h1{
  margin:16px 0 12px;
  font-size: clamp(30px, 4.1vw, 52px);
  line-height:1.10;
  letter-spacing:-.7px;
}
.lead{
  margin:0 0 18px;
  color: rgba(234,240,255,.92);
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.micro{
  margin-top:14px;
  color: rgba(185,195,230,.92);
  font-weight:750;
  font-size:13px;
}

/* Credibility strip (new) */
.cred-strip{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.cred-item{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.92);
  font-weight:850;
  font-size:12.5px;
}
.cred-item .ico{
  width:10px; height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.55);
  box-shadow:0 0 0 6px rgba(255,255,255,.06);
}

/* Right side card */
.hero-side{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.side-top{
  padding:18px;
  border-bottom:1px solid var(--line);
}
.side-top h3{ margin:0 0 6px; font-size:16px; letter-spacing:.2px; }
.side-top p{ margin:0; color:rgba(185,195,230,.92); font-weight:650; font-size:14px; }
.side-body{ padding:18px; display:grid; gap:12px; }
.pill{
  padding:12px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:14px;
}
.pill b{ display:block; font-size:14px; }
.pill span{ color:rgba(185,195,230,.92); font-weight:650; font-size:13px; }

/* Sections */
.section{ padding:56px 0; }
.section h2{
  font-size: 30px;
  margin:0 0 12px;
  letter-spacing:-.3px;
}
.section .sub{
  max-width: 900px;
  color: rgba(185,195,230,.92);
  margin:0 0 20px;
  font-weight:650;
}

.grid2{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
.grid3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  padding:18px;
}
.card h3{ margin:0 0 8px; font-size:18px; letter-spacing:-.2px; }
.card p{ margin:0; color: rgba(185,195,230,.92); font-weight:650; }

.ul{
  margin:10px 0 0;
  padding-left:18px;
  color: rgba(185,195,230,.95);
  font-weight:700;
}
.ul li{ margin:8px 0; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: rgba(234,240,255,.95);
  margin-bottom:10px;
}
.badge .mini{
  width:10px; height:10px;
  border-radius:50%;
  background: var(--brand2);
  box-shadow:0 0 0 6px rgba(0,195,137,.16);
}

/* CTA band */
.band{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(180deg, rgba(47,107,255,.14), rgba(255,255,255,.03));
  padding:22px;
  box-shadow: var(--shadow);
}
.band h2{ margin:0 0 10px; font-size:26px; }
.band p{ margin:0 0 14px; color: rgba(234,240,255,.9); font-weight:700; }
.band .row{ display:flex; flex-wrap:wrap; gap:10px; }

.footer{
  margin-top:40px;
  border-top:1px solid var(--line);
  background: rgba(7,11,20,.60);
}
.footer .wrap{
  padding:26px 0;
  display:grid;
  grid-template-columns: 1.4fr .6fr .6fr;
  gap:18px;
}
.footer h4{ margin:0 0 10px; font-size:14px; color: rgba(234,240,255,.95); letter-spacing:.3px; }
.footer a, .footer p{ color: rgba(185,195,230,.92); font-weight:700; }
.footer a:hover{ color: var(--text); }

.copy{
  padding:14px 0 22px;
  color: rgba(185,195,230,.85);
  font-weight:700;
  border-top:1px solid var(--line);
}

/* Page hero */
.page-hero{
  padding:52px 0 18px;
}
.page-hero h1{ margin:0 0 10px; }
.page-hero p{
  margin:0;
  color: rgba(185,195,230,.92);
  font-weight:700;
  max-width: 940px;
}

/* Forms */
.form{
  display:grid;
  gap:12px;
  max-width: 720px;
}
.input{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:14px;
  padding:12px 14px;
  color: var(--text);
  outline:none;
  font-weight:700;
}
textarea.input{ min-height: 140px; resize: vertical; }

.note{
  color: rgba(185,195,230,.9);
  font-weight:700;
  font-size:13px;
}
/* Force override inline background */
#vs-widget-root > button {
  background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
  background-color: transparent !important;

  color: #ffffff !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;

  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.45) !important;
}

/* Icon visibility */
#vs-widget-root > button svg,
#vs-widget-root > button i {
  color: #ffffff !important;
  fill: #ffffff !important;
  opacity: 1 !important;
}

/* Hover polish */
#vs-widget-root > button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(37, 99, 235, 0.6) !important;
}

/* --- Nav dropdown (Solutions) --- */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd .dd-trigger { padding: 10px 12px; border-radius: 10px; }
.nav-dd .dd-menu{
  position: absolute;
  top: calc(100%);
  left: 0;
  min-width: 300px;
  background: rgba(10, 16, 28, 0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  display: none;
  z-index: 999;
}
.nav-dd .dd-menu a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.nav-dd .dd-menu a:hover{
  background: rgba(59,130,246,0.14);
  color: #fff;
}
.nav-dd:hover .dd-menu{ display: block; }

/* Mobile submenu indent */
.mobile a.sub{
  opacity: 0.85;
  padding-left: 18px;
}




/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .navlinks{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
  .mobile{ display:none; }
  .footer .wrap{ grid-template-columns: 1fr; }
  .brand{ min-width: auto; }
}
