@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  --brand:#0f3b78;
  --ink:#0b1220;
  --muted:#5b667a;
  --bg:#ffffff;
  --soft:#f5f8ff;
  --line:#e6eefb;

  --radius:18px;
  --container:1120px;

  /* spacing */
  --section-pad: 84px;
  --section-pad-m: 52px;
  --gap: 24px;

  /* premium shadows */
  --shadow-soft: 0 10px 26px rgba(2, 12, 27, 0.06);
  --shadow-hover: 0 18px 40px rgba(2, 12, 27, 0.10);
}


*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
@media (max-width:520px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}
.btn-primary:hover{
  box-shadow: 0 12px 26px rgba(15, 59, 120, 0.18);
  background: #0c346a;
}

.btn-ghost{
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover{ box-shadow: var(--shadow-soft); }

/* Badge + pills */
.badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,59,120,0.08);
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(15,59,120,0.14);
}

.pill{
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:#fff;
  color:#24324a;
}

/* Nav */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 74px;
  gap: 12px;
}

/* ===== Brand logo (navbar) ===== */
.brand{
  display: flex;
  align-items: center;
  gap: 6px;            /* ⬅️ brings logo closer to text */
  font-weight: 900;
  letter-spacing: -0.2px;
}

.brand-logo{
  height: 38px;        /* ⬅️ bigger logo */
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-text{
  font-size: 18px;     /* ⬅️ matches logo better */
  font-weight: 900;
  line-height: 1;
}

/* Mobile */
@media (max-width:780px){
  .brand-logo{
    height: 32px;
  }
  .brand-text{
    font-size: 17px;
  }
}


.nav-links{
  display:flex;
  align-items:center;
  gap: 22px;
  font-weight: 700;
  color: #2b3a55;
}
.nav-links a{ opacity:.9; }
.nav-links a:hover{ opacity:1; color: var(--brand); }

.nav-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}
.burger{
  display:none;
  width: 44px; height:44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}

/* mobile menu */
.mobile-menu{
  display:none;
  border-top: 1px solid var(--line);
  background:#fff;
  padding: 14px 24px 18px;
}
.mobile-menu a{
  display:block;
  padding: 10px 0;
  font-weight: 700;
  color:#24324a;
}
.mobile-menu .btn{ margin-top: 10px; width: 100%; }

.nav-open .mobile-menu{ display:block; }

@media (max-width:780px){
  .nav-links{ display:none; }
  .burger{ display:inline-flex; }
}

/* Sections */
.section{ padding: var(--section-pad) 0; }
@media (max-width:780px){
  .section{ padding: var(--section-pad-m) 0; }
}
.section.soft{
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.h2{
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin: 0 0 10px;
}
.lead{
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 62ch;
}
.muted{ color: var(--muted); }
.muted-sm{ color: var(--muted); font-size: 13.5px; }
.strong{ font-weight: 900; }

/* Hero */
.hero{
  padding: 64px 0 40px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(15,59,120,0.10), transparent 60%),
    radial-gradient(700px 380px at 80% 0%, rgba(15,59,120,0.08), transparent 62%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:start;
}
.hero h1{
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 12px 0 12px;
}
.hero-sub{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 62ch;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 6px;
}
.kpi{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background:#fff;
}
.kpi-title{ font-weight: 900; }
.kpi-sub{ color: var(--muted); font-size: 13.5px; }

/* Hero card */
.hero-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.hero-card-title{
  font-weight: 900;
  margin-bottom: 10px;
}
.checklist{
  list-style:none;
  padding:0;
  margin: 0;
}
.checklist li{
  display:flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(230,238,251,0.75);
  color:#24324a;
}
.checklist li:last-child{ border-bottom:none; }
.tick{
  width: 22px; height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 8px;
  background: rgba(15,59,120,0.10);
  color: var(--brand);
  font-weight: 900;
  flex: 0 0 auto;
}

.hero-card-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(230,238,251,0.85);
}
.hero-card-mini{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Strip */
.strip{
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:#fff;
}
.strip-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content:center;
}
.strip-pill{
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:#fff;
  color:#24324a;
}

/* Split section */
.split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:start;
}
@media (max-width:920px){
  .hero-grid, .split{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 42px; }
  .kpis{ grid-template-columns: 1fr; }
}

/* Mini points */
.mini-points{
  display:grid;
  gap: 10px;
  margin-top: 14px;
}
.mini{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#24324a;
  font-weight: 700;
}
.mini-dot{
  width: 10px; height:10px;
  border-radius:50%;
  background: rgba(15,59,120,0.22);
  border: 1px solid rgba(15,59,120,0.25);
}

/* Media card */
.media-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.media-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.media-badge{
  font-size: 12.5px;
  font-weight: 900;
  color: var(--brand);
  background: rgba(15,59,120,0.08);
  border: 1px solid rgba(15,59,120,0.14);
  padding: 6px 10px;
  border-radius: 999px;
}
.media-title{ font-weight: 900; }

.video{
  width:100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--line);
  background:#fff;
}
.video iframe{
  width:100%;
  height:100%;
  border:0;
}

/* Band */
.band{
  padding: 66px 0;
  background:
    radial-gradient(900px 420px at 10% 20%, rgba(255,255,255,0.18), transparent 60%),
    linear-gradient(180deg, #0b2c5f, #071c3b);
  color: rgba(255,255,255,0.92);
}
.band-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:start;
}
.band-title{
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin: 0 0 10px;
}
.band-lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.82);
  max-width: 62ch;
}
.band-btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color:#fff;
}
.band-btn:hover{ box-shadow: 0 14px 30px rgba(0,0,0,0.18); }

.band-box{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 16px;
}
.band-box-title{ font-weight: 900; margin-bottom: 10px; }
.band-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
}
.band-list li{ margin: 8px 0; }

@media (max-width:920px){
  .band-grid{ grid-template-columns: 1fr; }
}

/* Cards grid */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--gap);
  margin-top: 18px;
}
@media (max-width:920px){
  .cards{ grid-template-columns: 1fr; }
}

/* Card base */
.card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(15,59,120,0.22);
}
.card h3{
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.card p{
  margin: 0;
  color: var(--muted);
}

/* Services */
.service-top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.service-ic{
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(15,59,120,0.08);
  border: 1px solid rgba(15,59,120,0.14);
  font-size: 18px;
}
.service-bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14.5px;
}
.service-bullets li{ margin: 6px 0; }
.service-link{
  display:inline-block;
  margin-top: 14px;
  font-weight: 900;
  color: var(--brand);
}
.service-link:hover{ text-decoration: underline; }

/* CTA strip */
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
.cta:hover{ box-shadow: var(--shadow-soft); }

@media (max-width:780px){
  .cta{ flex-direction:column; align-items:flex-start; }
  .cta .btn{ width: 100%; justify-content:center; }
}

/* Quote */
.quote{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background:#fff;
  box-shadow: var(--shadow-soft);
}
.quote-title{ font-weight: 900; margin-bottom: 8px; }
.quote-text{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

/* Footer */
.footer{
  background:#0a1630;
  color: rgba(255,255,255,0.86);
  padding: 46px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  align-items:start;
}
.footer-title{ font-weight: 900; margin-bottom: 10px; }
.footer-muted{ color: rgba(255,255,255,0.65); margin-top: 8px; }
.footer-links a{
  display:block;
  padding: 6px 0;
  opacity: .9;
}
.footer-links a:hover{ opacity: 1; }

.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.newsletter-form{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input{
  flex: 1 1 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color:#fff;
  outline:none;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,0.55); }

.bottom{
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer small{ color: rgba(255,255,255,0.65); }

@media (max-width:920px){
  .footer-grid{ grid-template-columns: 1fr; }
}
/* ===== Services Accordion (paste at bottom) ===== */
.accordion{
  display:grid;
  gap: 14px;
  margin-top: 18px;
}

.acc{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  overflow:hidden;
  box-shadow: none;
}
.acc summary{
  list-style:none;
  cursor:pointer;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 900;
}
.acc summary::-webkit-details-marker{ display:none; }

.acc-left{
  display:flex;
  align-items:center;
  gap: 10px;
}
.acc-title{
  letter-spacing: -0.2px;
}
.acc-hint{
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.acc-body{
  padding: 0 18px 18px;
  border-top: 1px solid rgba(230,238,251,0.85);
}

.acc-list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.acc-list li{ margin: 8px 0; }

.acc-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media (max-width:780px){
  .acc-cta .btn{ width:100%; }
}

/* small open animation feel */
.acc[open]{
  box-shadow: var(--shadow-soft);
}
/* ===== Premium spacing + calmer UI ===== */
.section{ padding: var(--section-pad) 0; }
@media (max-width: 780px){
  .section{ padding: var(--section-pad-m) 0; }
}

.h2{
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin: 0 0 10px;
}
.lead{
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 62ch;
}

/* your HTML uses .cards — define it properly */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: 18px;
}
@media (max-width: 920px){
  .cards{ grid-template-columns: 1fr; }
}

/* lighter cards (no dashboard feeling) */
.card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(15,59,120,0.22);
}

/* service card visuals */
.service-top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}
.service-ic{
  width: 38px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(15,59,120,0.08);
  border: 1px solid rgba(15,59,120,0.14);
  font-size: 18px;
}
.service-bullets{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14.5px;
}
.service-bullets li{ margin: 6px 0; }
.service-link{
  display:inline-block;
  margin-top: 14px;
  font-weight: 900;
  color: var(--brand);
}
.service-link:hover{ text-decoration: underline; }

/* CTA strip (clean) */
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}
.cta:hover{ box-shadow: var(--shadow-soft); }
@media (max-width: 780px){
  .cta{ flex-direction: column; align-items: stretch; }
  .cta .btn{ width: 100%; justify-content:center; }
}

/* ===== Accordion (Services details) ===== */
.accordion{
  display:grid;
  gap: 14px;
  margin-top: 18px;
}

.acc{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  overflow:hidden;
  box-shadow: none;
}
.acc summary{
  list-style:none;
  cursor:pointer;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  font-weight: 900;
}
.acc summary::-webkit-details-marker{ display:none; }

.acc-left{
  display:flex;
  align-items:center;
  gap: 10px;
}
.acc-title{ letter-spacing: -0.2px; }
.acc-hint{
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

.acc-body{
  padding: 0 18px 18px;
  border-top: 1px solid rgba(230,238,251,0.85);
}

.acc-list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.acc-list li{ margin: 8px 0; }

.acc-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media (max-width: 780px){
  .acc-cta .btn{ width:100%; }
}

.acc[open]{ box-shadow: var(--shadow-soft); }
/* ===== Replace emojis with clean SVG icons ===== */
.service-ic svg{
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* ===== Clean homepage hero (no video, no clutter) ===== */

.hero-clean{
  padding: 120px 0 96px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(15,59,120,0.10), transparent 60%),
    radial-gradient(700px 380px at 80% 0%, rgba(15,59,120,0.08), transparent 62%);
}

.hero-center{
  text-align: center;
  max-width: 820px;
}

.hero-clean h1{
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 14px 0;
}

.hero-sub{
  font-size: 18px;
  color: var(--muted);
  margin: 0 auto 22px;
  max-width: 64ch;
}

@media (max-width: 780px){
  .hero-clean{
    padding: 86px 0 64px;
  }
  .hero-clean h1{
    font-size: 38px;
  }
}
/* ===== About page (clean + professional) ===== */

.about-hero-clean{
  padding: 110px 0 72px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(15,59,120,0.10), transparent 60%),
    radial-gradient(700px 380px at 80% 0%, rgba(15,59,120,0.08), transparent 62%);
}

.about-hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items:start;
}

.about-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}

.about-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.about-card-head{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 12px;
}

.about-stats{
  display:grid;
  gap: 10px;
}

.stat{
  border: 1px solid rgba(230,238,251,0.85);
  border-radius: 16px;
  padding: 12px 14px;
  background:#fff;
}

.stat-k{
  font-weight: 900;
  margin-bottom: 4px;
}
.stat-v{
  color: var(--muted);
  font-size: 14.5px;
}

.about-card-foot{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(230,238,251,0.85);
}

@media (max-width: 920px){
  .about-hero-grid{ grid-template-columns: 1fr; }
  .about-hero-clean{ padding: 86px 0 58px; }
}
/* ===== Minimal professional About page ===== */

.about-simple{
  padding: 120px 0 80px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(15,59,120,0.10), transparent 60%);
}

.about-narrow{
  max-width: 760px;
}

.about-simple h1{
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 14px 0 18px;
}

.about-lead{
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 22px;
}

.about-simple p{
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.about-list{
  margin: 18px 0 0;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.about-list li{
  margin: 10px 0;
}

@media (max-width: 780px){
  .about-simple{
    padding: 86px 0 56px;
  }
  .about-simple h1{
    font-size: 38px;
  }
}
/* ===== NAVBAR BRAND (FINAL, CLEAN) ===== */

.nav-inner{
  height: 76px;
  display: flex;
  align-items: center;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;              /* space between logo and text */
  font-weight: 900;
}

.brand-logo{
  height: 56px;           /* 🔥 THIS controls logo size */
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-text{
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

/* Mobile */
@media (max-width: 780px){
  .nav-inner{
    height: 64px;
  }

  .brand-logo{
    height: 40px;
  }

  .brand-text{
    font-size: 18px;
  }
}
/* ===== Sticky footer fix ===== */
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
