:root{
  --brand-primary:#047857;
  --brand-secondary:#065f46;
  --brand-light:#d1fae5;
  --accent:#f59e0b;

  --bg-body:#f8fafc;
  --bg-card:#ffffff;
  --text-main:#0f172a;
  --text-muted:#64748b;
  --line:rgba(15,23,42,.08);

  --shadow-sm:0 4px 6px -1px rgba(0,0,0,.05);
  --shadow-md:0 10px 15px -3px rgba(0,0,0,.06);
  --shadow-lg:0 20px 25px -5px rgba(0,0,0,.08);

  --radius-md:12px;
  --radius-lg:16px;
  --radius-xl:24px;

  --max-width:1200px;
  --topbar-h:40px;
}

*{
  box-sizing:border-box;
  -webkit-font-smoothing:antialiased;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Plus Jakarta Sans",sans-serif;
  background:var(--bg-body);
  color:var(--text-main);
  line-height:1.6;
  padding-top:var(--topbar-h);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
}

.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

:focus-visible{
  outline:3px solid rgba(4,120,87,.45);
  outline-offset:3px;
  border-radius:10px;
}

.top-bar{
  position:fixed;
  inset:0 0 auto 0;
  min-height:var(--topbar-h);
  background:#0f172a;
  color:#fff;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:6px 12px;
  text-align:center;
}

.top-bar span{
  background:var(--accent);
  color:#000;
  padding:2px 8px;
  border-radius:6px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
  flex:0 0 auto;
}

.top-bar p{
  margin:0;
  font-size:12px;
  font-weight:800;
}

.header{
  position:sticky;
  top:var(--topbar-h);
  z-index:999;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.logo{
  flex:0 0 auto;
}

.logo img{
  height:42px;
  width:auto;
  max-width:260px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}

.nav-links a{
  text-decoration:none;
  color:var(--text-muted);
  font-weight:800;
  font-size:14px;
  transition:.2s;
}

.nav-links a:hover{
  color:var(--brand-primary);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.nav-mobile{
  display:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:12px 20px;
  border-radius:var(--radius-md);
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
  white-space:nowrap;
}

.btn-link{
  text-decoration:none;
  color:var(--text-muted);
  font-weight:900;
  font-size:14px;
  padding:10px 8px;
}

.btn-link:hover{
  color:var(--brand-primary);
}

.btn-outline{
  background:#fff;
  color:var(--brand-primary);
  border-color:rgba(4,120,87,.2);
}

.btn-outline:hover{
  border-color:var(--brand-primary);
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--brand-primary);
  color:#fff;
  box-shadow:var(--shadow-md);
}

.btn-primary:hover{
  background:var(--brand-secondary);
  transform:translateY(-1px);
}

.btn-ghost{
  background:#fff;
  color:var(--text-main);
  border-color:var(--line);
}

.btn-ghost:hover{
  border-color:var(--brand-primary);
  color:var(--brand-primary);
}

.btn-lg{
  min-height:54px;
  padding:16px 26px;
  font-size:15px;
}

.hero{
  padding:76px 0 58px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:56px;
  align-items:center;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  background:var(--brand-light);
  color:var(--brand-primary);
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:22px;
}

.free-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(4,120,87,.16);
  color:var(--brand-primary);
  font-weight:900;
}

.hero h1{
  margin:0 0 18px;
  font-size:52px;
  line-height:1.08;
  letter-spacing:-1.4px;
  font-weight:900;
}

.hero p{
  margin:0 0 26px;
  max-width:620px;
  color:var(--text-muted);
  font-size:18px;
  font-weight:600;
}

.hero-bullets{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.hero-bullets li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:800;
}

.hero-bullets svg{
  width:18px;
  height:18px;
  color:var(--brand-primary);
  flex:0 0 auto;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.trial-note{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color:var(--text-muted);
  font-size:13px;
  font-weight:800;
}

.trial-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  border-radius:14px;
  padding:8px 12px;
  color:var(--text-main);
}

.trial-badge strong{
  color:var(--brand-primary);
}

.hero-footnote{
  margin-top:14px !important;
  font-size:13px !important;
  font-weight:700 !important;
}

.hero-preview{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:14px;
  box-shadow:var(--shadow-lg);
}

.preview-shot{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.1);
  box-shadow:0 14px 38px rgba(2,6,23,.10);
}

.social-proof{
  padding:24px 0;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.social-proof__head{
  text-align:center;
  margin-bottom:12px;
}

.social-proof__head span{
  font-size:12px;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:900;
}

.logos-grid{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px 34px;
  opacity:.7;
}

.logos-grid > div{
  font-weight:900;
  font-size:18px;
}

.section{
  padding:88px 0;
}

.section-white{
  background:#fff;
}

.section-head{
  max-width:780px;
  margin:0 auto 56px;
  text-align:center;
}

.kicker{
  display:block;
  margin-bottom:10px;
  color:var(--brand-primary);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
}

.section-head h2{
  margin:0 0 14px;
  font-size:38px;
  line-height:1.12;
  letter-spacing:-1px;
  font-weight:900;
}

.section-head p{
  margin:0;
  color:var(--text-muted);
  font-size:18px;
  font-weight:600;
}

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

.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:24px;
  transition:.25s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  border-color:rgba(4,120,87,.24);
  box-shadow:var(--shadow-md);
}

.feature-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:var(--bg-body);
  font-size:24px;
  margin-bottom:14px;
}

.feature-card h3{
  margin:0 0 8px;
  font-size:17px;
  font-weight:900;
}

.feature-card p{
  margin:0;
  font-size:14px;
  color:var(--text-muted);
  font-weight:600;
}

.highlight-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:36px;
}

.highlight-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:30px;
  box-shadow:var(--shadow-sm);
}

.highlight-panel h3{
  margin:0 0 8px;
  font-size:24px;
  font-weight:900;
}

.highlight-panel p{
  margin:0 0 18px;
  color:var(--text-muted);
  font-weight:600;
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-weight:800;
}

.checklist svg{
  width:20px;
  height:20px;
  color:var(--brand-primary);
  flex:0 0 auto;
}

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

.step-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
}

.step-number{
  width:42px;
  height:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:var(--brand-light);
  color:var(--brand-primary);
  font-size:18px;
  font-weight:900;
  margin-bottom:16px;
}

.step-card h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:900;
}

.step-card p{
  margin:0;
  color:var(--text-muted);
  font-weight:600;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:start;
}

.price-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  padding:34px 28px;
  text-align:center;
}

.price-card.popular{
  border:2px solid var(--brand-primary);
  box-shadow:var(--shadow-lg);
}

.popular-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--brand-primary);
  color:#fff;
  padding:4px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.price-card h3{
  margin:0;
  font-size:28px;
  font-weight:900;
}

.price-tag{
  margin:18px 0 8px;
  font-size:42px;
  line-height:1;
  font-weight:900;
  color:var(--text-main);
}

.price-tag span{
  font-size:16px;
  color:var(--text-muted);
  font-weight:800;
}

.price-tag--custom{
  font-size:30px;
}

.price-sub{
  margin:0 0 20px;
  color:var(--text-muted);
  font-size:14px;
  font-weight:700;
}

.price-features{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:12px;
  text-align:left;
}

.price-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--text-main);
  font-size:14px;
  font-weight:800;
}

.price-features svg{
  width:18px;
  height:18px;
  color:var(--brand-primary);
  flex:0 0 auto;
}

.price-btn{
  width:100%;
}

.trial-strip{
  margin:20px auto 0;
  width:fit-content;
  max-width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  padding:10px 14px;
  border-radius:16px;
  background:rgba(4,120,87,.07);
  border:1px solid rgba(4,120,87,.18);
  font-weight:900;
}

.trial-strip strong{
  color:var(--brand-primary);
}

.trial-strip__text{
  display:flex;
  flex-direction:column;
  text-align:left;
}

.trial-strip__text small{
  color:var(--text-muted);
  font-size:12px;
  font-weight:700;
  line-height:1.25;
}

.definitions-note{
  margin:16px 0 0;
  color:var(--text-muted);
  font-size:12px;
  font-weight:800;
}

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

.faq-wrapper{
  max-width:820px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:18px 20px;
  transition:.2s ease;
}

details[open]{
  border-color:rgba(4,120,87,.3);
  box-shadow:var(--shadow-md);
}

summary{
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  font-weight:900;
  cursor:pointer;
}

summary::-webkit-details-marker{
  display:none;
}

summary::after{
  content:"+";
  color:var(--brand-primary);
  font-size:22px;
  line-height:1;
  font-weight:900;
}

details[open] summary::after{
  content:"−";
}

details p{
  margin:12px 0 0;
  color:var(--text-muted);
  font-size:15px;
  font-weight:600;
}

.cta-section{
  padding-top:72px;
}

.cta-box{
  background:linear-gradient(135deg,var(--brand-primary),var(--brand-secondary));
  color:#fff;
  text-align:center;
  border-radius:var(--radius-xl);
  padding:58px 24px;
  box-shadow:0 20px 40px -10px rgba(4,120,87,.35);
}

.cta-box h2{
  margin:0 0 14px;
  font-size:36px;
  line-height:1.12;
  font-weight:900;
}

.cta-box p{
  margin:0 auto 24px;
  max-width:700px;
  font-size:18px;
  opacity:.94;
  font-weight:600;
}

.cta-note{
  margin:0 auto 18px;
  max-width:720px;
  font-size:15px;
  font-weight:900;
}

.cta-main-btn{
  background:#fff;
  color:var(--brand-primary);
  min-height:54px;
  padding:16px 28px;
}

.cta-main-btn:hover{
  background:#f8fafc;
  color:var(--brand-primary);
}

.footer{
  margin-top:72px;
  background:#0f172a;
  color:#fff;
  padding:70px 0 28px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:36px;
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.1);
}

.footer h3{
  margin:0 0 10px;
  font-size:24px;
  font-weight:900;
}

.footer p{
  margin:0;
  color:#94a3b8;
  font-size:14px;
  font-weight:600;
}

.footer h4{
  margin:0 0 16px;
  color:#94a3b8;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:900;
}

.footer a{
  display:block;
  text-decoration:none;
  color:#cbd5e1;
  margin-bottom:10px;
  font-size:14px;
  font-weight:600;
}

.footer a:hover{
  color:#fff;
}

.footer-bottom{
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9998;
  display:none;
  padding:12px 16px;
  background:#fff;
  border-top:1px solid var(--line);
  box-shadow:0 -4px 12px rgba(0,0,0,.05);
}

.sticky-cta .btn{
  width:100%;
}

[data-animate]{
  opacity:0;
  transform:translateY(18px);
  transition:.6s ease;
}

[data-animate].visible{
  opacity:1;
  transform:translateY(0);
}

.wa-widget,
.wa-widget *{
  box-sizing:border-box;
}

.wa-widget{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
}

.wa-fab{
  width:58px;
  height:58px;
  border:none;
  border-radius:999px;
  background:var(--brand-primary);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(2,6,23,.18);
  transition:.15s ease;
}

.wa-fab:hover{
  background:var(--brand-secondary);
  transform:translateY(-1px);
}

.wa-badge{
  position:absolute;
  right:52px;
  bottom:12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  font-weight:900;
  box-shadow:var(--shadow-sm);
  white-space:nowrap;
}

.wa-panel{
  position:absolute;
  right:0;
  bottom:72px;
  width:min(320px,calc(100vw - 36px));
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(2,6,23,.16);
  opacity:0;
  pointer-events:none;
  transform:scale(.96) translateY(8px);
  transform-origin:90% 100%;
  transition:.18s ease;
}

.wa-widget.open .wa-panel{
  opacity:1;
  pointer-events:auto;
  transform:scale(1) translateY(0);
}

.wa-head{
  padding:14px 14px 10px;
  color:#fff;
  background:linear-gradient(135deg,var(--brand-primary),var(--brand-secondary));
}

.wa-head strong{
  display:block;
  font-size:14px;
  font-weight:900;
}

.wa-head span{
  display:block;
  font-size:12px;
  font-weight:700;
  opacity:.92;
}

.wa-body{
  padding:12px 14px 14px;
}

.wa-small{
  margin:0;
  color:var(--text-muted);
  font-size:12px;
  font-weight:700;
}

.wa-actions{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.wa-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-decoration:none;
  color:var(--text-main);
  font-size:13px;
  font-weight:900;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
}

.wa-btn:hover{
  border-color:rgba(4,120,87,.3);
  box-shadow:var(--shadow-sm);
}

.wa-icon{
  width:18px;
  height:18px;
  flex:0 0 auto;
}

.mnav{
  display:none;
}

@media (max-width: 1100px){
  .grid-4{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-copy{
    text-align:center;
  }

  .hero p{
    max-width:760px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-bullets{
    max-width:620px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }

  .hero-actions{
    justify-content:center;
  }

  .highlight-grid,
  .steps-grid,
  .pricing-grid,
  .security-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid{
    grid-template-columns:1.4fr 1fr 1fr;
  }
}

@media (max-width: 820px){
  :root{
    --topbar-h:56px;
  }

  body{
    padding-bottom:88px;
  }

  .container{
    padding:0 16px;
  }

  .top-bar{
    gap:6px;
    padding:8px 12px;
    flex-wrap:wrap;
  }

  .top-bar p{
    font-size:11px;
    line-height:1.25;
  }

  .nav{
    min-height:74px;
  }

  .nav-links,
  .nav-actions{
    display:none;
  }

  .nav-mobile{
    display:flex;
    align-items:center;
    gap:8px;
    margin-left:auto;
  }

  .nav-mobile-cta{
    min-height:42px;
    padding:10px 12px;
    font-size:13px;
  }

  .logo img{
    height:34px;
    max-width:180px;
  }

  .mnav{
    display:block;
    position:relative;
  }

  .mnav > summary{
    list-style:none;
    min-height:42px;
    min-width:84px;
    padding:10px 12px;
    border-radius:12px;
    border:1px solid var(--line);
    background:#fff;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    user-select:none;
  }

  .mnav > summary::-webkit-details-marker{
    display:none;
  }

  .mnav > summary::after{
    content:"☰";
    font-size:15px;
    line-height:1;
  }

  .mnav[open] > summary::after{
    content:"✕";
  }

  .mnav[open] > summary{
    border-color:rgba(4,120,87,.25);
    box-shadow:var(--shadow-sm);
  }

  .mnav__panel{
    position:absolute;
    right:0;
    top:calc(100% + 10px);
    width:min(320px,calc(100vw - 32px));
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    padding:10px;
    box-shadow:0 22px 60px rgba(2,6,23,.16);
    display:grid;
    gap:6px;
    z-index:9999;
  }

  .mnav__panel > a{
    text-decoration:none;
    padding:11px 12px;
    border-radius:12px;
    font-weight:800;
  }

  .mnav__panel > a:hover{
    background:rgba(4,120,87,.06);
    color:var(--brand-primary);
  }

  .mnav__divider{
    height:1px;
    background:var(--line);
    margin:6px 0;
  }

  .mnav__action{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-weight:900 !important;
  }

  .mnav__action--link{
    background:rgba(4,120,87,.05);
  }

  .mnav__action--outline{
    border:1px solid rgba(4,120,87,.2);
    color:var(--brand-primary) !important;
  }

  .mnav__action--primary{
    background:var(--brand-primary);
    color:#fff !important;
  }

  .hero{
    padding:38px 0 44px;
  }

  .hero-copy{
    text-align:left;
  }

  .hero h1{
    font-size:34px;
    letter-spacing:-1px;
  }

  .hero p{
    font-size:16px;
    margin-left:0;
    margin-right:0;
    max-width:none;
  }

  .hero-bullets{
    grid-template-columns:1fr;
    max-width:none;
    margin:0 0 24px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-preview{
    padding:10px;
  }

  .section{
    padding:52px 0;
  }

  .section-head{
    margin-bottom:36px;
  }

  .section-head h2{
    font-size:28px;
  }

  .section-head p{
    font-size:16px;
  }

  .grid-4,
  .highlight-grid,
  .steps-grid,
  .pricing-grid,
  .security-grid{
    grid-template-columns:1fr;
  }

  .feature-card,
  .highlight-panel,
  .step-card,
  .price-card{
    padding:24px 20px;
  }

  .trial-strip{
    width:100%;
    justify-content:flex-start;
    text-align:left;
  }

  .cta-box{
    padding:42px 20px;
  }

  .cta-box h2{
    font-size:28px;
  }

  .cta-box p{
    font-size:16px;
  }

  .cta-main-btn{
    width:100%;
  }

  .footer{
    margin-top:44px;
    padding:58px 0 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
    padding-bottom:28px;
  }

  .footer-bottom{
    justify-content:center;
    text-align:center;
  }

  .sticky-cta{
    display:block;
  }

  .wa-widget{
    right:14px;
    bottom:88px;
  }

  .wa-panel{
    width:min(340px,calc(100vw - 28px));
  }
}

@media (max-width: 480px){
  :root{
    --topbar-h:60px;
  }

  body{
    padding-bottom:92px;
  }

  .container{
    padding:0 14px;
  }

  .logo img{
    max-width:150px;
    height:31px;
  }

  .nav-mobile-cta{
    padding:10px 10px;
    font-size:12px;
  }

  .mnav > summary{
    min-width:78px;
    font-size:12px;
  }

  .mnav__panel{
    width:calc(100vw - 28px);
  }

  .hero h1{
    font-size:30px;
  }

  .section-head h2{
    font-size:25px;
  }

  .price-tag{
    font-size:36px;
  }

  .price-tag--custom{
    font-size:26px;
  }

  .wa-badge{
    display:none;
  }

  .wa-widget{
    right:12px;
    bottom:92px;
  }

  .wa-panel{
    width:calc(100vw - 24px);
  }
}

@media (max-width: 360px){
  .top-bar p{
    font-size:10.5px;
  }

  .nav-mobile{
    gap:6px;
  }

  .nav-mobile-cta{
    padding:10px 8px;
    font-size:11.5px;
  }
}