/* Base */
:root{
  --navy:#0b2f4a;
  --navy2:#08304f;
  --ink:#0e1726;
  --muted:#5a677a;
  --bg:#f6f8fb;
  --panel:#ffffff;
  --line:#e6ebf2;
  --shadow: 0 10px 30px rgba(8,20,40,0.10);
  --radius: 14px;
  --max: 1080px;
}

*{ box-sizing:border-box; }
html, body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color:var(--ink);
  background: var(--bg);
  line-height:1.55;
}

/* Utility */
.container{
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section{
  padding: 70px 0;
}

.section-alt{
  background: #eef2f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title{
  margin: 0 0 18px 0;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.panel{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--navy2), var(--navy));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 10px 0; /* was 14px 0 */
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: #fff;
  min-width: 240px;
}

.brand-logo{
  width: 72px;   /* was 56px */
  height: 72px;  /* was 56px */
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px;  /* was 4px */
}

.brand-name{
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.nav-link:hover{
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.nav-cta{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
}

/* Hero */
.hero{
  background: radial-gradient(1000px 480px at 50% 0%, rgba(255,255,255,0.95), rgba(255,255,255,0.0)),
              linear-gradient(180deg, #e9eef6, #f6f8fb 55%);
  padding: 70px 0 48px 0;
}

.hero-inner{
  text-align: center;
}

.hero-title{
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero-title-line{
  display:block;
}

.hero-title-sub{
  font-size: clamp(18px, 2.0vw, 28px);
  font-weight: 700;
  color: #1a2a3f;
  margin-top: 6px;
}

.hero-lead{
  max-width: 840px;
  margin: 10px auto;
  color: var(--muted);
  font-size: 15px;
}

.hero-buttons{
  margin: 18px auto 12px auto;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn{
  display:inline-block;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--navy);
  color:#fff;
  border-color: rgba(255,255,255,0.0);
}

.btn-primary:hover{
  background: #07253c;
}

.btn-ghost{
  background: rgba(11,47,74,0.06);
  color: var(--navy);
  border-color: rgba(11,47,74,0.20);
}

.btn-ghost:hover{
  background: rgba(11,47,74,0.10);
}

.hero-note{
  max-width: 920px;
  margin: 18px auto 0 auto;
  color: #4b5667;
  font-size: 13px;
}

/* Services cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.card-title{
  margin: 0 0 10px 0;
  font-size: 16px;
  text-align: center;
}

.card p{
  margin: 10px 0;
  color: #2c3a4f;
  font-size: 13px;
}

.card-list{
  margin: 10px auto;
  padding-left: 18px;
  max-width: 540px;
  text-align: left;
  color: #2c3a4f;
  font-size: 13px;
}

.card-close{
  text-align: center;
  margin-top: 12px;
  color: #1a2a3f;
}

/* Services intro */
.section-kicker{
  margin-top: 0;
  margin-bottom: 10px;
}

/* Closing line */
.closing{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.closing-line{
  text-align:center;
  font-weight: 800;
  font-size: 16px;
  color: #0e1726;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  max-width: 980px;
}

/* Contact */
.contact-panel{
  margin-top: 8px;
}

.contact-email{
  margin-top: 12px;
  font-size: 14px;
}

.contact-email a{
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(11,47,74,0.25);
}

.contact-email a:hover{
  border-bottom-color: rgba(11,47,74,0.55);
}

/* Footer */
.site-footer{
  margin-top: 18px;
  color: #6a7587;
  font-size: 12px;
}

/* Mobile */
@media (max-width: 860px){
  .header-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .nav{
    justify-content: flex-start;
  }
  .cards{
    grid-template-columns: 1fr;
  }
  .brand{
    min-width: auto;
  }
}
