:root{
  --bg:#0b1220;
  --surface:#0f1a30;
  --surface2:#111f3a;
  --text:#e9eefb;
  --muted:#b8c2dd;
  --border:rgba(233,238,251,.12);
  --accent:#6ea8ff;
  --accent2:#7ef0c6;
  --gold:#F2C94C;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;

  /* Landing hero sizing */
  --landing-hero-height: 600px; /* try 460px if you want taller */
}

*{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(1200px 700px at 30% 10%, rgba(110,168,255,.25), transparent 55%),
              radial-gradient(1000px 600px at 80% 0%, rgba(126,240,198,.16), transparent 60%),
              linear-gradient(180deg, var(--bg), #070b14 80%);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 22px;}

/* Top nav */
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
/* .brand img{width:44px; height:44px; object-fit:contain} */
.brand img{
  width: 84px;          /* increase logo size */
  height: 84px;
  object-fit: contain;
  flex: 0 0 auto;
}
/* Slightly smaller tagline so header stays on one line */
.brand .small {
  font-size: 12px;      /* try 12px; if still tight, use 11px */
  line-height: 1.25;
}
/* Avoid layout forcing awkward wraps */
.brand { min-width: 0; }
/* Prevent brand text wrapping awkwardly */
.brand > div { min-width: 0; }
.brand strong { white-space: nowrap; }
/* .brand strong{font-weight:800; letter-spacing:.1px} */
/* The small tagline can disappear on narrower widths */
@media (max-width: 980px){
  .brand .small { display:none; }
}
.links{display:flex; gap:12px; flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; padding-bottom:2px}
.links::-webkit-scrollbar{height:6px}
.links::-webkit-scrollbar-thumb{background: rgba(233,238,251,.14); border-radius:999px}
.links a{
  text-decoration:none;
  padding:7px 9px;
  font-size:13px;
  border-radius:10px;
  color:var(--muted);
  border:1px solid transparent;
}
.links a:hover{border-color:var(--border); color:var(--text)}

/* Global cards */
.card{
  background: linear-gradient(180deg, rgba(17,31,58,.82), rgba(15,26,48,.72));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* Landing hero */
.hero{padding:54px 0 26px}
.heroGrid{display:grid; grid-template-columns: .95fr 1.05fr; gap:22px; align-items:stretch}
@media (max-width: 880px){ .heroGrid{grid-template-columns:1fr; } }

.heroMain{padding:24px}
.heroVisual{
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  height: var(--landing-hero-height)}
.heroVisual img{
  width:100%;
  height:100%;
  object-fit: contain;
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
}

/* Integrated KPI strip (less boxy) */
.kpiStrip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  margin:0 0 16px;
  padding:10px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(233,238,251,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.22) inset;
}
@media (max-width: 880px){ .kpiStrip{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 520px){ .kpiStrip{grid-template-columns:1fr} }

.kpiMini{
  padding:11px 12px 10px;
  border-radius:14px;
  border:1px solid rgba(233,238,251,.08);
  background: rgba(255,255,255,.03);
  position:relative;
  overflow:hidden;
}
.kpiMini:before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(220px 120px at 20% 20%, rgba(255,255,255,.10), transparent 60%);
  opacity:.55;
  pointer-events:none;
}
.kpiMini .num{font-size:18px; font-weight:820; letter-spacing:-.3px; position:relative}
.kpiMini .lbl{color:var(--muted); font-size:12px; margin-top:3px; line-height:1.25; position:relative}

/* Filled gradients (blue/teal/gold accents) */
.kpiMini.a{background: linear-gradient(135deg, rgba(126,240,198,.22), rgba(110,168,255,.14)); border-color: rgba(126,240,198,.28)}
.kpiMini.b{background: linear-gradient(135deg, rgba(110,168,255,.22), rgba(242,201,76,.10)); border-color: rgba(110,168,255,.28)}
.kpiMini.c{background: linear-gradient(135deg, rgba(233,238,251,.14), rgba(110,168,255,.14)); border-color: rgba(233,238,251,.20)}
.kpiMini.d{background: linear-gradient(135deg, rgba(242,201,76,.12), rgba(126,240,198,.14)); border-color: rgba(242,201,76,.18)}

/* Hero headline */
.heroHeadline{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.22;
  letter-spacing:-.35px;
  background: linear-gradient(135deg, rgba(110,168,255,.98), rgba(242,201,76,.92));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  font-weight:650;
}
@media (min-width: 900px){ .heroHeadline{font-size:30px;} }

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  text-decoration:none;
  font-weight:650;
  gap:10px;
  background: rgba(255,255,255,.03);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,168,255,.18), rgba(126,240,198,.10));
  border-color: rgba(110,168,255,.40);
}
.btn:hover{transform: translateY(-1px); transition: transform .15s ease}

.small{color:var(--muted); font-size:13px}
.divider{height:1px; background:var(--border); margin:18px 0}

/* Page hero (for subpages) */
.pageHero{padding:36px 0 18px}
.pageHeroInner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
}
@media (max-width: 880px){ .pageHeroInner{grid-template-columns:1fr} }
.pageTitle{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.18;
  letter-spacing:-.35px;
}
.pageIntro{margin:0; color:var(--muted); font-size:15px}
.pageHeroArt{display:flex; justify-content:center}
.pageHeroArt img{
  width:100%;
  height:240px;
  object-fit: cover;
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
}

/* Sections on subpages */
section{padding:26px 0}
.sectionTitle{display:flex; align-items:end; justify-content:space-between; gap:14px; margin-bottom:14px}
.sectionTitle h2{margin:0; font-size:20px; letter-spacing:-.2px}
.sectionTitle p{margin:0; color:var(--muted); font-size:14px}

.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
@media (max-width: 880px){ .grid3{grid-template-columns:1fr} }

/* Two-up grid (for packages) */
.grid4{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
  align-items:stretch;
}

@media (max-width: 880px){
  .grid4{ grid-template-columns: 1fr; }
}

.feature{padding:18px}
.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:14px}

.achieve{padding:22px}
.achieve ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.achieve li{margin:8px 0}

.logoPanel{padding:22px}
.logoGrid{display:grid; grid-template-columns:repeat(6, 1fr); gap:10px; align-items:center}
@media (max-width: 980px){ .logoGrid{grid-template-columns:repeat(4,1fr)} }
@media (max-width: 600px){ .logoGrid{grid-template-columns:repeat(2,1fr)} }
.logoTile{
  height:62px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  display:flex; align-items:center; justify-content:center;
  padding:10px;
}
.logoTile img{max-height:34px; max-width:100%; filter: grayscale(100%); opacity:.88}
.logoTile img:hover{filter:none; opacity:1; transition: all .18s ease}
.fineprint{color:var(--muted); font-size:12px; margin-top:10px}

.cases{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
@media (max-width: 880px){ .cases{grid-template-columns:1fr} }
.case{padding:18px}
.tagRow{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px}
.tag{font-size:12px; color:var(--muted); border:1px solid var(--border); padding:5px 8px; border-radius:999px}

/* Footer */
footer{padding:26px 0 34px; border-top:1px solid var(--border); margin-top:14px}
.footerGrid{display:grid; grid-template-columns:1.2fr .8fr; gap:14px}
@media (max-width: 880px){ .footerGrid{grid-template-columns:1fr} }

/* Print/PDF friendly rendering */
@media print{
  :root{
    --text:#111827;
    --muted:#374151;
    --border: rgba(17,24,39,.18);
  }
  body{
    background: #ffffff !important;
    color: var(--text) !important;
  }
  header{position:static; background:#fff !important; border-bottom:1px solid var(--border) !important}
  .card{
    box-shadow:none !important;
    background:#ffffff !important;
    border:1px solid var(--border) !important;
  }
  .heroHeadline{
    color:#111827 !important;
    -webkit-text-fill-color:#111827 !important;
    background:none !important;
  }
  .btn{background:#fff !important; color:#111827 !important; border:1px solid var(--border) !important}
  .btn.primary{background:#fff !important; border:1px solid rgba(110,168,255,.55) !important}
  .kpiStrip{box-shadow:none !important; background:#fff !important}
  .kpiMini{background:#fff !important}
}


/* Contact form sizing */
.contactFormCard{
  max-width: 760px;          /* narrower card on desktop */
  margin: 0 auto;            /* centered */
}
.contactFormGrid{
  display:grid;
  grid-template-columns: 1fr 1fr auto; /* name, email, button */
  gap:12px;
  align-items:end;
}
@media (max-width: 760px){
  .contactFormGrid{grid-template-columns:1fr;}
}
.contactInput, .contactTextarea{
  width:100%;
  padding:11px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
}
.contactTextarea{resize:vertical}


/* Contact form fixed submit button width (desktop) */
.contactFormGrid .contactSubmit{
  min-width: 180px;
  justify-content: center;
}
@media (max-width: 760px){
  .contactFormGrid .contactSubmit{min-width: 0; width:100%;}
}
