/*
Theme Name:  FXVS Pro
Theme URI:   https://fxvs.com
Author:      FXVS
Author URI:  https://fxvs.com
Description: Professional Forex Signals theme for FXVS — clean white design with red and blue accents.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: fxvs
*/

/* ============================================
   FXVS — Global Theme Styles
   Edit colors here to update the whole site.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Outfit:wght@300;400;500;600&display=swap');

/* ── COLORS ── */
:root {
  --red:        #D42B2B;
  --red2:       #FF3B3B;
  --red-soft:   #FEF2F2;
  --blue:       #1737C8;
  --blue2:      #2D52FF;
  --blue-soft:  #EEF1FF;
  --green:      #0E9B5A;
  --green-soft: #EDFAF4;
  --ink:        #0D0F14;
  --ink2:       #2A2D38;
  --body:       #4A5068;
  --muted:      #8B90A8;
  --line:       #E4E7F0;
  --line2:      #F0F2F8;
  --white:      #FFFFFF;
  --off:        #F8F9FC;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
}
.section-h {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 1.25rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.section-h em { font-style: italic; color: var(--red); }
.section-sub {
  font-size: 16px;
  color: var(--body);
  line-height: 1.75;
  font-weight: 300;
  max-width: 480px;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  transition: .2s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2px;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); color: #fff; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 4px;
  border-bottom: 1.5px solid var(--ink);
  letter-spacing: 0.2px;
  transition: .2s;
}
.btn-secondary:hover { color: var(--blue); border-color: var(--blue); }
.btn-secondary svg { transition: .2s; }
.btn-secondary:hover svg { transform: translateX(3px); }

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,155,90,0.4); }
  60%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(14,155,90,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav-logo sup {
  font-size: 11px;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  vertical-align: super;
  margin-left: 1px;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  transition: .2s;
  letter-spacing: 0.1px;
}
.nav-links a:hover,
.nav-links .current-menu-item a { color: var(--ink); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-login {
  font-size: 14px;
  color: var(--body);
  font-weight: 400;
  padding: 8px 16px;
  transition: .2s;
}
.nav-login:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 8px;
  letter-spacing: 0.2px;
  transition: .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--ink2); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--white); }
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--ink);
  display: block;
  margin-bottom: .75rem;
}
.footer-logo-mark sup {
  font-size: 11px;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  vertical-align: super;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 220px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: .2s;
}
.social-btn:hover { border-color: var(--ink); background: var(--ink); }
.social-btn:hover svg { stroke: #fff; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul a { font-size: 14px; color: var(--muted); font-weight: 300; transition: .2s; }
.footer-col ul a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-disc { font-size: 11px; color: var(--line); max-width: 500px; text-align: right; line-height: 1.5; }

/* ============================================
   HOMEPAGE — HERO
   ============================================ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 2rem;
  background: var(--off);
}
.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 1.8s ease infinite;
}
.hero-tag span { font-size: 12px; color: var(--body); font-weight: 500; letter-spacing: 0.3px; }
.hero-tag strong { color: var(--green); font-weight: 600; }
.hero h1 { font-size: 62px; font-weight: 900; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--red); }
.hero-sub { font-size: 17px; color: var(--body); line-height: 1.75; max-width: 460px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-sub strong { color: var(--ink); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-bottom: 3rem; flex-wrap: wrap; }
.trust-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-faces { display: flex; }
.tface { width: 32px; height: 32px; border-radius: 50%; border: 2.5px solid var(--white); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: #fff; margin-left: -9px; flex-shrink: 0; }
.tface:first-child { margin-left: 0; }
.tf1{background:#1737C8}.tf2{background:#D42B2B}.tf3{background:#0D0F14}.tf4{background:#0E9B5A}.tf5{background:#6B4FBB}
.trust-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.trust-text strong { color: var(--ink); font-weight: 500; }
.trust-divider { width: 1px; height: 32px; background: var(--line); }
.trust-stat-n { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1; }
.trust-stat-l { font-size: 11px; color: var(--muted); margin-top: 2px; letter-spacing: 0.3px; }

/* Signal Board */
.hero-board { background: var(--off); border: 1px solid var(--line); border-radius: 20px; padding: 1.5rem; position: relative; overflow: hidden; }
.hero-board::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--red)); }
.board-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.board-title { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-family: 'Outfit', sans-serif; }
.board-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--green); font-weight: 600; }
.board-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
.ticker-row { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); gap: 12px; }
.ticker-row:last-of-type { border-bottom: none; }
.ticker-pair { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 14px; color: var(--ink); width: 72px; flex-shrink: 0; }
.ticker-dir { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; padding: 3px 9px; border-radius: 4px; flex-shrink: 0; font-family: 'Outfit', sans-serif; }
.dir-buy { background: var(--blue-soft); color: var(--blue); }
.dir-sell { background: var(--red-soft); color: var(--red); }
.ticker-levels { flex: 1; display: flex; gap: 12px; }
.tlevel { font-size: 11px; color: var(--muted); }
.tlevel span { display: block; font-size: 12px; color: var(--ink); font-weight: 500; margin-top: 1px; }
.ticker-result { margin-left: auto; text-align: right; flex-shrink: 0; }
.result-pips { font-size: 13px; font-weight: 700; }
.result-pips.pos { color: var(--green); }
.result-pips.neg { color: var(--red); }
.result-pips.live { color: var(--blue); }
.result-lbl { font-size: 10px; color: var(--muted); margin-top: 1px; }
.board-footer { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.board-month { font-size: 12px; color: var(--muted); }
.board-month strong { color: var(--green); font-weight: 600; font-size: 14px; }
.board-cta { font-size: 12px; color: var(--blue); font-weight: 500; }
.board-cta:hover { text-decoration: underline; }

/* Pairs Strip */
.logos-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.5rem 2.5rem; background: var(--off); }
.logos-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.logos-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; white-space: nowrap; font-family: 'Outfit', sans-serif; }
.logos-list { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.logo-item { font-family: 'Playfair Display', serif; font-size: 15px; color: #000; font-weight: 700; letter-spacing: 1px; }

/* How It Works */
.how { max-width: 1200px; margin: 0 auto; padding: 7rem 2.5rem; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-bottom: 50px;
 }
.step { background: var(--white); padding: 2.5rem 2rem; position: relative; }
.step-num { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--line2); line-height: 1; margin-bottom: 1.5rem; letter-spacing: -2px; }
.step-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.step-icon.red { background: var(--red-soft); }
.step-icon.blue { background: var(--blue-soft); }
.step-icon.green { background: var(--green-soft); }
.step-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: .75rem; line-height: 1.2; }
.step-desc { font-size: 14px; color: var(--body); line-height: 1.7; font-weight: 300; }
.step-arrow { position: absolute; top: 2.5rem; right: -14px; width: 28px; height: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.how-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 2px; }
.how-card { background: var(--white); padding: 2.5rem 2rem; }
.how-card.dark { background: var(--ink); }
.how-card-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 1rem; font-family: 'Outfit', sans-serif; }
.how-card.dark .how-card-label { color: rgba(255,255,255,0.35); }
.how-card-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: .75rem; line-height: 1.2; }
.how-card.dark .how-card-title { color: #fff; }
.how-card-desc { font-size: 14px; color: var(--body); line-height: 1.7; font-weight: 300; }
.how-card.dark .how-card-desc { color: rgba(255,255,255,0.5); }
.how-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 13px; font-weight: 500; color: var(--blue); }
.how-card.dark .how-card-link { color: rgba(255,255,255,0.6); }
.how-card-link:hover { gap: 10px; }

/* Testimonials */
.testi-section { background: var(--off); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testi-inner { max-width: 1200px; margin: 0 auto; padding: 7rem 2.5rem; }
.testi-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 4rem; gap: 2rem; flex-wrap: wrap; }
.testi-header-right { font-size: 14px; color: var(--body); max-width: 280px; line-height: 1.6; font-weight: 300; text-align: right; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 2rem; position: relative; transition: .3s; }
.tcard:hover { border-color: #cdd3e8; transform: translateY(-2px); }
.tcard.featured { background: var(--ink); border-color: var(--ink); }
.tcard-quote { font-size: 36px; line-height: 1; color: var(--line); font-family: 'Playfair Display', serif; margin-bottom: .75rem; font-weight: 900; }
.tcard.featured .tcard-quote { color: rgba(255,255,255,0.12); }
.tcard-text { font-size: 14px; color: var(--body); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; font-style: italic; }
.tcard.featured .tcard-text { color: rgba(255,255,255,0.65); }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 13px; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.tcard.featured .tcard-name { color: #fff; }
.tcard-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tcard.featured .tcard-loc { color: rgba(255,255,255,0.35); }
.tcard-stars { position: absolute; top: 2rem; right: 2rem; font-size: 12px; }
.star-gold { color: #F5A623; }
.testi-bottom { margin-top: 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.testi-rating { display: flex; align-items: center; gap: 12px; }
.rating-num { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: var(--ink); line-height: 1; }
.rating-stars { display: flex; gap: 2px; }
.rating-stars span { font-size: 18px; color: #F5A623; }
.rating-count { font-size: 13px; color: var(--muted); margin-top: 4px; }
.testi-platforms { display: flex; gap: 2rem; align-items: center; }
.platform-item { text-align: center; }
.platform-name { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.platform-score { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--ink); }

/* CTA Banner */
.cta-section { max-width: 1200px; margin: 0 auto; padding: 5rem 2.5rem; }
.cta-box { background: var(--ink); border-radius: 24px; padding: 5rem 4rem; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(212,43,43,0.15) 0%, transparent 70%); }
.cta-box::after { content: ''; position: absolute; bottom: -80px; left: 20%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(23,55,200,0.1) 0%, transparent 70%); }
.cta-eyebrow { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1rem; }
.cta-title em { font-style: italic; color: rgba(212,43,43,0.85); }
.cta-desc { font-size: 15px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.6; max-width: 380px; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; position: relative; z-index: 1; flex-shrink: 0; }
.btn-cta-main { display: inline-flex; align-items: center; gap: 9px; background: var(--red); color: #fff; font-size: 14px; font-weight: 600; padding: 16px 30px; border-radius: 10px; transition: .2s; white-space: nowrap; }
.btn-cta-main:hover { background: var(--red2); color: #fff; }
.btn-cta-ghost { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 400; transition: .2s; }
.btn-cta-ghost:hover { color: rgba(255,255,255,0.75); }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.2); }
