:root{
  --bg:#0b1220;
  --panel:#0f1a2f;
  --text:#e8eefc;
  --muted:#a7b4d6;
  --line:rgba(255,255,255,.10);
  --accent:#60a5fa;
  --accent2:#34d399;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(96,165,250,.20), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(52,211,153,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), #070b14 70%);
}

a{color:inherit}
a:hover{opacity:.9}
p{line-height:1.65;color:var(--muted)}
h1,h2,h3{line-height:1.2;margin:0 0 .5rem}
h1{font-size: clamp(32px, 4vw, 52px); letter-spacing:-.02em;}
h2{font-size: clamp(22px, 2.4vw, 30px)}
h3{font-size: 16px; color:var(--text); margin-top:0}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:saturate(120%) blur(10px);
  background:rgba(7,11,20,.55);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-mark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(52,211,153,.18));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight:700;
}
.brand-name{font-weight:800;letter-spacing:-.01em}
.brand-tag{font-size:12px;color:var(--muted);margin-top:2px}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,255,.04);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  border-radius:14px;
  border:1px solid var(--line);
  padding:10px 14px;
  font-weight:800;
  font-size:14px;
  color:var(--text);
  background:rgba(255,255,255,.04);
}
.btn:hover{background:rgba(255,255,255,.07)}
.btn.primary{
  border-color:rgba(96,165,250,.45);
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(52,211,153,.16));
}
.btn.small{padding:8px 12px;border-radius:12px;font-weight:800}

main{padding:46px 0 70px}
.hero{
  position: relative;
  padding: 28px 0 22px;
  background: url("hero-bg.jpg.JPG") center/cover no-repeat;
}

.hero::before{
  content: "";
  position: absolute;
  insetb: 0;
  .hero::before{
  background: rgba(5,10,20,.82);
};
  z-index: 0;
}

.hero .wrap{
  position: relative;
  z-index: 1;
}

}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:26px;
  align-items:start;
}
.hero-copy{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
}
.lead{
  font-size:16px;
  margin:12px 0 18px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.kpis{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.kpi{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.kpi strong{display:block;font-size:13px;color:var(--muted);font-weight:700;margin-bottom:6px}
.kpi span{font-weight:900;font-size:18px}

.section{
  margin-top:26px;
}
.section-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.list li{margin:8px 0}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.badge{
  font-size:13px;
  font-weight:700;
  color:var(--text);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
}

.contact-box{
  display:grid;
  gap:10px;
  margin-top:10px;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
}
.contact-box a{color:var(--text);text-decoration:none;border-bottom:1px dashed rgba(255,255,255,.35)}
.contact-box a:hover{border-bottom-color:rgba(255,255,255,.7)}

.smallprint{
  font-size:12px;
  color:rgba(167,180,214,.85);
  margin-top:10px;
}

.site-footer{
  border-top:1px solid var(--line);
  background:rgba(7,11,20,.55);
}
.footer-inner{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-inner .muted{color:var(--muted);font-size:12px}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .brand{min-width:auto}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto}
}

/* ===== HEADER / LOGO FIX ===== */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-tag {
  font-size: 0.95rem;
  color: #cbd5e1;
}


/* ===== SERVICES CARD CLEANUP ===== */
.card {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: #d1d5db;
}

/* ===== PREMIUM SERVICE CARDS ===== */
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
.service-card{
  position:relative;
  min-height:260px;
  border-radius:16px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  transition:transform .25s ease;
  border:none;
}gap:20pxx rgba(0,0,0,.28);
  transition:transform .25s ease;
  border: none;
}

.service-card:hover{
  transform: translateY(-6px);

}

.service-card .overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
  to bottom,
  rgba(5,10,20,.55),
  
  max-width: 85%;rgba(5,10,20,.75)
);
}

.service-card .content{
  position:relative;
  z-index:1;
  padding:20px;
  max-width: 85%;
}

.service-card h3{
  margin:0 0 10px;
  color:#fff;
}

.service-card p{
  margin:0;
  color:#d1d5db;
  font-size:15px;
  line-height:1.5;
}
.industries-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:20px;
}

.industry-card{
  padding:18px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  transition:all .2s ease;
}

.industry-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.06);
}

.industry-card h3{
  margin:0 0 8px;
  color:#fff;
  font-size:16px;
}

.industry-card p{
  margin:0;
  color:#cbd5e1;
  font-size:14px;
  line-height:1.4;
}
.contact-form{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:600px;
}

.form-row input,
.form-row textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.03);
  color:#fff;
  font-size:14px;
}

.form-row input::placeholder,
.form-row textarea::placeholder{
  color:#94a3b8;
}

.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:rgba(96,165,250,.6);
  background:rgba(255,255,255,.05);
}
