/* ==========================================================================
   Web Saver Pro — Global Stylesheet
   Variable names match reference: --td, --tm, --tl, --bdr, --font, --mono, --max
   Last updated: 2026-04-17
   ========================================================================== */

/* --- VARIABLES --- */
:root {
  --navy: #1B2768;
  --navy-mid: #2A429E;
  --blue: #0350C2;
  --orange: #F1582A;
  --white: #FFFFFF;
  --off: #F5F7FF;
  --dark: #0D1117;
  --td: #1a1a2e;
  --tm: #4a4f6b;
  --tl: #8890b0;
  --bdr: rgba(3, 80, 194, 0.12);
  --font: 'Montserrat', sans-serif;
  --mono: 'DM Mono', monospace;
  --max: 1280px;
  /* Aliases for pages that used long names */
  --text-dark: var(--td);
  --text-mid: var(--tm);
  --text-light: var(--tl);
  --border: var(--bdr);
  --font-main: var(--font);
  --font-mono: var(--mono);
  --max-width: var(--max);
  --off-white: var(--off);
  --footer-border: rgba(255, 255, 255, 0.12);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--font);
  color: var(--td);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block }
a { color: inherit; text-decoration: none }

/* --- LAYOUT --- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.header-spacer { height: 72px }

/* --- HEADER / NAV --- */
.wsp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(27, 39, 104, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: height .2s, box-shadow .2s;
}

.wsp-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wsp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.wsp-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.wsp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.wsp-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.wsp-nav-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.wsp-nav-list a:hover,
.wsp-nav-list a:focus,
.wsp-nav-list a.active { color: #fff }

.wsp-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.wsp-contact-inline {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .62);
  white-space: nowrap;
}

.wsp-contact-inline a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.wsp-contact-inline a:hover { color: #fff }



/* --- PRIMARY CTA BUTTON --- */
.wsp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.wsp-cta:hover,
.wsp-cta:focus {
  background: #d94820;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(241, 88, 42, .35);
  color: #fff;
}

.wsp-cta-lg {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.wsp-cta-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wsp-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* --- MOBILE TOGGLE --- */
.wsp-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.wsp-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
}

/* --- MOBILE NAV --- */
.wsp-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(27, 39, 104, .98);
  padding: 18px 20px;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.wsp-mobile-inner { padding: 0 }

.wsp-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wsp-mobile-list a {
  display: block;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.wsp-mobile-meta {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsp-mobile-meta p {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
}

.wsp-mobile-meta a { color: #fff; text-decoration: none }

.wsp-mobile .wsp-cta {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  padding: 14px 22px;
}

/* --- BREADCRUMBS --- */
.wsp-breadcrumbs {
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--tl);
}

.wsp-breadcrumbs a {
  color: var(--tl);
  text-decoration: none;
  transition: color .2s;
}

.wsp-breadcrumbs a:hover { color: var(--td) }

.wsp-breadcrumbs .sep {
  margin: 0 8px;
  opacity: .5;
}

.wsp-breadcrumbs .current { color: var(--tm) }

/* Hero breadcrumbs (light text on dark bg) */
.wsp-breadcrumbs-hero {
  padding: 0 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
}

.wsp-breadcrumbs-hero a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .2s;
}

.wsp-breadcrumbs-hero a:hover { color: rgba(255, 255, 255, .85) }
.wsp-breadcrumbs-hero .sep { margin: 0 8px; opacity: .5 }
.wsp-breadcrumbs-hero .current { color: rgba(255, 255, 255, .7) }



<!--popup questions-->
#wsq-styles{
:root {
  --wsq-navy:    #1B2768;
  --wsq-mid:     #2A429E;
  --wsq-orange:  #F1582A;
  --wsq-od:      #d94820;
  --wsq-white:   #FFFFFF;
  --wsq-off:     #F5F7FF;
  --wsq-td:      #0D1117;
  --wsq-tm:      #4a4f6b;
  --wsq-tl:      #8890b0;
  --wsq-bdr:     rgba(3,80,194,0.13);
  --wsq-font:    'Montserrat', 'Segoe UI', sans-serif;
}
}
.wsp-quiz-btn {
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.wsp-quiz-btn:hover {
  background: rgba(255,255,255,.16);
}
/* === OVERLAY === */
#wsq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,20,60,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--wsq-font);
}
#wsq-overlay.wsq-open { display: flex; }

/* === CARD === */
#wsq-card {
  background: var(--wsq-white);
  border-radius: 24px;
  padding: 36px 32px 32px;
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  animation: wsqIn .32s cubic-bezier(.16,1,.3,1) both;
}
@keyframes wsqIn {
  from { opacity:0; transform:translateY(18px) scale(.96); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* === CLOSE === */
#wsq-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--wsq-bdr);
  background: var(--wsq-off);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--wsq-tm); font-size: 15px;
  transition: all .15s; line-height: 1;
}
#wsq-close:hover { background: #e4e7f5; color: var(--wsq-td); }

/* === PROGRESS === */
.wsq-prog {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 30px;
}
.wsq-prog-bar {
  flex: 1; height: 4px;
  background: #e8eaf6; border-radius: 2px; overflow: hidden;
}
.wsq-prog-fill {
  height: 100%; background: var(--wsq-orange); border-radius: 2px;
  transition: width .45s cubic-bezier(.16,1,.3,1);
}
.wsq-prog-lbl {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  color: var(--wsq-tl); font-variant-numeric: tabular-nums;
  min-width: 28px; text-align: right;
}

/* === STEP CONTENT === */
.wsq-wrap { transition: opacity .18s, transform .18s; }
.wsq-wrap.wsq-out { opacity:0; transform:translateX(-14px); }
.wsq-wrap.wsq-in  { opacity:0; transform:translateX(14px); }

.wsq-eye {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--wsq-orange);
  margin-bottom: 8px;
}
.wsq-q {
  font-size: 21px; font-weight: 900; color: var(--wsq-td);
  line-height: 1.2; letter-spacing: -.5px; margin-bottom: 6px;
}
.wsq-sub {
  font-size: 13px; color: var(--wsq-tm); line-height: 1.65;
  margin-bottom: 22px;
}

/* === OPTIONS === */
.wsq-opts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.wsq-opt {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 15px; border: 1.5px solid var(--wsq-bdr);
  border-radius: 12px; background: var(--wsq-white);
  cursor: pointer; transition: all .15s; text-align: left;
  font-family: var(--wsq-font); width: 100%;
}
.wsq-opt:hover { border-color: rgba(241,88,42,.3); background: #fff9f7; }
.wsq-opt.wsq-sel {
  border-color: var(--wsq-orange); background: #fff3ee;
  animation: wsqPop .2s ease;
}
@keyframes wsqPop {
  0%  { transform: scale(1); }
  50% { transform: scale(1.015); }
  100%{ transform: scale(1); }
}
.wsq-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #d0d3e8; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.wsq-opt.wsq-sel .wsq-dot { border-color: var(--wsq-orange); background: var(--wsq-orange); }
.wsq-dot-inner {
  width: 6px; height: 6px; border-radius: 50%; background: white;
  opacity: 0; transform: scale(0); transition: all .15s;
}
.wsq-opt.wsq-sel .wsq-dot-inner { opacity: 1; transform: scale(1); }
.wsq-opt-txt { flex: 1; }
.wsq-opt-lbl { font-size: 14px; font-weight: 600; color: var(--wsq-td); display: block; }
.wsq-opt-sub { font-size: 12px; color: var(--wsq-tm); display: block; margin-top: 1px; }

/* === NAVIGATION === */
.wsq-nav { display: flex; gap: 10px; }
.wsq-back {
  padding: 12px 18px;
  border: 1.5px solid var(--wsq-bdr); border-radius: 50px;
  background: var(--wsq-white); color: var(--wsq-tm);
  font-size: 13px; font-weight: 600; font-family: var(--wsq-font);
  cursor: pointer; transition: all .15s;
}
.wsq-back:hover { background: var(--wsq-off); }
.wsq-next {
  flex: 1; padding: 13px 22px;
  border: none; border-radius: 50px;
  background: var(--wsq-navy); color: white;
  font-size: 14px; font-weight: 700; font-family: var(--wsq-font);
  cursor: pointer; transition: all .2s;
}
.wsq-next:hover:not(:disabled) { background: var(--wsq-mid); transform: translateY(-1px); }
.wsq-next:disabled { opacity: .35; cursor: not-allowed; }

/* === RESULT === */
.wsq-r-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(241,88,42,.1); border: 1px solid rgba(241,88,42,.25);
  color: var(--wsq-orange); padding: 5px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px;
}
.wsq-r-title {
  font-size: 24px; font-weight: 900; color: var(--wsq-td);
  letter-spacing: -.6px; line-height: 1.15; margin-bottom: 10px;
}
.wsq-r-title .wsq-accent { color: var(--wsq-orange); }
.wsq-r-tagline {
  font-size: 13px; font-weight: 700; color: var(--wsq-orange);
  letter-spacing: .3px; margin-bottom: 10px; margin-top: -4px;
}
.wsq-r-desc {
  font-size: 13px; color: var(--wsq-tm); line-height: 1.65;
  margin-bottom: 14px;
}
.wsq-r-why {
  font-size: 14px; color: var(--wsq-tm); line-height: 1.75;
  margin-bottom: 20px;
}
.wsq-r-card {
  background: var(--wsq-off); border: 1px solid var(--wsq-bdr);
  border-radius: 16px; padding: 20px; margin-bottom: 16px;
}
.wsq-r-plan-name {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--wsq-tl); margin-bottom: 6px;
}
.wsq-r-prices {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px;
}
.wsq-r-setup {
  font-size: 34px; font-weight: 900; color: var(--wsq-orange);
  letter-spacing: -1.5px;
}
.wsq-r-sep { color: var(--wsq-tl); font-size: 14px; }
.wsq-r-mo { font-size: 15px; font-weight: 700; color: var(--wsq-td); }
.wsq-r-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.wsq-r-features li {
  font-size: 13px; color: var(--wsq-tm);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.5;
}
.wsq-r-features li::before {
  content: '✓'; color: #2a9d5c; font-weight: 700; font-size: 11px;
  flex-shrink: 0; margin-top: 1px;
}
.wsq-r-cta {
  display: block; width: 100%; padding: 16px;
  border: none; border-radius: 50px;
  background: var(--wsq-orange); color: white;
  font-size: 15px; font-weight: 800; font-family: var(--wsq-font);
  cursor: pointer; text-align: center; text-decoration: none;
  transition: all .2s; margin-bottom: 10px;
}
.wsq-r-cta:hover {
  background: var(--wsq-od); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(241,88,42,.3);
}
.wsq-r-fine {
  text-align: center; font-size: 11px; color: var(--wsq-tl);
  margin-bottom: 12px;
}
.wsq-restart {
  display: block; width: 100%; text-align: center;
  font-size: 13px; color: var(--wsq-tl);
  background: none; border: none; font-family: var(--wsq-font);
  cursor: pointer; padding: 4px; text-decoration: underline;
}
.wsq-restart:hover { color: var(--wsq-tm); }

@media (max-width:540px){
  #wsq-card { padding: 28px 18px 24px; border-radius: 20px; }
  .wsq-q { font-size: 18px; }
  .wsq-r-title { font-size: 20px; }
}


/* --- SECTION UTILITIES --- */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.sec-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.sec-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--td);
}

.sec-title span,
.sec-title .or { color: var(--orange) }

/* --- TRUST STRIP --- */
.wsp-trust-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.wsp-trust-strip span {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.wsp-trust-strip span::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  font-size: 11px;
}

/* Light background trust strip */
.wsp-trust-strip-light {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.wsp-trust-strip-light span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--tl);
  display: flex;
  align-items: center;
  gap: 5px;
}

.wsp-trust-strip-light span::before {
  content: '✓';
  color: #2a9d5c;
  font-weight: 700;
  font-size: 11px;
}

/* --- CTA BAND (Primary sales CTA section) --- */
.wsp-cta-band {
  padding: 88px 40px;
  background: linear-gradient(134deg, #2A429E 0%, #1B2768 97%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wsp-cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 88, 42, .15), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.wsp-cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.wsp-cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.wsp-cta-band h2 {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.3px;
  line-height: 1.1;
}

.wsp-cta-band h2 span { color: var(--orange) }

.wsp-cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.wsp-cta-band .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .3px;
  transition: all .2s;
}

.wsp-cta-band .btn-cta-white:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(241, 88, 42, .42);
}

.wsp-cta-band .wsp-cta { position: relative; z-index: 2 }

.wsp-cta-band-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-top: 14px;
  font-family: var(--mono);
}

/* CTA meta pills */
.wsp-cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.wsp-cta-meta span {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, .58);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wsp-cta-meta span::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
}

/* --- LOCAL TRUST CTA --- */
.wsp-local-cta {
  padding: 60px 0;
  background: var(--off);
  text-align: center;
}

.wsp-local-cta h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--td);
  margin-bottom: 10px;
}

.wsp-local-cta p {
  font-size: 15px;
  color: var(--tm);
  margin-bottom: 24px;
  line-height: 1.7;
}

.wsp-local-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.wsp-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--td);
  border: 2px solid var(--bdr);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  font-family: var(--font);
}

.wsp-cta-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* --- LEGAL PAGE UTILITY STRIP --- */
.wsp-legal-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bdr);
  font-family: var(--mono);
  font-size: 12px;
}

.wsp-legal-strip a {
  color: var(--tl);
  text-decoration: none;
  transition: color .2s;
}

.wsp-legal-strip a:hover { color: var(--blue) }
.wsp-legal-strip a.active { color: var(--orange); font-weight: 600 }

/* --- FOOTER --- */
.wsp-footer {
  background: #1a2050;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.wsp-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 40px 0;
}

.wsp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 38px;
  padding-bottom: 44px;
}

.wsp-footer h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
}

.wsp-footer h4 {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  font-family: var(--mono);
}

.wsp-footer p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
}

.wsp-brand-copy {
  font-family: var(--mono);
  max-width: 320px;
}

.wsp-footer a {
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s ease;
}

.wsp-footer a:hover,
.wsp-footer a:focus { color: #fff }

.wsp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.wsp-footer li a {
  font-size: 13px;
  font-family: var(--mono);
}

.wsp-footer-support-note {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6;
}

.wsp-footer-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin: 0;
}

.wsp-footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 40px;
}

.wsp-footer-bottom p {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  font-family: var(--mono);
  line-height: 1.6;
}

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: .1s }
.d2 { transition-delay: .2s }
.d3 { transition-delay: .3s }
.d4 { transition-delay: .4s }

/* --- RESPONSIVE --- */
@media (max-width: 1180px) {
  .wsp-contact-inline { display: none }
  .wsp-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr }
}

@media (max-width: 980px) {
  .wsp-nav { display: none }
  .wsp-toggle { display: flex }
  .wsp-header-right .wsp-cta { display: none }
  .wsp-mobile[data-open="true"] { display: flex }
  .wsp-footer-grid { grid-template-columns: 1fr 1fr }
}

@media (max-width: 768px) {
  .wsp-header { padding: 0 20px }
  .container,
  .wsp-footer-inner { padding-left: 20px; padding-right: 20px }
  .sec-title { font-size: 28px }
  .wsp-footer-grid { grid-template-columns: 1fr; gap: 28px }
  .wsp-footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .wsp-cta-band { padding: 64px 20px }
  .wsp-cta-band h2 { font-size: 28px; letter-spacing: -.8px }
  .wsp-cta-band p { font-size: 15px }
  .wsp-trust-strip { gap: 10px }
  .wsp-trust-strip span { font-size: 11px }
  .wsp-legal-strip { gap: 12px }
}

@media (max-width: 480px) {
  .wsp-trust-strip {
    flex-direction: column;
    gap: 6px;
  }
}