:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --card:#f9fafb;
  --primary:#0ea5e9;
  --primary-dark:#0284c7;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius:16px;
  --max:1120px;
  --header-h:74px;
  font-synthesis-weight:none;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; color:var(--text); background:var(--bg); line-height:1.55}
a{color:var(--primary); text-decoration:none}
a:hover{color:var(--primary-dark)}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
header.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  height:var(--header-h);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; height:var(--header-h); gap:16px}
.brand{display:flex; align-items:center; gap:12px; color:var(--text)}
.brand img{height:34px; width:auto}
.nav{display:flex; align-items:center; gap:14px}
.nav a{color:var(--text); font-weight:600; font-size:14px; padding:8px 10px; border-radius:10px}
.nav a.active, .nav a:hover{background:var(--card)}
.lang{display:flex; gap:8px; align-items:center}
.lang a{font-size:13px; padding:8px 10px; border:1px solid var(--border); border-radius:999px; color:var(--text); background:#fff}
.lang a.active{border-color:var(--primary); color:var(--primary)}
.menu-btn{display:none; border:1px solid var(--border); border-radius:12px; background:#fff; padding:10px 12px; font-weight:700}
.mobile-drawer{display:none; border-top:1px solid var(--border); padding:10px 0}
.mobile-drawer a{display:block; padding:10px 16px; color:var(--text); font-weight:600}
.hero{padding:46px 0 20px}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:28px; align-items:center}
.hero h1{font-size:44px; line-height:1.05; margin:0 0 12px}
.hero p{margin:0 0 18px; color:var(--muted); font-size:18px}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 18px}
.badge{border:1px solid var(--border); background:#fff; padding:6px 10px; border-radius:999px; font-size:13px; color:var(--muted)}
.cta{display:flex; gap:10px; flex-wrap:wrap}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 14px; border-radius:12px; font-weight:700; border:1px solid var(--border); background:#fff; color:var(--text)}
.btn.primary{background:var(--primary); border-color:var(--primary); color:white}
.btn.primary:hover{background:var(--primary-dark); border-color:var(--primary-dark); color:white}
.card{background:var(--card); border:1px solid var(--border); border-radius:var(--radius); box-shadow: var(--shadow)}
.hero-media{overflow:hidden}
.hero-media img{width:100%; height:360px; object-fit:cover; display:block}
.section{padding:30px 0}
.section h2{margin:0 0 12px; font-size:26px}
.section p{margin:0 0 14px; color:var(--muted)}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.tile{padding:18px}
.tile h3{margin:0 0 6px; font-size:16px}
.tile p{margin:0; color:var(--muted); font-size:14px}
.split{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.figure{overflow:hidden}
.figure img{width:100%; height:320px; object-fit:cover; display:block}
.person{display:flex; gap:14px; align-items:flex-start; padding:18px}
.person img{width:110px; height:110px; object-fit:cover; border-radius:14px; border:1px solid var(--border)}
.person h3{margin:0 0 4px}
.person p{margin:0; color:var(--muted); font-size:14px}
footer{margin-top:30px; border-top:1px solid var(--border); padding:26px 0; color:var(--muted); font-size:14px}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:20px}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.small{font-size:12px; color:var(--muted)}
/* Cookie banner */
.cookie{position:fixed; left:16px; right:16px; bottom:16px; z-index:100; display:none}
.cookie-inner{max-width:var(--max); margin:0 auto; padding:14px 16px; display:flex; gap:12px; align-items:flex-start; justify-content:space-between}
.cookie p{margin:0; color:var(--muted); font-size:13px}
.cookie .actions{display:flex; gap:10px; flex-wrap:wrap}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-media img{height:280px}
  .grid3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .nav{display:none}
  .menu-btn{display:inline-flex}
  .mobile-drawer.open{display:block}
  .footer-grid{grid-template-columns: 1fr}
}

/* Lists */
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

/* Home header (logo centered) */
header.site-header.home-header .header-inner{justify-content:center; position:relative}
header.site-header.home-header .nav, header.site-header.home-header .menu-btn{display:none !important}
header.site-header.home-header .lang{position:absolute; right:20px}

/* Page hero (title only) */
.hero.page-hero{padding:36px 0 12px}
.hero.page-hero h1{font-size:40px; margin:0 0 8px}
.hero .lead{margin:0; color:var(--muted); font-size:18px; max-width:820px}

/* Home hero (title full width) */
.hero.home-hero{padding:44px 0 20px}
.hero.home-hero h1{max-width:none}

/* --- fixes: alignment & casing --- */
.hero, .home-hero { text-align:left; }
.hero h1, .home-hero h1 { text-transform:none; }
.btn, .chip { text-transform:none; }
.home-hero-left, .hero-grid > div:first-child { text-align:left; }


/* Home hero requested: ALL CAPS + CENTER */
.hero-center-caps{ text-align:center; }
.hero-center-caps .cta{ justify-content:center; }
.hero-center-caps h1, .hero-center-caps .btn, .hero-center-caps .lead{ text-transform:uppercase; }
.hero-center-caps .badges{ justify-content:center; }

/* Home hero - centered & uppercase */
.home-hero-centered{ text-align:center; }
.home-hero-centered .cta{ justify-content:center; }
.home-hero-centered .badges{ justify-content:center; }
.home-hero-centered h1,
.home-hero-centered .btn,
.home-hero-centered .lead{ text-transform:uppercase; letter-spacing:.02em; }

/* Trusted by - avatar images */
.trusted-card{display:flex;gap:12px;align-items:center;}
.trusted-card .avatar{width:56px;height:56px;border-radius:50%;overflow:hidden;flex:0 0 56px;background:#eef2f7;}
.trusted-card .avatar img{width:100%;height:100%;object-fit:cover;}

/* --- Enhancements: hero alignment, grids, testimonials/FAQ layout, footer keywords --- */
.hero-center-caps{
  text-align:center;
}
.hero-center-caps h1{
  margin-bottom:18px;
}
.hero-center-caps .cta{
  justify-content:center;
  gap:14px;
  margin:18px 0 16px;
}
.hero-center-caps .lead{
  text-align:center;
  margin:0 auto;
  max-width:980px;
  line-height:1.6;
}
.hero-center-caps .pill-row{
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.grid-2, .grid2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}
.grid-3, .grid3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}
@media (max-width: 980px){
  .grid-3, .grid3{ grid-template-columns:1fr; }
}
@media (max-width: 820px){
  .grid-2, .grid2{ grid-template-columns:1fr; }
}

/* Make cards in grids look consistent */
.grid-2 .card, .grid2 .card,
.grid-3 .card, .grid3 .card{
  height:100%;
}

/* Testimonials */
.section-trusted .card{
  padding:18px 18px 16px;
}
.section-trusted .trusted-card{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.section-trusted .trusted-avatar{
  width:44px;
  height:44px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 44px;
}
.section-trusted .trusted-meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  margin-bottom:10px;
}
.section-trusted .trusted-name{
  font-weight:700;
}
.section-trusted .trusted-role{
  color:var(--muted);
}
.section-trusted .trusted-quote{
  margin:0;
  color:var(--muted);
}

/* FAQ */
.section-faq .card{
  padding:18px;
}
.section-faq .faq-q{
  margin:0 0 10px;
}
.section-faq .faq-a{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* Footer keywords line */
.footer-keywords{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
}
