/* ================================================
   WEALTH STRATEGY — style.css
   Prefix: .wealth-st-
   Pure CSS (Grid + Flexbox + Variables)
   No frameworks. No Bootstrap. No Tailwind.
   ================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ws-deep:        #09031a;
  --ws-dark:        #130834;
  --ws-violet:      #4c1d95;
  --ws-purple:      #7c3aed;
  --ws-purple-mid:  #9d5cf6;
  --ws-purple-lite: #c4b5fd;
  --ws-lavender:    #ede9fe;
  --ws-white:       #ffffff;
  --ws-off-white:   #f8f7ff;
  --ws-text:        #1e1b4b;
  --ws-muted:       #64748b;
  --ws-gold:        #f59e0b;
  --ws-green:       #10b981;
  --ws-red:         #ef4444;

  --ws-grad-hero:   linear-gradient(135deg, #09031a 0%, #2d1060 45%, #6d28d9 100%);
  --ws-grad-tools:  linear-gradient(180deg, #f8f7ff 0%, #ede9fe 100%);
  --ws-grad-trust:  linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #7c3aed 100%);
  --ws-grad-form:   linear-gradient(135deg, #09031a 0%, #3b0764 100%);
  --ws-grad-btn:    linear-gradient(90deg, #7c3aed 0%, #a855f7 100%);
  --ws-grad-card:   linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);

  --ws-shadow-sm:   0 4px 16px rgba(124, 58, 237, 0.12);
  --ws-shadow-md:   0 8px 32px rgba(124, 58, 237, 0.18);
  --ws-shadow-lg:   0 20px 60px rgba(124, 58, 237, 0.28);
  --ws-shadow-gold: 0 4px 24px rgba(245, 158, 11, 0.3);

  --ws-r-sm:  8px;
  --ws-r:     16px;
  --ws-r-lg:  24px;
  --ws-r-xl:  36px;

  --ws-font:  'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ws-font);
  color: var(--ws-text);
  background: var(--ws-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILITY ─────────────────────────────────── */

.wealth-st-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wealth-st-highlight {
  color: var(--ws-purple-mid);
}

.wealth-st-accent-text {
  color: var(--ws-gold);
}

/* ── NAVIGATION ──────────────────────────────── */

.wealth-st-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(9, 3, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
  transition: background 0.3s ease;
}

.wealth-st-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wealth-st-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.wealth-st-nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--ws-grad-btn);
  border-radius: var(--ws-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ws-shadow-sm);
}

.wealth-st-nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ws-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wealth-st-nav-logo-sub {
  font-size: 0.65rem;
  color: var(--ws-purple-lite);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.wealth-st-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.wealth-st-nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.wealth-st-nav-links a:hover {
  color: var(--ws-purple-lite);
}

.wealth-st-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ws-grad-btn);
  color: var(--ws-white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--ws-shadow-sm);
  white-space: nowrap;
}

.wealth-st-nav-cta:hover {
  box-shadow: var(--ws-shadow-md);
  transform: translateY(-1px);
}

.wealth-st-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.wealth-st-nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ws-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO ─────────────────────────────────────── */

.wealth-st-hero {
  background: var(--ws-grad-hero);
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.wealth-st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(124,58,237,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(76,29,149,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.wealth-st-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ws-off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.wealth-st-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.wealth-st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 181, 253, 0.15);
  border: 1px solid rgba(196, 181, 253, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--ws-purple-lite);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.wealth-st-hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--ws-gold);
  border-radius: 50%;
  animation: ws-pulse 2s infinite;
}

@keyframes ws-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.wealth-st-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--ws-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.wealth-st-hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #c4b5fd, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wealth-st-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.wealth-st-hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.wealth-st-hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wealth-st-hero-proof-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ws-white);
  line-height: 1;
}

.wealth-st-hero-proof-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wealth-st-hero-proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(196,181,253,0.3);
}

.wealth-st-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.wealth-st-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ws-gold);
  color: #1e1b4b;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--ws-shadow-gold);
  border: none;
  cursor: pointer;
}

.wealth-st-btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245, 158, 11, 0.45);
}

.wealth-st-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(196,181,253,0.35);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.wealth-st-btn-ghost:hover {
  border-color: var(--ws-purple-lite);
  color: var(--ws-purple-lite);
  background: rgba(196,181,253,0.07);
}

.wealth-st-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wealth-st-hero-visual figure {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.4));
  animation: ws-float 6s ease-in-out infinite;
}

@keyframes ws-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── TRUST BAR ───────────────────────────────── */

.wealth-st-trust-bar {
  background: var(--ws-white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.06);
}

.wealth-st-trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wealth-st-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ws-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.wealth-st-trust-bar-item svg {
  flex-shrink: 0;
}

/* ── SECTION COMMON ──────────────────────────── */

.wealth-st-section {
  padding: 96px 24px;
}

.wealth-st-section-center {
  max-width: 1200px;
  margin: 0 auto;
}

.wealth-st-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.wealth-st-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ws-purple);
  margin-bottom: 12px;
}

.wealth-st-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--ws-text);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.wealth-st-section-desc {
  font-size: 1.05rem;
  color: var(--ws-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── TOOLS SECTION ───────────────────────────── */

.wealth-st-tools {
  background: var(--ws-off-white);
  background-image: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(124,58,237,0.06) 0%, transparent 60%);
}

.wealth-st-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wealth-st-tool-item {
  background: var(--ws-grad-card);
  border: 1px solid rgba(124,58,237,0.1);
  border-radius: var(--ws-r-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.wealth-st-tool-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ws-grad-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.wealth-st-tool-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--ws-shadow-md);
  border-color: rgba(124,58,237,0.2);
}

.wealth-st-tool-item:hover::before {
  transform: scaleX(1);
}

.wealth-st-tool-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--ws-lavender);
  border-radius: var(--ws-r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease;
}

.wealth-st-tool-item:hover .wealth-st-tool-icon-wrap {
  background: var(--ws-purple);
}

.wealth-st-tool-item:hover .wealth-st-tool-icon-wrap svg path,
.wealth-st-tool-item:hover .wealth-st-tool-icon-wrap svg rect,
.wealth-st-tool-item:hover .wealth-st-tool-icon-wrap svg circle,
.wealth-st-tool-item:hover .wealth-st-tool-icon-wrap svg polyline {
  stroke: #fff;
}

.wealth-st-tool-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ws-purple);
  background: var(--ws-lavender);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.wealth-st-tool-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ws-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.wealth-st-tool-desc {
  font-size: 0.9rem;
  color: var(--ws-muted);
  line-height: 1.65;
}

/* ── WHY TRUST SECTION ───────────────────────── */

.wealth-st-trust-section {
  background: var(--ws-grad-trust);
  position: relative;
  overflow: hidden;
}

.wealth-st-trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(196,181,253,0.12)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.wealth-st-trust-section .wealth-st-section-label {
  color: var(--ws-purple-lite);
}

.wealth-st-trust-section .wealth-st-section-title {
  color: var(--ws-white);
}

.wealth-st-trust-section .wealth-st-section-desc {
  color: rgba(255,255,255,0.65);
}

.wealth-st-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.wealth-st-trust-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,181,253,0.15);
  border-radius: var(--ws-r-lg);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.wealth-st-trust-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.wealth-st-trust-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(124,58,237,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(196,181,253,0.25);
}

.wealth-st-trust-stat {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ws-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.wealth-st-trust-stat span {
  color: var(--ws-gold);
}

.wealth-st-trust-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ws-purple-lite);
  margin-bottom: 12px;
}

.wealth-st-trust-detail {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── WHO IS IT FOR ───────────────────────────── */

.wealth-st-who-section {
  background: var(--ws-white);
}

.wealth-st-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.wealth-st-who-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  border-radius: var(--ws-r-lg);
  border: 1px solid rgba(124,58,237,0.08);
  background: var(--ws-off-white);
  cursor: default;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  text-align: center;
}

.wealth-st-who-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--ws-shadow-sm);
  border-color: rgba(124,58,237,0.22);
  background: var(--ws-white);
}

.wealth-st-who-icon {
  width: 56px;
  height: 56px;
  background: var(--ws-lavender);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease;
}

.wealth-st-who-item:hover .wealth-st-who-icon {
  background: var(--ws-purple);
}

.wealth-st-who-item:hover .wealth-st-who-icon svg path,
.wealth-st-who-item:hover .wealth-st-who-icon svg rect,
.wealth-st-who-item:hover .wealth-st-who-icon svg circle,
.wealth-st-who-item:hover .wealth-st-who-icon svg line,
.wealth-st-who-item:hover .wealth-st-who-icon svg polyline {
  stroke: #fff;
}

.wealth-st-who-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ws-text);
  line-height: 1.35;
}

/* ── LEAD FORM SECTION ───────────────────────── */

.wealth-st-form-section {
  background: var(--ws-grad-form);
  position: relative;
  overflow: hidden;
}

.wealth-st-form-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.wealth-st-form-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(76,29,149,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.wealth-st-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.wealth-st-form-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ws-purple-lite);
  margin-bottom: 16px;
}

.wealth-st-form-info-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ws-white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.wealth-st-form-info-title em {
  font-style: normal;
  background: linear-gradient(90deg, #c4b5fd, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wealth-st-form-info-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.wealth-st-form-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wealth-st-form-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.wealth-st-form-perk-icon {
  width: 28px;
  height: 28px;
  background: rgba(16,185,129,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,0.4);
}

.wealth-st-form-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,181,253,0.15);
  border-radius: var(--ws-r-xl);
  padding: 48px 40px;
  backdrop-filter: blur(10px);
}

.wealth-st-form-box-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ws-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.wealth-st-form-box-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  line-height: 1.5;
}

.wealth-st-form-group {
  margin-bottom: 20px;
}

.wealth-st-form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.wealth-st-form-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(196,181,253,0.2);
  border-radius: var(--ws-r-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--ws-font);
  color: var(--ws-white);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.wealth-st-form-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.wealth-st-form-input:focus {
  border-color: var(--ws-purple-mid);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.2);
}

.wealth-st-form-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  cursor: pointer;
}

.wealth-st-form-check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid rgba(196,181,253,0.4);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  margin-top: 2px;
  position: relative;
}

.wealth-st-form-check-row input[type="checkbox"]:checked {
  background: var(--ws-purple);
  border-color: var(--ws-purple);
}

.wealth-st-form-check-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.wealth-st-form-check-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.wealth-st-form-check-text a {
  color: var(--ws-purple-lite);
  text-decoration: none;
  transition: color 0.2s;
}

.wealth-st-form-check-text a:hover {
  color: var(--ws-white);
  text-decoration: underline;
}

.wealth-st-form-submit {
  width: 100%;
  background: var(--ws-gold);
  color: #1e1b4b;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--ws-font);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  letter-spacing: -0.01em;
  box-shadow: var(--ws-shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wealth-st-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245,158,11,0.45);
}

.wealth-st-form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.wealth-st-form-error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: var(--ws-r-sm);
  font-size: 0.875rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── TESTIMONIALS ────────────────────────────── */

.wealth-st-reviews {
  background: var(--ws-off-white);
  background-image: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(124,58,237,0.06) 0%, transparent 70%);
}

.wealth-st-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wealth-st-review-item {
  background: var(--ws-white);
  border: 1px solid rgba(124,58,237,0.08);
  border-radius: var(--ws-r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wealth-st-review-item:hover {
  box-shadow: var(--ws-shadow-md);
  transform: translateY(-4px);
}

.wealth-st-review-stars {
  display: flex;
  gap: 4px;
}

.wealth-st-review-text {
  font-size: 0.975rem;
  color: var(--ws-text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.wealth-st-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(124,58,237,0.08);
}

.wealth-st-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ws-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ws-purple);
}

.wealth-st-review-name {
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--ws-text);
}

.wealth-st-review-meta {
  font-size: 0.8rem;
  color: var(--ws-muted);
  margin-top: 2px;
}

.wealth-st-review-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ws-green);
  background: rgba(16,185,129,0.1);
  padding: 4px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ── FOOTER ──────────────────────────────────── */

.wealth-st-footer {
  background: var(--ws-deep);
  color: rgba(255,255,255,0.65);
  padding: 72px 24px 0;
  border-top: 1px solid rgba(196,181,253,0.08);
}

.wealth-st-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.wealth-st-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
  width: fit-content;
}

.wealth-st-footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--ws-grad-btn);
  border-radius: var(--ws-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wealth-st-footer-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ws-white);
  line-height: 1.2;
}

.wealth-st-footer-about {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
}

.wealth-st-footer-social {
  display: flex;
  gap: 12px;
}

.wealth-st-footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,181,253,0.12);
  border-radius: var(--ws-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.wealth-st-footer-social-link:hover {
  background: var(--ws-purple);
  border-color: var(--ws-purple);
  transform: translateY(-2px);
}

.wealth-st-footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ws-white);
  margin-bottom: 20px;
}

.wealth-st-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wealth-st-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wealth-st-footer-links a:hover {
  color: var(--ws-purple-lite);
}

.wealth-st-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.wealth-st-footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.wealth-st-footer-contact-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}

.wealth-st-footer-contact-text a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.wealth-st-footer-contact-text a:hover {
  color: var(--ws-purple-lite);
}

.wealth-st-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(196,181,253,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wealth-st-footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.wealth-st-footer-legal-links {
  display: flex;
  gap: 20px;
}

.wealth-st-footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.wealth-st-footer-legal-links a:hover {
  color: var(--ws-purple-lite);
}

/* ── COOKIE BANNER ───────────────────────────── */

.wealth-st-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: rgba(19, 8, 52, 0.96);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: var(--ws-r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--ws-shadow-lg);
  backdrop-filter: blur(16px);
  max-width: 680px;
  width: calc(100% - 48px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.wealth-st-cookie.ws-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.wealth-st-cookie-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
}

.wealth-st-cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  flex: 1;
}

.wealth-st-cookie-text a {
  color: var(--ws-purple-lite);
  text-decoration: none;
}

.wealth-st-cookie-text a:hover {
  text-decoration: underline;
}

.wealth-st-cookie-btn {
  background: var(--ws-grad-btn);
  color: var(--ws-white);
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--ws-font);
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.wealth-st-cookie-btn:hover {
  box-shadow: var(--ws-shadow-sm);
  transform: translateY(-1px);
}

/* ── INNER PAGE LAYOUT ───────────────────────── */

.wealth-st-page-hero {
  background: var(--ws-grad-hero);
  padding: 140px 24px 80px;
  text-align: center;
}

.wealth-st-page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ws-white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.wealth-st-page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
}

.wealth-st-page-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}

.wealth-st-page-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ws-text);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.wealth-st-page-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ws-text);
  margin: 28px 0 10px;
}

.wealth-st-page-body p {
  font-size: 0.975rem;
  color: var(--ws-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.wealth-st-page-body ul, .wealth-st-page-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.wealth-st-page-body li {
  font-size: 0.95rem;
  color: var(--ws-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.wealth-st-page-body address {
  font-style: normal;
  background: var(--ws-off-white);
  border-left: 3px solid var(--ws-purple);
  padding: 20px 24px;
  border-radius: 0 var(--ws-r-sm) var(--ws-r-sm) 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ws-text);
  margin: 20px 0;
}

.wealth-st-page-body address a {
  color: var(--ws-purple);
  text-decoration: none;
}

.wealth-st-page-body address a:hover {
  text-decoration: underline;
}

.wealth-st-page-updated {
  font-size: 0.8rem;
  color: var(--ws-muted);
  border-top: 1px solid rgba(124,58,237,0.1);
  padding-top: 24px;
  margin-top: 48px;
}

/* ── THANKS PAGE ─────────────────────────────── */

.wealth-st-thanks-wrap {
  min-height: 100vh;
  background: var(--ws-grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.wealth-st-thanks-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.wealth-st-thanks-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,181,253,0.18);
  border-radius: var(--ws-r-xl);
  padding: 64px 56px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
  animation: ws-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes ws-appear {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wealth-st-thanks-check {
  width: 88px;
  height: 88px;
  background: rgba(16,185,129,0.15);
  border: 2px solid rgba(16,185,129,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.wealth-st-thanks-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ws-white);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.wealth-st-thanks-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.wealth-st-thanks-steps {
  background: rgba(255,255,255,0.05);
  border-radius: var(--ws-r);
  padding: 24px;
  margin-bottom: 36px;
  text-align: left;
}

.wealth-st-thanks-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.wealth-st-thanks-step + .wealth-st-thanks-step {
  border-top: 1px solid rgba(196,181,253,0.1);
}

.wealth-st-thanks-step-num {
  width: 28px;
  height: 28px;
  background: var(--ws-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.wealth-st-thanks-step-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

.wealth-st-thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ws-grad-btn);
  color: var(--ws-white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: var(--ws-shadow-md);
}

.wealth-st-thanks-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--ws-shadow-lg);
}

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1100px) {
  .wealth-st-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wealth-st-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wealth-st-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .wealth-st-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .wealth-st-hero-visual {
    order: -1;
  }
  .wealth-st-hero-visual figure {
    max-width: 360px;
  }
  .wealth-st-hero-proof {
    justify-content: center;
  }
  .wealth-st-hero-actions {
    justify-content: center;
  }
  .wealth-st-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .wealth-st-trust-row {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .wealth-st-form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wealth-st-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .wealth-st-nav-links {
    display: none;
  }
  .wealth-st-nav-burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .wealth-st-tools-grid {
    grid-template-columns: 1fr;
  }
  .wealth-st-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wealth-st-footer-grid {
    grid-template-columns: 1fr;
  }
  .wealth-st-trust-bar-inner {
    justify-content: center;
  }
  .wealth-st-form-box {
    padding: 32px 24px;
  }
  .wealth-st-cookie {
    flex-direction: column;
    text-align: center;
  }
  .wealth-st-hero-proof {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .wealth-st-hero-proof-divider {
    display: none;
  }
  .wealth-st-thanks-card {
    padding: 40px 24px;
  }
}
