:root {
            --navy: #0A1628;
            --steel: #4A6FA5;
            --white: #FFFFFF;
            --off-white: #F4F7FB;
            --gray-light: #E8EEF6;
            --gray-text: #6B7A99;
            --text-body: #2D3B55;
            --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
            --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.16);
            --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-body);
            background: var(--white);
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Syne', sans-serif;
            color: var(--navy);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        nav:not(.nav) {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-light);
            transition: var(--transition);
        }

        nav:not(.nav).scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.35rem;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .logo span {
            color: var(--steel);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
        }

        .nav-links a {
            padding: 8px 14px;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links a:hover,
        .nav-links a.active {
            background: var(--off-white);
            color: var(--navy);
        }

        .nav-cta {
            background: var(--navy);
            color: white;
            padding: 10px 22px;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--steel);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
        }

        section {
            padding: 96px 0;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--steel);
            background: rgba(74, 111, 165, 0.1);
            border: 1px solid rgba(74, 111, 165, 0.2);
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(1.9rem, 4vw, 2.9rem);
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1.05rem;
            line-height: 1.75;
            color: var(--gray-text);
            max-width: 650px;
        }

        .page-hero {
            padding-top: 120px;
            padding-bottom: 56px;
            background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 55%, #ffffff 100%);
            border-bottom: 1px solid var(--gray-light);
            position: relative;
            overflow: hidden;
        }

        .contact-hero-mark{
            position:absolute;
            right:-5%;
            top:50%;
            transform:translateY(-50%);
            width:min(520px,70vw);
            opacity:.10;
            pointer-events:none;
            filter:grayscale(1) saturate(.85) blur(.2px);
        }
        .contact-hero-mark img{
            width:100%;
            height:auto;
            display:block;
        }

        #contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 56px;
            margin-top: 24px;
        }

        .map-card{
            margin-top:28px;
            border-radius:16px;
            overflow:hidden;
            border:1px solid var(--gray-light);
            box-shadow:var(--shadow-md);
            background:#fff;
        }
        .map-card iframe{
            width:100%;
            height:min(420px,60vh);
            border:0;
            display:block;
        }

        .contact-info p {
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--gray-text);
            margin: 12px 0 24px;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .ci-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--off-white);
            border: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .ci-icon svg{
            width:20px;
            height:20px;
            display:block;
            stroke: var(--steel);
        }

        .ci-content strong {
            display: block;
            font-size: 0.85rem;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .ci-content span {
            font-size: 0.9rem;
            color: var(--gray-text);
        }

        .contact-form {
            background: var(--off-white);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--gray-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 16px;
        }

        .form-group label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--navy);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border-radius: 10px;
            border: 1.5px solid var(--gray-light);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            background: white;
            color: var(--text-body);
            transition: var(--transition);
            outline: none;
            width: 100%;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--steel);
            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background: var(--navy);
            color: white;
            border: none;
            border-radius: 12px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-submit:hover {
            background: var(--steel);
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(10, 22, 40, 0.25);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 24px;
        }

        .form-success.show {
            display: block;
        }

        /* Hidden on contact page (printed/screenshot QR used instead) */
        .hide {
            display: none !important;
        }

        /* QR connect hub */
        .qr-connect {
            margin-top: 32px;
            padding: 24px;
            border-radius: 20px;
            border: 1px solid var(--gray-light);
            background: linear-gradient(165deg, #ffffff 0%, var(--off-white) 100%);
            box-shadow: var(--shadow-md);
        }

        .qr-connect-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--steel);
            background: rgba(74, 111, 165, 0.1);
            border: 1px solid rgba(74, 111, 165, 0.2);
            padding: 4px 12px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .qr-connect-heading {
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: var(--navy);
        }

        .qr-connect-desc {
            font-size: 0.88rem;
            line-height: 1.6;
            color: var(--gray-text);
            margin-bottom: 20px;
        }

        .qr-card {
            background: #fff;
            border: 1px solid var(--gray-light);
            border-radius: 16px;
            text-align: center;
        }

        .qr-card--single {
            padding: 22px 18px 18px;
            box-shadow: 0 10px 28px rgba(10, 22, 40, 0.08);
            text-align: center;
        }

        .qr-card-logo-top {
            margin-bottom: 16px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--gray-light);
        }

        .qr-card-logo-top img {
            width: 72px;
            height: 72px;
            object-fit: contain;
            border-radius: 16px;
            background: var(--off-white);
            border: 1px solid var(--gray-light);
            padding: 8px;
            margin: 0 auto 10px;
            display: block;
        }

        .qr-card-logo-top h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin: 4px 0 0;
        }

        .qr-card-hint {
            margin-top: 12px;
            font-size: 0.76rem;
            line-height: 1.5;
            color: var(--gray-text);
        }

        .qr-card-eyebrow {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--steel);
            margin-bottom: 2px;
        }

        .qr-canvas-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border-radius: 14px;
            background: #fff;
            border: 1px solid var(--gray-light);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
        }

        .qr-canvas-wrap img {
            display: block;
            border-radius: 6px;
        }

        .qr-card-link {
            display: inline-block;
            margin-top: 12px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--steel);
            text-decoration: none;
        }

        .qr-card-link:hover {
            color: var(--navy);
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }


        @media (max-width: 768px) {
            section {
                padding: 64px 0;
            }

            .nav-links {
                display: none;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

/* ---- 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;
  padding-inline:16px;
}
.site-header.is-scrolled{box-shadow:var(--shadow-sm)}
.header-inner{
  min-height:var(--header-h);
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:8px 12px;
  padding-block:0;
  box-sizing:border-box;
  overflow:visible;
  min-width:0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:6px;
  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-shrink:0;
  line-height:1;
  text-decoration:none;
}
.brand-lockup{
  display:inline-flex;
  align-items:baseline;
  flex-wrap:nowrap;
  line-height:1;
}
.brand-core{
  color:var(--steel);
  font-weight:800;
}
.brand-accent{
  color:var(--steel);
  font-weight:800;
}
.brand-suffix{
  margin-left:.28em;
  color:var(--steel);
  font-weight:700;
  font-size:.92em;
  letter-spacing:0;
}
.brand-mark{
  width:56px;height:56px;
  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(--steel)}
.site-header a.brand:visited .brand-accent{color:var(--steel)}
.site-header a.brand:visited .brand-suffix{color:var(--steel)}

/* 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:center;
  flex-wrap:nowrap;
  gap:1px;
  padding:2px;
  border:1px solid var(--line);
  background:var(--bg-soft);
  border-radius:var(--radius-pill);
  min-width:0;
  max-width:100%;
  justify-self:center;
  width:max-content;
  align-self:center;
  min-height:40px;
  box-sizing:border-box;
}
.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:0 11px;
  min-height:36px;
  border-radius:var(--radius-pill);
  font-size:.83rem;
  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;
  box-sizing:border-box;
}
.nav a:visited{color:var(--navy-2)}
.nav a:hover{background:var(--surface);color:var(--heading)}
.nav a.is-active{
  background:var(--surface);
  color:var(--accent);
  box-shadow:0 0 0 1px var(--line);
}
.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{font-size:10px;opacity:.55;transition:transform var(--t)}
.nav-item.is-open .chev,
.nav-item:focus-within .chev{transform:rotate(180deg)}
/* 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:20px;
  display:none;
  z-index:1099;
}
.nav-item:hover::after,
.nav-item.is-open::after,
.nav-item:focus-within::after{display:block}
.menu{
  position:absolute;
  left:0;
  top:calc(100% + 2px);
  margin-top:4px;
  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:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:0 16px 48px rgba(15,23,42,.12),0 0 0 1px rgba(15,23,42,.04);
  padding:10px;
  display:none;
  z-index:1101;
  -webkit-overflow-scrolling:touch;
}
/* 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;
}
@keyframes menuIn{from{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}
.menu a{
  width:100%;
  justify-content:flex-start;
  padding:11px 12px;
  border-radius:var(--r-sm);
  font-weight:500;
  text-decoration:none;
  color:var(--heading);
}
.menu a:visited{color:var(--heading)}
.menu a:hover{background:var(--bg-soft);transform:none}
.menu .nav-icon{flex-shrink:0;color:var(--steel)}
.menu a:hover .nav-icon{color:var(--accent)}
.menu .kicker{
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  padding:8px 10px 4px;
}
.menu-grid{display:grid;grid-template-columns:1fr;gap:2px}

.header-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
@media (max-width:1180px){
  .nav a{padding:0 8px;min-height:34px;font-size:.78rem}
  .btn{padding:8px 10px;font-size:.8rem}
}
.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-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:80px;
  background:linear-gradient(180deg,#123056 0%,#0c2748 42%,#081a30 100%);
  color:rgba(255,255,255,.78);
  border-top:1px solid rgba(147,197,253,.15);
}
.footer-inner{padding:68px 0 0}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) repeat(3,minmax(0,1fr));
  gap:42px;
  padding-bottom:44px;
  align-items:start;
}
.footer-grid>*{min-width: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 p{margin-top:14px;max-width:340px;line-height:1.75;font-size:.9rem}
.footer-title{
  color:#fff;
  font-family:'Sora',system-ui,sans-serif;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.footer-links{list-style:none;display:grid;gap:10px;margin:0;padding:0}
.footer-links a{
  font-size:.88rem;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:color var(--t),transform var(--t);
}
.footer-links a:visited{color:rgba(255,255,255,.82)}
.footer-links a:hover{color:#fff;transform:translateX(2px)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-legal{display:flex;gap:18px;flex-wrap:wrap}
.footer-legal a{
  color:#bfdbfe;
  text-decoration:none;
  font-weight:500;
}
.footer-legal a:visited{color:#bfdbfe}
.footer-legal a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}
.footer-contact-plain{
  font-size:.88rem;
  color:rgba(255,255,255,.72);
  line-height:1.5;
  margin:0;
  padding:0;
  max-width:260px;
}
.footer-links li>.footer-contact-plain{padding-top:2px}
.socials{display:flex;gap:10px;margin-top:16px}
.social{
  width:40px;height:40px;
  border-radius:var(--r-sm);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  display:grid;place-items:center;
  transition:transform var(--t),background var(--t),border-color var(--t);
  color:#fff;
  text-decoration:none;
}
.social svg{width:22px;height:22px;display:block}
.social--instagram svg{width:24px;height:24px}
.social--facebook svg{width:22px;height:22px}
.social--youtube svg{width:24px;height:24px}
.social:visited{color:#fff}
.social:hover{transform:translateY(-2px);background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.2)}

section{padding:84px 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){
  .nav{display:none}
  .burger{display:flex}
  .footer-grid{grid-template-columns:1fr 1fr;gap:26px}
  section{padding:64px 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){
  .footer-grid{grid-template-columns:1fr}
  .container{padding:0 16px}
  section{padding:48px 0}
  .site-footer{margin-top:48px}
  .footer-inner{padding-top:44px}
  .footer-bottom{flex-direction:column;align-items:flex-start;text-align:left}
  .footer-legal{flex-direction:column;gap:10px}
  .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:6px}
  .header-actions .btn{padding:8px 10px;font-size:.78rem;gap:6px}
  /* Mobile navbar: hide Free consultation button */
  .header-actions .btn-primary{display:none}
  .header-actions{justify-self:end}
  /* Premium mobile alignment */
  .header-actions{gap:10px}
  .btn-call{padding:8px 10px;min-width:44px}
  .btn-call span{display:none}
  .btn-call .nav-icon{margin:0}
}

/* 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:#94a3b8;
}

.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;
}

/* Contact: QR block hidden (printed/screenshot QR → connect.html) */
body[data-page="contact"] .hide,
body[data-page="contact"] aside.qr-connect,
body[data-page="contact"] .qr-connect.hide {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}