:root{
  --blue-900:#0b2a4a;
  --blue-800:#113a66;
  --blue-700:#1a5da6;
  --blue-600:#2a78d6;
  --blue-100:#eaf3ff;
  --text:#0e1b2a;
  --muted:#4b5b70;
  --card:#ffffff;
  --shadow: 0 12px 30px rgba(8, 24, 48, .10);
  --radius: 18px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;color:var(--text);background:linear-gradient(180deg, #f8fbff, #ffffff);}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1280px;width:100%;margin:0 auto;padding:0 28px}

.topbar{
  background: rgba(234,243,255,.6);
  border-bottom: 1px solid rgba(17,58,102,.10);
  backdrop-filter: blur(10px);
  position: sticky; top:0; z-index: 30;
}
.header{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 10px;
}
.nav, .nav-right{
  display:flex; gap: 18px; align-items:center;
}
.nav a, .nav-right a{
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--blue-900);
  font-weight: 600;
  letter-spacing: .2px;
}
.nav a:hover, .nav-right a:hover{background: rgba(42,120,214,.10)}
.logo-wrap{display:flex; align-items:center; justify-content:center; flex: 1;}
.logo{
  height: 38px; width:auto;
  filter: drop-shadow(0 10px 18px rgba(11,42,74,.12));
}
.lang{
  display:flex; gap: 8px; align-items:center;
  padding: 6px; border:1px solid rgba(17,58,102,.14);
  border-radius: 999px; background: rgba(255,255,255,.7);
}
.lang button{
  border:0; background:transparent; cursor:pointer;
  padding: 8px 12px; border-radius: 999px;
  font-weight: 700; color: var(--blue-800);
}
.lang button.active{background: rgba(42,120,214,.14)}
.burger{display:none; border:1px solid rgba(17,58,102,.14); background: rgba(255,255,255,.7);
  border-radius: 12px; padding:10px; cursor:pointer; }

.mobile{display:none}
.mobile.open{display:block}
.mobile .panel{
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,58,102,.12);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.mobile a{display:block; padding: 12px 10px; border-radius: 12px; font-weight: 700}
.mobile a:hover{background: rgba(42,120,214,.10)}

.hero{
  position:relative;
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow);
  margin: 18px 0 28px;
  background: #0d2c4f;
}
.hero img{width:100%; height: 440px; object-fit: cover; opacity:.9}
.hero .overlay{
  position:absolute; inset:0;
  background: radial-gradient(800px 420px at 20% 30%, rgba(42,120,214,.55), transparent 55%),
              linear-gradient(90deg, rgba(11,42,74,.90), rgba(11,42,74,.32));
}
.hero .content{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
  padding: 34px;
}
.hero h1{margin:0;color:white;text-shadow: 0 2px 14px rgba(0,0,0,.35);font-size: clamp(28px, 4vw, 44px);letter-spacing:.2px}
.hero p{margin: 10px 0 0;color: rgba(255,255,255,.92);text-shadow: 0 2px 12px rgba(0,0,0,.35); font-size: 16px; max-width: 62ch; line-height: 1.6}
.hero .cta-row{display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 14px; border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.26);
  color: white;
  background: rgba(255,255,255,.08);
}
.btn.primary{background: linear-gradient(90deg, var(--blue-600), var(--blue-700)); border-color: transparent}
.btn:hover{transform: translateY(-1px)}
.section{padding: 26px 0}
.kicker{color: var(--blue-700); font-weight: 900; letter-spacing: .14em; text-transform: uppercase; font-size: 12px}
.h2{margin: 10px 0 0; font-size: 30px; letter-spacing:.2px; color: var(--blue-900)}
.lead{margin: 12px 0 0; color: var(--muted); line-height: 1.7; max-width: 85ch}

.grid{display:grid; gap: 18px}
.grid.cards{grid-template-columns: repeat(12, 1fr)}
.card{
  background: var(--card);
  border: 1px solid rgba(17,58,102,.10);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 24, 48, .06);
  overflow:hidden;
}
.card.pad{padding: 18px}
.card h3{margin: 10px 0 6px; color: var(--blue-900)}
.card p{margin: 0; color: var(--muted); line-height: 1.65}
.icon{
  width: 46px; height: 46px; border-radius: 16px;
  display:grid; place-items:center;
  background: rgba(42,120,214,.12);
  border:1px solid rgba(42,120,214,.18);
}
.icon svg{width: 22px; height: 22px; fill: var(--blue-700)}
.card-img{height: 190px; width:100%; object-fit: cover}
.span-4{grid-column: span 4}
.span-6{grid-column: span 6}
.span-8{grid-column: span 8}
.span-12{grid-column: span 12}

.stats{
  display:grid; grid-template-columns: repeat(12, 1fr);
  gap: 14px; margin-top: 18px;
}
.stat{grid-column: span 3; padding: 16px; border-radius: 18px;
  background: rgba(234,243,255,.75);
  border: 1px solid rgba(17,58,102,.10);
}
.stat strong{display:block; font-size: 28px; color: var(--blue-900)}
.stat span{color: var(--muted); font-weight: 700}

.split{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}
.split .media{border-radius: 22px; overflow:hidden; box-shadow: var(--shadow)}
.split .media img{height: 100%; width:100%; object-fit: cover}
.quote{
  padding: 18px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(234,243,255,.85), rgba(255,255,255,.9));
  border: 1px solid rgba(17,58,102,.10);
}
.quote p{margin:0; font-size: 16px; line-height: 1.7; color: var(--blue-900)}
.quote .who{margin-top: 10px; color: var(--muted); font-weight: 800}

.map{
  border-radius: 22px; overflow:hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(17,58,102,.10);
  height: 360px;
}
.map iframe{width:100%; height:100%; border:0}

.footer{
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(234,243,255,.75), rgba(234,243,255,.35));
  border-top: 1px solid rgba(17,58,102,.10);
}
.footer .inner{
  padding: 28px 0;
  display:grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
}
.footer h4{margin: 0 0 8px; color: var(--blue-900)}
.footer p, .footer a{color: var(--muted); line-height: 1.7}
.footer a:hover{color: var(--blue-700)}
.small{font-size: 13px}
.badge{
  display:inline-flex; gap: 10px; align-items:center;
  padding: 10px 12px; border-radius: 14px;
  border: 1px solid rgba(17,58,102,.10);
  background: rgba(255,255,255,.7);
}

.fab{
  position: fixed;
  right: 16px;
  bottom: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 40;
}
.fab a{
  width: 54px; height: 54px;
  border-radius: 18px;
  display:grid; place-items:center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17,58,102,.12);
  background: rgba(255,255,255,.92);
}
.fab a:hover{transform: translateY(-2px)}
.fab svg{width: 22px; height: 22px; fill: var(--blue-700)}

.cookie{
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 980px; margin: 0 auto;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,58,102,.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  z-index: 60;
  display:none;
}
.cookie.show{display:flex; gap: 14px; align-items:flex-start; justify-content:space-between}
.cookie .txt{max-width: 75ch}
.cookie h5{margin: 0 0 6px; color: var(--blue-900)}
.cookie p{margin: 0; color: var(--muted); line-height: 1.6}
.cookie .actions{display:flex; gap: 10px; flex-wrap:wrap}
.cookie .actions button{
  border:0; cursor:pointer; font-weight: 900;
  padding: 10px 14px; border-radius: 14px;
}
.cookie .actions .ok{background: linear-gradient(90deg, var(--blue-600), var(--blue-700)); color: white}
.cookie .actions .no{background: rgba(42,120,214,.10); color: var(--blue-900)}
.cookie .actions a{align-self:center; font-weight: 900; color: var(--blue-700)}

@media (max-width: 980px){
  .span-4{grid-column: span 12}
  .span-6{grid-column: span 12}
  .split{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:stretch}
  .stat{grid-column: span 6}
  .footer .inner{grid-template-columns: 1fr}
  .nav, .nav-right{display:none}
  .burger{display:inline-flex}
  .logo-wrap{justify-content:flex-start}
}
@media (max-width: 560px){
  .hero img{height: 520px}
  .stat{grid-column: span 12}
  .hero .content{padding: 22px}
}

.hero .kicker{color: rgba(255,255,255,.78); text-shadow: 0 2px 10px rgba(0,0,0,.35)}


  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Center the intro text under hero (homepage only) */
.home-center{ text-align:center; }
.home-center .lead{ margin-left:auto; margin-right:auto; }

/* Services cards: keep a comfortable reading width */
@media (min-width: 1100px){
  .grid.cards{gap:20px}
}
@media (max-width: 860px){
  .span-6{grid-column: span 12}
  .span-4{grid-column: span 12}
  .span-3{grid-column: span 6}
}
@media (max-width: 560px){
  .span-3{grid-column: span 12}
}

/* --- Services: compact icon + text, no giant visuals --- */
.services .visual,
.services .card img,
.services .card svg.big-check {
  display: none !important;
}

.services .card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.services .card .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services .card .icon svg {
  width: 18px;
  height: 18px;
  color: #2563eb;
}

/* Fix: SVG without size defaults to huge (300x150). Keep badges compact. */
.badge svg{
  width:16px;
  height:16px;
  flex-shrink:0;
  display:inline-block;
}
