/* MWS home-v2 preview - custom header look; Lagom footer untouched */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* Hide Lagom app-nav on this page only - custom header replaces it */
body.page-home-v2 .app-nav,
body.page-home-v2 .app-nav-header,
body.page-home-v2 .app-nav-menu {
  display: none !important;
}
/* Lagom sticky-nav JS leaves body padding-top for hidden header - kill the gap */
body.page-home-v2,
html body.page-home-v2 {
  padding-top: 0 !important;
}
body.page-home-v2 .app-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.mws-hv2 {
  /* LP chrome tokens (ported from lp-booster) */
  --mws-blue: #2b4d6e;
  --mws-blue-2: #376181;
  --mws-blue-3: #5b8db8;
  --mws-blue-deep: #1e3652;
  --mws-ink: #192738;
  --mws-muted: #5c6b7a;
  --mws-line: #e8e1d8;
  --mws-bg: #fcfaf8;
  --mws-orange: #ea702a;
  --mws-orange-dark: #d4611f;
  --mws-green: #22c55e;
  font-family: 'Assistant', 'Inter', sans-serif;
  color: var(--mws-ink);
  background: var(--mws-bg);
}
.mws-hv2[dir="rtl"] { direction: rtl; text-align: right; }
.mws-hv2[dir="ltr"] { direction: ltr; text-align: left; font-family: 'Inter', 'Assistant', sans-serif; }
.mws-hv2[dir="ltr"] .mws-faq button,
.mws-hv2[dir="ltr"] .mws-mob-toggle { text-align: left; }
.mws-hv2[dir="ltr"] .mws-dd { right: auto; left: 0; }

.mws-hv2 *,
.mws-hv2 *::before,
.mws-hv2 *::after { box-sizing: border-box; }

.mws-hv2 a { color: var(--mws-blue-2); text-decoration: none; }
.mws-hv2 a:hover { color: #2F5478; }

.mws-hv2 .mws-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.mws-hv2 .mws-lift {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mws-hv2 .mws-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(46, 86, 128, 0.14);
  border-color: #C9D8E8;
}
.mws-hv2 .mws-cta {
  transition: transform .12s ease, box-shadow .18s ease;
}
.mws-hv2 .mws-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(46, 86, 128, 0.34);
}

/* Reviews slider - LTR track like live homepage (RTL parent breaks seamless loop) */
@keyframes mwsMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.mws-hv2 .mws-marquee {
  overflow: hidden;
  width: 100%;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.mws-hv2 .mws-track {
  display: flex;
  flex-direction: row;
  width: max-content;
  direction: ltr;
  animation: mwsMarquee 55s linear infinite;
  will-change: transform;
}
.mws-hv2 .mws-track-set {
  display: flex;
  flex-direction: row;
  gap: 18px;
  padding-inline-end: 18px;
}
.mws-hv2 .mws-marquee:hover .mws-track { animation-play-state: paused; }
.mws-hv2 .mws-track .mws-review {
  direction: rtl;
  text-align: right;
}

@keyframes mwsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Custom header (LP chrome) */
.mws-hv2 .mws-hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 248, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mws-line);
  box-shadow: 0 8px 24px -20px rgba(25, 39, 56, 0.35);
}
.mws-hv2 .mws-hdr-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  height: 72px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mws-hv2 .mws-hdr-left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}
.mws-hv2 .mws-hdr-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.mws-hv2 .mws-hdr-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mws-hv2 .mws-nav-item {
  position: relative;
}
.mws-hv2 .mws-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mws-ink) !important;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.mws-hv2 .mws-nav-link:hover {
  color: var(--mws-orange) !important;
  background: rgba(234, 112, 42, 0.08);
}
.mws-hv2 .mws-nav-caret {
  opacity: .7;
  transition: transform .15s ease;
  flex-shrink: 0;
}
.mws-hv2 .mws-nav-item.open .mws-nav-caret,
.mws-hv2 .mws-nav-item:hover .mws-nav-caret {
  transform: rotate(180deg);
}
.mws-hv2 .mws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mws-hv2 .mws-eyebrow .mws-ico { flex-shrink: 0; }
.mws-hv2 .mws-dd {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--mws-line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(46, 86, 128, 0.14);
  padding: 8px;
  z-index: 60;
}
.mws-hv2 .mws-nav-item.open .mws-dd,
.mws-hv2 .mws-nav-item:hover .mws-dd {
  display: block;
}
.mws-hv2 .mws-dd a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mws-ink) !important;
}
.mws-hv2 .mws-dd a:hover {
  background: rgba(234, 112, 42, 0.08);
  color: var(--mws-orange) !important;
}
.mws-hv2 .mws-hdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.mws-hv2 .mws-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid var(--mws-line);
  border-radius: 999px;
  padding: 3px;
  direction: ltr;
  box-shadow: none;
}
.mws-hv2 .mws-lang a {
  border: none !important;
  background: transparent !important;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 12px !important;
  border-radius: 999px !important;
  color: var(--mws-muted) !important;
  line-height: 1.2;
  min-width: 36px;
  text-align: center;
}
.mws-hv2 .mws-lang a:hover {
  color: var(--mws-ink) !important;
  background: rgba(25, 39, 56, 0.05) !important;
}
.mws-hv2 .mws-lang a.active {
  background: var(--mws-blue) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px -6px rgba(43, 77, 110, 0.7);
}
.mws-hv2 .mws-lang a.active:hover {
  background: var(--mws-blue-deep) !important;
  color: #fff !important;
}
.mws-hv2 .mws-hdr-cart {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--mws-line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mws-ink) !important;
}
.mws-hv2 .mws-hdr-cart:hover {
  border-color: var(--mws-orange);
  color: var(--mws-orange) !important;
}
.mws-hv2 .mws-hdr-login {
  font-size: 14px;
  font-weight: 700;
  color: var(--mws-ink) !important;
  white-space: nowrap;
  border: 1px solid var(--mws-line) !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 9px 14px !important;
}
.mws-hv2 .mws-hdr-login:hover {
  border-color: var(--mws-blue) !important;
  color: var(--mws-blue) !important;
}
.mws-hv2 .mws-hdr-cta {
  font-size: 14px;
  font-weight: 800;
  color: #fff !important;
  background: var(--mws-orange) !important;
  border: none !important;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 10px 22px -14px rgba(234, 112, 42, 0.8);
  white-space: nowrap;
}
.mws-hv2 .mws-hdr-cta:hover {
  background: var(--mws-orange-dark) !important;
  color: #fff !important;
}
.mws-hv2 .mws-hdr-aff {
  font-size: 13px;
  font-weight: 600;
  color: var(--mws-muted) !important;
  white-space: nowrap;
}
.mws-hv2 .mws-hdr-aff:hover {
  color: var(--mws-orange) !important;
}
.mws-hv2 .mws-hdr-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #E4E6EA;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.mws-hv2 .mws-hdr-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #3F4552;
  border-radius: 2px;
}
.mws-hv2 .mws-hdr-mobile {
  display: none;
  border-top: 1px solid #E8EAED;
  background: #fff;
  padding: 12px 20px 20px;
}
.mws-hv2 .mws-hdr-mobile.open { display: block; }
.mws-hv2 .mws-mob-section { border-bottom: 1px solid #EEF0F3; }
.mws-hv2 .mws-mob-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #1E2433;
  padding: 14px 4px;
  cursor: pointer;
  text-align: right;
}
.mws-hv2 .mws-mob-links {
  display: none;
  padding: 0 4px 12px;
}
.mws-hv2 .mws-mob-section.open .mws-mob-links { display: block; }
.mws-hv2 .mws-mob-links a {
  display: block;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #3F4552 !important;
  border-radius: 8px;
}
.mws-hv2 .mws-mob-links a:hover { background: #F1F4F8; }
.mws-hv2 .mws-mob-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 12px 8px;
  border-radius: 16px;
  background: #F6F8FB;
  border: 1px solid #E8EAED;
}
.mws-hv2 .mws-mob-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mws-hv2 .mws-mob-cta .mws-lang {
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(30, 36, 51, 0.04);
}
.mws-hv2 .mws-mob-cta .mws-hdr-aff {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--mws-blue-2) !important;
  text-align: end;
  line-height: 1.3;
}
.mws-hv2 .mws-mob-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mws-hv2 .mws-mob-cta .mws-hdr-login {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #D7DEE8;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: #1E2433 !important;
  box-shadow: 0 1px 2px rgba(30, 36, 51, 0.04);
}
.mws-hv2 .mws-mob-cta .mws-hdr-login:hover {
  border-color: #C9D8E8;
  color: var(--mws-blue) !important;
}
.mws-hv2 .mws-mob-cta .mws-hdr-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}
.mws-hv2 .mws-mob-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 6px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #5A6475 !important;
  border-radius: 8px;
}
.mws-hv2 .mws-mob-cart:hover {
  color: var(--mws-blue) !important;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
  /* Hide desktop bar items only - NOT the same classes inside mobile drawer */
  .mws-hv2 .mws-hdr-nav,
  .mws-hv2 .mws-hdr-right > .mws-hdr-aff,
  .mws-hv2 .mws-hdr-right > .mws-hdr-login,
  .mws-hv2 .mws-hdr-right > .mws-lang,
  .mws-hv2 .mws-hdr-right > .mws-hdr-cart,
  .mws-hv2 .mws-hdr-right > .mws-hdr-cta { display: none; }
  .mws-hv2 .mws-hdr-toggle { display: inline-flex; }
  .mws-hv2 .mws-hdr-inner { height: 64px; }
  .mws-hv2 .mws-hdr-mobile.open .mws-lang { display: flex; }
  .mws-hv2 .mws-hdr-mobile.open .mws-hdr-aff,
  .mws-hv2 .mws-hdr-mobile.open .mws-mob-cart { display: inline-flex; }
  .mws-hv2 .mws-hdr-mobile.open .mws-hdr-login,
  .mws-hv2 .mws-hdr-mobile.open .mws-hdr-cta { display: flex; }
}

/* Promo */
.mws-hv2 .mws-promo {
  background: linear-gradient(160deg, var(--mws-blue-deep), var(--mws-blue-2));
  color: var(--mws-bg);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: .1px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mws-hv2 .mws-promo .mws-ico {
  flex-shrink: 0;
  color: #fff;
}
.mws-hv2 .mws-promo code {
  background: rgba(252,250,248,.16) !important;
  border: 1px solid rgba(252,250,248,.28) !important;
  border-radius: 8px;
  padding: 2px 9px;
  font-weight: 700;
  margin: 0 4px;
  font-family: inherit;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Hero */
.mws-hv2 .mws-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #2E5680 0%, #3E6E9A 52%, #5B8DB8 100%);
  color: #fff;
}
.mws-hv2 .mws-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}
.mws-hv2 .mws-blob-1 {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.mws-hv2 .mws-blob-2 {
  position: absolute;
  bottom: -180px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.mws-hv2 .mws-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 76px 28px 88px;
  max-width: 1200px;
  margin: 0 auto;
}
.mws-hv2 .mws-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.26);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.mws-hv2 .mws-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mws-green);
}
.mws-hv2 .mws-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
  color: #fff;
}
.mws-hv2 .mws-hero .lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  margin: 0 0 30px;
  max-width: 520px;
}
.mws-hv2 .mws-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}
.mws-hv2 .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  color: var(--mws-blue) !important;
  background: #fff;
  border-radius: 12px;
  padding: 15px 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.mws-hv2 .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 15px 24px;
}
.mws-hv2 .btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff !important; }
.mws-hv2 .mws-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.mws-hv2 .mws-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.mws-hv2 .mws-browser {
  animation: mwsFloat 7s ease-in-out infinite;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 40px 80px rgba(6,18,34,.42);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  direction: ltr;
}
.mws-hv2 .mws-browser-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 11px 13px;
  background: #F1F3F6;
  border-bottom: 1px solid #E4E7EB;
}
.mws-hv2 .mws-browser-bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.mws-hv2 .mws-browser-bar .url {
  margin-left: 12px;
  font-size: 11px;
  color: #9AA1AD;
  font-family: Inter, sans-serif;
  background: #fff;
  border: 1px solid #E4E7EB;
  border-radius: 6px;
  padding: 3px 12px;
}
.mws-hv2 .mws-browser img {
  width: 100%;
  display: block;
}
.mws-hv2 .mws-float-card {
  position: absolute;
  bottom: -22px;
  right: -18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(6,18,34,.28);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mws-hv2 .mws-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #34D399, #8FE3B0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mws-hv2 .mws-float-card strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--mws-ink);
  font-family: Inter, sans-serif;
}
.mws-hv2 .mws-float-card span {
  font-size: 11.5px;
  color: var(--mws-muted);
}
.mws-hv2 .mws-hero-foot {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.08);
  text-align: center;
  padding: 16px 28px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}

/* Sections */
.mws-hv2 .mws-sec { padding: 84px 0; }
.mws-hv2 .mws-sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.mws-hv2 .mws-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--mws-blue-2);
  display: block;
}
.mws-hv2 .mws-sec-head h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 12px 0 14px;
  color: var(--mws-ink);
}
.mws-hv2 .mws-sec-head p {
  font-size: 17px;
  color: var(--mws-muted);
  line-height: 1.6;
  margin: 0;
}

.mws-hv2 .mws-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mws-hv2 .mws-feat {
  background: #fff;
  border: 1px solid var(--mws-line);
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.mws-hv2 .mws-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: #EEF3FA;
  border: 1px solid #D8E4F2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mws-hv2 .mws-feat h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 9px;
}
.mws-hv2 .mws-feat p {
  font-size: 15px;
  color: var(--mws-muted);
  line-height: 1.6;
  margin: 0;
}

/* Pricing */
.mws-hv2 .mws-pricing {
  background: #fff;
  border-top: 1px solid #E8EAED;
  border-bottom: 1px solid #E8EAED;
}
.mws-hv2 .mws-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
.mws-hv2 .mws-tabs-inner {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  background: #F1F4F8;
  border: 1px solid var(--mws-line);
  border-radius: 14px;
  padding: 5px;
}
.mws-hv2 .mws-tab {
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 11px 20px;
  border-radius: 11px;
  text-align: center;
  transition: all .16s ease;
  background: transparent;
  color: #6B7280;
}
.mws-hv2 .mws-tab.active {
  background: #fff;
  color: var(--mws-blue);
  box-shadow: 0 2px 8px rgba(46,86,128,.14);
}
.mws-hv2 .mws-tab strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
}
.mws-hv2 .mws-tab small {
  display: block;
  font-size: 11.5px;
  font-weight: 500;
  opacity: .75;
  margin-top: 2px;
}
.mws-hv2 .mws-plans {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.mws-hv2 .mws-plans.active { display: grid; }
.mws-hv2 .mws-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--mws-line);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.mws-hv2 .mws-plan.featured {
  border: 2px solid var(--mws-blue-2);
  box-shadow: 0 20px 44px rgba(46,86,128,.16);
}
.mws-hv2 .mws-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: linear-gradient(135deg, var(--mws-blue), var(--mws-blue-2));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(46,86,128,.3);
}
.mws-hv2 .mws-plan h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px;
}
.mws-hv2 .mws-plan .tag {
  font-size: 13.5px;
  color: var(--mws-muted);
  margin: 0 0 18px;
}
.mws-hv2 .mws-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.mws-hv2 .mws-price b {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  font-family: Inter, sans-serif;
}
.mws-hv2 .mws-price span {
  font-size: 15px;
  color: var(--mws-muted);
  font-weight: 500;
}
.mws-hv2 .mws-plan-btn {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 11px;
  padding: 13px;
  color: var(--mws-blue) !important;
  background: #EEF3FA;
  border: 1px solid #D8E4F2;
}
.mws-hv2 .mws-plan.featured .mws-plan-btn {
  color: #fff !important;
  background: linear-gradient(135deg, var(--mws-blue), var(--mws-blue-2));
  border: none;
  box-shadow: 0 8px 20px rgba(46,86,128,.26);
}
.mws-hv2 .mws-plan-hr {
  height: 1px;
  background: #EEF0F3;
  margin: 22px 0;
}
.mws-hv2 .mws-plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mws-hv2 .mws-plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: #3F4552;
  line-height: 1.45;
}
.mws-hv2 .mws-plan li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Reviews */
.mws-hv2 .mws-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #F5A623;
  vertical-align: middle;
}
.mws-hv2 .mws-review {
  width: 360px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--mws-line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.mws-hv2 .mws-review p {
  font-size: 15px;
  color: #3F4552;
  line-height: 1.65;
  margin: 12px 0 20px;
}
.mws-hv2 .mws-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mws-hv2 .mws-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.mws-hv2 .mws-avatar-fallback {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.mws-hv2 .mws-review-user strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--mws-ink);
}

/* Locations */
.mws-hv2 .mws-locations {
  background: linear-gradient(150deg, #2E5680, #3E6E9A 55%, #5B8DB8);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mws-hv2 .mws-locations .mws-eyebrow { color: rgba(255,255,255,.7); }
.mws-hv2 .mws-locations h2 { color: #fff; }
.mws-hv2 .mws-locations .mws-sec-head p { color: rgba(255,255,255,.82); }
.mws-hv2 .mws-loc-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mws-hv2 .mws-loc {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(6px);
}
.mws-hv2 .mws-flag {
  width: 52px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #fff;
}
.mws-hv2 .mws-loc li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mws-hv2 .mws-li-ico {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: .95;
}
.mws-hv2 .mws-loc h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 3px;
  color: #fff;
}
.mws-hv2 .mws-loc .prov {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  margin: 0 0 18px;
}
.mws-hv2 .mws-loc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mws-hv2 .mws-loc li {
  font-size: 14px;
  color: rgba(255,255,255,.9);
}

/* Affiliate */
.mws-hv2 .mws-aff {
  background: #fff;
  border: 1px solid var(--mws-line);
  border-radius: 22px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
  box-shadow: 0 8px 30px rgba(46,86,128,.06);
}
.mws-hv2 .mws-aff h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 12px 0 14px;
}
.mws-hv2 .mws-aff > div > p {
  font-size: 16px;
  color: var(--mws-muted);
  line-height: 1.65;
  margin: 0 0 26px;
}
.mws-hv2 .btn-primary-grad {
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, var(--mws-blue), var(--mws-blue-2));
  border-radius: 12px;
  padding: 15px 28px;
  box-shadow: 0 10px 24px rgba(46,86,128,.28);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mws-hv2 .mws-aff-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mws-hv2 .mws-aff-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F7F9FB;
  border: 1px solid #EAEEF3;
  border-radius: 13px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #2A2F3A;
}
.mws-hv2 .mws-aff-item .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EEF3FA;
  border: 1px solid #D8E4F2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Domains */
.mws-hv2 .mws-domains { background: #fff; border-top: 1px solid #E8EAED; }
.mws-hv2 .mws-domain-form {
  max-width: 680px;
  margin: 0 auto 56px;
  display: flex;
  gap: 10px;
  background: #F4F6F8;
  border: 1px solid var(--mws-line);
  border-radius: 14px;
  padding: 8px;
}
.mws-hv2 .mws-domain-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: var(--mws-ink);
  padding: 12px 16px;
  text-align: left;
  direction: ltr;
}
.mws-hv2 .mws-domain-form button {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--mws-blue), var(--mws-blue-2));
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(46,86,128,.26);
  white-space: nowrap;
}
.mws-hv2 .mws-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mws-hv2 .mws-stat {
  text-align: center;
  padding: 30px;
  background: #F7F9FB;
  border: 1px solid #EAEEF3;
  border-radius: 16px;
}
.mws-hv2 .mws-stat .val {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  font-family: Inter, sans-serif;
  background: linear-gradient(135deg, #2E5680, #5B8DB8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mws-hv2 .mws-stat .lbl {
  font-size: 15px;
  color: var(--mws-muted);
  font-weight: 600;
  margin-top: 6px;
}

/* FAQ */
.mws-hv2 .mws-faq-wrap { max-width: 820px; margin: 0 auto; }
.mws-hv2 .mws-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mws-hv2 .mws-faq {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid var(--mws-line);
  transition: border-color .16s, box-shadow .16s;
}
.mws-hv2 .mws-faq.open {
  border-color: #C9D8E8;
  box-shadow: 0 8px 24px rgba(46,86,128,.08);
}
.mws-hv2 .mws-faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: right;
  cursor: pointer;
  padding: 0;
}
.mws-hv2 .mws-faq button span.q {
  font-size: 17px;
  font-weight: 700;
  color: var(--mws-ink);
}
.mws-hv2 .mws-faq-ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #EEF3FA;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.mws-hv2 .mws-faq.open .mws-faq-ico { transform: rotate(45deg); }
.mws-hv2 .mws-faq .ans {
  display: none;
  font-size: 15.5px;
  color: #5A616E;
  line-height: 1.7;
  margin: 16px 0 0;
}
.mws-hv2 .mws-faq.open .ans { display: block; }

/* Contact CTA */
.mws-hv2 .mws-contact {
  background: linear-gradient(150deg, #2E5680, #3E6E9A 55%, #5B8DB8);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mws-hv2 .mws-contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
}
.mws-hv2 .mws-contact h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -.6px;
  margin: 0 0 16px;
  line-height: 1.12;
  color: #fff;
}
.mws-hv2 .mws-contact .sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin: 0 0 28px;
}
.mws-hv2 .mws-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mws-hv2 .mws-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 600;
}
.mws-hv2 .mws-form {
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 30px 60px rgba(6,18,34,.3);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mws-hv2 .mws-form input,
.mws-hv2 .mws-form select {
  width: 100%;
  background: #F7F9FB;
  border: 1px solid var(--mws-line);
  border-radius: 11px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--mws-ink);
}
.mws-hv2 .mws-form-row {
  display: flex;
  gap: 14px;
}
.mws-hv2 .mws-form-msg {
  display: none;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
}
.mws-hv2 .mws-form-msg.ok { display: block; background: #ECFDF5; color: #065F46; }
.mws-hv2 .mws-form-msg.err { display: block; background: #FEF2F2; color: #991B1B; }
.mws-hv2 .mws-form-msg.load { display: block; background: #EFF6FF; color: #1E40AF; }
.mws-hv2 .mws-form-note {
  text-align: center;
  font-size: 12.5px;
  color: #9AA1AD;
  margin: 2px 0 0;
}

.mws-hv2 .mws-reviews-google {
  text-align: center;
  margin-top: 40px;
}
.mws-hv2 .mws-reviews-google a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, var(--mws-blue), var(--mws-blue-2));
  border-radius: 12px;
  padding: 12px 22px;
  box-shadow: 0 8px 20px rgba(46, 86, 128, .26);
}
.mws-hv2 .mws-reviews-google a:hover {
  color: #fff !important;
}

@media (max-width: 768px) {
  .mws-hv2 .mws-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 16px 8px;
    max-width: 100%;
    width: 100%;
  }
  .mws-hv2 .mws-track::-webkit-scrollbar { display: none; }
  .mws-hv2 .mws-track-set[aria-hidden="true"] { display: none; }
  .mws-hv2 .mws-track-set {
    width: max-content;
    padding-inline-end: 0;
  }
  .mws-hv2 .mws-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .mws-hv2 .mws-review {
    width: min(320px, 82vw);
    scroll-snap-align: center;
  }
}

@media (max-width: 991px) {
  .mws-hv2 .mws-hero-inner,
  .mws-hv2 .mws-feat-grid,
  .mws-hv2 .mws-plans.active,
  .mws-hv2 .mws-loc-grid,
  .mws-hv2 .mws-aff,
  .mws-hv2 .mws-stats,
  .mws-hv2 .mws-contact-inner {
    grid-template-columns: 1fr;
  }
  .mws-hv2 .mws-hero h1 { font-size: 36px; }
  .mws-hv2 .mws-sec-head h2,
  .mws-hv2 .mws-contact h2,
  .mws-hv2 .mws-aff h2 { font-size: 28px; }
  .mws-hv2 .mws-float-card { position: static; margin-top: 16px; }
  .mws-hv2 .mws-aff { padding: 32px 24px; }
  .mws-hv2 .mws-form-row { flex-direction: column; }
  .mws-hv2 .mws-domain-form { flex-direction: column; }
}
