:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.10);

  /* Brochure-inspired palette (navy/blue + light greys) */
  --navy:#0b2a4a;
  --blue:#1f5d99;
  --blue2:#2b77c7;
  --chip:#eef2f7;
  --card:#ffffff;
  --alt:#f6f8fb;
  --shadow: 0 10px 30px rgba(2, 8, 20, .08);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.skip{
  position:absolute; left:-9999px; top:8px;
  background:var(--navy); color:white; padding:10px 12px; border-radius:12px;
}
.skip:focus{left:12px; z-index:1000}

.container{width:min(1100px, 92vw); margin-inline:auto}
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--blue2));
  color:white; display:grid; place-items:center;
  font-weight:800; letter-spacing:.5px;
  box-shadow:var(--shadow);
}
.brand-text{display:flex; flex-direction:column}
.brand-title{font-weight:800}
.brand-subtitle{font-size:.85rem; color:var(--muted)}

.nav-links{
  display:flex; align-items:center; gap:18px;
}
.nav-links a{font-weight:600; color:var(--text); opacity:.9}
.nav-links a:hover{opacity:1}
.nav-links .btn-small{padding:10px 12px}

.nav-toggle{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line);
  background:white;
}
.nav-toggle span{
  display:block; height:2px; background:var(--navy);
  margin:6px 10px; border-radius:10px;
}

.lang{display:flex; align-items:center; gap:10px}
.lang-label{font-size:.85rem; color:var(--muted)}
.lang-toggle{
  position:relative;
  width:86px; height:34px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--chip);
  display:flex; align-items:center; justify-content:space-between;
  padding:3px;
  cursor:pointer;
}
.lang-toggle .pill{
  font-size:.8rem;
  width:38px;
  text-align:center;
  color:var(--muted);
  font-weight:700;
  z-index:1;
}
.lang-toggle[aria-pressed="true"] .pill:last-child{color:white}
.lang-toggle[aria-pressed="false"] .pill:first-child{color:white}
.lang-toggle .knob{
  position:absolute;
  top:3px; left:3px;
  width:40px; height:28px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--navy),var(--blue2));
  transition:transform .18s ease;
  box-shadow:var(--shadow);
}
.lang-toggle[aria-pressed="true"] .knob{transform:translateX(40px)}

.hero{
  padding:42px 0 26px;
  background:
    radial-gradient(900px 450px at 20% 10%, rgba(31,93,153,.14), transparent 60%),
    radial-gradient(700px 350px at 80% 0%, rgba(11,42,74,.10), transparent 55%),
    linear-gradient(180deg, #fff, #fff);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  background:var(--chip);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:.9rem;
}
h1{font-size:clamp(1.9rem, 3.3vw, 3rem); line-height:1.12; margin:14px 0 10px}
.lead{font-size:1.05rem; color:var(--muted); margin:0 0 18px}

.cta{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  background:linear-gradient(135deg,var(--navy),var(--blue2));
  color:white;
  font-weight:800;
  box-shadow:var(--shadow);
}
.btn:hover{filter:brightness(1.02)}
.btn-ghost{
  background:white;
  color:var(--navy);
  border-color:var(--line);
  box-shadow:none;
}
.btn-small{padding:10px 12px; border-radius:12px; font-weight:800}

.meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:18px;
}
.meta-card{
  border:1px solid var(--line);
  background:white;
  border-radius:16px;
  padding:12px;
}
.meta-k{display:block; font-size:.85rem; color:var(--muted); font-weight:700}
.meta-v{display:block; font-weight:800; color:var(--navy)}

.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:white;
}
.hero-media img{width:100%; height:auto}

.section{padding:54px 0}
.section-alt{background:var(--alt)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0; font-size:clamp(1.4rem, 2.2vw, 2rem)}
.section-head p{margin:8px 0 0; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
}
.card{
  grid-column:span 6;
  border:1px solid var(--line);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 1px 0 rgba(2, 8, 20, .02);
}
.card h3{margin:0 0 10px}
.card.accent{
  background:linear-gradient(180deg, rgba(31,93,153,.08), rgba(11,42,74,.05));
  border-color:rgba(31,93,153,.25);
}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}
.ticks{list-style:none; margin:0; padding:0; color:var(--muted)}
.ticks li{display:flex; gap:10px; margin:10px 0}
.ticks li::before{
  content:"✓";
  width:22px; height:22px;
  border-radius:7px;
  display:grid; place-items:center;
  background:rgba(31,93,153,.12);
  color:var(--navy);
  font-weight:900;
}
.mini-cta{margin-top:12px}

.carousel{
  display:grid;
  grid-template-columns: 50px 1fr 50px;
  align-items:center;
  gap:10px;
}
.car-btn{
  width:46px; height:46px;
  border-radius:16px;
  border:1px solid var(--line);
  background:white;
  cursor:pointer;
  font-size:26px;
  display:grid; place-items:center;
}
.car-btn:hover{background:var(--chip)}
.car-viewport{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:white;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.slide{
  display:grid;
  grid-template-columns: 1fr;
}
.slide img{width:100%; height:auto}
.slide-meta{
  padding:14px 16px 16px;
  border-top:1px solid var(--line);
}
.slide-title{font-weight:900}
.slide-sub{color:var(--muted); margin-top:4px}

.car-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  background:rgba(15,23,42,.25);
}
.dot.active{
  width:22px;
  background:linear-gradient(135deg,var(--navy),var(--blue2));
}

.cred-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.cred-card{
  border:1px solid var(--line);
  background:white;
  border-radius:var(--radius);
  padding:18px;
}
.cred-media{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:white;
}

.muted{color:var(--muted)}
.inline{margin-top:12px}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top:14px;
}
.contact-card{
  border:1px solid var(--line);
  background:white;
  border-radius:16px;
  padding:14px;
  display:flex; gap:12px;
}
.contact-card:hover{background:var(--chip)}
.cc-ico{
  width:42px; height:42px;
  border-radius:14px;
  background:rgba(31,93,153,.10);
  display:grid; place-items:center;
  font-size:20px;
}
.cc-k{font-size:.85rem; color:var(--muted); font-weight:700}
.cc-v{font-weight:900; color:var(--navy)}

.form.card{box-shadow:var(--shadow)}
label{display:block; margin:12px 0}
label span{display:block; font-weight:800; font-size:.9rem; margin-bottom:6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:white;
  font:inherit;
}
textarea{resize:vertical}
.two{display:block}
.tiny{font-size:.85rem}

.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap:12px;
  align-items:center;
}
.footer-brand{font-weight:900}
.footer-links{display:flex; gap:14px; justify-content:center}
.footer-links a{color:var(--muted); font-weight:700}
.footer-links a:hover{color:var(--text)}
.footer-meta{justify-self:end; text-align:right}
.footer-meta a{color:var(--muted); font-weight:700}
.footer-meta a:hover{color:var(--text)}

@media (max-width: 900px){
  .hero-grid, .contact-grid, .cred-grid{grid-template-columns:1fr}
  .meta{grid-template-columns:1fr}
  .card{grid-column:span 12}
  .footer-grid{grid-template-columns:1fr; text-align:center}
  .footer-meta{justify-self:center; text-align:center}
  .footer-links{justify-content:center}
}

@media (max-width: 820px){
  .nav-toggle{display:inline-block}
  .nav-links{
    position:absolute;
    top:72px; left:0; right:0;
    background:rgba(255,255,255,.92);
    backdrop-filter:saturate(180%) blur(12px);
    border-bottom:1px solid var(--line);
    padding:12px 4vw 16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .nav-links.open{display:flex}
  .lang{width:100%; justify-content:space-between}
}
