/* G2 Solutions – light technical style (WordPress theme)
   Note: This mirrors the static prototype styling and is intended to be iterated in WP.
*/
:root{
  --primary:#0f2f8a;
  --text:#0b1220;
  --muted:rgba(11,18,32,.72);
  --line:rgba(11,18,32,.12);
  --bg:#ffffff;
  --card:rgba(255,255,255,.88);

  --radius2:26px;

  --shadow:0 18px 60px rgba(11,18,32,.10);
  --shadow2:0 10px 30px rgba(11,18,32,.08);

  --max:1180px;
  --pad:clamp(16px,3vw,28px);

  --mono:ui-monospace,"JetBrains Mono",SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --sans:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(68,208,255,.12), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(15,47,138,.10), transparent 60%),
    var(--bg);
}

a{color:inherit}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}
.site-main{padding-bottom:60px}

.hero-header{
  border-bottom:1px solid var(--line);
  background: linear-gradient(180deg, rgba(15,47,138,.06), transparent 55%);
}
.hero-container{
  padding:clamp(40px,6vw,90px) 0 26px;
  text-align:center;
}
.hero-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
}
.hero-logo{
  width:200px;
  max-width:70vw;
  height:auto;
}
.hero-text h1{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,52px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero-text h1 span{color:var(--primary)}
.hero-text p{
  margin:0;
  font-size:17px;
  color:var(--muted);
}
.hero-nav{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.hero-nav a{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  color:rgba(11,18,32,.82);
  padding:10px 14px;
  border-radius:12px;
  border:1px solid transparent;
}
.hero-nav a:hover{background:rgba(15,47,138,.06)}
.hero-nav a.active{
  border-color: rgba(15,47,138,.22);
  background: rgba(15,47,138,.08);
}
.nav-cta{
  border:1px solid rgba(15,47,138,.25);
  background:rgba(15,47,138,.08);
}

.page-head{padding: 34px 0 10px;}
.page-head h2{margin:0 0 8px;font-size: 26px;letter-spacing:-.01em;}
.page-head p{margin:0;color: var(--muted);line-height: 1.65;}
.section{padding: 34px 0 70px;}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(12px,2.2vw,18px)}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(12px,2.2vw,18px)}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--card);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.card h3{margin:0 0 8px;font-size:16px}
.card p{margin:0 0 12px;color:var(--muted);line-height:1.65}
.bullets{margin:0;padding-left:18px;line-height:1.7;color:rgba(11,18,32,.85)}
.bullets li{margin:6px 0}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.10em;
  text-transform:uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,47,138,.18);
  background: rgba(15,47,138,.06);
  color: rgba(11,18,32,.78);
}

.kpi{display:flex;gap:10px;flex-wrap:wrap;margin-top: 10px;}
.kpi .badge{border-color: rgba(11,18,32,.14); background: rgba(11,18,32,.03)}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0 30px;
  color: rgba(11,18,32,.70);
}
.footer-inner{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:14px}
.mono{font-family:var(--mono)}
.fine{margin:10px 0 0;color:rgba(11,18,32,.60);font-size:13px;line-height:1.6}

/* Product gallery */
.product{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.gallery{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background:#fff;
  box-shadow: var(--shadow2);
  padding: 14px;
}
.gallery .imgwrap{
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(11,18,32,.10);
  background: #fff;
  cursor: pointer;
}
.gallery img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}
.dots{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.dot{
  width:9px;height:9px;border-radius:999px;
  border:1px solid rgba(11,18,32,.20);
  background: rgba(11,18,32,.08);
  cursor:pointer;
}
.dot.active{
  background: var(--primary);
  border-color: rgba(15,47,138,.25);
}

/* WP content defaults */
.entry-content p{line-height:1.75;color:var(--muted)}
.entry-title{margin:0 0 10px}
.wp-block-buttons .wp-block-button__link{border-radius:14px}

@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .product{grid-template-columns:1fr}
  .hero-logo{width:160px}
  .hero-text h1{font-size:clamp(26px,7vw,38px)}
}
