/* ============================================================
   WSE PTE LTD — Global Stylesheet
   Scoped prefix: .wse-*
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

:root {
  --wse-navy:     #0B1F3A;
  --wse-navy-mid: #122850;
  --wse-green:    #1DB954;
  --wse-green-dk: #16913F;
  --wse-yellow:   #F5C518;
  --wse-sky:      #E8F4FF;
  --wse-slate:    #4A6080;
  --wse-light:    #F4F8FC;
  --wse-white:    #FFFFFF;
  --wse-text:     #1A2B40;
  --wse-muted:    #6B8299;
  --wse-border:   #D6E4F0;
  --wse-ff-head:  'Sora', sans-serif;
  --wse-ff-body:  'Plus Jakarta Sans', sans-serif;
  --wse-radius:   12px;
  --wse-shadow:   0 4px 24px rgba(11,31,58,.10);
  --wse-shadow-lg:0 12px 48px rgba(11,31,58,.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--wse-ff-body);
  color: var(--wse-text);
  background: var(--wse-white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--wse-ff-head); line-height: 1.2; font-weight: 700; color: var(--wse-navy); }
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.05rem,2.5vw,1.3rem); }
p  { color: var(--wse-slate); line-height: 1.75; }

/* ── Layout ── */
.wse-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.wse-section    { padding: 80px 0; }
.wse-section-sm { padding: 48px 0; }

/* ── Eyebrow ── */
.wse-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--wse-green);
  background: rgba(29,185,84,.1);
  padding: 4px 14px; border-radius: 999px; margin-bottom: 16px;
}

/* ── Buttons ── */
.wse-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--wse-ff-body); font-weight: 700; font-size: .95rem;
  border-radius: var(--wse-radius); padding: 14px 28px;
  cursor: pointer; border: none; transition: all .22s ease; white-space: nowrap;
}
.wse-btn-primary { background: var(--wse-green); color: var(--wse-white); }
.wse-btn-primary:hover { background: var(--wse-green-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,185,84,.35); }
.wse-btn-outline { background: transparent; color: var(--wse-white); border: 2px solid rgba(255,255,255,.75); }
.wse-btn-outline:hover { border-color: var(--wse-white); background: rgba(255,255,255,.12); }
/* Hero CTA buttons: cap desktop width */
.wse-page-hero .wse-btn { max-width: 260px; }
.wse-btn-navy { background: var(--wse-navy); color: var(--wse-white); }
.wse-btn-navy:hover { background: var(--wse-navy-mid); transform: translateY(-2px); }

/* ── NAV ── */
.wse-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.wse-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.wse-nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
}
.wse-nav-logo-icon {
  width: 38px; height: 38px; background: var(--wse-green);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.wse-nav-links { display: flex; align-items: center; gap: 2px; }
.wse-nav-links a {
  color: #1a1a1a; font-size: .88rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px; transition: all .2s;
}
.wse-nav-links a:hover, .wse-nav-links a.wse-active { color: var(--wse-green); background: rgba(29,185,84,.08); }
.wse-dropdown { position: relative; }
.wse-dropdown > a { display: flex; align-items: center; gap: 4px; }
.wse-dropdown > a::after { content: '▾'; font-size: .65rem; opacity: .7; }
.wse-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 8px; /* transparent bridge — keeps hover continuous across the gap */
  z-index: 200;
}
.wse-dropdown-menu-inner {
  background: var(--wse-white); border-radius: var(--wse-radius);
  box-shadow: var(--wse-shadow-lg); min-width: 290px; padding: 8px;
}
.wse-dropdown.wse-dd-open .wse-dropdown-menu { display: block; }
.wse-dropdown-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--wse-muted); padding: 10px 12px 4px;
}
.wse-dropdown-menu a {
  display: block; color: var(--wse-text) !important; padding: 9px 12px;
  border-radius: 8px; font-size: .86rem; font-weight: 500; background: none !important;
}
.wse-dropdown-menu a:hover { background: var(--wse-sky) !important; color: var(--wse-navy) !important; }
.wse-nav-cta { margin-left: 8px; flex-shrink: 0; }
.wse-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.wse-hamburger span { display: block; width: 24px; height: 2px; background: #1a1a1a; border-radius: 2px; transition: all .3s; }
.wse-mobile-menu { display: none; background: var(--wse-navy-mid); padding: 16px 24px 24px; }
.wse-mobile-menu.wse-open { display: block; }
.wse-mobile-menu a {
  display: block; color: rgba(255,255,255,.85); font-size: .93rem;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 500;
}
.wse-mobile-menu a:last-child { border-bottom: none; }
.wse-mobile-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--wse-green); margin: 16px 0 4px; }

/* ── PAGE HERO ── */
.wse-page-hero {
  background-color: var(--wse-navy);
  background-image: linear-gradient(135deg, var(--wse-navy) 0%, var(--wse-navy-mid) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.wse-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(29,185,84,.15) 0%, transparent 60%);
}
.wse-page-hero .wse-container { position: relative; z-index: 1; }
.wse-page-hero h1 { color: var(--wse-white); }
.wse-page-hero p { color: rgba(255,255,255,.75); max-width: 640px; margin-top: 12px; font-size: 1.05rem; }
.wse-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
  font-size: .8rem; color: rgba(255,255,255,.5); flex-wrap: wrap;
}
.wse-breadcrumb a { color: rgba(255,255,255,.6); }
.wse-breadcrumb a:hover { color: var(--wse-green); }
.wse-breadcrumb span { color: rgba(255,255,255,.3); }

/* ── TRUST STRIP ── */
.wse-trust-strip {
  background: var(--wse-navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.wse-trust-inner {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  justify-content: center;
}
.wse-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 500;
  padding: 6px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.wse-trust-item:last-child { border-right: none; }
.wse-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--wse-green); flex-shrink: 0; }

/* ── STATS ── */
.wse-stat-row { display: flex; gap: 40px; flex-wrap: wrap; }
.wse-stat-num { font-family: var(--wse-ff-head); font-size: 2.2rem; font-weight: 800; color: var(--wse-green); line-height: 1; }
.wse-stat-label { font-size: .75rem; color: var(--wse-muted); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ── CARDS / GRIDS ── */
.wse-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.wse-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.wse-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.wse-card {
  background: var(--wse-white); border-radius: var(--wse-radius);
  box-shadow: var(--wse-shadow); overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.wse-card:hover { transform: translateY(-4px); box-shadow: var(--wse-shadow-lg); }
.wse-card-body { padding: 24px; }

/* ── CHECK LIST ── */
.wse-checklist { display: flex; flex-direction: column; gap: 10px; }
.wse-checklist li {
  display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; color: var(--wse-text);
}
.wse-checklist li::before {
  content: '✓'; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(29,185,84,.15); color: var(--wse-green-dk);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .72rem; margin-top: 2px;
}

/* ── STEPS ── */
.wse-steps { display: flex; flex-direction: column; gap: 22px; }
.wse-step { display: flex; gap: 16px; align-items: flex-start; }
.wse-step-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: var(--wse-green); color: var(--wse-white);
  font-weight: 700; font-size: .85rem; font-family: var(--wse-ff-head);
  display: flex; align-items: center; justify-content: center;
}
.wse-step h4 { font-size: .95rem; margin-bottom: 3px; }
.wse-step p  { font-size: .87rem; color: var(--wse-muted); }

/* ── SAVINGS CALLOUT ── */
.wse-savings {
  background: linear-gradient(135deg, rgba(29,185,84,.08), rgba(29,185,84,.04));
  border: 1.5px solid rgba(29,185,84,.25); border-radius: 16px;
  padding: 28px 32px; display: flex; align-items: center; gap: 20px;
}
.wse-savings-num {
  font-family: var(--wse-ff-head); font-size: 3.2rem; font-weight: 800;
  color: var(--wse-green); line-height: 1; flex-shrink: 0;
}
.wse-savings-label { font-size: .92rem; color: var(--wse-slate); }
.wse-savings-label strong { display: block; color: var(--wse-navy); font-size: 1rem; margin-bottom: 4px; }

/* ── HIGHLIGHT BOX ── */
.wse-highlight {
  background: var(--wse-navy); color: var(--wse-white);
  border-radius: 12px; padding: 18px 24px; font-size: .88rem; font-weight: 500; line-height: 1.6;
}
.wse-highlight strong { color: var(--wse-yellow); }

/* ── AUDIENCE CARDS ── */
.wse-audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.wse-audience-card {
  background: var(--wse-light); border-radius: var(--wse-radius);
  padding: 24px; border: 1px solid var(--wse-border);
}
.wse-audience-card .wse-icon { font-size: 1.8rem; margin-bottom: 10px; }
.wse-audience-card h4 { margin-bottom: 6px; font-size: .95rem; }
.wse-audience-card p  { font-size: .84rem; color: var(--wse-muted); }

/* ── CTA BANNER ── */
.wse-cta-banner {
  background: linear-gradient(135deg, var(--wse-navy) 0%, #0d2d55 100%);
  border-radius: 20px; padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.wse-cta-banner::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,185,84,.2) 0%, transparent 70%);
}
.wse-cta-banner h2 { color: var(--wse-white); font-size: clamp(1.3rem,3vw,1.9rem); }
.wse-cta-banner p  { color: rgba(255,255,255,.7); margin-top: 8px; }
.wse-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── SPEC TABLE ── */
.wse-spec-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.wse-spec-table th, .wse-spec-table td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--wse-border); font-size: .88rem; }
.wse-spec-table th { background: var(--wse-light); font-weight: 700; color: var(--wse-navy); font-family: var(--wse-ff-head); }
.wse-spec-table tr:last-child td { border-bottom: none; }

/* ── BADGES ── */
.wse-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
}
.wse-badge-green  { background: rgba(29,185,84,.12); color: var(--wse-green-dk); }
.wse-badge-yellow { background: rgba(245,197,24,.15); color: #b8900a; }
.wse-badge-navy   { background: rgba(11,31,58,.1);   color: var(--wse-navy); }
.wse-badge-com    { background: #1a3a6e; color: #7eb3f0; }

/* ── PRODUCT INTRO GRID ── */
.wse-product-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 64px 0;
}

/* ── MODAL OVERLAY ── */
.wse-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,31,58,.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 16px;
}
.wse-modal-overlay.wse-open { display: flex; }
.wse-modal {
  background: var(--wse-white); border-radius: 20px;
  padding: 40px; max-width: 560px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.3);
  animation: wseModalIn .25s ease;
}
@keyframes wseModalIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.wse-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--wse-light); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--wse-slate); transition: background .2s;
}
.wse-modal-close:hover { background: var(--wse-border); }
.wse-modal-title { font-family: var(--wse-ff-head); font-size: 1.4rem; font-weight: 700; color: var(--wse-navy); margin-bottom: 6px; }
.wse-modal-sub { color: var(--wse-muted); font-size: .9rem; margin-bottom: 24px; }
.wse-modal-ty { display: none; text-align: center; padding: 20px 0; }
.wse-modal-ty h3 { color: var(--wse-green-dk); margin-bottom: 8px; font-size: 1.2rem; }
.wse-modal-ty p { font-size: .9rem; }

/* ── FORM ── */
.wse-form-group { margin-bottom: 16px; }
.wse-form-group label { display: block; font-weight: 600; font-size: .84rem; color: var(--wse-navy); margin-bottom: 5px; }
.wse-form-group input, .wse-form-group textarea, .wse-form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--wse-border);
  border-radius: 8px; font-family: var(--wse-ff-body); font-size: .92rem;
  color: var(--wse-text); background: var(--wse-white); transition: border-color .2s; outline: none;
  box-sizing: border-box;
}
.wse-form-group input:focus, .wse-form-group textarea:focus, .wse-form-group select:focus {
  border-color: var(--wse-green); box-shadow: 0 0 0 3px rgba(29,185,84,.1);
}
.wse-form-group textarea { resize: vertical; min-height: 100px; }
.wse-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── FOOTER ── */
.wse-footer { background: var(--wse-navy); padding: 64px 0 32px; }
.wse-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.wse-footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; margin-top: 12px; line-height: 1.7; }
.wse-footer-col h4 {
  color: var(--wse-white); font-family: var(--wse-ff-head); font-size: .78rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.wse-footer-col a { display: block; color: rgba(255,255,255,.55); font-size: .85rem; padding: 3px 0; transition: color .2s; }
.wse-footer-col a:hover { color: var(--wse-green); }
.wse-footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: .85rem; color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.wse-footer-contact-item .wse-ico {
  color: var(--wse-green); flex-shrink: 0;
  width: 18px; text-align: center;
  font-style: normal; margin-top: 2px; /* nudge icon to align with first line of text */
  font-size: 1rem; line-height: 1.4;
}
.wse-footer-contact-item span:last-child { flex: 1; }
.wse-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ── WHATSAPP FAB ── */
.wse-wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
/* Bubble popup */
.wse-wa-bubble {
  display: none; flex-direction: column; gap: 0;
  background: var(--wse-white); border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  width: 290px; overflow: hidden;
  animation: wseWaBubbleIn .2s ease;
}
@keyframes wseWaBubbleIn {
  from { opacity:0; transform: translateY(10px) scale(.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.wse-wa-bubble.wse-open { display: flex; }
.wse-wa-bubble-header {
  background: #075E54; /* WhatsApp dark green */
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
  position: relative;
}
.wse-wa-bubble-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wse-wa-bubble-header h4 { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 1px; }
.wse-wa-bubble-header p  { color: rgba(255,255,255,.75); font-size: .72rem; }
.wse-wa-bubble-dismiss {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 2px;
}
.wse-wa-bubble-dismiss:hover { color: #fff; }
.wse-wa-bubble-body { padding: 14px 14px 6px; background: #ECE5DD; }
.wse-wa-bubble-msg {
  background: #fff; border-radius: 8px 8px 8px 0;
  padding: 10px 12px; font-size: .82rem; color: #1a1a1a; line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,.1); margin-bottom: 10px;
}
.wse-wa-bubble-opts { display: flex; flex-direction: column; gap: 6px; padding-bottom: 8px; }
.wse-wa-opts { display: flex; flex-direction: column; gap: 6px; padding-bottom: 8px; }
.wse-wa-opt {
  display: block; background: #fff; border: 1.5px solid #25D366;
  border-radius: 20px; padding: 8px 14px; font-size: .8rem; font-weight: 600;
  color: #075E54; cursor: pointer; text-align: center; transition: all .15s;
  text-decoration: none;
}
.wse-wa-opt:hover { background: #25D366; color: #fff; }

/* Main FAB button */
.wse-wa-btn {
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45); cursor: pointer;
  transition: transform .2s; color: white; border: none; flex-shrink: 0;
}
.wse-wa-btn:hover { transform: scale(1.1); }

/* ── TURNSTILE ── */
.wse-turnstile-wrap { margin: 12px 0; display: flex; justify-content: flex-start; }

/* ── RESPONSIVE ── */
@media (max-width:960px) {
  .wse-footer-grid { grid-template-columns: 1fr 1fr; }
  .wse-product-intro { grid-template-columns: 1fr; gap: 32px; }
  .wse-audience-grid { grid-template-columns: 1fr 1fr; }
  .wse-grid-3 { grid-template-columns: 1fr 1fr; }
  .wse-grid-4 { grid-template-columns: 1fr 1fr; }
  .wse-cta-banner { flex-direction: column; padding: 36px 24px; }
  .wse-nav-links, .wse-nav-cta { display: none; }
  .wse-hamburger { display: flex; }
}
@media (max-width:600px) {
  .wse-section { padding: 52px 0; }
  .wse-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .wse-audience-grid { grid-template-columns: 1fr; }
  .wse-grid-2, .wse-grid-3, .wse-grid-4 { grid-template-columns: 1fr; }
  .wse-savings { flex-direction: column; text-align: center; }
  .wse-form-row { grid-template-columns: 1fr; }
  .wse-trust-item { border-right: none; padding: 4px 0; }
  .wse-trust-inner { flex-direction: column; align-items: flex-start; padding: 8px 20px; gap: 0; }

  .wse-modal { padding: 20px 16px; max-height: 88vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .wse-product-intro { padding: 32px 0; }
  /* Stats strip: clean 2x2 grid */
  .wse-section-sm { padding: 28px 0; }
  .wse-stat-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    justify-items: center;
    text-align: center;
  }
  .wse-stat-num { font-size: 1.4rem; }
  .wse-stat-label { font-size: .68rem; }
  /* Hero CTA buttons: stack as equal-width column on mobile */
  .wse-page-hero .wse-btn {
    width: 100%;
    max-width: none;
    justify-content: center;
    box-sizing: border-box;
    flex: none;
  }
  .wse-page-hero div[style*="display:flex"] {
    flex-direction: column;
    align-items: stretch;
  }
  /* Global overflow fix */
  body { overflow-x: hidden; }
  .wse-form-row { grid-template-columns: 1fr; }
  .wse-container { max-width: 100%; overflow: hidden; }
  .wse-grid-2 > *, .wse-grid-3 > *, .wse-grid-4 > * { min-width: 0; }
}

/* Compact modal — no internal scroll */
.wse-modal-compact .wse-form-group { margin-bottom: 10px; }
.wse-modal-compact .wse-form-group label { margin-bottom: 3px; font-size: .8rem; }
.wse-modal-compact .wse-form-group input,
.wse-modal-compact .wse-form-group select,
.wse-modal-compact .wse-form-group textarea {
  padding: 8px 12px; font-size: .88rem;
  box-sizing: border-box;
}
.wse-modal-compact .wse-form-group textarea { min-height: 72px; }
.wse-modal-compact .wse-modal-title { font-size: 1.2rem; margin-bottom: 4px; }
.wse-modal-compact .wse-modal-sub { margin-bottom: 14px; font-size: .84rem; }
.wse-modal-compact .wse-form-row { gap: 10px; }
.wse-modal-compact .wse-btn { padding: 11px 20px; font-size: .9rem; }
