/* =================================================================
   Wealth Streamz — patch stylesheet
   Loaded AFTER styles.css and site.css so these rules win the cascade.
   -----------------------------------------------------------------
   1) Hero heading — extra safety margin so the two heading lines
      ("We Build Marketplace Champions" / "Etsy Relentless Growth.")
      never visually collide, on any device width.
   2) Footer "Secure & Trusted Payments" badges — root-cause fix.
      The two logo images were being forced to a fixed HEIGHT, but
      because they are very wide/short strips (the Stripe/Visa image
      is roughly 10:1 width:height), locking the height blew their
      rendered WIDTH out to 500-700px+, which got clipped by the
      footer's overflow:hidden on phones/tablets. Constrain by width
      instead and let them wrap on narrow screens.
   3) Themed lead-capture popup form + floating trigger button.
   ================================================================= */

/* ---------------------------------------------------------------
 * 1. Hero heading overlap — hardened, belt-and-braces
 * ------------------------------------------------------------- */
.hero-title-fluid.hero-title .hero-word {
  display: block !important;
  position: relative;
}

@media (max-width: 1023px) {
  .hero-title-fluid.hero-title .hero-word {
    line-height: 1.24 !important;
    margin-bottom: 8px !important;
  }
}

@media (min-width: 1024px) {
  .hero-title-fluid.hero-title .hero-word {
    line-height: 1.08 !important;
  }
}

/* ---------------------------------------------------------------
 * 2. Footer payment badges — fix oversized / clipped logos
 * ------------------------------------------------------------- */
.ws-footer-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  max-width: 100%;
}

.ws-footer-badge {
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.ws-footer-badge-lock {
  max-width: 210px;
  max-height: 58px;
}

.ws-footer-badge-pay {
  max-width: 190px;
  max-height: 32px;
}

@media (max-width: 640px) {
  .ws-footer-badge-lock {
    max-width: 170px;
    max-height: 48px;
  }
  .ws-footer-badge-pay {
    max-width: 150px;
    max-height: 26px;
  }
}

@media (max-width: 380px) {
  .ws-footer-badge-lock {
    max-width: 140px;
    max-height: 40px;
  }
  .ws-footer-badge-pay {
    max-width: 120px;
    max-height: 22px;
  }
}

.ws-footer-payments-inner {
  max-width: 100%;
  box-sizing: border-box;
}

/* ---------------------------------------------------------------
 * 3. Popup lead form — floating trigger button
 * ------------------------------------------------------------- */
.ws-popup-fab {
  position: fixed;
  right: 18px;
  bottom: 196px;
  z-index: 10001;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px 0 16px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #fac54b, #f0a92f);
  color: #00414f;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ws-popup-fab i {
  font-size: 16px;
}

.ws-popup-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .ws-popup-fab {
    right: 32px;
    bottom: 172px;
  }
}

/* Popup overlay + modal */
.ws-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 20, 24, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ws-popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ws-popup-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 20, 24, 0.45);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ws-popup-overlay.is-open .ws-popup-modal {
  transform: translateY(0) scale(1);
}

.ws-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.ws-popup-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.ws-popup-header {
  background: linear-gradient(150deg, #00414f 0%, #005f72 100%);
  padding: 30px 28px 24px;
  border-radius: 18px 18px 0 0;
}

.ws-popup-eyebrow {
  display: inline-block;
  color: #fac54b;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ws-popup-header h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.ws-popup-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.55;
}

.ws-popup-form {
  padding: 22px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-popup-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 14px;
  font-family: Poppins, sans-serif;
  color: #0f2b2e;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  background: #fafafa;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ws-popup-input::placeholder {
  color: #8a9a9c;
}

.ws-popup-input:focus {
  outline: none;
  border-color: #fac54b;
  box-shadow: 0 0 0 3px rgba(250, 197, 75, 0.28);
  background: #fff;
}

textarea.ws-popup-input {
  resize: vertical;
  min-height: 80px;
}

.ws-popup-submit {
  margin-top: 4px;
  width: 100%;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #fac54b, #f0a92f);
  color: #00414f;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  padding: 14px 16px;
  border-radius: 10px;
  transition: filter 0.18s ease, transform 0.15s ease;
}

.ws-popup-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.ws-popup-form .ws-form-status {
  margin-top: 2px;
}

@media (max-width: 480px) {
  .ws-popup-header {
    padding: 26px 20px 20px;
  }
  .ws-popup-form {
    padding: 18px 20px 22px;
  }
}

/* ==================================================================
 * NEW HERO — Marketplace Champions (redesign)
 * ================================================================== */
.ws-hero2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  overflow: hidden;
  background: radial-gradient(120% 140% at 15% 0%, #0a5a6c 0%, #00414f 42%, #012029 100%);
  padding: 148px 20px 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.ws-hero2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ws-hero2-grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(rgba(250, 197, 75, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 197, 75, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(80% 65% at 50% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(80% 65% at 50% 30%, #000 0%, transparent 78%);
  opacity: 0.9;
}

.ws-hero2-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.55;
  animation: wsHeroOrbFloat 10s ease-in-out infinite;
}
.ws-hero2-orb-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.55), transparent 70%);
  animation-delay: 0s;
}
.ws-hero2-orb-2 {
  width: 380px;
  height: 380px;
  bottom: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(105, 201, 208, 0.45), transparent 70%);
  animation-delay: 2s;
}
.ws-hero2-orb-3 {
  width: 260px;
  height: 260px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
  animation-delay: 4s;
}
@keyframes wsHeroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -22px) scale(1.06); }
}

.ws-hero2-glow {
  position: absolute;
  left: 50%;
  top: 26%;
  width: 900px;
  max-width: 140vw;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(250, 197, 75, 0.16), transparent 75%);
  pointer-events: none;
}

.ws-hero2-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.ws-hero2-left {
  display: block;
  text-align: left;
  min-width: 0;
  flex: 1 1 0;
}

.ws-hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(250, 197, 75, 0.12);
  border: 1px solid rgba(250, 197, 75, 0.4);
  color: #fac54b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  animation: wsHeroFadeUp 0.7s ease forwards 0.05s;
}
.ws-hero2-eyebrow i {
  color: #fac54b;
}

.ws-hero2-title {
  font-family: inherit;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 5.4vw, 3.75rem);
  margin: 0;
  opacity: 0;
  animation: wsHeroFadeUp 0.7s ease forwards 0.18s;
}

.ws-hero2-champions {
  color: #ffffff;
}

.ws-hero2-rotator {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  height: 1.15em;
  min-width: 6.6ch;
  text-align: left;
}

.ws-hero2-rot-word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  background-repeat: no-repeat;
}
.ws-hero2-rot-word.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.ws-hero2-text {
  margin: 26px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  opacity: 0;
  animation: wsHeroFadeUp 0.7s ease forwards 0.3s;
}

.ws-hero2-cta-row {
  margin-top: 36px;
  opacity: 0;
  animation: wsHeroFadeUp 0.7s ease forwards 0.42s;
}

.ws-hero2-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(100deg, #fac54b, #f4d37e);
  color: #00323d;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(250, 197, 75, 0.28);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, filter 0.25s ease;
}
.ws-hero2-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 48px rgba(250, 197, 75, 0.38);
  filter: brightness(1.03);
}
.ws-hero2-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 65, 79, 0.14);
  color: #00414f;
  font-size: 0.7rem;
}

.ws-hero2-platforms {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  opacity: 0;
  animation: wsHeroFadeUp 0.7s ease forwards 0.54s;
}

.ws-hero2-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.ws-hero2-chip i {
  font-size: 0.95rem;
}
.ws-hero2-chip.is-active {
  background: rgba(250, 197, 75, 0.16);
  border-color: rgba(250, 197, 75, 0.55);
  color: #fac54b;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(250, 197, 75, 0.18);
}

@keyframes wsHeroFadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------
 * Hero split layout — left copy + right "Get Your Free Growth Audit"
 * lead form. Stacks to a single column below 1024px.
 * ------------------------------------------------------------------ */
.ws-hero2-form-col {
  min-width: 0;
  width: 100%;
  max-width: 460px;
  flex: 1 1 420px;
  opacity: 0;
  animation: wsHeroFadeUp 0.7s ease forwards 0.28s;
}

.ws-hero2-form-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 28px 24px;
  box-shadow: 0 30px 80px rgba(0, 12, 16, 0.4), 0 8px 20px rgba(0, 12, 16, 0.18);
}

.ws-hero2-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 65, 79, 0.08);
  color: #00414f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ws-hero2-form-badge i {
  color: #fac54b;
  font-size: 0.72rem;
}

.ws-hero2-form-title {
  margin: 0 0 6px;
  font-family: Poppins, sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  color: #0f2b2e;
  letter-spacing: -0.01em;
}

.ws-hero2-form-sub {
  margin: 0 0 20px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #64748b;
}

.ws-hero2-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.ws-hero2-form-row {
  display: flex;
  gap: 12px;
}

.ws-hero2-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  flex: 1 1 0;
}

.ws-hero2-form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #00414f;
  letter-spacing: 0.01em;
}

.ws-hero2-form-group input,
.ws-hero2-form-group select,
.ws-hero2-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  font-size: 0.86rem;
  font-family: Poppins, sans-serif;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  color: #0f2b2e;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ws-hero2-form-group textarea {
  resize: vertical;
  min-height: 74px;
}

.ws-hero2-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300414f'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 34px;
  cursor: pointer;
}

.ws-hero2-form-group input:focus,
.ws-hero2-form-group select:focus,
.ws-hero2-form-group textarea:focus {
  outline: none;
  border-color: #fac54b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(250, 197, 75, 0.18);
}

.ws-hero2-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 2px;
  padding: 14px 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #fac54b, #f0a500);
  color: #00414f;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ws-hero2-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 197, 75, 0.35);
}
.ws-hero2-form-submit.is-loading {
  cursor: not-allowed;
  opacity: 0.85;
}

.ws-hero2-form-note {
  margin: 10px 0 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: #94a3b8;
  text-align: center;
}

@media (min-width: 1025px) {
  .ws-hero2-title {
    font-size: clamp(1.9rem, 2.35vw, 2.7rem);
  }
  .ws-hero2-text {
    font-size: clamp(0.94rem, 1vw, 1.05rem);
  }
}

@media (max-width: 1024px) {
  .ws-hero2-inner {
    flex-direction: column;
    gap: 44px;
  }
  .ws-hero2-left {
    text-align: center;
  }
  .ws-hero2-text {
    margin: 26px auto 0;
  }
  .ws-hero2-platforms {
    justify-content: center;
  }
  .ws-hero2-form-col {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
  .ws-hero2 {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .ws-hero2 {
    padding: 128px 18px 64px;
  }
  .ws-hero2-title {
    line-height: 1.2;
  }
  .ws-hero2-rotator {
    min-width: 5.4ch;
  }
  .ws-hero2-platforms {
    gap: 8px;
  }
  .ws-hero2-chip {
    padding: 7px 12px;
    font-size: 0.74rem;
  }
  .ws-hero2-form-card {
    padding: 24px 20px 20px;
  }
  .ws-hero2-form-row {
    flex-direction: column;
  }
}

/* ==================================================================
 * FOOTER — responsive + left-aligned on mobile
 * ================================================================== */
@media (max-width: 900px) {
  .ws-footer-inner {
    text-align: left !important;
  }
  .ws-footer-left {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .ws-footer-platforms {
    justify-content: flex-start !important;
  }
  .ws-footer-cols .ws-footer-col {
    text-align: left !important;
  }
  .ws-footer-col h4 {
    text-align: left !important;
  }
  .ws-footer-col h4:after {
    left: 0 !important;
    transform: none !important;
  }
  .ws-footer-col ul {
    text-align: left !important;
  }
  .ws-footer-col ul li:not(:has(a)) {
    justify-content: flex-start !important;
  }
  .ws-footer-contact-item {
    justify-content: flex-start !important;
  }
  .ws-footer-cta {
    margin: 0 !important;
  }
  .ws-footer-payments-inner {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .ws-footer-payments-label {
    justify-content: flex-start !important;
  }
  .ws-footer-badges {
    justify-content: flex-start !important;
  }
  .ws-footer-bottom {
    flex-direction: row !important;
    text-align: left !important;
    justify-content: space-between !important;
  }
}

@media (max-width: 640px) {
  .ws-footer-inner {
    display: block !important;
  }
  .ws-footer-left {
    margin-bottom: 32px;
  }
  .ws-footer-cols {
    display: block !important;
  }
  .ws-footer-cols .ws-footer-col {
    display: block !important;
    width: 100% !important;
    padding: 0 0 28px !important;
  }
  .ws-footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px;
    text-align: left !important;
  }
}

/* ==================================================================
 * HEADER REDESIGN
 * The header now lives in normal document flow, sitting directly
 * above (before) the hero banner instead of floating over it as a
 * detached pill. It stays "on top" via position:sticky so it's
 * always reachable, but it no longer overlaps the hero content.
 * ================================================================== */
.navbar-wrapper {
  width: 100% !important;
  margin: 0 !important;
  display: block !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 10002 !important;
  background: linear-gradient(180deg, rgba(0, 65, 79, 0.98) 0%, rgba(0, 48, 58, 0.97) 100%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  box-shadow: 0 8px 28px rgba(0, 15, 18, 0.32);
  border-bottom: 1px solid rgba(250, 197, 75, 0.24);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar-pill {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 1360px !important;
  margin: 0 auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px clamp(16px, 4vw, 32px) !important;
  gap: clamp(16px, 3vw, 40px) !important;
  box-sizing: border-box;
}

/* The old hide-on-scroll behavior no longer applies: the header is
   sticky and part of the page flow, so it should simply stay put. */
.navbar-pill.nav-hidden {
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.nav-logo img {
  transition: transform 0.3s ease;
}
.nav-logo:hover img,
.nav-logo img:hover {
  transform: scale(1.08) rotate(-4deg);
}

.nav-links li a {
  position: relative;
}
.nav-links li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fac54b;
  transition: width 0.25s ease;
}
.nav-links li a:hover:after,
.nav-links li.active-page > a:after {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar-wrapper {
    top: 0 !important;
  }
  .navbar-pill {
    padding: 10px 14px !important;
  }
}

/* The hero no longer needs a huge top offset to clear a floating
   pill — the sticky header now takes its own space in the flow. */
.ws-hero2 {
  padding-top: 64px !important;
}
@media (max-width: 640px) {
  .ws-hero2 {
    padding-top: 48px !important;
  }
}

/* ==================================================================
 * HERO BANNER — hover animations
 * ================================================================== */
.ws-hero2-eyebrow {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.ws-hero2-eyebrow:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(250, 197, 75, 0.2);
  border-color: rgba(250, 197, 75, 0.65);
  box-shadow: 0 10px 26px rgba(250, 197, 75, 0.25);
}
.ws-hero2-eyebrow i {
  display: inline-block;
  transform-origin: center;
}
.ws-hero2-eyebrow:hover i {
  animation: wsHeroBoltShake 0.5s ease;
}
@keyframes wsHeroBoltShake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-16deg) scale(1.15); }
  75% { transform: rotate(16deg) scale(1.15); }
}

.ws-hero2-title {
  transition: text-shadow 0.4s ease;
}
.ws-hero2-title:hover .ws-hero2-champions {
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.55);
}

.ws-hero2-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ws-hero2-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}
.ws-hero2-cta:hover:before {
  transform: translateX(130%);
}
.ws-hero2-cta-icon {
  transition: transform 0.35s ease;
}
.ws-hero2-cta:hover .ws-hero2-cta-icon {
  transform: rotate(18deg) scale(1.15);
}

.ws-hero2-chip {
  cursor: default;
}
.ws-hero2-chip i {
  transition: transform 0.35s ease;
}
.ws-hero2-chip:hover {
  transform: translateY(-3px) scale(1.06);
  background: rgba(250, 197, 75, 0.14);
  border-color: rgba(250, 197, 75, 0.45);
  color: #fac54b;
  box-shadow: 0 10px 22px rgba(250, 197, 75, 0.18);
}
.ws-hero2-chip:hover i {
  transform: scale(1.18) rotate(-8deg);
}

.ws-hero2-orb {
  transition: opacity 0.5s ease;
}
.ws-hero2:hover .ws-hero2-orb {
  opacity: 0.8;
}

/* Cursor-reactive spotlight + parallax
 * JS sets --mx/--my (px, relative to the hero) and --hx/--hy (-1..1)
 * on #wsHeroBg while the pointer moves inside .ws-hero2.
 * ------------------------------------------------------------- */
.ws-hero2-spotlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(250, 197, 75, 0.22) 0%, rgba(105, 201, 208, 0.12) 45%, transparent 72%);
  transform: translate(calc(var(--mx, 50%) - 50%), calc(var(--my, 50%) - 50%));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  will-change: transform;
}
.ws-hero2.is-tracking .ws-hero2-spotlight {
  opacity: 1;
}

/* Uses the standalone `translate` property (independent of `transform`)
   so it layers on top of the orbs' existing float keyframe animation
   instead of being overwritten by it. */
.ws-hero2-orb {
  translate: calc(var(--hx, 0) * var(--depth, 0px)) calc(var(--hy, 0) * var(--depth, 0px));
  transition: translate 0.2s ease-out;
}
.ws-hero2-orb-1 { --depth: 26px; }
.ws-hero2-orb-2 { --depth: 40px; }
.ws-hero2-orb-3 { --depth: 55px; }

.ws-hero2-grid {
  transform: translate3d(calc(var(--hx, 0) * 10px), calc(var(--hy, 0) * 10px), 0);
  transition: transform 0.2s ease-out;
}
.ws-hero2-glow {
  transform: translate(-50%, -50%) translate3d(calc(var(--hx, 0) * 16px), calc(var(--hy, 0) * 16px), 0);
  transition: transform 0.25s ease-out;
}

.ws-hero2-inner {
  transition: transform 0.25s ease-out;
  transform: perspective(1000px) rotateX(calc(var(--hy, 0) * -3deg)) rotateY(calc(var(--hx, 0) * 3deg));
  transform-style: preserve-3d;
}

.whychoose-wrapper a.inline-flex.items-center.rounded-full {
  background-color: #FAC54B !important;
  color: #0f2b2e !important;
}
.whychoose-wrapper a.inline-flex.items-center.rounded-full:hover {
  background-color: #ffffff !important;
  color: #0f2b2e !important;
}

/* =================================================================
   TESTIMONIALS SECTION — redesign (replaces flat mustard-yellow bg)
   ================================================================= */
.testimonials-section {
  background:
    radial-gradient(900px 360px at 8% 0%, rgba(250, 197, 75, 0.16), transparent 60%),
    radial-gradient(700px 320px at 96% 100%, rgba(0, 65, 79, 0.08), transparent 65%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 45%, #f7fafb 100%) !important;
}

/* Smooth curved divider instead of the hard teal downward triangle */
.testimonials-section > .absolute.top-0.left-0.w-full.h-32 {
  height: 90px !important;
  overflow: visible !important;
}
.testimonials-section > .absolute.top-0.left-0.w-full.h-32 > div {
  clip-path: none !important;
  background: transparent !important;
}
.testimonials-section > .absolute.top-0.left-0.w-full.h-32:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #00414f;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,0 L1440,0 L1440,40 C1140,110 900,20 720,55 C540,90 300,10 0,60 Z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,0 L1440,0 L1440,40 C1140,110 900,20 720,55 C540,90 300,10 0,60 Z'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* =================================================================
   FOOTER 2.0 — themed with Wealth Streamz teal / gold / Poppins
   Structural layout inspired by the reference screenshot, restyled
   to match the site's brand colors and typography.
   ================================================================= */
.ws-footer2 {
  position: relative;
  font-family: Poppins, sans-serif;
  color: #fff;
  background:
    radial-gradient(1100px 420px at 10% -10%, rgba(250, 197, 75, 0.1), transparent 60%),
    linear-gradient(180deg, #08363a 0%, #062c2f 55%, #052225 100%);
  overflow: hidden;
  padding: 72px 24px 0;
}

.ws-footer2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fac54b 15%, #ffe08a 50%, #fac54b 85%, transparent);
}

.ws-footer2-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.ws-footer2-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 44px;
}

@media (max-width: 1100px) {
  .ws-footer2-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }
  .ws-footer2-brand { grid-column: 1 / -1; }
  .ws-footer2-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .ws-footer2-top {
    grid-template-columns: 1fr;
  }
}

.ws-footer2-brand .ws-footer2-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.ws-footer2-brand .ws-footer2-logo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 197, 75, 0.35);
  box-shadow: 0 0 0 5px rgba(250, 197, 75, 0.06);
  object-fit: contain;
}

.ws-footer2-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 0 20px;
}

.ws-footer2-socials {
  display: flex;
  gap: 10px;
}

.ws-footer2-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.ws-footer2-socials a:hover {
  background: #fac54b;
  border-color: #fac54b;
  color: #07393b;
  transform: translateY(-2px);
}

.ws-footer2-col h4,
.ws-footer2-newsletter h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 14px;
}

.ws-footer2-col h4:after,
.ws-footer2-newsletter h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #fac54b, #ffdf94);
}

.ws-footer2-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ws-footer2-col ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.ws-footer2-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.18s ease;
}

.ws-footer2-col ul li a:before {
  content: "\203A";
  color: #fac54b;
  font-weight: 700;
}

.ws-footer2-col ul li a:hover {
  color: #fac54b;
}

.ws-footer2-newsletter p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 260px;
}

.ws-footer2-form {
  display: flex;
  gap: 0;
  max-width: 300px;
}

.ws-footer2-form input {
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 13.5px;
  font-family: inherit;
}

.ws-footer2-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ws-footer2-form input:focus {
  outline: none;
  border-color: rgba(250, 197, 75, 0.5);
}

.ws-footer2-form button {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #fac54b, #f0a92f);
  color: #07393b;
  font-weight: 800;
  font-size: 13.5px;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 0 20px;
  cursor: pointer;
  transition: filter 0.18s ease;
}

.ws-footer2-form button:hover {
  filter: brightness(1.06);
}

/* Contact info row */
.ws-footer2-contact-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 760px) {
  .ws-footer2-contact-row {
    grid-template-columns: 1fr;
  }
}

.ws-footer2-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
}

.ws-footer2-contact-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 197, 75, 0.12);
  border: 1px solid rgba(250, 197, 75, 0.28);
  color: #fac54b;
  font-size: 14px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

a.ws-footer2-contact-item:hover .ws-footer2-contact-icon {
  background: #fac54b;
  color: #07393b;
  transform: translateY(-2px);
}

.ws-footer2-contact-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.ws-footer2-contact-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Payments strip reuses existing .ws-footer-payments* classes */
.ws-footer2 .ws-footer-payments {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bottom bar */
.ws-footer2-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}

.ws-footer2-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin: 0 4px;
}

.ws-footer2-bottom-links a:hover {
  color: #fac54b;
}

.ws-footer2-totop {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #fac54b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.ws-footer2-totop:hover {
  background: #fac54b;
  color: #07393b;
  border-color: #fac54b;
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .ws-footer2 {
    padding: 48px 18px 0;
  }
  .ws-footer2-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =================================================================
   GROWTH OS DASHBOARD MOCKUP — placed right after the hero banner
   ================================================================= */
.growth-os-section {
  font-family: Poppins, sans-serif;
}

.growth-os-section .text-center.mb-14 {
  margin-bottom: 4.5rem !important;
}

.growth-os-section .services-eyebrow {
  margin-top: 4px;
}

.ws-dash-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(0, 65, 79, 0.08);
  box-shadow: 0 30px 70px -20px rgba(0, 65, 79, 0.25);
  overflow: hidden;
}

.ws-dash-titlebar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(0, 65, 79, 0.08);
  background: #fbfcfc;
}

.ws-dash-dots {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}

.ws-dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fac54b;
}

.ws-dash-dots span:nth-child(2) { background: rgba(0, 65, 79, 0.18); }
.ws-dash-dots span:nth-child(3) { background: rgba(0, 65, 79, 0.18); }

.ws-dash-brand {
  font-weight: 700;
  font-size: 14.5px;
  color: #00414f;
  white-space: nowrap;
}

.ws-dash-nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.ws-dash-nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(0, 65, 79, 0.4);
  text-decoration: none;
}

.ws-dash-nav a.is-active {
  color: #00414f;
}

.ws-dash-period {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(0, 65, 79, 0.5);
  white-space: nowrap;
}

.ws-dash-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fac54b, #f0a92f);
  display: inline-block;
}

.ws-dash-body {
  padding: 28px;
}

.ws-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .ws-dash-stats { grid-template-columns: 1fr; }
}

.ws-dash-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f6f8f8;
  border-radius: 14px;
  padding: 18px 20px;
}

.ws-dash-stat-highlight {
  background: rgba(250, 197, 75, 0.16);
}

.ws-dash-stat-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 65, 79, 0.5);
}

.ws-dash-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #0f2b2e;
}

.ws-dash-stat-delta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: #1f9d55;
}

.ws-dash-stat-delta i { font-size: 10px; }

.ws-dash-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .ws-dash-grid { grid-template-columns: 1fr; }
}

.ws-dash-chart-card {
  background: #f6f8f8;
  border-radius: 14px;
  padding: 22px 22px 10px;
  display: flex;
  flex-direction: column;
}

.ws-dash-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ws-dash-chart-head h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f2b2e;
}

.ws-dash-legend {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: rgba(0, 65, 79, 0.55);
}

.ws-dash-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ws-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.ws-dash-dot-gold { background: #fac54b; }
.ws-dash-dot-grey { background: #9fb2b6; }

.ws-dash-chart-svg {
  width: 100%;
  height: 220px;
}

.ws-dash-side {
  background: #f6f8f8;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.ws-dash-side-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #0f2b2e;
}

.ws-dash-campaign {
  margin-bottom: 14px;
}

.ws-dash-campaign-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.ws-dash-campaign-name {
  color: #0f2b2e;
  font-weight: 600;
}

.ws-dash-campaign-roas {
  font-weight: 700;
}

.ws-dash-campaign-roas.is-up { color: #1f9d55; }
.ws-dash-campaign-roas.is-down { color: #d97a2c; }

.ws-dash-bar {
  width: 100%;
  height: 7px;
  border-radius: 6px;
  background: rgba(0, 65, 79, 0.1);
  overflow: hidden;
}

.ws-dash-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #fac54b, #f0a92f);
}

.ws-dash-bar-fill.is-muted {
  background: rgba(0, 65, 79, 0.28);
}

.ws-dash-insight {
  margin-top: 6px;
  background: rgba(0, 65, 79, 0.06);
  border: 1px solid rgba(0, 65, 79, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.ws-dash-insight-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #00414f;
  margin-bottom: 6px;
}

.ws-dash-insight p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(15, 43, 46, 0.75);
}

/* =================================================================
   CTA BANNER — placed at the end of the page, before the footer
   ================================================================= */
.cta-banner-section {
  font-family: Poppins, sans-serif;
}

.ws-cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 28px;
  padding: 64px 32px;
  background: linear-gradient(135deg, #00414f 0%, #045a68 55%, #0c6e75 100%);
  box-shadow: 0 30px 70px -20px rgba(0, 65, 79, 0.4);
}

.ws-cta-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(250, 197, 75, 0.18) 1.6px, transparent 1.6px);
  background-size: 20px 20px;
  opacity: 0.6;
  pointer-events: none;
}

.ws-cta-banner-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

.ws-cta-banner-text {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.ws-cta-banner-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ws-cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ws-cta-banner-btn-primary {
  background: #ffffff;
  color: #00414f;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.35);
}

.ws-cta-banner-btn-primary:hover {
  background: #fac54b;
  transform: translateY(-2px);
}

.ws-cta-banner-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ws-cta-banner-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .ws-cta-banner { padding: 48px 22px; }
  .ws-cta-banner-btn { width: 100%; justify-content: center; }
}

/* =================================================================
   GLOBAL REACH — marketplace coverage grid, after FAQs
   ================================================================= */
.global-reach-section {
  font-family: Poppins, sans-serif;
  position: relative;
  background-color: #f8f9fa;
  background-image: radial-gradient(rgba(0, 65, 79, 0.09) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
}

.global-reach-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9932c;
  margin-bottom: 10px;
}

.global-reach-sub {
  max-width: 620px;
  margin: 0 auto;
  color: #667479;
  font-size: 15.5px;
  line-height: 1.65;
}

.global-reach-section .text-center.mb-14 {
  margin-bottom: 4.5rem !important;
}

.global-reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .global-reach-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .global-reach-grid { grid-template-columns: 1fr; }
}

.global-reach-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 65, 79, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px -12px rgba(0, 65, 79, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.global-reach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(0, 65, 79, 0.18);
}

.global-reach-card img {
  flex: 0 0 auto;
  width: 40px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0, 65, 79, 0.08);
}

.global-reach-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.global-reach-country {
  font-size: 14.5px;
  font-weight: 700;
  color: #0f2b2e;
}

.global-reach-region {
  font-size: 12.5px;
  color: #8a969a;
}

/* =================================================================
   SHARED PAGE HERO — About / Contact / FAQs
   ================================================================= */
.ws-page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 24px 90px;
  text-align: center;
  background: linear-gradient(160deg, #04333d 0%, #06424d 55%, #0a5561 100%);
  font-family: Poppins, sans-serif;
}

.ws-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ws-page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.5;
}

.ws-page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.ws-page-hero-orb-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -80px;
  background: rgba(250, 197, 75, 0.22);
}

.ws-page-hero-orb-2 {
  width: 260px;
  height: 260px;
  bottom: -100px;
  right: -60px;
  background: rgba(250, 197, 75, 0.14);
}

.ws-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.ws-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250, 197, 75, 0.14);
  border: 1px solid rgba(250, 197, 75, 0.35);
  color: #fac54b;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.ws-page-hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.ws-page-hero-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */
.ws-about-mission {
  position: relative;
  max-width: 980px;
  margin: -56px auto 0;
  padding: 0 24px;
  z-index: 2;
}

.ws-about-mission-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 40px;
  box-shadow: 0 30px 70px -20px rgba(0, 65, 79, 0.28);
  border-top: 4px solid #fac54b;
}

.ws-about-mission-card p {
  color: #33494d;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.ws-about-mission-card p:last-child {
  margin-bottom: 0;
}

.ws-whyus-section {
  padding: 90px 24px 100px;
  background: #ffffff;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.ws-whyus-eyebrow {
  display: inline-block;
  background: #fac54b;
  color: #0f2b2e;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.ws-whyus-title {
  color: #00414f;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 18px;
}

.ws-whyus-sub {
  max-width: 680px;
  margin: 0 auto 50px;
  color: #5a6a6e;
  font-size: 15.5px;
  line-height: 1.7;
}

.ws-whyus-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: left;
}

@media (max-width: 720px) {
  .ws-whyus-grid { grid-template-columns: 1fr; }
}

.ws-whyus-card {
  position: relative;
  background: #f6f8f8;
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ws-whyus-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 22px 48px -18px rgba(0, 65, 79, 0.25);
}

.ws-whyus-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00414f, #0a5561);
  color: #fac54b;
  font-size: 18px;
  margin-bottom: 16px;
}

.ws-whyus-card h3 {
  color: #07393b;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}

.ws-whyus-card p {
  color: #5a6a6e;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.ws-process-section {
  padding: 90px 24px 100px;
  background: #f6f8f8;
  font-family: Poppins, sans-serif;
}

.ws-process-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.ws-process-title {
  color: #00414f;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 14px;
}

.ws-process-eyebrow {
  display: inline-block;
  background: #fac54b;
  color: #0f2b2e;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
}

.ws-process-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}

@media (max-width: 720px) {
  .ws-process-grid { grid-template-columns: 1fr; }
}

.ws-process-step {
  display: flex;
  gap: 18px;
}

.ws-process-step-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00414f;
  color: #fac54b;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ws-process-step h4 {
  color: #0f2b2e;
  font-size: 16.5px;
  font-weight: 700;
  margin: 4px 0 8px;
}

.ws-process-step p {
  color: #5a6a6e;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */
.ws-contact-hero-cards {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: -56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 820px) {
  .ws-contact-hero-cards { grid-template-columns: 1fr; }
}

.ws-contact-hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 24px 55px -18px rgba(0, 65, 79, 0.28);
  display: flex;
  align-items: center;
  gap: 16px;
}

.ws-contact-hero-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fac54b, #f0a92f);
  color: #0f2b2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ws-contact-hero-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a969a;
  margin-bottom: 4px;
}

.ws-contact-hero-value {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: #0f2b2e;
}

.ws-contact-hero-sub {
  display: block;
  font-size: 12.5px;
  color: #8a969a;
  margin-top: 2px;
}

.ws-contact-main {
  padding: 120px 24px 100px;
  background: #ffffff;
  font-family: Poppins, sans-serif;
}

.ws-contact-main-inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 65, 79, 0.22);
}

@media (max-width: 820px) {
  .ws-contact-main-inner { grid-template-columns: 1fr; }
}

.ws-contact-form-card {
  background: linear-gradient(160deg, #04333d 0%, #0a5561 100%);
  padding: 44px 38px;
}

.ws-contact-form-badge {
  display: inline-block;
  background: rgba(250, 197, 75, 0.16);
  border: 1px solid rgba(250, 197, 75, 0.4);
  color: #fac54b;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.ws-contact-form-card h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin: 16px 0 6px;
}

.ws-contact-form-card > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  margin: 0 0 24px;
}

.ws-contact-field {
  margin-bottom: 16px;
}

.ws-contact-field input,
.ws-contact-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
}

.ws-contact-field input::placeholder,
.ws-contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
  text-transform: capitalize;
}

.ws-contact-field input:focus,
.ws-contact-field textarea:focus {
  outline: none;
  border-color: rgba(250, 197, 75, 0.55);
}

.ws-contact-field textarea {
  min-height: 130px;
  resize: vertical;
}

.ws-contact-content-card {
  background: #f6f8f8;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ws-contact-content-card h3 {
  color: #00414f;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
}

.ws-contact-content-card h4 {
  color: #d9932c;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
}

.ws-contact-content-card p {
  color: #4a5c60;
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 34ch;
  margin: 0 0 24px;
}

.ws-contact-accent-row {
  display: flex;
  gap: 8px;
}

.ws-contact-accent-row span {
  width: 28px;
  height: 6px;
  border-radius: 4px;
  background: rgba(0, 65, 79, 0.15);
}

.ws-contact-accent-row span:first-child {
  background: #fac54b;
  width: 42px;
}

/* =================================================================
   FAQS PAGE — retheme legacy yellow/teal utility colors to brand
   ================================================================= */
.ws-faqpage-hero .category-buttons button.bg-yellow-400 {
  background: #fac54b !important;
  border-color: #fac54b !important;
  color: #0f2b2e !important;
}

.ws-faqpage-hero .category-buttons button {
  font-family: Poppins, sans-serif;
}

#faqCategoryTitle,
#faqAccordionList .text-\[\#0f4c5c\] {
  color: #00414f !important;
}

#faqAccordionList > div {
  border-radius: 14px !important;
  background: #fff !important;
  border-color: rgba(0, 65, 79, 0.1) !important;
  box-shadow: 0 10px 24px -14px rgba(0, 65, 79, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#faqAccordionList > div:hover {
  border-color: rgba(250, 197, 75, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(0, 65, 79, 0.24);
}

#faqAccordionList .fa-plus,
#faqAccordionList .fa-minus {
  background: rgba(250, 197, 75, 0.16);
  color: #d9932c !important;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
}

.faq-category-select {
  font-family: Poppins, sans-serif;
}

/* =================================================================
   ABOUT PAGE 2.0 — hero / partner strip / mission-vision / info+stats / cta
   ================================================================= */
.ws-about2-hero {
  background: #f6f8f8;
  padding: 90px 24px;
  font-family: Poppins, sans-serif;
}

.ws-about2-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 900px) {
  .ws-about2-hero-inner { grid-template-columns: 1fr; }
}

.ws-about2-hero-text h1 {
  color: #0f2b2e;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.ws-about2-hero-text p {
  color: #5a6a6e;
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 30px;
}

.ws-about2-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #00414f;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ws-about2-hero-btn i {
  background: rgba(255, 255, 255, 0.15);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.ws-about2-hero-btn:hover {
  background: #045a68;
  transform: translateY(-2px);
}

.ws-about2-hero-media {
  position: relative;
}

.ws-about2-hero-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 65, 79, 0.35);
}

.ws-about2-hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.ws-about2-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fac54b;
  color: #0f2b2e;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.ws-about2-badge.is-dark {
  background: #00414f;
  color: #fff;
}

.ws-about2-badge i { font-size: 12px; }

.ws-about2-badge-1 { top: 8%; left: -6%; }
.ws-about2-badge-2 { top: -4%; right: 2%; text-align: left; }
.ws-about2-badge-3 { bottom: 8%; left: -8%; }
.ws-about2-badge-4 { bottom: -4%; right: -4%; background: #fff; color: #0f2b2e; border: 1px solid rgba(0, 65, 79, 0.12); }

@media (max-width: 640px) {
  .ws-about2-badge { font-size: 10.5px; padding: 8px 12px; }
  .ws-about2-badge-1 { left: 0; }
  .ws-about2-badge-3 { left: 0; }
  .ws-about2-badge-4 { right: 0; }
}

.ws-about2-partner {
  background: #f6f8f8;
  padding: 0 24px 90px;
  font-family: Poppins, sans-serif;
}

.ws-about2-partner-card {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 34px 40px;
  box-shadow: 0 20px 50px -20px rgba(0, 65, 79, 0.22);
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.ws-about2-partner-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ws-about2-partner-logo img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.ws-about2-partner-logo span {
  color: #00414f;
  font-weight: 800;
  font-size: 14px;
}

.ws-about2-partner-copy {
  flex: 1 1 320px;
  border-left: 1px solid rgba(0, 65, 79, 0.1);
  padding-left: 32px;
}

.ws-about2-partner-copy h3 {
  color: #0f2b2e;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
}

.ws-about2-partner-copy p {
  color: #5a6a6e;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.ws-about2-partner-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00414f;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  margin-left: auto;
}

.ws-about2-partner-link:hover { color: #d9932c; }

@media (max-width: 720px) {
  .ws-about2-partner-copy { border-left: none; padding-left: 0; }
  .ws-about2-partner-link { margin-left: 0; }
}

.ws-about2-mv {
  background: #f6f8f8;
  padding: 0 24px 90px;
  text-align: center;
  font-family: Poppins, sans-serif;
}

.ws-about2-mv h2 {
  color: #0f2b2e;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 34px);
  margin: 0 0 40px;
}

.ws-about2-mv-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
}

@media (max-width: 760px) {
  .ws-about2-mv-grid { grid-template-columns: 1fr; }
}

.ws-about2-mv-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 34px;
  box-shadow: 0 16px 40px -20px rgba(0, 65, 79, 0.2);
  border-top: 3px solid #fac54b;
}

.ws-about2-mv-card h3 {
  color: #00414f;
  font-size: 21px;
  font-weight: 800;
  margin: 0 0 14px;
}

.ws-about2-mv-card p {
  color: #5a6a6e;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

.ws-about2-info {
  background: #ffffff;
  padding: 100px 24px;
  font-family: Poppins, sans-serif;
}

.ws-about2-info-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 900px) {
  .ws-about2-info-inner { grid-template-columns: 1fr; }
}

.ws-about2-info-eyebrow {
  display: block;
  color: #d9932c;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.ws-about2-info-text h2 {
  color: #0f2b2e;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.3;
  margin: 0 0 18px;
}

.ws-about2-info-text p {
  color: #5a6a6e;
  font-size: 15px;
  line-height: 1.75;
  max-width: 46ch;
  margin: 0 0 26px;
}

.ws-about2-info-btn {
  display: inline-block;
  border: 1.5px solid #00414f;
  color: #00414f;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.ws-about2-info-btn:hover {
  background: #00414f;
  color: #fff;
}

.ws-about2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ws-about2-stat {
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.ws-about2-stat-lg {
  background: linear-gradient(150deg, #00414f 0%, #0a5561 100%);
  min-height: 150px;
}

.ws-about2-stat-sm {
  background: #f6f8f8;
  min-height: 110px;
  align-self: end;
}

.ws-about2-stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.4;
}

.ws-about2-stat-lg .ws-about2-stat-label { color: rgba(255, 255, 255, 0.75); }
.ws-about2-stat-sm .ws-about2-stat-label { color: #5a6a6e; }

.ws-about2-stat-value {
  font-size: 30px;
  font-weight: 800;
}

.ws-about2-stat-lg .ws-about2-stat-value { color: #fac54b; }
.ws-about2-stat-sm .ws-about2-stat-value { color: #0f2b2e; }

.ws-about2-cta {
  background: linear-gradient(150deg, #04333d 0%, #0a5561 100%);
  padding: 60px 24px;
  font-family: Poppins, sans-serif;
}

.ws-about2-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.ws-about2-cta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 760px) {
  .ws-about2-cta-stats { grid-template-columns: repeat(2, 1fr); }
}

.ws-about2-cta-stat {
  text-align: center;
}

.ws-about2-cta-value {
  display: block;
  color: #fac54b;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}

.ws-about2-cta-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  font-weight: 600;
}

.ws-about2-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.ws-about2-cta-copy h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.ws-about2-cta-copy h2 span { color: #fac54b; }

.ws-about2-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ws-about2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.ws-about2-cta-btn-primary {
  background: #fac54b;
  color: #0f2b2e;
}

.ws-about2-cta-btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.ws-about2-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.ws-about2-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =================================================================
   CANONICAL SITE BUTTON — matches the homepage hero CTA
   (gold gradient pill, teal text, uppercase, circular icon)
   Use these anywhere a primary/secondary action button is needed.
   ================================================================= */
.ws-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 999px;
  background: linear-gradient(100deg, #fac54b, #f4d37e);
  color: #00323d;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px -12px rgba(250, 197, 75, 0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, filter 0.25s ease;
}

.ws-btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 48px -12px rgba(250, 197, 75, 0.6);
  filter: brightness(1.03);
}

.ws-btn-gold-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 65, 79, 0.14);
  color: #00414f;
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.ws-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ws-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.ws-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(0, 65, 79, 0.35);
  color: #00414f;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ws-btn-outline-dark:hover {
  background: #00414f;
  color: #fff;
  transform: translateY(-2px);
}

/* ==================================================================
 * ASK-AI ANNOUNCEMENT BAR
 * Slim brand-colored strip above the header. Rotating "Ask AI" style
 * prompts on the left, quick-launch buttons for ChatGPT / Claude /
 * Gemini on the right (copies a Wealth-Streamz-specific prompt to
 * the clipboard and opens the assistant in a new tab).
 * ================================================================== */
.ws-ai-bar {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #061a1f 0%, #0f414f 55%, #0a2e37 100%);
  border-bottom: 1px solid rgba(250, 197, 75, 0.28);
  overflow: hidden;
  z-index: 10003;
}

.ws-ai-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 60px at 15% 0%, rgba(250, 197, 75, 0.18), transparent 70%);
  pointer-events: none;
}

.ws-ai-bar-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px clamp(16px, 4vw, 32px);
}

.ws-ai-bar-live {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fac54b;
  background: rgba(250, 197, 75, 0.12);
  border: 1px solid rgba(250, 197, 75, 0.35);
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}

.ws-ai-bar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a45;
  box-shadow: 0 0 0 0 rgba(255, 122, 69, 0.6);
  animation: wsAiPulse 1.8s ease-out infinite;
}

@keyframes wsAiPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 122, 69, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(255, 122, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 122, 69, 0); }
}

.ws-ai-bar-ticker {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 18px;
  overflow: hidden;
}

.ws-ai-bar-ticker-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.ws-ai-bar-ticker-item strong {
  color: #fac54b;
  font-weight: 800;
}

.ws-ai-bar-ticker-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.ws-ai-bar-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-ai-bar-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 2px;
  white-space: nowrap;
}

.ws-ai-bar-label i {
  color: #fac54b;
}

.ws-ai-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ws-ai-bar-btn i {
  font-size: 11px;
}

.ws-ai-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.28);
}

.ws-ai-btn-chatgpt {
  background: rgba(16, 163, 127, 0.16);
  border-color: rgba(16, 163, 127, 0.4);
}
.ws-ai-btn-chatgpt:hover {
  background: #10a37f;
  border-color: #10a37f;
}

.ws-ai-btn-claude {
  background: rgba(218, 119, 86, 0.16);
  border-color: rgba(218, 119, 86, 0.42);
}
.ws-ai-btn-claude:hover {
  background: #da7756;
  border-color: #da7756;
}

.ws-ai-btn-gemini {
  background: rgba(138, 149, 255, 0.16);
  border-color: rgba(138, 149, 255, 0.4);
}
.ws-ai-btn-gemini:hover {
  background: linear-gradient(90deg, #4f7bff, #a86bff, #ff6bcb);
  border-color: transparent;
}

.ws-ai-bar-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(12px);
  background: #0f414f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid rgba(250, 197, 75, 0.35);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ws-ai-bar-toast i { color: #fac54b; }
.ws-ai-bar-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .ws-ai-bar-label span { display: none; }
  .ws-ai-bar-btn span { display: none; }
  .ws-ai-bar-btn { padding: 6px 9px; }
}

@media (max-width: 700px) {
  .ws-ai-bar-ticker { display: none; }
  .ws-ai-bar-inner { gap: 10px; padding: 8px 14px; }
}

@media (max-width: 460px) {
  .ws-ai-bar-live span.ws-ai-bar-live-text { display: none; }
}

/* ==================================================================
 * MEGA MENU — EDITORIAL DARK REDESIGN
 * Fully self-contained: a single unified dark panel matching the
 * header/hero (not a bolted-on white card), a numbered row list with
 * a thin gold accent sweeping in on hover instead of pastel icon
 * tiles, and a stat-led spotlight column. Every class used by the
 * markup is defined completely here so nothing depends on the older
 * (now removed) mega-menu rules in site.css beyond base layout.
 * ================================================================== */
.dropdown-menu.megamenu {
  min-width: 780px !important;
  max-width: 960px !important;
  width: max-content !important;
  padding: 0 !important;
  border-radius: 22px !important;
  background: linear-gradient(155deg, #0c333e 0%, #071f25 62%, #051417 100%) !important;
  border: 1px solid rgba(250, 197, 75, 0.22) !important;
  box-shadow: 0 40px 90px rgba(1, 8, 10, 0.55), 0 1px 0 rgba(255, 255, 255, 0.04) inset !important;
  overflow: hidden !important;
}

.dropdown-menu.megamenu::before {
  background: linear-gradient(120deg, rgba(250, 197, 75, 0.4), rgba(250, 197, 75, 0) 35%) !important;
}

.megamenu-inner {
  display: flex !important;
  gap: 0 !important;
  align-items: stretch !important;
}

/* ---- Intro column ---- */
.megamenu-intro {
  flex: 0 0 226px !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.megamenu-intro::after { content: none !important; }

.megamenu-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fac54b;
  margin-bottom: 14px;
}

.megamenu-intro-eyebrow::before {
  content: "";
  width: 14px;
  height: 1px;
  background: #fac54b;
}

.megamenu-intro-title {
  margin: 0 0 10px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #fff !important;
}

.megamenu-intro-title::before {
  content: none !important;
}

.megamenu-intro-text {
  margin: 0 !important;
  font-size: 12.5px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.58) !important;
}

.megamenu-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.megamenu-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 9px 0;
}

.megamenu-stat-num {
  font-size: 17px;
  font-weight: 800;
  color: #fac54b;
  line-height: 1;
}

.megamenu-stat-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.megamenu-intro-link {
  margin-top: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.megamenu-intro-link .mm-arrow {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: #fac54b;
  color: #0f2b2e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease;
}

.megamenu-intro-link:hover .mm-arrow {
  transform: translateX(4px) scale(1.06);
  background: #fff;
}

/* ---- Row list column ---- */
.megamenu-grid {
  flex: 1 1 380px !important;
  display: block !important;
  grid-template-columns: none !important;
  padding: 10px 8px !important;
  align-content: unset !important;
}

.mega-item {
  position: relative;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 13px 16px 13px 10px !important;
  border-radius: 12px !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease;
}

.megamenu-grid .mega-item:last-child { border-bottom: none !important; }

.nav-links li.has-dropdown:hover .mega-item,
.nav-links li.has-dropdown:focus-within .mega-item,
.nav-links li.has-dropdown.active .mega-item {
  opacity: 1;
  transform: translateX(0);
}

.mega-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 2px;
  background: #fac54b;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.mega-item:hover {
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: none !important;
  transform: translateX(2px) !important;
}

.mega-item:hover::before {
  transform: scaleY(1);
}

.mega-index {
  flex: 0 0 20px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(250, 197, 75, 0.5);
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}

.mega-item:hover .mega-index {
  color: #fac54b;
}

.mega-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mega-icon img {
  width: 56%;
  height: 56%;
  object-fit: contain;
}

.mega-item:hover .mega-icon {
  border-color: rgba(250, 197, 75, 0.5);
  box-shadow: 0 0 0 4px rgba(250, 197, 75, 0.08) !important;
  transform: none !important;
}

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mega-title-row {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mega-title {
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.mega-badge-inline {
  display: inline-flex;
  align-items: center;
  background: rgba(250, 197, 75, 0.16);
  color: #fac54b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid rgba(250, 197, 75, 0.35);
  white-space: nowrap;
}

.mega-desc {
  font-size: 11.5px !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.46) !important;
}

.mega-go {
  margin-left: auto;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.mega-item:hover .mega-go {
  opacity: 1;
  transform: translateX(0);
  color: #fac54b;
}

/* ---- Spotlight column ---- */
.megamenu-spotlight {
  flex: 0 0 244px;
  background: linear-gradient(165deg, rgba(250, 197, 75, 0.1), rgba(250, 197, 75, 0.02) 55%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  color: #fff;
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.nav-links li.has-dropdown:hover .megamenu-spotlight,
.nav-links li.has-dropdown:focus-within .megamenu-spotlight,
.nav-links li.has-dropdown.active .megamenu-spotlight {
  opacity: 1;
  transform: translateY(0);
}

.megamenu-spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(250, 197, 75, 0.14);
  color: #fac54b;
  border: 1px solid rgba(250, 197, 75, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  text-decoration: none;
}

.megamenu-spotlight-stat {
  margin: 18px 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.megamenu-spotlight-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #fac54b;
  line-height: 1.1;
}

.megamenu-spotlight-stat-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.megamenu-spotlight-text {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.megamenu-spotlight-quote {
  display: block;
  font-size: 11px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  border-left: 2px solid rgba(250, 197, 75, 0.4);
  padding-left: 10px;
  margin-bottom: 18px;
}

.megamenu-spotlight-quote span {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  color: #fac54b;
}

.megamenu-spotlight-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fac54b;
  color: #0f2b2e;
  font-size: 12.5px;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.megamenu-spotlight-cta:hover {
  background: #fff;
  color: #0f414f;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .dropdown-menu.megamenu {
    min-width: 640px !important;
    max-width: 720px !important;
  }
  .megamenu-spotlight { display: none; }
}

@media (max-width: 1100px) {
  .dropdown-menu.megamenu {
    min-width: 480px !important;
    max-width: 560px !important;
  }
  .megamenu-inner { flex-direction: column !important; }
  .megamenu-intro {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}