/* ======================================================
   WELTHFLOW — Main Stylesheet
   Brand Navy: #062f6d | Dark Navy: #01123c | Mid Navy: #1a396b
   Accent Green: #3eda99 | Accent Teal: #1dbfc8
   ====================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #062f6d;
  --dark-navy: #01123c;
  --mid-navy: #1a396b;
  --accent: #3eda99;
  --accent2: #1dbfc8;
  --white: #ffffff;
  --light-bg: #f8fafc;
  --text: #2d3748;
  --muted: #718096;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a {
  font-family: 'Lora', serif;
}

.c-w { color: #fff !important; }
.wf-root { overflow-x: hidden; }

/* ── NAVBAR ─────────────────────────────────────────── */
.wf-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wf-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.wf-logo-link { text-decoration: none; display: flex; align-items: center; }

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

.wf-nav-links li { position: relative; }

.wf-nav-links li a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  display: block;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.3px;
}

.wf-nav-links li a:hover { color: var(--accent); background: rgba(255,255,255,0.06); }

.wf-btn-nav {
  background: var(--accent) !important;
  color: var(--dark-navy) !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  transition: opacity 0.2s !important;
}
.wf-btn-nav:hover { opacity: 0.88 !important; }

/* Dropdown */
.wf-dropdown { position: relative; }
.wf-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  min-width: 190px;
  list-style: none;
  padding: 6px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 1001;
}
.wf-dropdown:hover .wf-submenu { display: block; }
.wf-submenu li a { font-size: 13px; padding: 8px 16px; }

/* Hamburger */
.wf-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 991px) {
  .wf-hamburger { display: block; }
  .wf-nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark-navy);
    padding: 16px 0 24px;
    gap: 0;
    align-items: flex-start;
  }
  .wf-nav-links.open { display: flex; }
  .wf-nav-links li { width: 100%; }
  .wf-nav-links li a { padding: 12px 24px; }
  .wf-submenu { position: static; border: none; background: rgba(255,255,255,0.05); box-shadow: none; border-radius: 0; }
  .wf-dropdown:hover .wf-submenu { display: block; }
}

/* ── HERO SLIDER ─────────────────────────────────────── */
.wf-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.wf-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}
.wf-slide.active { opacity: 1; }

.wf-slide-overlay {
  position: absolute;
  inset: 0;
}

.wf-slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.wf-slide-title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.wf-slide-sub {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.88);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.wf-slide-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.wf-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}
.wf-dot.active { background: var(--accent); border-color: var(--accent); }
.wf-dot.dark { border-color: var(--navy); }
.wf-dot.dark.active { background: var(--navy); border-color: var(--navy); }

/* ── BUTTONS ─────────────────────────────────────────── */
.wf-btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--dark-navy) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 4px 18px rgba(62,218,153,0.3);
}
.wf-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(62,218,153,0.4); opacity: 0.92; }

.wf-btn-light {
  display: inline-block;
  background: #fff;
  color: var(--dark-navy) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ── CRYPTO TICKER ───────────────────────────────────── */
.wf-ticker {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.wf-ticker-track {
  display: flex;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.wf-ticker-item {
  padding: 0 28px;
  font-size: 13px;
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  border-right: 1px solid #e2e8f0;
}

/* ── SECTIONS ────────────────────────────────────────── */
.wf-section-dark { padding: 70px 0; }
.wf-section-light { padding: 70px 0; background: var(--light-bg); }

.wf-h2 { font-family: 'Lora', serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 16px; }
.wf-h4 { font-family: 'Lora', serif; font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; margin-bottom: 12px; }
.wf-lead { font-size: 15.5px; line-height: 1.7; }
.wf-body { font-size: 15px; line-height: 1.75; color: var(--text); }

.wf-section-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

.wf-section-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark-navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.wf-medal-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── VIDEO WRAPPER ───────────────────────────────────── */
.wf-video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

/* ── AS SEEN ON ──────────────────────────────────────── */
.wf-seen-on {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}
.wf-seen-label { font-size: 13px; color: var(--muted); white-space: nowrap; font-style: italic; }
.wf-logos-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.wf-media-logo { display: flex; align-items: center; }

/* ── PRODUCT ICONS ───────────────────────────────────── */
.wf-product-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(62,218,153,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--accent);
  font-size: 22px;
  transition: background 0.2s, border-color 0.2s;
}
.wf-product-icon:hover { background: rgba(62,218,153,0.15); border-color: var(--accent); }

/* ── CARDS ───────────────────────────────────────────── */
.wf-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.wf-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.wf-card-img { position: relative; }
.wf-card-img img { width: 100%; height: 200px; object-fit: cover; display: block; }
.wf-card-cat {
  position: absolute; bottom: 10px; left: 10px;
  background: var(--accent);
  color: var(--dark-navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px; border-radius: 12px;
  text-transform: uppercase;
}
.wf-card-body { padding: 20px; }
.wf-card-title { font-size: 16px; font-family: 'Lora', serif; font-weight: 700; color: #fff; margin-bottom: 10px; text-transform: uppercase; }
.wf-card-desc { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 16px; }
.wf-card-link { color: var(--accent); font-size: 13px; font-weight: 600; text-decoration: none; }
.wf-card-link:hover { color: #fff; }

/* ── STATS ───────────────────────────────────────────── */
.wf-stats { padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.wf-stat-item { border-left: 3px solid var(--accent); padding-left: 20px; }
.wf-stat-value { font-family: 'Lora', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; margin-bottom: 6px; }
.wf-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; line-height: 1.5; }

/* ── IMAGE ROTATOR ───────────────────────────────────── */
.wf-img-rotator { position: relative; height: 380px; border-radius: 12px; overflow: hidden; }
.wf-img-rotator img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; border-radius: 12px; }
.wf-img-rotator img.active { opacity: 1; }

/* ── PLATFORM / MIN INVEST ───────────────────────────── */
.wf-min-invest {
  background: var(--light-bg);
  border: 2px solid var(--navy);
  border-radius: 12px;
  padding: 30px 20px;
  display: inline-block;
  width: 100%;
}
.wf-invest-amount { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin: 10px 0; }
.wf-currency { font-size: 28px; font-family: 'Lora', serif; font-weight: 700; color: var(--navy); padding-top: 12px; }
.wf-amount { font-size: 72px; font-family: 'Lora', serif; font-weight: 700; color: var(--navy); line-height: 1; }

/* ── VIDEO BG SECTION ────────────────────────────────── */
.wf-video-bg {
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.wf-video-overlay { position: absolute; inset: 0; }
.wf-video-content { position: relative; z-index: 2; padding: 80px 0; }

/* ── PERCENT ICON ────────────────────────────────────── */
.wf-percent-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
  color: #fff;
}

/* ── SECURITY ─────────────────────────────────────────── */
.wf-highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.wf-testimonial { padding: 30px; background: var(--light-bg); border-radius: 12px; border-left: 4px solid var(--accent); }
.wf-testimonial-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid var(--accent); }
.wf-testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 12px; }

/* ── PRICING ─────────────────────────────────────────── */
.wf-pricing {
  background: var(--dark-navy);
  padding: 80px 0;
}

.wf-plan-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); font-family: 'Raleway', sans-serif; font-weight: 600;
  margin-bottom: 8px;
}

.wf-plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}
.wf-plan-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); border-color: var(--accent); }
.wf-plan-card.popular { background: rgba(62,218,153,0.08); border-color: var(--accent); box-shadow: 0 12px 40px rgba(62,218,153,0.2); }

.wf-plan-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark-navy);
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}

.wf-plan-name { color: rgba(255,255,255,0.65); font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-bottom: 8px; }
.wf-plan-roi { font-family: 'Lora', serif; font-size: 52px; font-weight: 700; color: #fff; text-align: center; line-height: 1; margin-bottom: 4px; }
.wf-plan-period { font-size: 14px; color: rgba(255,255,255,0.55); font-family: 'Raleway', sans-serif; display: block; text-align: center; margin-bottom: 20px; }

.wf-plan-features { list-style: none; padding: 0; margin: 16px 0 24px; }
.wf-plan-features li { color: rgba(255,255,255,0.8); font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 8px; }
.wf-plan-features li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.wf-plan-card hr { border-color: rgba(255,255,255,0.12); }

.wf-btn-plan {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--dark-navy) !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: auto;
}
.wf-btn-plan:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── BUILT FOR YOU ───────────────────────────────────── */
.wf-built-card {
  border-radius: 16px;
  padding: 60px 48px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) { .wf-built-card { padding: 40px 24px; } }

/* ── INVESTORS / CRYPTO LOGOS ────────────────────────── */
.wf-crypto-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.wf-crypto-logo-item { background: var(--light-bg); border-radius: 8px; padding: 12px 20px; border: 1px solid #e2e8f0; }

/* ── PROFESSIONAL MANAGERS ───────────────────────────── */
.wf-mgr-card {
  border-radius: 14px;
  padding: 48px 48px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  min-height: 320px;
}
@media (max-width: 576px) { .wf-mgr-card { padding: 32px 24px; } }

/* ── CTA BANNER ──────────────────────────────────────── */
.wf-cta-banner {
  background: var(--light-bg);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.wf-cta-banner h3 { font-family: 'Lora', serif; font-size: 20px; color: var(--dark-navy); }

/* ── FINAL HERO ──────────────────────────────────────── */
.wf-final-hero {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.wf-final-hero-content { position: relative; z-index: 2; }

/* ── FOOTER ──────────────────────────────────────────── */
.wf-footer { background: var(--dark-navy); }
.wf-footer-body { padding: 70px 0 40px; }

.wf-footer-heading {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.wf-footer-list { list-style: none; padding: 0; }
.wf-footer-list li { margin-bottom: 8px; }
.wf-footer-list li a { color: rgba(255,255,255,0.65); font-size: 13.5px; text-decoration: none; transition: color 0.2s; }
.wf-footer-list li a:hover { color: var(--accent); }

.wf-footer-contact { list-style: none; padding: 0; }
.wf-footer-contact li { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.wf-footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.wf-footer-contact li a { color: rgba(255,255,255,0.7); text-decoration: none; }
.wf-footer-contact li a:hover { color: var(--accent); }

.wf-footer-logo-wrap { display: flex; align-items: center; }

.wf-footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.wf-social-icons { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.wf-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.wf-social-icon:hover { background: var(--accent); color: var(--dark-navy); border-color: var(--accent); }

/* ── NOTIFICATION ────────────────────────────────────── */
.wf-notif {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: var(--dark-navy);
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  min-width: 280px;
  max-width: 340px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.wf-notif.show { transform: translateY(0); opacity: 1; }

.wf-notif-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.wf-notif-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 2px; font-family: 'Raleway', sans-serif; }
.wf-notif-text { font-size: 13.5px; color: #fff; font-family: 'Raleway', sans-serif; line-height: 1.4; }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-navy); }
::-webkit-scrollbar-thumb { background: var(--mid-navy); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── UTILITY ─────────────────────────────────────────── */
.mx-auto { margin-left: auto; margin-right: auto; }
.d-inline-block { display: inline-block; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-lg-end { text-align: right; }

@media (max-width: 768px) {
  .text-lg-end { text-align: left; }
  .wf-seen-on { flex-direction: column; align-items: flex-start; }
  .wf-built-card { padding: 36px 20px; }
}

/* ── PAGE HERO ──────────────────────────────────────── */
.wf-page-hero {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  margin-top: 70px;
}
.wf-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, #01123ccc, #062f6dee);
}
.wf-page-hero-content { position: relative; z-index: 1; }
.wf-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.65); }
.wf-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.wf-breadcrumb a:hover { color: #3eda99; }
.wf-breadcrumb i { font-size: 10px; }
.wf-page-title { font-family: 'Lora', serif; font-size: 38px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.wf-page-subtitle { font-size: 16px; color: rgba(255,255,255,0.75); max-width: 640px; margin-bottom: 0; }

/* ── ACCORDION (FAQ) ────────────────────────────────── */
.wf-accordion { display: flex; flex-direction: column; gap: 10px; }
.wf-accordion-item { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; }
.wf-accordion-item.open { box-shadow: 0 4px 20px rgba(6,47,109,0.1); border-color: #062f6d; }
.wf-accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: #fff; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 15px;
  color: #062f6d; text-align: left; gap: 16px;
}
.wf-accordion-item.open .wf-accordion-btn { background: #062f6d; color: #fff; }
.wf-accordion-body { padding: 18px 22px; background: #f8fafc; }
.wf-accordion-body p { margin: 0; font-size: 15px; color: #444; line-height: 1.7; }
.wf-faq-cta-card { background: #062f6d; border-radius: 14px; padding: 32px 28px; text-align: center; color: #fff; }
.wf-faq-icon { font-size: 36px; color: #3eda99; margin-bottom: 16px; }
.wf-faq-cta-card h4 { color: #fff; margin-bottom: 10px; font-family: 'Lora', serif; }
.wf-faq-cta-card p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 20px; }
.wf-faq-stat-card { background: #f8fafc; border-radius: 14px; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wf-faq-stat { display: flex; flex-direction: column; align-items: center; padding: 12px; border: 1px solid #e2e8f0; border-radius: 10px; }
.wf-faq-num { font-family: 'Lora', serif; font-size: 24px; font-weight: 700; color: #062f6d; }
.wf-faq-stat span:last-child { font-size: 11px; color: #718096; text-align: center; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── ABOUT PAGE ─────────────────────────────────────── */
.wf-about-img-grid { position: relative; }
.wf-about-img { border-radius: 12px; object-fit: cover; }
.wf-about-img-lg { width: 100%; height: 320px; }
.wf-about-img-sm { width: 50%; height: 160px; position: absolute; bottom: -28px; right: 0; border: 4px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.wf-value-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 28px 24px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; height: 100%; }
.wf-value-card:hover { box-shadow: 0 8px 32px rgba(6,47,109,0.12); transform: translateY(-4px); }
.wf-value-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #062f6d, #3eda99); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: #fff; }
.wf-value-title { font-family: 'Lora', serif; font-size: 18px; font-weight: 700; color: #062f6d; margin-bottom: 10px; }
.wf-value-desc { font-size: 14px; color: #718096; line-height: 1.7; margin: 0; }
.wf-team-card { text-align: center; padding: 28px 20px; border-radius: 14px; background: #fff; border: 1px solid #e2e8f0; transition: box-shadow 0.2s; height: 100%; }
.wf-team-card:hover { box-shadow: 0 8px 28px rgba(6,47,109,0.12); }
.wf-team-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid #3eda99; margin-bottom: 14px; }
.wf-team-name { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: #062f6d; margin-bottom: 4px; }
.wf-team-role { font-size: 13px; color: #3eda99; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.wf-team-bio { font-size: 13.5px; color: #718096; line-height: 1.6; margin: 0; }

/* ── TERMS PAGE ─────────────────────────────────────── */
.wf-terms-sidebar { background: #f8fafc; border-radius: 12px; padding: 24px 20px; position: sticky; top: 90px; }
.wf-terms-sidebar-title { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #718096; margin-bottom: 14px; font-family: 'Raleway', sans-serif; font-weight: 700; }
.wf-terms-sidebar-link { display: block; padding: 7px 0; font-size: 13px; color: #444; text-decoration: none; border-bottom: 1px solid #e2e8f0; line-height: 1.4; }
.wf-terms-sidebar-link:hover { color: #062f6d; padding-left: 4px; transition: padding 0.15s; }
.wf-terms-intro { background: #f0f7ff; border-left: 4px solid #062f6d; border-radius: 0 10px 10px 0; padding: 18px 20px; margin-bottom: 36px; display: flex; gap: 16px; align-items: flex-start; }
.wf-terms-intro-icon { font-size: 28px; color: #062f6d; flex-shrink: 0; margin-top: 2px; }
.wf-terms-intro p { margin: 0; font-size: 14.5px; color: #444; line-height: 1.7; }
.wf-terms-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid #e2e8f0; }
.wf-terms-section:last-child { border-bottom: none; }
.wf-terms-heading { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: #062f6d; margin-bottom: 12px; }

/* ── INVESTMENT PAGE ────────────────────────────────── */
.wf-feature-chip { background: #f0f7ff; border: 1px solid #c8daf5; border-radius: 8px; padding: 10px 14px; font-size: 14px; font-weight: 600; color: #062f6d; display: flex; align-items: center; gap: 10px; }
.wf-feature-chip i { color: #3eda99; }
.wf-step-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 28px 24px; text-align: center; height: 100%; position: relative; transition: box-shadow 0.2s; }
.wf-step-card:hover { box-shadow: 0 8px 28px rgba(6,47,109,0.1); }
.wf-step-num { font-family: 'Lora', serif; font-size: 48px; font-weight: 700; color: #f0f7ff; position: absolute; top: 14px; left: 18px; line-height: 1; }
.wf-step-icon { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #062f6d, #3eda99); display: flex; align-items: center; justify-content: center; margin: 8px auto 16px; font-size: 22px; color: #fff; position: relative; z-index: 1; }
.wf-step-title { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: #062f6d; margin-bottom: 8px; }
.wf-step-desc { font-size: 14px; color: #718096; line-height: 1.7; margin: 0; }

/* ── LOAN PAGE ──────────────────────────────────────── */
.wf-loan-features { display: flex; flex-direction: column; gap: 10px; }
.wf-loan-feature { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f0f7ff; border-radius: 8px; font-size: 14.5px; color: #334155; font-weight: 500; }
.wf-loan-feature i { color: #3eda99; font-size: 16px; flex-shrink: 0; }
.wf-loan-card { background: #fff; border: 2px solid #e2e8f0; border-radius: 16px; padding: 32px 28px; position: relative; transition: box-shadow 0.2s; }
.wf-loan-card.featured { border-color: #062f6d; box-shadow: 0 8px 32px rgba(6,47,109,0.12); }
.wf-loan-badge { position: absolute; top: -12px; right: 24px; background: #062f6d; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 14px; border-radius: 20px; }
.wf-loan-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.wf-loan-card-header i { font-size: 28px; color: #3eda99; }
.wf-loan-card-header h3 { font-family: 'Lora', serif; font-size: 20px; font-weight: 700; color: #062f6d; margin: 0; }
.wf-loan-amount { font-family: 'Lora', serif; font-size: 28px; font-weight: 700; color: #062f6d; margin-bottom: 18px; }
.wf-loan-list { list-style: none; padding: 0; margin-bottom: 24px; }
.wf-loan-list li { padding: 9px 0; border-bottom: 1px solid #f0f4f8; display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }
.wf-loan-list li i { color: #3eda99; flex-shrink: 0; }
.wf-eligibility-box { background: #f8fafc; border-radius: 14px; padding: 28px 24px; border: 1px solid #e2e8f0; }
.wf-eligibility-box h4 { font-family: 'Lora', serif; font-size: 18px; color: #062f6d; margin-bottom: 8px; }
.wf-eligibility-box h4 i { color: #3eda99; margin-right: 8px; }
.wf-eligibility-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #444; }
.wf-eligibility-item i { color: #3eda99; margin-top: 2px; flex-shrink: 0; }
.wf-ffd-benefits { display: flex; flex-direction: column; gap: 22px; }
.wf-ffd-benefit { display: flex; align-items: flex-start; gap: 18px; }
.wf-ffd-benefit-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(62,218,153,0.15); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #3eda99; flex-shrink: 0; }

/* ── FOREX PAGE ─────────────────────────────────────── */
.wf-forex-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 22px 20px; height: 100%; transition: box-shadow 0.2s; }
.wf-forex-card:hover { box-shadow: 0 6px 20px rgba(6,47,109,0.1); }
.wf-forex-icon { font-size: 28px; color: #3eda99; margin-bottom: 12px; }
.wf-forex-title { font-family: 'Lora', serif; font-size: 16px; font-weight: 700; color: #062f6d; margin-bottom: 8px; }
.wf-forex-desc { font-size: 13.5px; color: #718096; line-height: 1.6; margin: 0; }

/* ── AFFILIATES PAGE ────────────────────────────────── */
.wf-tier-card { background: #fff; border: 2px solid #e2e8f0; border-radius: 16px; padding: 32px 24px; text-align: center; position: relative; transition: box-shadow 0.2s, transform 0.2s; height: 100%; }
.wf-tier-card:hover { box-shadow: 0 8px 28px rgba(6,47,109,0.12); transform: translateY(-4px); }
.wf-tier-badge { display: inline-block; padding: 5px 16px; border-radius: 20px; color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.wf-tier-plan { font-family: 'Lora', serif; font-size: 17px; font-weight: 700; color: #062f6d; margin-bottom: 8px; }
.wf-tier-range { font-size: 14px; color: #718096; margin-bottom: 16px; }
.wf-tier-bonus { font-family: 'Lora', serif; font-size: 42px; font-weight: 700; color: #062f6d; line-height: 1; margin-bottom: 6px; }
.wf-tier-bonus span { display: block; font-size: 13px; font-family: 'Raleway', sans-serif; font-weight: 500; color: #718096; margin-top: 4px; }

/* ── BTN OUTLINE ────────────────────────────────────── */
.wf-btn-outline {
  display: inline-block; padding: 11px 24px; border-radius: 6px;
  border: 2px solid #3eda99; color: #3eda99; font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 14px; text-decoration: none; transition: 0.2s;
}
.wf-btn-outline:hover { background: #3eda99; color: #01123c; }

/* ══════════════════════════════════════════════════════════════
   SECURITY GATEWAY
══════════════════════════════════════════════════════════════ */
.sgw-root {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #0d1f4a 0%, #010c1f 60%, #000a16 100%);
  padding: 20px;
  animation: sgwFadeIn 0.6s ease;
}
@keyframes sgwFadeIn { from { opacity: 0; } to { opacity: 1; } }

.sgw-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.sgw-blob1 { width: 500px; height: 500px; top: -100px; left: -100px; background: rgba(6,47,109,0.35); animation: blobFloat 8s ease-in-out infinite; }
.sgw-blob2 { width: 400px; height: 400px; bottom: -80px; right: -80px; background: rgba(62,218,153,0.1); animation: blobFloat 10s ease-in-out infinite reverse; }
.sgw-blob3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(201,162,39,0.06); animation: blobFloat 12s ease-in-out infinite; }
@keyframes blobFloat { 0%,100% { transform: scale(1) translate(0,0); } 50% { transform: scale(1.1) translate(20px, -20px); } }

.sgw-card {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 24px;
  padding: 44px 40px 36px;
  width: 100%; max-width: 440px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(201,162,39,0.08),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 100px rgba(201,162,39,0.06);
  animation: sgwCardIn 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes sgwCardIn { from { opacity: 0; transform: scale(0.85) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.sgw-top-border {
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a227, #f0d060, #c9a227, transparent);
  border-radius: 0 0 2px 2px;
}
.sgw-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,162,39,0.1);
  border: 2px solid rgba(201,162,39,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 30px rgba(201,162,39,0.15);
  transition: 0.3s;
}
.sgw-icon-wrap.success { border-color: rgba(62,218,153,0.5); background: rgba(62,218,153,0.1); box-shadow: 0 0 30px rgba(62,218,153,0.2); }
.sgw-icon-wrap.error   { border-color: rgba(255,77,109,0.5); background: rgba(255,77,109,0.1); box-shadow: 0 0 30px rgba(255,77,109,0.2); }

.sgw-brand { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 10px; letter-spacing: 3px; color: rgba(201,162,39,0.7); font-family: 'Raleway',sans-serif; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.sgw-brand-dot { width: 6px; height: 6px; border-radius: 50%; background: #c9a227; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.sgw-title { font-family: 'Lora', serif; font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.sgw-subtitle { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-bottom: 22px; line-height: 1.5; }

.sgw-code-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 14px;
  box-shadow: inset 0 0 20px rgba(201,162,39,0.05), 0 0 24px rgba(201,162,39,0.08);
}
.sgw-code-label { font-size: 9px; letter-spacing: 3px; color: rgba(201,162,39,0.6); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.sgw-code-digits { display: flex; justify-content: center; gap: 10px; margin-bottom: 10px; }
.sgw-code-digit {
  font-family: 'Lora', serif; font-size: 36px; font-weight: 700; color: #c9a227;
  width: 52px; height: 58px; display: flex; align-items: center; justify-content: center;
  background: rgba(201,162,39,0.07); border: 1px solid rgba(201,162,39,0.2); border-radius: 10px;
  box-shadow: 0 0 12px rgba(201,162,39,0.1);
  text-shadow: 0 0 16px rgba(201,162,39,0.5);
}
.sgw-code-refresh { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sgw-pulse { width: 6px; height: 6px; border-radius: 50%; background: #3eda99; animation: pulse 1.2s infinite; display: inline-block; }

.sgw-progress-track { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin-bottom: 22px; }
.sgw-progress-bar { height: 100%; border-radius: 2px; box-shadow: 0 0 8px rgba(201,162,39,0.5); }

.sgw-inputs-row { display: flex; justify-content: center; gap: 12px; margin-bottom: 14px; }
.sgw-input {
  width: 56px; height: 64px; border-radius: 12px; text-align: center;
  font-family: 'Lora', serif; font-size: 28px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,0.04); border: 2px solid rgba(255,255,255,0.12);
  outline: none; transition: all 0.2s; caret-color: #c9a227;
}
.sgw-input:focus { border-color: #c9a227; background: rgba(201,162,39,0.07); box-shadow: 0 0 16px rgba(201,162,39,0.2); }
.sgw-input.filled { border-color: rgba(201,162,39,0.5); }
.sgw-input.err { border-color: #ff4d6d; background: rgba(255,77,109,0.08); animation: shake 0.4s; }
.sgw-input.ok { border-color: #3eda99; background: rgba(62,218,153,0.08); }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }

.sgw-msg { font-size: 13px; min-height: 20px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sgw-msg-ok  { color: #3eda99; }
.sgw-msg-err { color: #ff4d6d; }
.sgw-msg-hint { color: rgba(255,255,255,0.4); }
.sgw-msg-icon { font-weight: 700; font-size: 15px; }
.sgw-green-dot { width: 7px; height: 7px; border-radius: 50%; background: #3eda99; display: inline-block; animation: pulse 1.5s infinite; }

.sgw-btn-row { display: flex; gap: 12px; margin-bottom: 20px; }
.sgw-btn-secondary, .sgw-btn-primary {
  flex: 1; padding: 13px 0; border-radius: 10px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; border: none; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.sgw-btn-secondary { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1); }
.sgw-btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.sgw-btn-primary { background: linear-gradient(135deg, #c9a227, #f0d060); color: #010c1f; box-shadow: 0 4px 20px rgba(201,162,39,0.3); }
.sgw-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.4); }
.sgw-btn-secondary:disabled, .sgw-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.sgw-footer-row { display: flex; align-items: center; justify-content: space-between; }
.sgw-attempts { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 8px; }
.sgw-attempts-dots { display: flex; gap: 4px; }
.sgw-dot-attempt { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: 0.3s; }
.sgw-dot-attempt.active { background: #c9a227; box-shadow: 0 0 6px rgba(201,162,39,0.5); }
.sgw-security-badges { display: flex; gap: 8px; }
.sgw-badge { font-size: 11px; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 3px 8px; display: flex; gap: 4px; align-items: center; }

/* ══════════════════════════════════════════════════════════════
   QUICK PLANS (after hero)
══════════════════════════════════════════════════════════════ */
.wf-quick-plans {
  background: linear-gradient(180deg, #010c1f 0%, #01123c 50%, #010c1f 100%);
  padding: 80px 0 90px; position: relative; overflow: hidden;
}
.wf-quick-plans::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), transparent);
}
.wf-quick-plans-header { text-align: center; margin-bottom: 50px; }
.wf-quick-plans-title {
  font-family: 'Lora', serif; font-size: 36px; font-weight: 700; color: #fff;
  margin-bottom: 12px; line-height: 1.2;
}
.wf-quick-plans-sub { color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto; font-size: 15px; }

.wf-qp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .wf-qp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wf-qp-grid { grid-template-columns: 1fr; } }

.wf-qp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px 24px 28px;
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.wf-qp-card:hover {
  transform: translateY(-6px);
  border-color: var(--plan-color);
  box-shadow: 0 20px 60px var(--plan-glow);
}
.wf-qp-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--plan-color); opacity: 0.6;
}
.wf-qp-popular {
  border-color: var(--plan-color);
  box-shadow: 0 12px 48px var(--plan-glow);
  background: rgba(62,218,153,0.04);
}
.wf-qp-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--plan-color); color: #010c1f;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 20px;
}
.wf-qp-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 22px;
  border: 1px solid rgba(255,255,255,0.1);
}
.wf-qp-name { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 8px; font-family: 'Raleway', sans-serif; }
.wf-qp-roi { font-family: 'Lora', serif; font-size: 52px; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.wf-qp-period { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.wf-qp-divider { height: 1px; margin: 0 -4px 20px; opacity: 0.3; }
.wf-qp-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.wf-qp-features li { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.wf-qp-features li span { color: rgba(255,255,255,0.45); }
.wf-qp-features li b { color: #fff; }
.wf-qp-btn {
  display: block; width: 100%; padding: 13px; border-radius: 10px;
  color: #010c1f; font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 14px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer;
}
.wf-qp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); color: #010c1f; }

/* ══════════════════════════════════════════════════════════════
   WALLET CONNECT MODAL
══════════════════════════════════════════════════════════════ */
.wc-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,8,20,0.85); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: sgwFadeIn 0.2s ease;
}
.wc-card {
  background: #010c1f; border: 1px solid rgba(62,218,153,0.2);
  border-radius: 20px; padding: 36px 32px; width: 100%; max-width: 460px;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.7);
  animation: sgwCardIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.wc-close {
  position: absolute; top: 16px; right: 18px;
  background: rgba(255,255,255,0.06); border: none; color: rgba(255,255,255,0.6);
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.wc-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.wc-back { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 13px; cursor: pointer; padding: 0; margin-bottom: 16px; }
.wc-back:hover { color: #fff; }
.wc-icon-row { text-align: center; margin-bottom: 12px; }
.wc-logo-icon { display: inline-flex; width: 56px; height: 56px; border-radius: 50%; background: rgba(62,218,153,0.1); border: 1px solid rgba(62,218,153,0.25); align-items: center; justify-content: center; }
.wc-title { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: #fff; text-align: center; margin-bottom: 6px; }
.wc-subtitle { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; margin-bottom: 22px; line-height: 1.5; }
.wc-wallets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }
.wc-wallet-btn {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; cursor: pointer; transition: all 0.2s; text-align: left;
}
.wc-wallet-btn:hover { background: rgba(62,218,153,0.08); border-color: rgba(62,218,153,0.3); transform: translateY(-1px); }
.wc-wallet-icon { font-size: 22px; }
.wc-wallet-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.wc-disclaimer { font-size: 11.5px; color: rgba(255,255,255,0.3); text-align: center; }
.wc-disclaimer a { color: rgba(62,218,153,0.7); }
.wc-wallet-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.wc-selected-icon { font-size: 32px; }
.wc-phrase-box { margin-bottom: 14px; }
.wc-phrase-label { font-size: 12px; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.wc-phrase-input {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px; color: #fff; font-family: monospace; font-size: 14px;
  resize: none; outline: none; line-height: 1.6; box-sizing: border-box;
}
.wc-phrase-input:focus { border-color: rgba(62,218,153,0.4); background: rgba(62,218,153,0.03); }
.wc-phrase-input::placeholder { color: rgba(255,255,255,0.2); }
.wc-error { color: #ff4d6d; font-size: 12px; margin-top: 6px; }
.wc-security-note { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 20px; line-height: 1.5; }
.wc-connect-btn {
  width: 100%; padding: 14px; background: linear-gradient(135deg, #3eda99, #1dbfc8);
  color: #010c1f; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 15px;
  border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s;
}
.wc-connect-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(62,218,153,0.3); }
.wc-success { text-align: center; padding: 20px 0; }
.wc-success-icon { margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   WALLET SECTION (homepage)
══════════════════════════════════════════════════════════════ */
.wf-wallet-features { display: flex; flex-direction: column; gap: 10px; }
.wf-wallet-feat {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75);
  padding: 10px 14px; background: rgba(255,255,255,0.04); border-radius: 8px;
  border-left: 2px solid #3eda99;
}
.wf-wallet-feat i { color: #3eda99; width: 16px; }
.wf-btn-wallet {
  display: inline-flex; align-items: center; padding: 14px 28px;
  background: linear-gradient(135deg, #3eda99, #1dbfc8);
  color: #010c1f; font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 15px; border: none; border-radius: 10px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
}
.wf-btn-wallet:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(62,218,153,0.3); color: #010c1f; }
.wf-wallet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.wf-wallet-chip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 10px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  cursor: pointer; transition: all 0.2s; font-family: 'Raleway', sans-serif;
}
.wf-wallet-chip:hover { background: rgba(62,218,153,0.08); border-color: rgba(62,218,153,0.3); transform: translateY(-2px); }
.wf-wallet-chip-icon { font-size: 24px; }
.wf-wallet-chip-name { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 600; text-align: center; }

/* ══════════════════════════════════════════════════════════════
   LIVE CHAT WIDGET
══════════════════════════════════════════════════════════════ */
.wf-chat-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  width: 58px; height: 58px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, #062f6d, #3eda99);
  color: #fff; font-size: 22px; cursor: pointer;
  box-shadow: 0 8px 28px rgba(6,47,109,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wf-chat-btn:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(6,47,109,0.5); }
.wf-chat-pulse {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #ff4d6d; border: 2px solid #fff;
  animation: pulse 1.5s infinite;
}
.wf-chat-box {
  position: fixed; bottom: 98px; right: 28px; z-index: 7999;
  width: 320px; background: #fff; border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.2);
  overflow: hidden; animation: sgwCardIn 0.3s ease;
}
.wf-chat-header { background: linear-gradient(135deg, #062f6d, #1a396b); padding: 14px 16px; }
.wf-chat-agent { display: flex; align-items: center; gap: 10px; }
.wf-chat-agent img { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); }
.wf-chat-agent b { display: block; color: #fff; font-size: 14px; }
.wf-chat-agent span { font-size: 11px; color: rgba(255,255,255,0.65); }
.wf-chat-body { padding: 14px; min-height: 100px; max-height: 180px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.wf-chat-bubble { padding: 9px 12px; border-radius: 12px; font-size: 13px; max-width: 90%; line-height: 1.5; }
.wf-chat-bubble.agent { background: #f0f4f8; color: #333; align-self: flex-start; border-bottom-left-radius: 3px; }
.wf-chat-bubble.user { background: #062f6d; color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.wf-chat-input-row { display: flex; border-top: 1px solid #f0f0f0; }
.wf-chat-input { flex: 1; border: none; outline: none; padding: 12px 14px; font-size: 13px; font-family: 'Raleway', sans-serif; }
.wf-chat-send { background: none; border: none; padding: 0 14px; color: #062f6d; cursor: pointer; font-size: 16px; }
.wf-chat-send:hover { color: #3eda99; }

/* ══════════════════════════════════════════════════════════════
   EXTRA UTILITY
══════════════════════════════════════════════════════════════ */
.wf-btn-glass {
  display: inline-flex; align-items: center; padding: 13px 24px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 14px; text-decoration: none; transition: 0.2s;
}
.wf-btn-glass:hover { background: rgba(255,255,255,0.18); color: #fff; }
.wf-btn-glass-gold {
  display: inline-flex; align-items: center; padding: 13px 24px;
  background: rgba(201,162,39,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,39,0.4); border-radius: 6px;
  color: #c9a227; font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 14px; text-decoration: none; transition: 0.2s;
}
.wf-btn-glass-gold:hover { background: rgba(201,162,39,0.25); color: #f0d060; }
.wf-slide-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(62,218,153,0.15); border: 1px solid rgba(62,218,153,0.3); border-radius: 20px; padding: 5px 14px; font-size: 11px; letter-spacing: 2px; font-weight: 700; color: #3eda99; margin-bottom: 16px; text-transform: uppercase; }
.wf-slide-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #3eda99; animation: pulse 1.5s infinite; }
.wf-slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.wf-trust-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.wf-trust-chip { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 7px 16px; font-size: 13px; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 7px; }
.wf-trust-chip i { color: #3eda99; }
.wf-mini-stat { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 16px; }
.wf-mini-val { font-family: 'Lora', serif; font-size: 24px; font-weight: 700; color: #062f6d; }
.wf-mini-label { font-size: 12px; color: #718096; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.wf-testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.wf-stars { color: #c9a227; margin-bottom: 10px; }
.wf-security-card { padding: 24px 20px; }
.wf-product-link { text-decoration: none; display: block; }
.wf-product-link:hover .wf-product-icon { transform: scale(1.1); box-shadow: 0 0 24px rgba(62,218,153,0.3); }

/* Translate widget positioning */
#google_translate_element { display: flex; align-items: center; }

/* ══════════════════════════════════════════════════════════════
   LEADERSHIP SECTION
══════════════════════════════════════════════════════════════ */
.wf-leadership {
  background: linear-gradient(180deg, #010c1f 0%, #01123c 40%, #010c1f 100%);
  padding: 90px 0 80px; position: relative; overflow: hidden;
}
.wf-leadership-bg-deco {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.wf-leadership-header { text-align: center; }
.wf-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 992px) { .wf-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wf-team-grid { grid-template-columns: 1fr; } }

.wf-team-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.wf-team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.3);
  box-shadow: 0 24px 60px rgba(201,162,39,0.1);
}
.wf-team-img-wrap { position: relative; overflow: hidden; height: 240px; }
.wf-team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform 0.4s; }
.wf-team-card:hover .wf-team-img { transform: scale(1.05); }
.wf-team-tag {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, #c9a227, #f0d060);
  color: #010c1f; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 4px 10px; border-radius: 20px;
}
.wf-team-body { padding: 22px 22px 24px; }
.wf-team-name { font-family: 'Lora', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.wf-team-title { font-size: 12px; color: #3eda99; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.wf-team-bio { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 16px; }
.wf-team-credentials { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.wf-cred-badge {
  background: rgba(62,218,153,0.08); border: 1px solid rgba(62,218,153,0.2);
  color: rgba(62,218,153,0.8); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 9px; border-radius: 4px;
}
.wf-team-linkedin {
  display: inline-flex; align-items: center; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 12px;
}
.wf-team-linkedin:hover { color: #3eda99; border-color: rgba(62,218,153,0.3); }

/* ══════════════════════════════════════════════════════════════
   AWARDS SECTION
══════════════════════════════════════════════════════════════ */
.wf-awards-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
@media (max-width: 1024px) { .wf-awards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .wf-awards-grid { grid-template-columns: repeat(2, 1fr); } }

.wf-award-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 22px 16px; text-align: center;
  transition: all 0.25s;
}
.wf-award-card:hover { border-color: rgba(201,162,39,0.35); background: rgba(201,162,39,0.05); transform: translateY(-3px); }
.wf-award-icon { font-size: 26px; color: #c9a227; margin-bottom: 10px; }
.wf-award-label { font-size: 12px; color: #fff; font-weight: 700; line-height: 1.4; margin-bottom: 5px; }
.wf-award-body { font-size: 11px; color: rgba(255,255,255,0.35); }

.wf-cert-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 20px 24px; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,162,39,0.15); border-radius: 12px; }
.wf-cert-item { display: flex; align-items: center; }
.wf-cert-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.06));
  border: 1px solid rgba(201,162,39,0.35); color: #c9a227;
  font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 8px;
  text-decoration: none; transition: all 0.2s;
}
.wf-cert-btn:hover { background: rgba(201,162,39,0.2); color: #f0d060; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════════════
   VIDEO SECTION (with local background video)
══════════════════════════════════════════════════════════════ */
.wf-video-bg-section {
  position: relative; min-height: 520px; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 80px 0;
}
.wf-video-bg-video {
  position: absolute; inset: 0; z-index: 0;
}
.wf-video-bg-video video { width: 100%; height: 100%; object-fit: cover; }
.wf-video-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(62,218,153,0.3);
  border-radius: 20px; padding: 6px 16px; font-size: 12px; color: rgba(255,255,255,0.8);
  margin-bottom: 18px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.wf-video-stats {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 0; overflow: hidden; margin: 28px auto; max-width: 600px;
}
.wf-video-stat {
  flex: 1; min-width: 120px; padding: 16px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.wf-video-stat:last-child { border-right: none; }
.wf-video-stat-val { font-family: 'Lora', serif; font-size: 22px; font-weight: 700; color: #c9a227; }
.wf-video-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* Local video player (opportunity section) */
.wf-local-video-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(62,218,153,0.2);
}
.wf-local-video { width: 100%; display: block; max-height: 320px; object-fit: cover; }
