:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;

  --brand:#cfd600;      /* parrot yellow */
  --brand-2:#aab400;
  --ink:#0b1220;

  --shadow:0 16px 45px rgba(17,24,39,.12);
  --shadow-sm:0 8px 24px rgba(17,24,39,.10);
  --radius:14px;
}

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

.container{
  width:min(1200px,calc(100% - 48px));
  margin:0 auto;
}

.container-hero{
  width:86%;
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(229,231,235,.7);
}
.header-inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand-logo{
  height:44px;
  width:auto;
}
.header-actions{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:38px;
  padding:0 15px;
  border-radius:12px;
  font-weight:600;
  font-size:14px;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}

.btn-call{
  background:#08080a;
  color:#fff;
  box-shadow:0 10px 24px rgba(207,214,0,.35);
  font-size:14px;
}
.btn-call:hover{filter:brightness(.97)}

.btn-whatsapp{
  background:#16a34a;
  color:#fff;
  box-shadow:0 10px 24px rgba(22,163,74,.22);
}
.btn-whatsapp:hover{filter:brightness(.98)}
.btn-primary{
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#111827;
  box-shadow:0 10px 24px rgba(207,214,0,.35);
}
.btn-primary:hover{filter:brightness(.97)}
.btn-outline{
  border-color:rgba(17,24,39,.18);
  background:#fff;
}
.btn-outline:hover{background:#f9fafb}
.btn-ghost{
  background:transparent;
  border-color:rgba(17,24,39,.12);
}
.btn-dark{
  background:#fff;
  color:#000;
}
.btn-outline-dark{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:#fff;
}
.btn-block{width:100%}

.btn.is-loading{
  pointer-events:none;
  opacity:.9;
}

.btn .btn-spinner{
  width:16px;
  height:16px;
  border-radius:999px;
  border:2px solid rgba(17,24,39,.25);
  border-top-color:rgba(17,24,39,.75);
  animation:btnspin .75s linear infinite;
}

@keyframes btnspin{to{transform:rotate(360deg)}}

.hero{
  position:relative;
  padding:42px 0 28px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, #f3f4f6, #ffffff 55%),
    radial-gradient(900px 500px at 12% 8%, rgba(207,214,0,.14), transparent 60%),
    radial-gradient(700px 520px at 95% 20%, rgba(17,24,39,.05), transparent 55%);
  pointer-events:none;
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap:34px;
  align-items:center;
}
.hero-copy #wait{
	font-size:14px;
	margin-top:12px;
	margin-bottom:0;
	color:#111827;
}

.pill{
  display:inline-flex;
  align-items:center;
  height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(207,214,0,.20);
  border:1px solid rgba(207,214,0,.35);
  color:#111827;
  font-weight:700;
  font-size:12px;
}

.hero-copy h1{
  margin:12px 0 10px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:16px;
  max-width:54ch;
}

.trust-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:16px;
  margin-bottom:6px;
}
.trust-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.25);
  color:#166534;
  font-weight:700;
  font-size:11px;
  white-space:nowrap;
}
.trust-ico{
  width:18px;
  height:18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(22,163,74,.12);
  color:#15803d;
  font-size:12px;
  line-height:1;
}

.hero-cta{display:flex;gap:12px;align-items:center;margin-top:16px;flex-wrap:wrap}

.hero-meta{
  display:flex;
  gap:18px;
  margin-top:18px;
  flex-wrap:wrap;
}
.meta-item{
  border:1px solid rgba(229,231,235,.9);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  box-shadow:0 8px 20px rgba(17,24,39,.06);
}
.meta-title{font-weight:800;font-size:13px}
.meta-sub{color:var(--muted);font-size:12px;margin-top:2px}

.hero-media-card{
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-image{
  width:100%;
  height:400px;
  
  background:#fff;
}

.hero-form-wrap{
  position:relative;
  display:flex;
  justify-content:center;
  margin-top:65px;
  background-color: #fff !important;
}
.form-card{
  width:min(540px,100%);
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(17,24,39,.16);
  overflow:hidden;
  position:relative;
}
.form-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background:linear-gradient(90deg, var(--brand), rgba(207,214,0,.35));
}
.form-head{
  padding:18px 20px;
  border-bottom:1px solid rgba(229,231,235,.9);
  background:
    radial-gradient(520px 140px at 12% 0%, rgba(207,214,0,.22), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(243,244,246,1), rgba(255,255,255,1) 70%);
}
.form-kicker{
  color:#111827;
  font-weight:800;
  font-size:21px;
  letter-spacing:.02em;
  text-align: center;
}
.form-title{
  margin-top:4px;
  font-weight:800;
  font-size:16px;
  color:#111827;
}

.lead-form{padding:18px 20px 20px}
.form-row{display:grid;grid-template-columns:1fr;gap:14px}
.field{display:block;margin:12px 0}
.label{display:block;font-size:12px;font-weight:700;color:#111827;margin-bottom:6px}
.field-error{
  margin-top:6px;
  font-size:12px;
  font-weight:500;
  color:#dc2626;
  min-height:16px;
}
.input{
  width:100%;
  height:46px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.14);
  background:#f9fafb;
  outline:none;
  font-size:14px;
}
.input:focus{border-color:rgba(170,180,0,.9);box-shadow:0 0 0 4px rgba(207,214,0,.22)}

.select-wrap{
  position:relative;
  display:block;
}
.input-select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:44px;
  background:
    radial-gradient(520px 120px at 15% 0%, rgba(207,214,0,.18), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, #ffffff, #f6f7fb);
  border-color:rgba(17,24,39,.16);
}
.select-wrap::after{
  content:"";
  position:absolute;
  right:14px;
  top:50%;
  width:10px;
  height:10px;
  border-right:2px solid rgba(17,24,39,.55);
  border-bottom:2px solid rgba(17,24,39,.55);
  transform:translateY(-60%) rotate(45deg);
  pointer-events:none;
}
.input-select:focus{
  box-shadow:0 0 0 5px rgba(207,214,0,.26);
}

.radio-fieldset{
  border:0;
  padding:0;
  margin:12px 0;
}
.radio-fieldset .label{
  margin-bottom:10px;
}
.radio-option{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.12);
  background:#fff;
  margin:8px 0;
  font-weight:600;
  color:#111827;
}
.radio-option input{
  width:16px;
  height:16px;
  accent-color:var(--brand-2);
}

.chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(17,24,39,.14);
  font-weight:700;
  font-size:13px;
  cursor:pointer;
}
.chip.is-active{background:rgba(207,214,0,.22);border-color:rgba(207,214,0,.55)}

.form-foot{margin-top:12px;color:var(--muted);font-size:12px}

.lead-form .btn-block{
  height:50px;
  border-radius:14px;
  font-size:16px;
  font-weight:800;
}

.section{padding:54px 0}
.section-muted{background:linear-gradient(180deg,#fff,#fbfcff)}
.section-head{text-align:center;margin-bottom:26px}
.section-head h2{margin:0;font-size:28px;letter-spacing:-.015em}
.section-head p{margin:8px 0 0;color:var(--muted)}

.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}

.how-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.how-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:18px;
  padding:22px 18px 20px;
  box-shadow:0 18px 50px rgba(17,24,39,.10);
  text-align:center;
  overflow:hidden;
}
.how-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(420px 120px at 50% 0%, rgba(207,214,0,.16), rgba(255,255,255,0) 60%);
  pointer-events:none;
}
.how-card:hover{transform:translateY(-2px);box-shadow:0 22px 60px rgba(17,24,39,.14)}
.how-card{transition:transform .18s ease, box-shadow .18s ease}

.how-step{
  position:absolute;
  top:14px;
  right:14px;
  width:26px;
  height:26px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#111827;
  font-weight:900;
  font-size:12px;
  box-shadow:0 10px 22px rgba(207,214,0,.25);
  z-index:2;
}

.how-icon{
  width:56px;
  height:56px;
  border-radius:999px;
  margin:6px auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(207,214,0,.28);
  border:1px solid rgba(207,214,0,.55);
  color:#111827;
  z-index:2;
  position:relative;
}
.how-card h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
  font-weight:900;
  color:#111827;
  position:relative;
  z-index:2;
}
.how-card p{
  margin:10px auto 0;
  max-width:30ch;
  color:#6b7280;
  font-size:14px;
  position:relative;
  z-index:2;
}

.why-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.why-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:18px;
  padding:20px 16px 18px;
  text-align:center;
  box-shadow:0 14px 40px rgba(17,24,39,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}
.why-card:hover{transform:translateY(-2px);box-shadow:0 18px 54px rgba(17,24,39,.12)}
.why-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  margin:4px auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(207,214,0,.28);
  border:1px solid rgba(207,214,0,.55);
  color:#111827;
}
.why-card h3{
  margin:0;
  font-size:15px;
  font-weight:900;
  letter-spacing:-.01em;
  color:#111827;
}
.why-card p{
  margin:10px auto 0;
  max-width:34ch;
  color:#6b7280;
  font-size:13px;
  line-height:1.45;
}

.services-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.service-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:18px;
  padding:20px 16px 16px;
  text-align:center;
  box-shadow:0 14px 40px rgba(17,24,39,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{transform:translateY(-2px);box-shadow:0 18px 54px rgba(17,24,39,.12)}
.service-ico{
  width:52px;
  height:52px;
  border-radius:16px;
  margin:4px auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(207,214,0,.28);
  border:1px solid rgba(207,214,0,.55);
  color:#111827;
}
.service-card h3{
  margin:0;
  font-size:15px;
  font-weight:900;
  letter-spacing:-.01em;
  color:#111827;
}
.service-card p{
  margin:10px auto 14px;
  max-width:34ch;
  color:#6b7280;
  font-size:13px;
  line-height:1.45;
}
.service-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  min-width:168px;
  padding:0 14px;
  border-radius:10px;
  border:1px solid rgba(17,24,39,.12);
  background:#f3f4f6;
  color:#111827;
  font-weight:800;
  font-size:13px;
}
.service-cta:hover{background:#eceff3}

.testi-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.testi-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:18px;
  padding:22px 18px 20px;
  text-align:center;
  box-shadow:0 16px 46px rgba(17,24,39,.08);
  transition:transform .18s ease, box-shadow .18s ease;
}
.testi-card:hover{transform:translateY(-2px);box-shadow:0 20px 58px rgba(17,24,39,.12)}
.testi-card .stars{
  color:#f59e0b;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:12px;
}
.testi-card .quote{
  margin:0 auto;
  max-width:40ch;
  font-style:italic;
  color:#6b7280;
  font-size:14px;
  line-height:1.6;
}
.testi-card .who{
  margin-top:14px;
  font-weight:900;
  color:#111827;
  font-size:14px;
}
.testi-card .city{
  margin-top:2px;
  color:#9ca3af;
  font-size:12px;
  font-weight:700;
}

.card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:14px;
  padding:16px;
  box-shadow:var(--shadow-sm);
}
.icon-card .icon{
  width:38px;height:38px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(207,214,0,.22);
  border:1px solid rgba(207,214,0,.5);
  font-weight:900;
}
.card h3{margin:10px 0 6px;font-size:16px}
.card p{margin:0;color:var(--muted);font-size:14px}

.feature{padding:16px}
.feature-icon{
  width:38px;height:38px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(17,24,39,.06);
  border:1px solid rgba(17,24,39,.12);
  font-weight:900;
}
.feature-title{margin-top:10px;font-weight:800}
.feature-text{margin-top:6px;color:var(--muted);font-size:14px}

.service-icon{
  width:44px;height:44px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(207,214,0,.20);
  border:1px solid rgba(207,214,0,.5);
  font-weight:900;
  letter-spacing:.02em;
}
.service-title{margin-top:10px;font-weight:900}
.service-text{margin-top:6px;color:var(--muted);font-size:14px}

.testimonial .stars{color:#f59e0b;font-weight:900;letter-spacing:2px}
.testimonial .quote{margin-top:10px;color:#111827}
.testimonial .who{margin-top:10px;font-weight:800;color:#111827;font-size:13px}

.cta-band{
  background:linear-gradient(90deg, rgba(207,214,0,.95), rgba(17,24,39,.92));
  padding:34px 0;
}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.cta-copy h2{margin:0;color:#fff;font-size:26px;letter-spacing:-.015em}
.cta-copy p{margin:8px 0 0;color:rgba(255,255,255,.82)}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap}

.cta-white{
  background:#fff;
  padding:30px 0 44px;
}
.cta-white-inner{
  text-align:center;
}
.cta-white-inner h3{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:#111827;
  letter-spacing:-.01em;
}
.cta-white-inner p{
  margin:10px 0 0;
  color:#6b7280;
  font-size:13px;
  font-weight:600;
}
.cta-white-actions{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.overlay{
  position:fixed;
  inset:0;
  background:#ffffff;
  z-index:200;
  display:none;
}
.overlay.is-open{
  display:block;
}
.overlay:target{
  display:block;
}
body.overlay-open{overflow:hidden}
.modal-open{overflow:hidden}
.overlay-top{
  height:58px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:0 18px;
  border-bottom:1px solid rgba(229,231,235,.9);
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
}
.overlay-back{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:40px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(17,24,39,.12);
  background:#fff;
  font-weight:800;
  cursor:pointer;
}
.overlay-back-ico{font-size:16px;line-height:1}
.overlay-body{
  height:calc(100vh - 58px);
  overflow:auto;
}
.overlay-content{
  width:min(920px,calc(100% - 48px));
  margin:0 auto;
  padding:34px 0 54px;
}

.modal{
  position:fixed;
  inset:0;
  z-index:300;
  display:none;
}

.modal.is-open{
  display:block;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(17,24,39,.55);
  backdrop-filter:blur(3px);
}

.modal-card{
  position:relative;
  width:min(520px,calc(100% - 32px));
  margin:0 auto;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(229,231,235,.9);
  box-shadow:0 28px 90px rgba(17,24,39,.25);
  padding:22px 20px 20px;
  text-align:center;
}

.modal-gif{
  width:120px;
  height:auto;
  margin:0 auto 10px;
}

.modal-title{
  font-weight:900;
  font-size:18px;
  color:#111827;
}

.modal-text{
  margin-top:8px;
  margin-bottom:14px;
  color:#4b5563;
  font-size:14px;
  line-height:1.6;
}

.policy-head h1{
  margin:0;
  font-size:34px;
  letter-spacing:-.02em;
  color:#111827;
}
.policy-updated{
  margin-top:10px;
  color:#6b7280;
  font-weight:700;
  font-size:13px;
}
.policy-lead{
  margin:14px 0 0;
  color:#4b5563;
  line-height:1.7;
}

.policy-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
.policy-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:18px;
  padding:18px 18px 16px;
  box-shadow:0 14px 44px rgba(17,24,39,.06);
}
.policy-card-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.policy-ico{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(207,214,0,.28);
  border:1px solid rgba(207,214,0,.55);
  color:#111827;
  font-size:18px;
}
.policy-card h2{
  margin:0;
  font-size:18px;
  font-weight:900;
  color:#111827;
}
.policy-card h3{
  margin:14px 0 8px;
  font-size:13px;
  letter-spacing:.02em;
  text-transform:none;
  color:#111827;
}
.policy-card p{
  margin:10px 0 0;
  color:#4b5563;
  line-height:1.7;
  font-size:14px;
}
.policy-card ul{
  margin:8px 0 0;
  padding-left:18px;
  color:#4b5563;
}
.policy-card li{
  margin:6px 0;
  line-height:1.6;
}
.policy-contact div{margin:8px 0;color:#374151}

.faq{width:min(820px,100%);margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{border:1px solid rgba(229,231,235,.9);border-radius:14px;overflow:hidden;background:#fff}
.faq-q{
  width:100%;
  text-align:left;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:#fff;
  border:0;
  font-weight:800;
  cursor:pointer;
}
.faq-icon{width:22px;height:22px;display:flex;align-items:center;justify-content:center;border-radius:8px;border:1px solid rgba(17,24,39,.14)}
.faq-a{padding:0 16px 14px;color:var(--muted);font-size:14px}

.site-footer{background:#0b1220;color:#e5e7eb;padding:34px 0 18px;margin-top:20px}
.footer-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr 1fr;gap:18px}
.footer-logo{height:36px;width:auto;background:#fff;border-radius:8px;padding:4px}
.footer-title{font-weight:900;margin-bottom:10px}
.site-footer a{display:block;color:#cbd5e1;margin:7px 0;font-size:14px}
.site-footer a:hover{color:#fff}
.muted{color:#94a3b8}
.footer-badges{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.badge{display:inline-flex;height:28px;align-items:center;padding:0 10px;border-radius:999px;border:1px solid rgba(255,255,255,.18);color:#e5e7eb;font-weight:800;font-size:12px}
.footer-bottom{text-align:center !important;border-top:1px solid rgba(255,255,255,.10);margin-top:18px;padding-top:14px;font-size:12px;}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-image{height:320px}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .how-cards{grid-template-columns:repeat(2,1fr)}
  .why-cards{grid-template-columns:repeat(2,1fr)}
  .services-cards{grid-template-columns:repeat(2,1fr)}
  .testi-cards{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 560px){
   	
  .container{width:calc(100% - 32px)}
  .container-hero{width:calc(100% - 32px)}
  .hero-copy h1{font-size:30px}
  .lead{font-size:14px}
  .form-row{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .how-cards{grid-template-columns:1fr}
  .why-cards{grid-template-columns:1fr}
  .services-cards{grid-template-columns:1fr}
  .testi-cards{grid-template-columns:1fr}
  .header-inner{height:auto;padding:12px 0;flex-wrap:nowrap;align-items:center}
  
  .brand{flex:0 0 auto}
  .brand-logo{height:32px;width:auto;max-width:38vw;border-radius:10px;}
  .header-actions{display:flex;gap:6px;align-items:center;flex-wrap:nowrap;margin-left:auto;max-width:60vw;min-width:0}

  .header-actions .btn{
    height:28px;
    padding:8px;
    border-radius:4px;
    font-size:12px;
    gap:5px;
    flex:0 1 auto;
    min-width:0;
  }

  .header-actions .btn img{width:18px;height:auto}
}
