:root{
  --max-width: 1200px;
  --accent: #0b5cff; /* customize */
  --muted: #6b7280;
  --bg: #ffffff;
  --text: #0f1724;
  --radius: 8px;
  --container-pad: 20px;
  --hero-height: 520px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  font-size:16px;
}

/* Utility */
.container{max-width:var(--max-width);margin:0 auto;padding:0 var(--container-pad)}
.skip{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{left:10px;top:10px;width:auto;height:auto;padding:8px;background:#000;color:#fff;z-index:9999}

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

.logo{height:22%;
    width:50%;
}
.logo.small{
    height:22%;
    width:50%;
    
}

/* Nav */
.primary-nav{display:flex;align-items:center}
.nav-list{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.nav-list a{color:var(--text);text-decoration:none;font-weight:600;padding:8px 6px}
.nav-list .cta{background:var(--accent);color:white;padding:8px 12px;border-radius:6px}
#nav-toggle{display:none;background:none;border:0;padding:8px;cursor:pointer}
.burger{display:block;width:22px;height:2px;background:currentColor;position:relative}
.burger::before,.burger::after{content:"";position:absolute;left:0;right:0;height:2px;background:currentColor}
.burger::before{top:-6px} .burger::after{bottom:-6px}

/* HERO */
.hero{
  height:var(--hero-height);
  display:flex;
  align-items:center;
  color:#fff;
  background-image:linear-gradient(rgba(2,6,23,0.55), rgba(2,6,23,0.55)), var(--hero-img);
  background-size:cover;
  background-position:center;
  
}
.hero-inner{display:flex;align-items:right;justify-content:space-between;width:100%}
.hero-text{max-width:680px}
.hero h1{font-size:clamp(28px,4.2vw,48px);margin:0 0 12px 0;line-height:1.02;font-weight:800}
.lead{font-size:1.05rem;color:rgba(255,255,255,0.9);margin:0 0 18px}
.hero-ctas .btn{margin-right:10px}

/* thumbs */
.hero-thumbs{display:flex;gap:10px;align-items:center}
.thumb{width:56px;height:36px;border-radius:6px;border:2px solid rgba(255,255,255,0.25);background-size:cover;cursor:pointer}
.thumb.active{border-color:#fff}

/* Buttons */
.btn{display:inline-block;padding:10px 16px;border-radius:8px;text-decoration:none;font-weight:700}
.btn-primary{background:var(--accent);color:#fff}
.btn-outline{border:2px solid rgba(255,255,255,0.9);color:#fff;background:transparent}

/* Sections */
.section-title{font-size:1.25rem;margin-top:32px;margin-bottom:8px;font-weight:700}
.section-sub{color:var(--muted);margin-bottom:18px}

/* Cards grid */
.cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:28px}
.card{background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 6px 18px rgba(8,15,30,0.06);display:flex;flex-direction:column;padding:8px;}
.card-img{width:100%;height:160px;object-fit:cover}
.card-body{padding:14px}

/* Insights */
.insights-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:28px}
.insight{background:white;border-radius:10px;overflow:hidden;box-shadow:0 6px 18px rgba(8,15,30,0.06)}
.insight img{width:100%;height:160px;object-fit:cover}
.insight-body{padding:14px}
.insight time{display:block;color:var(--muted);font-size:0.85rem;margin-bottom:6px}

/* Contact strip */
.contact-strip{background:#f4f6fb;border-radius:12px;padding:26px;margin:28px 0;display:flex;align-items:center;justify-content:space-between}
.contact-strip h2{margin:0}

/* Footer */
.site-footer{background:#071028;color:#fff;padding:36px 0 12px}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;padding-bottom:22px}
.site-footer a{color:rgba(255,255,255,0.9);text-decoration:none}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.06);padding:12px 0;margin-top:12px}

/* Responsive */
@media (max-width: 980px){
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .insights-grid{grid-template-columns:repeat(2,1fr)}
  .hero{height:420px}
  .hero-inner{flex-direction:column;align-items:flex-start;gap:16px}
}

@media (max-width:700px){
  #nav-toggle{display:block}
  .nav-list{position:fixed;top:0;right:0;height:100vh;width:260px;background:#fff;flex-direction:column;padding:60px 20px;transform:translateX(100%);transition:transform .25s ease;box-shadow:-12px 0 30px rgba(2,6,23,0.08);color:var(--text)}
  .nav-list.open{transform:translateX(0)}
  .nav-list a{padding:12px 0;color:var(--text)}
  .header-inner{padding:12px 0}
  .cards-grid{grid-template-columns:1fr}
  .insights-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero-thumbs{display:none}
}

/* Small helpers */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}