/* ---- Page-specific (blog.html) ---- */
.blog-hero{padding:calc(var(--header-h) + 16px) 0 28px}
.blog-note{margin-top:14px;color:var(--muted);font-size:.9rem;line-height:1.7}

.blog-list{display:grid;gap:14px;margin-top:28px}
.blog-item{
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:0 1px 2px rgba(15,23,42,.04);
}
.blog-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  display:grid;
  gap:8px;
}
.blog-item summary::-webkit-details-marker{display:none}
.blog-item .post-meta{font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.blog-item .post-title{font-family:'Sora',system-ui,sans-serif;font-weight:700;letter-spacing:-.02em;color:var(--heading);font-size:1.02rem;margin:0}
.blog-item .post-excerpt{
  margin:0;
  color:var(--text);
  line-height:1.75;
  font-size:.92rem;
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.blog-item .view-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  font-size:.86rem;
  color:var(--accent);
  margin-top:2px;
}
.blog-item[open] .view-more{color:var(--accent-hover)}
.blog-item .post-body{padding:0 18px 18px}
.blog-item .post-body p{margin:0;color:var(--text);line-height:1.8;font-size:.94rem}
.blog-item .post-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.blog-item .post-tag{font-size:.74rem;font-weight:800;color:var(--accent);background:var(--accent-muted);border:1px solid var(--accent-border);padding:6px 10px;border-radius:999px}

@media (hover:hover){
  .blog-item:hover{border-color:#cbd5e1;box-shadow:var(--shadow-md)}
}

/* ---- Shared site chrome (layout) ---- */
/* Safe corporate theme â€” fonts loaded from page <link> (Inter + Sora), no @import */

:root{
  --navy:#0f172a;
  --navy-2:#1e3a5f;
  --heading:#0f2d5c;
  --steel:#475569;
  --accent:#1d4ed8;
  --accent-hover:#1e40af;
  --accent-muted:rgba(29,78,216,.08);
  --accent-border:rgba(29,78,216,.22);
  --header-h:72px;
  --radius-pill:999px;
  --bg:#ffffff;
  --surface:#ffffff;
  --bg-soft:#f8fafc;
  --line:#e2e8f0;
  --text:#334155;
  --muted:#64748b;
  --shadow-sm:0 1px 3px rgba(15,23,42,.06);
  --shadow-md:0 12px 40px rgba(15,23,42,.1);
  --r:16px;
  --r-sm:12px;
  --r-xs:10px;
  --t:220ms cubic-bezier(.2,.8,.2,1);
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
  /* clip avoids horizontal bleed; fixed header does not rely on sticky */
  overflow-x:clip;
  scroll-padding-top:calc(var(--header-h) + 10px);
}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  overflow-x:visible;
  position:relative;
}
img,video,canvas{
  max-width:100%;
  height:auto;
}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* Ambient bubbles â€” same glass orb treatment as homepage .hero-bubble (hidden on home) */
.page-bubbles{
  position:fixed;
  inset:0;
  z-index:0;
  overflow:hidden;
  pointer-events:none;
}
body[data-page="home"] .page-bubbles{display:none}
.page-bubble{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(
    circle at 28% 28%,
    rgba(255,255,255,.35),
    rgba(37,99,235,.28) 38%,
    rgba(30,64,175,.22) 55%,
    rgba(79,70,229,.1) 68%,
    transparent 78%
  );
  border:1px solid rgba(37,99,235,.35);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 16px 48px rgba(29,78,216,.18);
  opacity:.92;
  will-change:transform;
}
/* Positions + timing aligned with index hero (first 8); 9â€“10 fill extra slots */
.page-bubble:nth-child(1){width:140px;height:140px;left:6%;top:18%;animation:pageBubbleDrift 16s ease-in-out infinite}
.page-bubble:nth-child(2){width:88px;height:88px;left:22%;top:62%;animation:pageBubbleDrift 14s ease-in-out infinite -2s}
.page-bubble:nth-child(3){width:110px;height:110px;right:12%;top:14%;animation:pageBubbleDrift 18s ease-in-out infinite -5s}
.page-bubble:nth-child(4){width:72px;height:72px;right:28%;top:48%;animation:pageBubbleDrift 13s ease-in-out infinite -1s}
.page-bubble:nth-child(5){width:56px;height:56px;left:44%;top:12%;animation:pageBubbleDrift 12s ease-in-out infinite -3s}
.page-bubble:nth-child(6){width:96px;height:96px;right:6%;bottom:18%;animation:pageBubbleDrift 17s ease-in-out infinite -6s}
.page-bubble:nth-child(7){width:64px;height:64px;left:8%;bottom:22%;animation:pageBubbleDrift 15s ease-in-out infinite -4s}
.page-bubble:nth-child(8){width:48px;height:48px;left:52%;bottom:30%;animation:pageBubbleDrift 11s ease-in-out infinite -.5s}
.page-bubble:nth-child(9){width:64px;height:64px;right:18%;bottom:8%;animation:pageBubbleDrift 15s ease-in-out infinite -2.5s}
.page-bubble:nth-child(10){width:72px;height:72px;left:32%;top:38%;animation:pageBubbleDrift 16s ease-in-out infinite -3.5s}
@keyframes pageBubbleDrift{
  0%,100%{transform:translate(0,0) scale(1)}
  25%{transform:translate(8vw,-6vh) scale(1.08)}
  50%{transform:translate(-6vw,4vh) scale(.92)}
  75%{transform:translate(5vw,5vh) scale(1.04)}
}
@media (prefers-reduced-motion:reduce){
  .page-bubble{animation:none;opacity:.35}
}
/* Header shell: reserve vertical space so content clears the fixed bar */
#siteHeader{
  position:relative;
  z-index:100;
  overflow:visible;
  min-height:var(--header-h);
}
.site-footer,
section{
  position:relative;
  z-index:1;
}
section[id]{
  scroll-margin-top:calc(var(--header-h) + 16px);
}

/* Shared cards (homepage + future pages) */
.av-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  transition:transform var(--t),box-shadow var(--t),border-color var(--t);
}
@media (hover:hover) and (prefers-reduced-motion: no-preference){
  .av-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:#cbd5e1;
  }
}
.av-card--glass{
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

/* Header â€” fixed so it stays visible while scrolling (sticky can fail with ancestor overflow) */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
  transition:box-shadow var(--t),border-color var(--t);
  overflow:visible;
  box-sizing:border-box;
}
.site-header .container{
  overflow:visible;
  max-width:1280px;
  margin:0 auto;
  padding-inline:12px 20px;
}
.site-header.is-scrolled{box-shadow:var(--shadow-sm)}
.header-inner{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px 32px;
  padding-block:0;
  box-sizing:border-box;
  overflow:visible;
  min-width:0;
  width:100%;
}
.header-end{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  flex:1 1 auto;
  min-width:0;
  margin-left:auto;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:-.03em;
  color:var(--heading);
  white-space:nowrap;
  transition:font-size var(--t);
  flex:0 0 auto;
  line-height:1;
  text-decoration:none;
  margin-left:-6px;
}
.brand-lockup{
  display:inline-flex;
  align-items:baseline;
  flex-wrap:nowrap;
  line-height:1;
}
.brand-core{
  color:var(--accent);
  font-weight:800;
}
.brand-accent{
  color:var(--accent);
  font-weight:800;
}
.brand-suffix{
  margin-left:.28em;
  color:#5c6570;
  font-weight:700;
  font-size:.92em;
  letter-spacing:0;
  background:linear-gradient(180deg,#c8cdd3 0%,#7a828c 42%,#4b5563 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.brand-mark{
  width:48px;height:48px;
  border-radius:10px;
  background:transparent;
  display:grid;place-items:center;
  box-shadow:none;
  flex-shrink:0;
  transition:width var(--t),height var(--t),border-radius var(--t);
}
.brand-mark svg{width:19px;height:19px;fill:currentColor}
.brand-mark img{width:100%;height:100%;object-fit:contain;display:block}
.site-header a.brand:visited{color:var(--heading)}
.site-header a.brand:visited .brand-core{color:var(--accent)}
.site-header a.brand:visited .brand-accent{color:var(--accent)}
.site-header a.brand:visited .brand-suffix{color:#5c6570}
.footer-brand a.brand:visited .brand-suffix{color:#5c6570}

/* Undo legacy per-page `nav { position:fixed; ... }` â€” it was meant for an old navbar and breaks injected `<nav class="nav">` */
.site-header nav.nav{
  position:static;
  top:auto;
  right:auto;
  left:auto;
  bottom:auto;
  width:auto;
  max-width:none;
  min-height:0;
  margin:0;
  z-index:auto;
  background:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border:none;
  box-shadow:none;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:nowrap;
  gap:2px;
  padding:3px;
  border:1px solid var(--line);
  background:var(--bg-soft);
  border-radius:var(--radius-pill);
  min-width:0;
  flex:1 1 auto;
  max-width:100%;
  width:max-content;
  min-height:40px;
  box-sizing:border-box;
}
.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:0 10px;
  min-height:34px;
  border-radius:var(--radius-pill);
  font-size:.82rem;
  font-weight:600;
  color:var(--navy-2);
  text-decoration:none;
  transition:background var(--t),color var(--t),box-shadow var(--t);
  flex-shrink:0;
  white-space:nowrap;
  line-height:1.4;
  box-sizing:border-box;
}
.nav .nav-trigger{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.nav .nav-label{
  line-height:1.4;
  display:inline-block;
}
.nav a:visited{color:var(--navy-2)}
.nav a:hover{background:var(--surface);color:var(--heading)}
.nav a.is-active{
  background:transparent;
  color:var(--accent);
  font-weight:700;
  box-shadow:none;
}
.nav a.is-active:visited{color:var(--accent)}
.nav-item{
  position:relative;
  flex-shrink:0;
}
.nav-item.is-open,
.nav-item:focus-within{
  z-index:1100;
}
.nav-trigger{cursor:pointer}
.nav-trigger .chev{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:12px;
  height:12px;
  margin-left:4px;
  opacity:.55;
  transition:transform var(--t),opacity var(--t);
}
.nav-trigger .chev svg{display:block;width:10px;height:10px}
.nav-item.is-open .chev,
.nav-item:focus-within .chev{transform:rotate(180deg);opacity:.9}
.nav-item.is-open .nav-trigger,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger{
  color:var(--accent);
  font-weight:700;
}
.nav-item--align-end .menu{left:auto;right:0}
/* Invisible hover bridge so pointer can move from trigger into menu without closing */
.nav-item::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:28px;
  display:none;
  z-index:1099;
}
.nav-item--mega::after{
  left:-24px;
  right:-24px;
  height:32px;
}
.nav-item:hover::after,
.nav-item.is-open::after,
.nav-item:focus-within::after{display:block}
.menu{
  position:absolute;
  left:0;
  top:calc(100% + 6px);
  margin-top:0;
  min-width:min(320px,calc(100vw - 48px));
  width:min(360px,calc(100vw - 48px));
  max-height:min(72vh,520px);
  overflow-y:auto;
  overscroll-behavior:contain;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  box-shadow:0 20px 50px rgba(15,23,42,.14),0 8px 16px rgba(15,23,42,.06);
  padding:12px;
  display:none;
  z-index:1101;
  -webkit-overflow-scrolling:touch;
}
.menu--wide{
  width:min(440px,calc(100vw - 48px));
  min-width:min(400px,calc(100vw - 48px));
}
.menu--services{
  width:min(880px,calc(100vw - 32px));
  min-width:min(780px,calc(100vw - 32px));
  padding:16px 18px 18px;
}
.menu--products{
  width:min(760px,calc(100vw - 32px));
  min-width:min(680px,calc(100vw - 32px));
  padding:14px 16px 16px;
}
.nav-item--mega .menu{
  left:50%;
  translate:-50% 0;
}
.nav-item--mega .menu--services,
.nav-item--mega .menu--products{
  left:0;
  translate:0;
}
@media (min-width:1181px){
  .nav-item--mega .menu--services,
  .nav-item--mega .menu--products{
    left:50%;
    translate:-50% 0;
  }
}
/* Open state driven by .is-open (pointer) or :focus-within (keyboard) */
.nav-item.is-open .menu,
.nav-item:focus-within .menu{
  display:block;
  animation:menuIn .22s ease forwards;
  pointer-events:auto;
}
.nav-item--mega.is-open .menu::before,
.nav-item--mega:focus-within .menu::before{
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}
@keyframes menuIn{from{opacity:0}to{opacity:1}}
.menu a{
  display:flex;
  align-items:center;
  width:100%;
  justify-content:flex-start;
  gap:10px;
  padding:10px 12px;
  border-radius:10px;
  font-weight:500;
  font-size:.88rem;
  line-height:1.35;
  text-decoration:none;
  color:var(--heading);
  border-left:3px solid transparent;
  transition:background .15s ease,color .15s ease,border-color .15s ease,padding-left .15s ease;
}
.menu a:visited{color:var(--heading)}
.menu a:hover{
  background:rgba(241,245,249,.95);
  border-left-color:var(--accent);
  padding-left:14px;
  transform:none;
}
.menu a.menu-overview{
  font-weight:600;
  color:var(--accent);
  margin-bottom:4px;
  border-left-color:transparent;
}
.menu a.menu-overview:hover{
  background:rgba(29,78,216,.06);
  padding-left:12px;
}
.menu-group-title{
  display:block;
  min-height:0;
  font-weight:700;
  font-size:.82rem;
  line-height:1.25;
  padding:4px 10px 8px 0;
  margin-bottom:6px;
  border-bottom:1px solid var(--line);
  color:var(--accent);
  background:transparent;
  cursor:default;
  user-select:none;
}
.menu-group-icon{display:none !important}
.menu-group-title:hover{
  color:var(--accent);
  background:transparent;
}
.menu-group--red .menu-group-title,
.menu-group--green .menu-group-title,
.menu-group--blue .menu-group-title,
.menu-group--orange .menu-group-title{
  color:var(--accent);
  background:transparent;
}
.menu-group--red .menu-group-title:hover,
.menu-group--green .menu-group-title:hover,
.menu-group--blue .menu-group-title:hover,
.menu-group--orange .menu-group-title:hover{
  color:var(--accent);
  background:transparent;
}
.menu .nav-icon{flex-shrink:0;color:var(--steel)}
.menu a:hover .nav-icon{color:var(--accent)}
.menu .kicker{
  font-size:.65rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent);
  padding:6px 12px 10px;
  margin-bottom:6px;
  border-bottom:1px solid var(--line);
}
.menu-grid{display:grid;grid-template-columns:1fr;gap:3px}
.menu-grid--2col{
  grid-template-columns:1fr 1fr;
  gap:3px 8px;
}
.menu-grid--2col .menu-overview{grid-column:1 / -1}
.menu-groups{
  display:grid;
  gap:14px 22px;
  margin-top:4px;
  align-items:start;
}
.menu-groups--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.menu-groups--3{grid-template-columns:repeat(3,minmax(0,1fr))}
.menu-group{min-width:0}
.menu-sub{
  display:flex;
  flex-direction:column;
  gap:1px;
}
.menu-sub a{
  display:block;
  padding:7px 10px;
  font-size:.78rem;
  font-weight:500;
  line-height:1.35;
  color:var(--text);
  border-left:none;
  border-radius:8px;
  text-decoration:none;
  transition:background .15s ease,color .15s ease,box-shadow .15s ease;
}
.menu-sub a:hover,
.menu-sub a:focus-visible{
  color:var(--accent);
  font-weight:600;
  background:rgba(29,78,216,.09);
  box-shadow:inset 3px 0 0 var(--accent);
  padding-left:10px;
  border-left:none;
  outline:none;
}
@media (max-width:1180px){
  .menu--services,
  .menu--products{
    width:min(560px,calc(100vw - 24px));
    min-width:min(520px,calc(100vw - 24px));
  }
  .menu-groups--4,
  .menu-groups--3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .nav-item--mega .menu--services,
  .nav-item--mega .menu--products{left:0;translate:0}
}
@media (max-width:640px){
  .menu-grid--2col{grid-template-columns:1fr}
  .menu--services,
  .menu--products{
    width:min(360px,calc(100vw - 24px));
    min-width:0;
  }
  .menu-groups--4,
  .menu-groups--3{grid-template-columns:1fr}
}

.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex:0 0 auto;
  margin-left:4px;
}
@media (max-width:1280px){
  .nav a{padding:0 8px;font-size:.78rem;min-height:32px}
  .header-end{gap:10px}
}
@media (max-width:1180px){
  .nav a{padding:0 7px;font-size:.76rem}
  .btn{padding:8px 11px;font-size:.78rem}
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:var(--r-sm);
  border:1px solid var(--line);
  font-family:'Inter',system-ui,sans-serif;
  font-weight:600;
  font-size:.86rem;
  text-decoration:none;
  transition:transform var(--t),box-shadow var(--t),background var(--t),border-color var(--t),color var(--t);
  white-space:nowrap;
}
.btn:visited{color:var(--heading)}
.btn:focus-visible{outline:2px solid var(--accent);outline-offset:2px}
.btn:active{transform:translateY(1px)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  border-color:transparent;
  box-shadow:0 4px 14px rgba(29,78,216,.25);
  position:relative;
}
.btn-primary:visited{color:#fff}
.btn-primary::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg,rgba(255,255,255,.35),transparent 40%,rgba(255,255,255,.12));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.5;
}
.btn-primary:hover{
  background:var(--accent-hover);
  transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(29,78,216,.3);
}
.btn-ghost{
  background:var(--surface);
  color:var(--heading);
}
.btn-ghost:visited{color:var(--heading)}
.btn-ghost:hover{background:var(--bg-soft);border-color:#cbd5e1}
.btn-call{
  background:rgba(16,185,129,.12);
  border-color:rgba(16,185,129,.28);
  color:#065f46;
}
.btn-call:visited{color:#065f46}
.btn-call .nav-icon{color:#10b981}
.btn-call:hover{
  background:rgba(16,185,129,.18);
  border-color:rgba(16,185,129,.34);
  transform:translateY(-1px);
  box-shadow:0 10px 26px rgba(16,185,129,.12);
}

.burger{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  padding:0;
  box-shadow:0 14px 40px rgba(15,23,42,.12);
}
.burger span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(30,58,95,.95);
  border-radius:2px;
  transition:transform var(--t),opacity var(--t),background var(--t);
}
.burger:hover{background:rgba(248,250,252,.9);border-color:rgba(99,102,241,.18)}
.burger:focus{outline:none}
.burger:focus-visible{outline:2px solid rgba(99,102,241,.55);outline-offset:3px}

.drawer-backdrop{
  position:fixed;inset:0;z-index:1200;
  background:rgba(15,23,42,.45);
  backdrop-filter:blur(4px);
  opacity:0;pointer-events:none;
  transition:opacity var(--t);
}
.drawer{
  position:fixed;top:0;right:0;bottom:0;z-index:1300;
  width:min(420px,92vw);
  background:var(--surface);
  border-left:1px solid var(--line);
  box-shadow:var(--shadow-md);
  transform:translateX(102%);
  transition:transform var(--t);
  display:flex;
  flex-direction:column;
}
.drawer-head{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  border-bottom:1px solid var(--line);
}
.drawer-body{padding:14px 18px 22px;overflow:auto}
.drawer a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:13px 12px;
  border-radius:var(--r-sm);
  font-weight:600;
  color:var(--heading);
  border:1px solid transparent;
  text-decoration:none;
}
.drawer a:visited{color:var(--heading)}
.drawer a:hover{background:var(--bg-soft);border-color:var(--line)}
.drawer .section{
  margin-top:12px;
  margin-bottom:8px;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.drawer-group{
  margin-bottom:10px;
  padding:4px 0 2px;
  border-bottom:1px solid var(--line);
}
.drawer-group:last-of-type{border-bottom:none}
.drawer-group-title{
  display:block;
  padding:10px 12px 6px 0;
  font-weight:700;
  font-size:.88rem;
  color:var(--accent);
  cursor:default;
  user-select:none;
}
.drawer-group-title--red,
.drawer-group-title--green,
.drawer-group-title--blue,
.drawer-group-title--orange{
  color:var(--accent);
}
.drawer-sub{
  display:block;
  padding:8px 12px 8px 12px;
  font-weight:500;
  font-size:.82rem;
  color:var(--text);
  text-decoration:none;
  border:none;
  border-radius:0;
}
.drawer-sub:hover{
  color:var(--accent);
  font-weight:700;
  background:transparent;
  border-color:transparent;
}
.drawer-actions{display:grid;gap:10px;padding:0 18px 18px}
.drawer-open .drawer-backdrop{opacity:1;pointer-events:auto}
.drawer-open .drawer{transform:translateX(0)}

.site-footer{
  margin-top:64px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg,#123056 0%,#0c2748 42%,#081a30 100%);
  color:rgba(255,255,255,.78);
}
.footer-inner{
  position:relative;
  z-index:1;
  padding:56px 0 0;
}
.site-footer > .container,
.footer-inner > .container{
  max-width:1200px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
  box-sizing:border-box;
}
.footer-brand{
  position:relative;
  z-index:1;
  margin:0;
  padding:0;
}
.footer-brand a.brand,
.footer-brand__logo{
  margin-left:0;
  margin-right:0;
  gap:12px;
  justify-content:flex-start;
  align-items:center;
}
.footer-brand .brand-lockup{
  display:inline-flex !important;
  align-items:baseline;
  color:#e8f1ff;
}
.footer-brand .brand-lockup .brand-core,
.footer-brand .brand-lockup .brand-accent{
  color:rgba(226,232,240,.98);
}
.footer-brand .brand-lockup .brand-suffix{
  color:rgba(203,213,225,.92);
  background:none;
  -webkit-text-fill-color:rgba(203,213,225,.92);
}
.footer-brand .brand-mark{
  width:52px;
  height:52px;
  margin:0;
  padding:0;
  background:transparent !important;
  box-shadow:none !important;
  border:none !important;
  border-radius:0;
  overflow:visible;
  place-items:center;
  justify-self:start;
  flex-shrink:0;
}
.footer-brand .brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left center;
  display:block;
  background:transparent;
  margin:0;
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.4fr);
  gap:28px 32px;
  padding-bottom:36px;
  align-items:start;
}
.footer-grid>*{min-width:0}
.footer-grid > *{
  opacity:0;
  transform:translateY(15px);
  transition:opacity .55s ease,transform .55s ease;
}
.site-footer:not(.footer-animate) .footer-grid > *{
  opacity:1;
  transform:none;
}
.site-footer.is-inview .footer-grid > *:nth-child(1){transition-delay:0ms}
.site-footer.is-inview .footer-grid > *:nth-child(2){transition-delay:100ms}
.site-footer.is-inview .footer-grid > *:nth-child(3){transition-delay:200ms}
.site-footer.is-inview .footer-grid > *:nth-child(4){transition-delay:300ms}
.site-footer.is-inview .footer-grid > *{
  opacity:1;
  transform:translateY(0);
}
.footer-brand a.brand{color:#e8f1ff}
.footer-brand a.brand .brand-core{color:rgba(203,213,225,.95)}
.footer-brand a.brand .brand-accent{color:rgba(203,213,225,.95)}
.footer-brand a.brand .brand-suffix{color:rgba(203,213,225,.95)}
.footer-brand a.brand:visited{color:#e8f1ff}
.footer-brand a.brand:visited .brand-core{color:rgba(203,213,225,.95)}
.footer-brand a.brand:visited .brand-accent{color:rgba(203,213,225,.95)}
.footer-brand a.brand:visited .brand-suffix{color:rgba(203,213,225,.95)}
.footer-brand a.brand:focus-visible{
  outline:2px solid rgba(147,197,253,.75);
  outline-offset:3px;
  border-radius:8px;
}
.footer-brand p{
  margin:12px 0 0;
  max-width:320px;
  line-height:1.65;
  font-size:.88rem;
  color:rgba(226,232,240,.72);
}
.footer-title{
  color:#fff;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:.88rem;
  letter-spacing:.5px;
  text-transform:uppercase;
  margin:0 0 14px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(148,163,184,.18);
}
.footer-links{
  list-style:none;
  display:grid;
  gap:8px;
  margin:0;
  padding:0;
}
.footer-links a{
  position:relative;
  display:inline-block;
  font-size:.9rem;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  padding-left:0;
  transition:color .2s ease,transform .2s ease,padding-left .2s ease;
}
.footer-links a::before{
  content:"›";
  position:absolute;
  left:0;
  top:50%;
  transform:translate(-6px,-50%);
  opacity:0;
  color:#93c5fd;
  font-weight:600;
  line-height:1;
  pointer-events:none;
  transition:opacity .2s ease,transform .2s ease;
}
.footer-links a:visited{color:rgba(255,255,255,.78)}
.footer-links a:hover{
  color:#93c5fd;
  transform:translateX(2px);
  padding-left:12px;
}
.footer-links a:hover::before{
  opacity:.9;
  transform:translate(0,-50%);
}
.footer-links a:focus-visible{
  outline:2px solid rgba(147,197,253,.75);
  outline-offset:3px;
  border-radius:4px;
  color:#fff;
}
.footer-contact{
  list-style:none;
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
}
.footer-contact__item{
  display:grid;
  grid-template-columns:20px minmax(0,1fr);
  gap:10px;
  align-items:start;
}
.footer-contact__icon{
  width:20px;
  height:20px;
  margin-top:2px;
  color:rgba(147,197,253,.85);
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer-contact__icon svg{
  width:16px;
  height:16px;
  display:block;
}
.footer-contact__body{
  min-width:0;
  display:grid;
  gap:4px;
}
.footer-contact__label{
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:rgba(148,163,184,.95);
  line-height:1.2;
}
.footer-contact__body a,
.footer-contact__text{
  font-size:.88rem;
  line-height:1.55;
  color:rgba(255,255,255,.78);
  margin:0;
}
.footer-contact__text{
  display:grid;
  gap:0;
}
.footer-contact__line{
  display:block;
  white-space:nowrap;
}
.footer-contact__body a{
  display:inline-block;
  text-decoration:none;
  transition:color .2s ease,transform .2s ease;
}
.footer-contact__body a:visited{color:rgba(255,255,255,.78)}
.footer-contact__body a:hover{
  color:#93c5fd;
  transform:translateX(2px);
}
.footer-contact__body a:focus-visible{
  outline:2px solid rgba(147,197,253,.75);
  outline-offset:3px;
  border-radius:4px;
  color:#fff;
}
.footer-col--contact{
  position:relative;
  z-index:1;
}
.footer-bottom{
  position:relative;
  min-height:48px;
  padding:14px 0 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px 24px;
  flex-wrap:wrap;
  border-top:none;
  box-sizing:border-box;
}
.footer-bottom::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:1px;
  width:100%;
  max-width:100%;
  background:rgba(148,163,184,.28);
}
.site-footer.footer-animate .footer-bottom::before{
  width:0;
  transition:width .75s ease;
  transition-delay:.28s;
}
.site-footer.footer-animate.is-inview .footer-bottom::before{
  width:100%;
}
.footer-legal{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin:0;
}
.footer-legal__sep{
  color:rgba(148,163,184,.55);
  font-size:.8rem;
  user-select:none;
}
.footer-legal a{
  color:rgba(191,219,254,.92);
  text-decoration:none;
  font-weight:500;
  font-size:.82rem;
  line-height:1.3;
  white-space:nowrap;
  transition:color .2s ease;
}
.footer-legal a:visited{color:rgba(191,219,254,.92)}
.footer-legal a:hover{color:#fff}
.footer-legal a:focus-visible{
  outline:2px solid rgba(147,197,253,.75);
  outline-offset:3px;
  border-radius:4px;
}
.footer-copy{
  margin:0;
  font-size:.82rem;
  color:rgba(255,255,255,.65);
  line-height:1.4;
}
.socials{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.social{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
  color:#fff;
  text-decoration:none;
  flex-shrink:0;
}
.social svg{width:20px;height:20px;display:block}
.social--instagram svg{width:22px;height:22px}
.social--facebook svg{width:20px;height:20px}
.social--youtube svg{width:22px;height:22px}
.social:visited{color:#fff}
.social:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.24);
  box-shadow:0 8px 18px rgba(2,12,28,.28);
}
.social:focus-visible{
  outline:2px solid rgba(147,197,253,.75);
  outline-offset:3px;
}
@media (prefers-reduced-motion:reduce){
  .footer-links a,
  .footer-contact__body a,
  .footer-legal a,
  .social,
  .footer-grid > *,
  .footer-bottom::before,
  .footer-links a::before{
    transition:none !important;
  }
  .footer-links a:hover,
  .footer-contact__body a:hover,
  .social:hover{
    transform:none;
  }
  .footer-links a:hover{padding-left:0}
  .footer-links a:hover::before{opacity:0}
  .footer-grid > *,
  .site-footer .footer-grid > *{
    opacity:1;
    transform:none;
  }
  .footer-bottom::before,
  .site-footer .footer-bottom::before{
    width:100%;
  }
}

section{padding:56px 0}

.fade-up{will-change:transform,opacity}

nav#navbar .nav-inner{gap:14px}
nav#navbar .nav-links{gap:4px;flex-wrap:nowrap}
nav#navbar .nav-links>li>a{white-space:nowrap}

@media (max-width:980px){
  .site-header nav.nav{display:none}
  .header-end{
    flex:0 0 auto;
    margin-left:auto;
    gap:8px;
  }
  .site-header .burger{display:flex}
  section{padding:44px 0}
  .site-header .container{padding-inline:12px}
  .page-hero{
    padding-top:88px;
    padding-bottom:44px;
  }
  .page-hero .section-title,
  .section-title{
    font-size:clamp(1.5rem,3.2vw + .85rem,2.35rem);
  }
  .section-desc{
    font-size:0.95rem;
    max-width:100%;
  }
}
@media (max-width:640px){
  .container{padding:0 16px}
  section{padding:36px 0}
  .logo-strip-section{padding:32px 0}
  .logo-strip-row{gap:14px 20px}
  .portfolio-card,.pricing-card{padding:20px 18px}
  .portfolio-grid,.pricing-grid{gap:16px}
  .faq-item summary{padding:14px 14px;font-size:.9rem}
  .drawer{width:min(100vw,100%)}
  .header-actions{gap:10px}
  .header-actions .btn-primary{display:none}
  .btn-call{padding:8px 10px;min-width:44px}
  .btn-call span{display:none}
  .btn-call .nav-icon{margin:0}
}

@media (max-width:991px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:24px 28px;
  }
  .footer-brand{
    grid-column:1 / -1;
  }
  .footer-brand p{max-width:420px}
}

@media (max-width:767px){
  .site-footer{margin-top:40px}
  .footer-inner{padding:40px 0 0}
  .footer-grid{
    grid-template-columns:1fr;
    gap:24px;
    padding-bottom:28px;
  }
  .footer-brand{grid-column:auto}
  .footer-brand p{max-width:320px}
  .footer-title{margin-bottom:12px}
  .footer-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
    min-height:auto;
    gap:10px;
    padding:14px 0 16px;
  }
  .footer-legal{
    justify-content:center;
    gap:10px;
  }
  .footer-copy{white-space:normal}
}

@media (max-width:480px){
  .footer-inner{padding:32px 0 0}
  .site-footer .container{padding-left:16px;padding-right:16px}
  .footer-contact__line{white-space:normal}
}

/* Mobile floating action menu (FAB) */
.mfab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:1200;
  display:none;
}
@media (max-width:640px){
  .mfab{display:block}
}
.mfab-btn{
  width:56px;height:56px;
  border-radius:999px;
  border:1px solid rgba(37,211,102,.28);
  background:linear-gradient(135deg, rgba(37,211,102,.22), rgba(22,163,74,.18));
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 46px rgba(15,23,42,.18);
  display:grid;place-items:center;
  color:#0B1020;
  cursor:pointer;
  transition:transform var(--t), box-shadow var(--t), background var(--t);
}
.mfab-btn:hover{transform:translateY(-2px)}
.mfab.is-open .mfab-btn{transform:translateY(-2px)}
.mfab-btn .nav-icon{color:#0B1020}

/* menu styles removed (WhatsApp-only button) */
@media (max-width:480px){
  .container{padding:0 14px}
  .brand{font-size:.88rem}
  .brand-mark{width:44px;height:44px}
  .brand-mark svg{width:17px;height:17px}
  .header-actions .btn-ghost span{
    position:absolute;width:1px;height:1px;padding:0;margin:-1px;
    overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
  }
  .header-actions .btn-ghost{
    padding:8px 10px;
    min-width:40px;
    justify-content:center;
  }
}
@media (max-width:380px){
  .brand-suffix{display:none}
}

h1,h2,h3,h4,h5{
  font-family:'Sora',system-ui,sans-serif;
  letter-spacing:-.02em;
  line-height:1.14;
  color:var(--heading);
}
h1{font-weight:800}
h2,h3{font-weight:700}
h4,h5{font-weight:600}
.hero h1,
.page-hero h1,
.page-hero .section-title,
.section-title{
  font-family:'Sora',system-ui,sans-serif;
  letter-spacing:-.03em;
}
.drawer-head-title{
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:1.02rem;
  letter-spacing:-.02em;
  color:var(--heading);
}

.btn .nav-icon{color:var(--steel);flex-shrink:0}
.btn-primary .nav-icon{color:rgba(255,255,255,.95)}
.menu a{display:inline-flex;align-items:center;gap:10px}
.menu a span{flex:1}

.logo-strip-section{
  padding:48px 0;
  background:var(--bg-soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.logo-strip-head{text-align:center;margin-bottom:28px}
.logo-strip-head p{font-size:.88rem;color:var(--muted);margin-top:8px}
.logo-strip-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:20px 32px;
}
.logo-placeholder{
  min-width:120px;
  height:40px;
  border-radius:var(--r-xs);
  border:1px dashed #cbd5e1;
  background:rgba(255,255,255,.8);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#5c6570;
}

.portfolio-section{background:var(--bg)}
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,280px),1fr));
  gap:24px;
  margin-top:40px;
}
.portfolio-card{
  padding:28px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:var(--surface);
  transition:transform var(--t),box-shadow var(--t),border-color var(--t);
}
@media (hover:hover) and (prefers-reduced-motion: no-preference){
  .portfolio-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow-md);
    border-color:#cbd5e1;
  }
}
.portfolio-card h3{font-size:1.05rem;margin-bottom:10px}
.portfolio-card p{font-size:.88rem;color:var(--muted);line-height:1.65;margin-bottom:14px}
.portfolio-meta{font-size:.78rem;font-weight:600;color:var(--accent);letter-spacing:.02em}

.pricing-section{background:var(--bg-soft)}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));
  gap:22px;
  margin-top:40px;
  align-items:stretch;
}
.pricing-card{
  padding:28px 24px;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:var(--surface);
  display:flex;
  flex-direction:column;
  transition:transform var(--t),box-shadow var(--t);
}
.pricing-card.featured{
  border-color:var(--accent-border);
  box-shadow:0 12px 36px rgba(29,78,216,.12);
  position:relative;
}
.pricing-card.featured::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(145deg,var(--accent),rgba(29,78,216,.15));
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}
.pricing-name{font-family:'Sora',system-ui,sans-serif;font-weight:700;font-size:1.05rem;margin-bottom:6px}
.pricing-price{font-size:1.75rem;font-weight:800;color:var(--heading);letter-spacing:-.02em}
.pricing-price span{font-size:.85rem;font-weight:600;color:var(--muted)}
.pricing-card ul{list-style:none;margin:18px 0 22px;display:grid;gap:10px;font-size:.86rem;color:var(--text)}
.pricing-card li{padding-left:20px;position:relative}
.pricing-card li::before{
  content:'';
  position:absolute;
  left:0;top:.55em;
  width:6px;height:6px;border-radius:50%;
  background:var(--accent);
  opacity:.7;
}

.faq-section{background:var(--bg)}
.faq-list{max-width:760px;margin:40px auto 0;display:grid;gap:10px}
.faq-item{
  border:1px solid var(--line);
  border-radius:var(--r-sm);
  background:var(--surface);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:600;
  font-size:.95rem;
  color:var(--heading);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  font-weight:400;
  font-size:1.25rem;
  color:var(--muted);
  flex-shrink:0;
}
.faq-item[open] summary::after{content:'â€“'}
.faq-item .faq-body{
  padding:0 18px 16px;
  font-size:.9rem;
  line-height:1.7;
  color:var(--muted);
  border-top:1px solid var(--bg-soft);
}

/* Legal pages: body text must read as normal prose, not links */
.legal .card{
  color:var(--text);
}
.legal .card h1,
.legal .card h2,
.legal .card h3{
  color:var(--heading);
  text-decoration:none;
}
.legal .card p,
.legal .card li{
  color:var(--text);
  text-decoration:none;
}
.legal .card a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid rgba(29,78,216,.28);
  padding-bottom:1px;
  transition:color var(--t),border-color var(--t),background var(--t);
}
.legal .card a:hover{
  color:var(--accent-hover);
  border-bottom-color:rgba(30,64,175,.45);
}
.legal .card a:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
  border-radius:2px;
}