

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#ffffff;
  color:#0f172a;
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,100% - 32px);margin:0 auto}


:root{
  --bg:#ffffff;
  --surface:#f6f8fb;
  --surface2:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --brand:#0ea5e9;
  --brand2:#14b8a6;
  --shadow:0 12px 30px rgba(2,6,23,.10);
}


.navbar{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}


.navbar .container.nav-inner{
  width: 100%;
  margin: 0;
  padding: 12px clamp(12px, 3vw, 32px); 
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.nav-logo{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.08em}
.nav-logo-mark{
  width:34px;height:34px;border-radius:10px;overflow:hidden;
  background:var(--surface);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.nav-logo-mark img{width:100%;height:100%;object-fit:cover}


.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:var(--surface2);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.nav-toggle span{display:block;width:20px;height:2px;background:#0f172a;margin:4px 0;border-radius:2px}


.nav-menu{display:flex;align-items:center;gap:10px}
.nav-link, .dropdown-toggle{
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
  color:#0f172a;
  border:1px solid transparent;
  background:transparent;
  cursor:pointer;
}
.nav-link:hover, .dropdown-toggle:hover{background:var(--surface)}
.nav-link.active{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#031018;
}
.nav-item{position:relative;display:flex;align-items:center}
.dropdown-toggle{display:flex;align-items:center;gap:6px}
.chev{font-size:12px;opacity:.7}


.dropdown{
  position:absolute;top:44px;left:0;
  min-width:240px;
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:8px;
  display:none;
}
.dropdown a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-size:14px;
  color:#0f172a;
}
.dropdown a:hover{background:var(--surface)}

@media (min-width: 860px){
  .nav-item:hover > .dropdown{display:block}
}

.nav-item.open > .dropdown{display:block}


.hero{
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(14,165,233,.18), transparent 60%),
    radial-gradient(700px 320px at 90% 20%, rgba(20,184,166,.16), transparent 55%),
    linear-gradient(#ffffff, #ffffff);
  padding:38px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:22px;
  align-items:center;
}
.hero-kicker{
  font-size:12px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}
.hero-title{
  font-size:clamp(30px,4vw,44px);
  line-height:1.1;
  font-weight:850;
  margin-bottom:12px;
}
.hero-title .accent{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero-sub{color:var(--muted);font-size:15px;max-width:560px;margin-bottom:18px}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

.btn-primary,.btn-ghost{
  padding:10px 18px;border-radius:999px;font-size:14px;
  border:1px solid transparent;cursor:pointer;display:inline-flex;align-items:center;gap:8px;
}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#031018;font-weight:700;
}
.btn-primary:hover{filter:brightness(.98)}
.btn-ghost{
  background:var(--surface2);
  border-color:var(--border);
  color:#0f172a;
}
.btn-ghost:hover{background:var(--surface)}


.slider{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:var(--surface);
}
.slider-track{
  display:flex;
  width:100%;
  transform:translateX(0%);
  transition:transform .5s ease;
}
.slide{min-width:100%;aspect-ratio: 16 / 10;background:var(--surface)}
.slide img{width:100%;height:100%;object-fit:cover}


.slider-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.9);
  cursor:pointer;
  display:grid;place-items:center;
}
.slider-btn:hover{background:#fff}
.slider-btn.prev{left:10px}
.slider-btn.next{right:10px}
.slider-btn span{font-size:22px;line-height:0}


.slider-dots{
  position:absolute;left:12px;right:12px;bottom:10px;
  display:flex;gap:8px;justify-content:center;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  border:1px solid rgba(2,6,23,.18);
  background:rgba(255,255,255,.7);
  cursor:pointer;
}
.dot.is-active{background:linear-gradient(135deg,var(--brand),var(--brand2));border-color:transparent}


.section{padding:34px 0}
.section-header{display:flex;justify-content:space-between;gap:14px;align-items:baseline;margin-bottom:14px}
.section-title{font-size:20px;font-weight:800}
.section-sub{font-size:13px;color:var(--muted)}
.grid{display:grid;gap:14px}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{
  background:var(--surface2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  box-shadow:0 10px 22px rgba(2,6,23,.06);
}
.card:hover{transform:translateY(-2px);transition:.12s ease}
.card-title{font-weight:800;margin-top:4px;margin-bottom:6px}
.card-text{color:var(--muted);font-size:13px}
.card-top{
  display:flex;justify-content:space-between;gap:10px;align-items:center;
  font-size:12px;color:var(--muted);
}
.chip{
  padding:4px 10px;border-radius:999px;
  background:rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.22);
  color:#075985;font-weight:700;
}


.form{display:grid;gap:12px;max-width:560px}
.field-label{font-size:13px;color:#0f172a;font-weight:650;margin-bottom:4px;display:block}
.input,.textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  outline:none;
  font-size:14px;
}
.textarea{min-height:120px;resize:vertical}
.input:focus,.textarea:focus{
  border-color:rgba(14,165,233,.55);
  box-shadow:0 0 0 3px rgba(14,165,233,.14);
}


.footer{
  border-top:1px solid var(--border);
  padding:18px 0 22px;
  color:var(--muted);
  font-size:12px;
  background:#fff;
}

.footer{
  text-align: center;
}

.footer p{
  margin: 0;
}


@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
}
@media (max-width: 860px){
  .nav-toggle{display:block}
  .nav-menu{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:10px 0 14px;
  }
  .nav-menu.is-open{display:flex}
  .nav-item{width:100%}
  .nav-link,.dropdown-toggle{width:100%;text-align:left;border-radius:12px}
  .dropdown{position:static;box-shadow:none;border-radius:12px;width:100%}
}
@media (max-width: 720px){
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 520px){
  .grid-3{grid-template-columns:1fr}
}



.filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.filter-btn{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-size:13px;
  cursor:pointer;
}
.filter-btn:hover{ background: var(--surface); }
.filter-btn.is-active{
  background: linear-gradient(135deg,var(--brand),var(--brand2));
  border-color: transparent;
  color:#031018;
  font-weight:700;
}

.partner-card{
  padding:0; 
  overflow:hidden;
}
.partner-cover{
  height:160px;
  background: var(--surface);
  border-bottom:1px solid var(--border);
}
.partner-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.partner-body{
  padding:14px;
}

.partner-head{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}
.partner-logo{
  width:56px;
  height:56px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  object-fit:contain;
  padding:6px;
}

.partner-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:6px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(2,6,23,.12);
  background: rgba(255,255,255,.75);
  color: var(--muted);
}
.tag strong{ color:#0f172a; }

.hidden{ display:none !important; }


section[id], article[id], .card[id] { scroll-margin-top: 90px; }



@media (max-width: 860px){
  .nav-item.has-dropdown{flex-wrap:wrap; gap:6px;}
  .nav-item.has-dropdown > .nav-link{flex:1; width:auto;}
  .nav-item.has-dropdown > .dropdown-toggle{width:auto; padding:8px 12px;}
  .nav-item.has-dropdown > .dropdown{width:100%;}
}


.team-stack{ display:flex; flex-direction:column; gap:12px; }

.team-group-title{
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin:6px 0 2px;
}

.team-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
}

.team-badge{
  width:190px;
  flex:0 0 190px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px;
  border-radius:14px;
  background:var(--surface);
  border:1px solid var(--border);
}

.team-initials{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  letter-spacing:.06em;
  background:#fff;
  border:1px solid var(--border);
}

.team-badge-title{ font-weight:800; font-size:13px; }
.team-badge-sub{ color:var(--muted); font-size:12px; margin-top:2px; }

.team-content{ flex:1; }
.team-name{ font-weight:900; margin-bottom:4px; }
.team-role{ color:var(--muted); font-size:13px; margin-bottom:8px; }
.team-text{ color:var(--muted); font-size:13px; }
.team-meta{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }

@media (max-width: 860px){
  .team-row{ flex-direction:column; }
  .team-badge{ width:100%; flex-basis:auto; }
}


.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:8px;
}

.lang-link{
  font-size:13px;
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
}

.lang-link:hover{
  background:var(--surface);
  color:#0f172a;
}

.lang-link.is-active{
  color:#0f172a;
  font-weight:800;
  background:var(--surface2);
  border-color:var(--border);
}

.lang-sep{ opacity:.35; user-select:none; }


@media (max-width: 860px){
  .lang-switch{
    width:100%;
    justify-content:flex-start;
    padding-top:6px;
    margin-left:0;
  }
}

.team-note{
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  border-style: dashed;
}

.team-note{
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  border-style: dashed;
}


.map-embed{
  margin-top:12px;
  height:260px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
}
.map-embed iframe{
  width:100%;
  height:100%;
  border:0;
}
@media (max-width: 860px){
  .map-embed{ height:220px; }
}


.map-mini{
  margin-top:12px;
  height:200px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--surface);
}
.map-mini iframe{width:100%;height:100%;border:0}

.map-mini-footer{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.map-mini-line{
  display:flex;
  align-items:center;
  gap:8px;
}
.map-mini-text{
  font-size:13px;
  color:var(--muted);
}


.btn-small{
  padding:7px 12px;
  font-size:13px;
}

@media (max-width: 860px){
  .map-mini{height:190px;}
}


