:root{
  --bg:#0b1220;
  --card:#121a2b;
  --muted:#9fb0d0;
  --text:#eaf0ff;
  --brand:#6ea8ff;
  --brand2:#7ef0c9;
  --border:rgba(255,255,255,.10);
  --shadow: 0 14px 45px rgba(0,0,0,.40);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(900px 500px at 15% 0%, rgba(110,168,255,.25), transparent 60%),
              radial-gradient(900px 500px at 85% 0%, rgba(126,240,201,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(1150px, 92%); margin:0 auto}
.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.78);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.2px;
}
.logo{
  width:40px;height:40px;border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:center;
  color:#08101e; font-weight:1000;
}

.brand-logo{
  height: 42px;
  width: auto;
  max-width: 180px;
  display:block;
}

@media (max-width: 560px){
  .brand-logo{
    height: 34px;
    max-width: 140px;
  }
}
@media (max-width: 900px){
  .nav-inner{
    flex-wrap: wrap;
    gap:10px;
  }

  .nav-links{
    width:100%;
    order: 3;
    overflow-x:auto;
    white-space: nowrap;
    padding-bottom: 6px;
  }

  .nav-links a{
    display:inline-block;
  }
}
.nav-links{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.nav-links a{color:var(--muted); font-weight:700; font-size:13px}
.nav-links a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  transition:.15s transform ease;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,168,255,.95), rgba(126,240,201,.85));
  color:#08101e;
  border:none;
}
.btn:hover{transform: translateY(-1px)}
.hero{padding:42px 0 22px}

@media (max-width: 930px){ .hero-grid{grid-template-columns:1fr} }
.card{
  background: rgba(18,26,43,.80);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-left{padding:24px}
.hero-quote{
  font-size:14px; color:var(--muted); margin:0 0 10px;
  border-left:4px solid rgba(126,240,201,.55);
  padding-left:10px;
}
h1{margin:0 0 10px; font-size:42px; line-height:1.1}
@media (max-width: 520px){ h1{font-size:32px} }
.lead{color:var(--muted); margin:0 0 16px; font-size:16px}
.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 0}
.pill{
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  background: rgba(255,255,255,.03);
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
/* Hero becomes a single column layout (image on top, content below) */
.hero-grid.hero-stack{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}

/* Hero image card should span full width */
.hero-full{
  padding:0;
}

/* Show full image without cropping */
.hero-right img{
  width:100%;
  height:auto;          /* IMPORTANT: no fixed height */
  object-fit:contain;   /* IMPORTANT: show full image */
  display:block;
}

/* Optional: prevent too huge image on large screens */
.hero-right{
  max-height: 520px;     /* adjust if needed */
  overflow:hidden;       /* keeps clean rounded corners */
}
.hero-right img{
  max-height: 520px;
  width:100%;
  height:100%;
  object-fit:contain;
}
.section{padding:22px 0}
.section h2{margin:0 0 12px; font-size:26px}
.muted{color:var(--muted)}
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){ .grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 560px){ .grid{grid-template-columns: 1fr} }
.box{padding:16px}
.box h3{margin:0 0 6px; font-size:16px}
.box p{margin:0; color:var(--muted); font-size:14px}
.process ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.process li{margin:7px 0}
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){ .gallery-grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 560px){ .gallery-grid{grid-template-columns: 1fr} }
.gallery-item img{width:100%; height:220px; object-fit:cover; display:block}
.gallery-item .cap{padding:12px 14px; font-weight:800}
.logos{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:12px;
  align-items:center;
}
@media (max-width: 900px){ .logos{grid-template-columns: repeat(3, 1fr)} }
@media (max-width: 560px){ .logos{grid-template-columns: repeat(2, 1fr)} }
.logo-card{padding:14px; display:flex; align-items:center; justify-content:center}
.logo-card img{width:100%; max-width:140px; height:auto; opacity:.9}
.form{padding:18px}
label{display:block; font-size:13px; color:var(--muted); margin:10px 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 700px){ .two{grid-template-columns:1fr} }
.alert{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  margin-bottom:12px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
}
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 900px){ .contact-grid{grid-template-columns:1fr} }
.footer{
  padding:22px 0 40px;
  color:var(--muted);
  border-top:1px solid var(--border);
  margin-top:14px;
}
small{color:var(--muted)}
