:root{
  --bg0:#040814;
  --bg1:#070d1d;
  --panel: rgba(10,18,38,.58);
  --panel2: rgba(4,8,20,.72);
  --line: rgba(148,163,184,.16);
  --text:#e7ecf5;
  --muted:#b9c4db;
  --brand:#6ee7ff;
  --brand2:#7c5cff;
  --brand3:#22c55e;
  --glow: 0 0 0 4px rgba(110,231,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.42);
  --shadow2: 0 10px 30px rgba(0,0,0,.30);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 18% -10%, rgba(110,231,255,.14), transparent 60%),
    radial-gradient(900px 680px at 100% 20%, rgba(124,92,255,.12), transparent 55%),
    radial-gradient(700px 520px at 60% 110%, rgba(34,197,94,.08), transparent 55%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 100%);
  color:var(--text);
  line-height:1.55;
  letter-spacing:.1px;
}

a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{
  width:min(1040px, calc(100% - 44px));
  margin:0 auto;
}

.hidden{display:none !important;}
.muted{color:var(--muted)}
.small{font-size:.95rem}

.site-header{
  position: sticky;
  top:0;
  z-index:10;
  background: rgba(4,8,20,.62);
  backdrop-filter: blur(9px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}

.brand img{
  height: 102px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav a{
  color: rgba(231,236,245,.72);
  font-weight:700;
  letter-spacing:.2px;
}
.nav a:hover{color: var(--text); text-decoration:none}

.lang-switch{
  display:flex;
  gap:8px;
  padding:6px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(10,18,38,.45);
  box-shadow: var(--shadow2);
}
.lang-btn{
  border:0;
  background: transparent;
  color: rgba(231,236,245,.72);
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  cursor:pointer;
}
.lang-btn.active{
  background: linear-gradient(180deg, rgba(110,231,255,.24), rgba(110,231,255,.10));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(110,231,255,.22);
}

.hero{
  padding:46px 0 18px 0;
}
.hero.compact{padding:34px 0 12px 0;}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: rgba(231,236,245,.70);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing: .18em;
  font-size:.78rem;
  margin:0 0 10px 0;
}
.kicker:before{
  content:"";
  width:10px;height:10px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--brand), rgba(110,231,255,.25));
  box-shadow: 0 0 0 6px rgba(110,231,255,.08);
}

h1{
  margin: 0 0 10px 0;
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  line-height:1.12;
  letter-spacing:-.4px;
}
h2{
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  letter-spacing:-.2px;
}
h3{
  margin: 0 0 8px 0;
  font-size: 1.05rem;
  letter-spacing:-.1px;
}
p{margin:0 0 14px 0}

.lead{font-size:1.05rem;color: rgba(231,236,245,.82); max-width: 60ch;}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight:900;
  border:1px solid rgba(110,231,255,.20);
  background: rgba(110,231,255,.08);
  color: var(--text);
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{
  text-decoration:none;
  border-color: rgba(110,231,255,.40);
  transform: translateY(-1px);
}
.btn.primary{
  background: linear-gradient(180deg, rgba(110,231,255,.96), rgba(124,92,255,.82));
  color: #041018;
  border-color: rgba(110,231,255,.55);
  box-shadow: 0 18px 60px rgba(110,231,255,.12);
}
.btn.primary:hover{
  box-shadow: 0 20px 70px rgba(110,231,255,.18);
}
.btn.ghost{
  background: rgba(10,18,38,.35);
  border-color: rgba(148,163,184,.20);
  color: var(--text);
}
.btn.small{
  padding:8px 12px;
  border-radius:12px;
  font-weight:900;
}
.btn.full{width:100%}

.trust-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(10,18,38,.35);
}
.trust-item .dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(180deg, var(--brand), rgba(124,92,255,.8));
  box-shadow: 0 0 0 6px rgba(110,231,255,.08);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.hero-card{
  background: linear-gradient(180deg, rgba(10,18,38,.60), rgba(4,8,20,.78));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.steps{
  margin: 10px 0 0 0;
  padding-left: 18px;
}
.steps li{
  margin: 10px 0;
}
.steps strong{display:block}
.steps span{color: rgba(231,236,245,.78)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin: 16px 0 44px 0;
}
.card{
  background: linear-gradient(180deg, rgba(10,18,38,.58), rgba(4,8,20,.78));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow2);
}
.card p{margin:0;color: rgba(231,236,245,.78)}

.form-card, .list-card, .content-card{
  background: linear-gradient(180deg, rgba(10,18,38,.58), rgba(4,8,20,.82));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
  margin-bottom:44px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top: 10px;
}
label{
  display:block;
  font-weight:900;
  color: var(--text);
  font-size:.95rem;
}
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(148,163,184,.20);
  background: rgba(4,8,20,.55);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(110,231,255,.55);
  box-shadow: var(--glow);
}
.full{grid-column: 1 / -1}

.turnstile-wrap{
  margin-top: 12px;
}

.ok{color:#86efac}
.err{color:#fca5a5}

.form-foot{margin-top: 8px}

.sale-hero{
  padding: 34px 0 14px 0;
}
.sale-hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.sale-title{
  padding: 8px 0;
}
.badge{
  display:inline-block;
  padding:7px 12px;
  border:1px solid rgba(110,231,255,.28);
  border-radius:999px;
  background: rgba(110,231,255,.08);
  color: var(--brand);
  font-weight:900;
  font-size:.86rem;
  margin:0 0 12px 0;
}
.domain-name{
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -1px;
  margin: 0 0 8px 0;
}
.tagline{
  font-size: 1.05rem;
  color: rgba(231,236,245,.84);
  max-width: 62ch;
}
.price-guidance{margin-top: 8px}
.sale-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top: 16px}

.mini-process{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 18px;
  color: rgba(231,236,245,.70);
}
.pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(10,18,38,.35);
  font-weight:900;
}
.sep{opacity:.65}

.sale-panel .panel-card{
  background: linear-gradient(180deg, rgba(10,18,38,.58), rgba(4,8,20,.82));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow2);
  margin-bottom: 12px;
}
.sale-panel .panel-card.subtle{
  opacity: .95;
}
.why-list{
  margin: 10px 0 0 0;
  padding-left: 18px;
}
.why-list li{margin: 10px 0; color: rgba(231,236,245,.80)}

.controls{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
.search input{
  min-width: 260px;
}
.filters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.filter-btn{
  border:1px solid var(--line);
  background: rgba(10,18,38,.35);
  color: rgba(231,236,245,.72);
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
}
.filter-btn.active{
  background: linear-gradient(180deg, rgba(110,231,255,.22), rgba(124,92,255,.12));
  color: var(--text);
  border-color: rgba(110,231,255,.28);
}

.domain-list{
  list-style:none;
  margin:0;
  padding:0;
}
.domain-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 8px;
  border-bottom:1px solid var(--line);
}
.domain-row:last-child{border-bottom:none}
.domain-row strong{font-size:1.05rem}
.list-foot{margin-top: 12px}

.prose{max-width: 76ch}
.prose h2{margin-top: 18px}

.site-footer{
  border-top:1px solid var(--line);
  background: rgba(4,8,20,.62);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  color: rgba(231,236,245,.72);
  gap: 12px;
  flex-wrap: wrap;
}
.footer-right a{color: rgba(231,236,245,.72)}
.footer-right a:hover{color: var(--text); text-decoration:none}
.dot-sep{opacity:.6; margin: 0 8px}

@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .sale-hero-inner{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .nav{display:none} /* keeps header clean on mobile */
}



@media (max-width: 920px){
  .brand img{ height:72px; }
}


/* Language dropdown (flags) — Apple-like animation */
.lang-menu{ position:relative; }
.lang-trigger{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(10,18,38,.45);
  box-shadow: var(--shadow2);
  cursor:pointer;
  color: rgba(231,236,245,.88);
  font-weight:900;
  backdrop-filter: blur(10px);
}
.lang-trigger:hover{ border-color: rgba(110,231,255,.28); }
.lang-dropdown{
  position:absolute;
  top: calc(100% + 10px);
  min-width: 240px;
  padding:10px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(10,18,38,.92), rgba(4,8,20,.94));
  box-shadow: var(--shadow);
  z-index: 50;

  opacity: 0;
  transform: translateY(-6px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.lang-menu.open .lang-dropdown{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-menu[data-align="right"] .lang-dropdown{ right:0; left:auto; }
.lang-menu[data-align="left"] .lang-dropdown{ left:0; right:auto; }

.lang-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:10px 10px;
  border-radius: 12px;
  border:1px solid transparent;
  background: transparent;
  color: rgba(231,236,245,.86);
  cursor:pointer;
  font-weight:800;
}
.lang-item:hover{
  background: rgba(110,231,255,.08);
  border-color: rgba(110,231,255,.18);
}
.lang-item.active{
  background: linear-gradient(180deg, rgba(110,231,255,.18), rgba(124,92,255,.10));
  border-color: rgba(110,231,255,.20);
  color: var(--text);
}
.lang-item .flag{ width:22px; height:16px; border-radius:4px; box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.chev{ opacity:.7; transform: translateY(-1px); }



/* Ensure language dropdown opens anchored to the trigger */
.lang-menu{ position: relative; }
.lang-menu[data-align="right"] .lang-dropdown{ right:0 !important; left:auto !important; }



/* --- Compact top bar + oversized logo (no header growth) --- */
.site-header{
  background: rgba(4,8,20,.58);
}
.header-inner{
  padding: 8px 0 !important; /* smaller bar */
  min-height: 60px;
}
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}
.brand img{
  height: 150px !important; /* ~3x vs small logo */
  margin-top: -34px;       /* pull up so bar stays compact */
}
@media (max-width: 920px){
  .header-inner{ min-height: 56px; }
  .brand img{ height: 110px !important; margin-top: -24px; }
}



/* Large logo that doesn't increase header height */
.brand img{
  height: 120px !important;
  width:auto;
  position: relative;
  top: 10px;     /* pushes logo downward visually */
}

/* Navigation alignment fix */
.header-right{
  display:flex;
  align-items:center;
  gap:24px;
  height:48px;
}

/* Language selector alignment */
.lang-menu{
  display:flex;
  align-items:center;
  height:48px;
}

/* Mobile adjustment */
@media (max-width: 920px){
  .header{ height:44px !important; }
  .brand img{ height:90px !important; top: 6px; }
}



/* === Header v9: half-height bar + baseline alignment === */
:root{
  --header-h: 44px;         /* target: ~half height */
  --logo-h: 100px;          /* visual size of full logo */
  --logo-shift: 22px;        /* fine tune: moves logo down (+) or up (-) */
}

.header{
  padding: 0 !important;
  height: var(--header-h) !important;
  min-height: var(--header-h) !important;
  display:flex;
  align-items:center;
  overflow: visible; /* allow logo to overflow without growing bar */
}

.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: var(--header-h);
}

.brand{
  position: relative;
  height: var(--header-h);
  display:flex;
  align-items:center;
}

.brand img{
  height: var(--logo-h) !important;
  width: auto;
  display:block;
  position: relative;
  top: var(--logo-shift);
}

/* Align nav + language trigger to same vertical center as header */
.header-right,
.nav,
.nav a,
.lang-menu,
.lang-trigger{
  height: var(--header-h);
  display:flex;
  align-items:center;
}

.nav a{ padding: 0 10px; }

/* Tighten overall header spacing */
.header-right{ gap: 18px; }

/* Mobile tuning */
@media (max-width: 920px){
  :root{ --header-h: 40px; --logo-h: 86px; --logo-shift: 22px; }
  .nav a{ padding: 0 8px; }
  .header-right{ gap: 12px; }
}




/* === Header v15: glass + glow + perfect alignment (desktop & mobile) === */
:root{
  --header-h: 44px;
  --logo-h: 100px;
  --logo-shift: 22px; /* baseline alignment for PRAXITOR word */
  --header-glass: rgba(4, 8, 20, .58);
  --header-line: rgba(255,255,255,.06);
}

.site-header{
  background: var(--header-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--header-line);
}

.header-inner{
  height: var(--header-h);
  padding: 0 !important;
  display:flex;
  align-items:center;
}

.brand{
  position: relative;
  height: var(--header-h);
  display:flex;
  align-items:center;
}

.brand img{
  height: var(--logo-h) !important;
  width:auto;
  display:block;
  position: relative;
  top: var(--logo-shift);
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.45));
}

/* subtle glow behind logo */
.brand::after{
  content:"";
  position:absolute;
  left:-8px;
  top: 2px;
  width: 128px;
  height: 64px;
  background: radial-gradient(circle at 30% 40%, rgba(64, 200, 255, .22), transparent 70%);
  filter: blur(14px);
  opacity:.9;
  pointer-events:none;
  z-index:-1;
}

/* Nav + language baseline alignment */
.nav, .nav a, .header-actions, .lang-menu, .lang-trigger{
  height: var(--header-h);
  display:flex;
  align-items:center;
}

.nav a{
  transition: color .2s ease, transform .2s ease;
}
.nav a:hover{
  color: rgba(231,236,245,.92);
  transform: translateY(-1px);
}

/* === Buttons micro-interactions === */
.btn, .pill{
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.btn:hover, .pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 140, 255, .18);
  filter: brightness(1.02);
}
.btn:active, .pill:active{
  transform: translateY(-1px);
}

/* === Mobile nav (drawer from right) === */
.mobile-toggle{
  display:none;
  height: var(--header-h);
  width: 44px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  color: rgba(231,236,245,.9);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}
.mobile-toggle:hover{ transform: translateY(-1px); background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.16); }
.mobile-toggle span{
  font-size: 18px;
  line-height: 1;
}

.mobile-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.56);
  backdrop-filter: blur(2px);
  opacity:0;
  pointer-events:none;
  transition: opacity .28s ease;
  z-index: 30;
}

.mobile-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 86vw);
  background: rgba(8, 14, 26, .92);
  border-left: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transform: translateX(110%);
  transition: transform .32s cubic-bezier(.2,.9,.2,1);
  z-index: 31;
  padding: 18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.mobile-drawer .drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.mobile-drawer .drawer-title{
  font-weight:800;
  letter-spacing:.2px;
  color: rgba(231,236,245,.92);
}
.mobile-close{
  height: 40px;
  width: 40px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(231,236,245,.9);
}
.mobile-links{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding-top: 6px;
}
.mobile-links a{
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(231,236,245,.88);
  font-weight: 700;
}
.mobile-links a:hover{ background: rgba(255,255,255,.06); }

.mobile-lang{
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-lang .label{
  display:block;
  color: rgba(231,236,245,.68);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing:.2px;
}
.mobile-lang .lang-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.mobile-lang button{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(231,236,245,.88);
  font-weight: 700;
}
.mobile-lang button:hover{ background: rgba(255,255,255,.06); }
.mobile-lang img{ width: 22px; height: 22px; border-radius: 6px; }

body.drawer-open{ overflow:hidden; }

body.drawer-open .mobile-overlay{
  opacity:1;
  pointer-events:auto;
}
body.drawer-open .mobile-drawer{
  transform: translateX(0%);
  animation: drawerIn .44s cubic-bezier(.2,.9,.2,1) both;
}

@media (max-width: 980px){
  .nav{ display:none; }
  .mobile-toggle{ display:flex; }
  .header-actions{ gap: 10px; }
  :root{ --logo-h: 90px; --logo-shift: 16px; }
}


/* === Drawer bounce + stagger === */
@keyframes drawerIn{
  0%{ transform: translateX(110%); }
  70%{ transform: translateX(-2%); } /* micro-bounce overshoot */
  100%{ transform: translateX(0%); }
}
@keyframes drawerOut{
  0%{ transform: translateX(0%); }
  100%{ transform: translateX(110%); }
}

/* Stagger items inside drawer */
.mobile-drawer .mobile-links a,
.mobile-drawer .mobile-lang button{
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .28s ease, transform .28s ease;
  will-change: opacity, transform;
}
body.drawer-open .mobile-drawer .mobile-links a,
body.drawer-open .mobile-drawer .mobile-lang button{
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
body.drawer-open .mobile-drawer .mobile-links a:nth-child(1){ transition-delay: 60ms; }
body.drawer-open .mobile-drawer .mobile-links a:nth-child(2){ transition-delay: 110ms; }
body.drawer-open .mobile-drawer .mobile-links a:nth-child(3){ transition-delay: 160ms; }
body.drawer-open .mobile-drawer .mobile-links a:nth-child(4){ transition-delay: 210ms; }

body.drawer-open .mobile-drawer .mobile-lang button:nth-child(1){ transition-delay: 260ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(2){ transition-delay: 300ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(3){ transition-delay: 340ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(4){ transition-delay: 380ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(5){ transition-delay: 420ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(6){ transition-delay: 460ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(7){ transition-delay: 500ms; }
body.drawer-open .mobile-drawer .mobile-lang button:nth-child(8){ transition-delay: 540ms; }


/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .mobile-drawer, .mobile-overlay, .btn, .pill, .nav a, .mobile-toggle{ transition:none !important; }
}


body:not(.drawer-open) .mobile-drawer{ animation: none; }


/* === PRAXITOR HEADER SIZE FIX === */

header{
  height: 72px !important;
  padding: 0 20px !important;
  display: flex;
  align-items: center;
}

.brand{
  display: flex;
  align-items: center;
}

.brand img{
  height: 48px !important;
  max-height: 48px !important;
  width: auto;
}

@media (max-width: 920px){
  header{
    height: 60px !important;
  }

  .brand img{
    height: 38px !important;
    max-height: 38px !important;
  }
}


/* ===== Praxitor: Logo vertical alignment (no resize) ===== */
.site-header .header-inner{ align-items: center !important; }
.site-header .brand img{
  height: 102px !important;          /* mantém tamanho original */
  width: auto !important;
  transform: translateY(-5px) !important; /* levanta a marca para alinhar com o menu */
}
