/* =========================
   SECTION: CSS Variables
========================= */
:root{
  --bg-0:#05080d;
  --bg-1:#070f18;
  --bg-2:#0b1622;

  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.10);

  --brand:#2e8eff;
  --brand-2:#00d4ff;
  --accent:#ffb84d;
  --title:#aee8ff;

  --text:#ffffff;
  --text-dim: rgba(255,255,255,0.78);

  --radius-lg:20px;
  --radius-md:16px;
  --radius-sm:12px;

  --shadow-soft: 0 24px 70px rgba(0,0,0,0.55);
  --shadow-hover: 0 30px 90px rgba(0,0,0,0.65);

  --container: 1200px;

  /* spacing scale */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 18px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 44px;
  --s-8: 64px;

  --grad-brand: linear-gradient(180deg, rgba(30,140,255,0.98), rgba(0,110,240,0.98));
  --grad-border: linear-gradient(90deg, rgba(46,142,255,0.45), rgba(0,212,255,0.20), rgba(255,184,77,0.18));
}

/* =========================
   SECTION: Reset
========================= */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.5;

  /* SECTION: Uniform Aurora Background (no per-section backgrounds) */
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(46,142,255,0.35), transparent 62%),
    radial-gradient(700px 420px at 76% 14%, rgba(0,212,255,0.20), transparent 60%),
    radial-gradient(650px 420px at 22% 6%, rgba(120,80,255,0.14), transparent 60%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

/* SECTION: Vignette overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 12%, rgba(0,0,0,0.05) 10%, rgba(0,0,0,0.70) 72%, rgba(0,0,0,0.85) 100%);
  opacity: .9;
  z-index: -1;
}

/* SECTION: Grain overlay (data-uri SVG noise) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =========================
   SECTION: Accessibility
========================= */
.skip-link{
  position:absolute; left:-9999px; top:10px;
  background: var(--brand);
  color:#fff; padding:10px 14px;
  border-radius: var(--radius-sm);
  z-index:9999; text-decoration:none; font-weight:800;
}
.skip-link:focus{ left: 10px; }

.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* =========================
   SECTION: Layout utilities
========================= */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.anchor-spacer{ height: 1px; }

/* =========================
   SECTION: Type polish
========================= */
h1,h2,h3,h4{
  letter-spacing: -0.3px;
}
p{
  color: rgba(255,255,255,0.80);
}

/* =========================
   SECTION: Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  text-decoration:none;
  font-weight: 900;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--grad-brand);
  color:#fff;
  box-shadow: 0 18px 36px rgba(0,120,255,0.22);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-primary:hover{ filter: brightness(1.06); }
.btn-outline{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.45);
  color:#fff;
}
.btn-outline:hover{ filter: brightness(1.08); }
.btn-small{ padding: 8px 16px; font-size: 14px; }

/* =========================
   SECTION: Navbar
========================= */
.navbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar__inner{
  max-width: calc(var(--container) + 120px);
  margin: 0 auto;
  padding: 14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.logo{ display:inline-flex; align-items:center; text-decoration:none; color:inherit; }
.logo-placeholder{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 6px 10px;
}
.logo-img{ width: 190px; height: 64px; object-fit: contain; display:block; }

.nav-links{ display:flex; align-items:center; gap: 18px; }
.nav-links a{
  text-decoration:none;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
  font-size: 14px;
  opacity: .92;
  transition: opacity .15s ease, transform .15s ease;
}
.nav-links a:hover{ opacity: 1; transform: translateY(-1px); }

.nav-actions{ display:flex; align-items:center; gap: 14px; }
.login{
  text-decoration:none;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
  font-size: 14px;
  opacity: .9;
}
.login:hover{ opacity: 1; }

.nav-toggle{
  display:none;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  cursor:pointer;
}
.nav-toggle__bar{
  display:block;
  width: 18px; height: 2px;
  margin: 4px auto;
  background: rgba(255,255,255,0.9);
}

/* =========================
   SECTION: Section spacing (uniform)
========================= */
.hero,
.quantlane-section,
.results-section,
.how-section,
.vision-section,
.power-section,
.pricing-matrix,
.faq-section{
  padding: 92px 0;
}

/* =========================
   SECTION: Hero
========================= */
.hero{ padding-top: 110px; padding-bottom: 70px; }
.hero__container{ text-align:center; }

.hero__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  opacity: .95;
  margin-bottom: 26px;
  font-weight: 900;
  font-size: 13px;
}

.hero__title{
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.03;
  margin-bottom: 16px;
  text-shadow: 0 20px 55px rgba(0,0,0,0.50);
}
.hero__subtitle{
  max-width: 860px;
  margin: 0 auto 28px auto;
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.75;
}
.hero__cta{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Hero highlights */
.hero-highlights{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini-card{
  display:flex;
  gap: 12px;
  text-align:left;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.mini-ic{
  width: 40px; height: 40px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 14px;
  background: rgba(46,142,255,0.18);
  border: 1px solid rgba(46,142,255,0.25);
}
.mini-title{ font-weight: 1000; margin-bottom: 2px; }
.mini-text{ color: rgba(255,255,255,0.74); font-size: 13px; }

/* =========================
   SECTION: Cards base (reusable)
========================= */
.quantlane-main,
.feature-card,
.side-card,
.step-card,
.why-block,
.power-banner,
.feature-box,
.faq-item,
.faq-cta-card,
.site-footer,
.pricing-topbar,
.plan-card{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 24px 70px rgba(0,0,0,0.40);
  backdrop-filter: blur(10px);
}

/* =========================
   SECTION: Quantlane
========================= */
.quantlane-container{ text-align:center; }
.quantlane-main{
  margin: 0 auto 44px auto;
  max-width: 900px;
  padding: 36px 26px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.quantlane-main::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(700px 220px at 50% 0%, rgba(46,142,255,0.22), transparent 60%);
  pointer-events:none;
}
.quantlane-main h2{ font-size: 28px; margin-bottom: 12px; position: relative; }
.quantlane-main p{ line-height: 1.75; position: relative; }

.quantlane-features{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card{
  padding: 22px;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(260px 140px at 20% 10%, rgba(0,212,255,0.12), transparent 60%);
  pointer-events:none;
}
.feature-card:hover{
  transform: translateY(-6px);
  border-color: rgba(46,142,255,0.28);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55);
}
.icon-circle{
  width: 56px; height: 56px;
  margin: 0 auto 12px auto;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(46,142,255,0.95), rgba(0,212,255,0.85));
  box-shadow: 0 18px 50px rgba(0,120,255,0.25);
}
.feature-card h3{ margin-bottom: 8px; }
.feature-card p{ font-size: 14px; }

/* =========================
   SECTION: Results
========================= */
.results-container{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}
.results-left h2{
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--title);
  margin-bottom: 18px;
}
.results-left p{ margin-bottom: 14px; line-height: 1.75; }
.highlight-text{ margin-top: 14px; font-weight: 1000; color: var(--accent); }
.results-cta{ margin-top: 18px; display:flex; gap: 12px; flex-wrap: wrap; }

.results-right{ display:flex; flex-direction:column; gap: 14px; }
.side-card{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 16px;
  border-radius: 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.side-card:hover{ transform: translateX(6px); border-color: rgba(46,142,255,0.22); }
.card-icon{
  width: 46px; height: 46px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(46,142,255,0.18);
  border: 1px solid rgba(46,142,255,0.25);
}

/* =========================
   SECTION: How It Works
========================= */
.how-header{
  text-align:center;
  max-width: 860px;
  margin: 0 auto 30px auto;
}
.how-header h2{
  color: var(--title);
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 10px;
  text-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
.how-header p{ line-height:1.75; }

.how-steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card{
  text-align:center;
  padding: 22px;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.step-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(260px 160px at 50% 0%, rgba(46,142,255,0.18), transparent 65%);
  pointer-events:none;
}
.step-card:hover{
  transform: translateY(-6px);
  border-color: rgba(46,142,255,0.22);
  box-shadow: 0 34px 90px rgba(0,0,0,0.55);
}
.step-icon{
  width: 56px; height: 56px;
  margin: 0 auto 12px auto;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(46,142,255,0.18);
  border: 1px solid rgba(46,142,255,0.25);
}
.step-card h3{ color: var(--accent); margin-bottom: 10px; }
.step-card p{ font-size: 14px; line-height:1.75; }

/* =========================
   SECTION: Vision
========================= */
.vision-container{ max-width: 920px; text-align:center; }
.vision-header h2{
  color: var(--title);
  font-size: clamp(30px, 4.2vw, 48px);
  margin-bottom: 18px;
  line-height: 1.2;
  text-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
.vision-text p{ margin-bottom: 14px; line-height: 1.85; }

.why-block{
  margin-top: 26px;
  padding: 22px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.why-block::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(560px 220px at 50% 0%, rgba(255,184,77,0.14), transparent 60%);
  pointer-events:none;
}
.why-block h3{ color: var(--accent); margin-bottom: 8px; position:relative; }
.why-block p{ position:relative; }

/* =========================
   SECTION: Power Banner
========================= */
.power-banner{
  position:relative;
  border-radius: 20px;
  overflow:hidden;
  min-height: 340px;
  background: rgba(255,255,255,0.03);
}

/* =========================
   SECTION: Power Banner (Background image)
========================= */
.power-image{
  position: absolute;
  inset: 0;
  background-image: url("./assets/banner_plataform.png");
  background-size: cover;
  background-position: 70% 30%;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.08) brightness(0.95);
  transform: scale(1.02);
}

.power-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.52) 42%,
      rgba(0,0,0,0.18) 75%,
      rgba(0,0,0,0.08) 100%
    ),
    radial-gradient(1200px 400px at 30% 35%, rgba(46,142,255,0.16), transparent 65%),
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(0,0,0,0.65) 100%);
}

.power-content{
  position:relative;
  z-index:2;
  padding: 60px;
  max-width: 640px;
}
.power-content h2{
  font-size: clamp(30px, 4.6vw, 52px);
  margin-bottom: 8px;
  text-shadow: 0 18px 45px rgba(0,0,0,0.55);
}
.power-content p{ margin-bottom: 18px; }
.power-buttons{ display:flex; gap: 12px; flex-wrap:wrap; }

.power-features{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-box{
  padding: 16px;
  border-radius: 16px;
  position: relative;
  overflow:hidden;
}
.feature-box::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(240px 120px at 30% 0%, rgba(46,142,255,0.14), transparent 70%);
  pointer-events:none;
}
.feature-box span{ color: rgba(255,255,255,0.72); font-size: 13px; position:relative; }
.feature-box h4{ position:relative; }

/* =========================
   SECTION: Pricing Matrix
========================= */
.pricing-matrix{
  padding: 110px 20px;
  background: transparent;
}

/* =========================
   SECTION: FAQ
========================= */
.faq-section{
  padding: 120px 20px;
  background: transparent;
}
.faq-container{ max-width: 1200px; margin: 0 auto; }
.faq-header{ text-align:center; max-width: 820px; margin: 0 auto 60px auto; }
.faq-header h2{
  font-size: clamp(30px, 4vw, 42px);
  color: var(--title);
  margin-bottom: 16px;
  text-shadow: 0 18px 45px rgba(0,0,0,0.45);
}
.faq-header p{ opacity: 0.85; line-height: 1.7; }

.faq-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.faq-item{
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform .2s ease;
}
.faq-item:hover{
  border-color: rgba(46, 142, 255, 0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}
.faq-question{ margin: 0; }
.faq-trigger{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 18px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 900;
  font-size: 15px;
}
.faq-trigger:focus-visible{
  outline: 2px solid rgba(46,142,255,0.7);
  outline-offset: 2px;
  border-radius: 12px;
}
.faq-icon{
  width: 32px; height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 18px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.faq-trigger[aria-expanded="true"] .faq-icon{ transform: rotate(45deg); }
.faq-panel{ padding: 0 18px 18px 18px; }
.faq-panel p{ opacity: 0.85; line-height: 1.7; font-size: 14px; }

.faq-cta{ margin-top: 28px; }
.faq-cta-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-radius: 18px;
}
.faq-cta-card h3{ margin-bottom: 6px; color: var(--accent); }
.faq-cta-card p{ opacity: 0.88; }
.faq-cta-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* =========================
   SECTION: Footer
========================= */
.site-footer{
  background: rgba(0,0,0,0.20);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 70px 20px 40px 20px;
}
.footer-container{ max-width: 1200px; margin: 0 auto; }
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo{ display: inline-flex; text-decoration: none; }
.footer-logo-img{ width: 180px; height: 64px; object-fit: contain; display: block; }
.footer-title{ font-size: 14px; letter-spacing: 0.2px; margin-bottom: 14px; opacity: 0.95; }
.footer-text{ opacity: 0.8; line-height: 1.7; font-size: 14px; margin-top: 12px; }

.footer-links{
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.footer-links a{
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover{ opacity: 1; transform: translateX(2px); }

.footer-social{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.social-pill{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 900;
  font-size: 12px;
}

.footer-newsletter .newsletter-form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 12px;
}
.newsletter-form input{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  padding: 0 12px;
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,0.55); }

.footer-disclaimer{
  margin-top: 10px;
  opacity: 0.65;
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.footer-legal{ font-size: 13px; opacity: 0.8; }

.footer-legal-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal-links a{
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  opacity: 0.8;
}
.footer-legal-links a:hover{ opacity: 1; }

.back-to-top{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.footer-risk{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.78;
}

/* =========================
   SECTION: Responsive
========================= */
@media (max-width: 900px){
  .nav-toggle{ display:inline-block; }
  .nav-links{
    position:absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display:none;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0,0,0,0.85);
    border: 1px solid rgba(255,255,255,0.10);
  }
  .nav-links.is-open{ display:flex; }

  .hero-highlights{ grid-template-columns: 1fr; }
  .quantlane-features{ grid-template-columns: 1fr; }
  .results-container{ grid-template-columns: 1fr; }
  .how-steps{ grid-template-columns: 1fr; }
  .power-features{ grid-template-columns: 1fr; }
  .power-content{ padding: 36px; }

  .faq-grid{ grid-template-columns: 1fr; }
  .faq-cta-card{ flex-direction: column; align-items: flex-start; }

  .footer-top{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .footer-newsletter .newsletter-form{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .navbar__inner{ padding: 12px 14px; }
  .logo-img{ width: 160px; height: 56px; }
}

/* =========================
   SECTION: Pricing Matrix
========================= */
.pricing-matrix{ padding: 110px 20px; background: transparent; }

.pricing-topbar{
  max-width: 1280px;
  margin: 0 auto 22px auto;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}

.currency-tabs{ display:flex; align-items:center; gap:10px; }
.currency-tab{
  display:inline-flex; align-items:center; gap:10px;
  height:42px; padding:0 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 900; font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.currency-tab:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,0.30); }
.currency-tab.active{ background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.38); }
.flag{ font-size: 16px; }

.pricing-toggles{ display:inline-flex; align-items:center; gap:16px; flex-wrap:wrap; }
.toggle{ display:inline-flex; align-items:center; gap:10px; color: rgba(255,255,255,0.92); font-weight:900; font-size:13px; user-select:none; }
.toggle input{ position:absolute; opacity:0; pointer-events:none; }
.toggle-ui{
  width:46px; height:26px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  position:relative;
}
.toggle-ui::after{
  content:"";
  width:20px; height:20px;
  border-radius:999px;
  background: rgba(255,255,255,0.92);
  position:absolute; top:50%; left:4px;
  transform: translateY(-50%);
  transition:left .2s ease;
}
.toggle input:checked + .toggle-ui{
  background: rgba(46,142,255,0.95);
  border-color: rgba(46,142,255,0.95);
}
.toggle input:checked + .toggle-ui::after{ left:22px; }

.pricing-wrap{ max-width:1280px; margin:0 auto; }
.pricing-table{ display:grid; grid-template-columns:260px 1fr; gap:18px; }

/* Features column */
.pricing-features{ padding:12px 0; }
.pricing-features__spacer{ height:106px; }
.features-list{ list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.feature-row{
  display:flex; align-items:center; gap:12px;
  color: rgba(255,255,255,0.88);
  font-weight:900; font-size:14px;
  position:relative;
}
.feature-row::after{
  content:"";
  position:absolute; left:42px; right:0; bottom:-7px;
  border-bottom:1px dashed rgba(255,255,255,0.14);
  opacity:.8;
}
.feature-ic{
  width:28px; height:28px;
  border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  flex:0 0 auto;
}
.feature-ic .ic{ width:18px; height:18px; display:block; color: rgba(255,255,255,0.85); }
.one-time-fee{
  margin-top:18px; padding-top:16px;
  border-top:1px dashed rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.70);
  font-weight:800; font-size:13px;
}

/* Cards grid */
.pricing-cards{ display:grid; grid-template-columns:repeat(5, minmax(180px, 1fr)); gap:16px; }

.plan-card{
  position:relative;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding:14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.60), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.plan-card:hover{ border-color: rgba(255,255,255,0.14); }

.plan-card.featured{
  border-color: rgba(255,140,0,0.28);
  background:
    radial-gradient(520px 280px at 50% -10%, rgba(255,140,0,0.32), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow:
    0 34px 90px rgba(0,0,0,0.65),
    0 0 80px rgba(255,140,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Badges */
.plan-badges{ position:absolute; top:8px; left:8px; display:flex; gap:10px; align-items:center; }
.badge{
  display:inline-flex; align-items:center;
  height:26px; padding:0 10px;
  border-radius:999px;
  font-weight:1000; font-size:12px;
  border:1px solid rgba(255,255,255,0.12);
}
.badge-best{ background: rgba(255,130,0,0.98); color:#111; }
.badge-discount{
  background: rgba(255,130,0,0.18);
  border-color: rgba(255,130,0,0.45);
  color: rgba(255,200,61,0.98);
  transform: rotate(10deg);
  box-shadow: 0 10px 25px rgba(255,120,0,0.35), 0 0 40px rgba(255,120,0,0.18);
}

/* Header */
.plan-head{ padding-top:22px; text-align:center; }
.plan-head__label{ color: rgba(255,255,255,0.58); font-weight:900; font-size:13px; margin-bottom:6px; letter-spacing:.2px; }
.plan-head__value{ font-size:30px; font-weight:1000; letter-spacing:-0.2px; color: rgba(255,255,255,0.96); }

/* Phases */
.plan-phases{
  margin-top:14px; padding:12px 10px;
  border-radius:14px;
  background: rgba(0,0,0,0.22);
  border:1px solid rgba(255,255,255,0.07);
  display:grid; gap:8px;
}
.phase-line{ display:flex; justify-content:space-between; font-weight:1000; font-size:12px; color: rgba(255,255,255,0.80); }
.phase-name{ opacity:.7; letter-spacing:.25px; }
.pricing-matrix.phases-off .plan-phases{ display:none; }

/* Metrics */
.plan-metrics{ list-style:none; padding:0; margin:18px 0 0 0; display:grid; gap:14px; }
.metric{ height:28px; display:flex; align-items:center; justify-content:center; }
.metric-val{ font-weight:1000; color: rgba(255,255,255,0.86); font-size:14px; }

.tag{
  display:inline-flex; align-items:center;
  height:18px; padding:0 8px;
  border-radius:999px;
  font-size:11px; font-weight:1000;
  margin-left:8px;
}
.tag-green{ background: rgba(0,255,140,0.14); color: rgba(0,255,140,0.95); border:1px solid rgba(0,255,140,0.25); }

/* Price */
.plan-divider{ margin:18px 0 14px 0; border-top:1px solid rgba(255,255,255,0.12); }
.plan-price{ text-align:center; min-height:44px; }
.price-now{ font-size:20px; font-weight:1000; color: rgba(255,255,255,0.92); }
.plan-card.featured .price-now{ color: rgba(255,140,0,0.96); }
.price-old{ margin-top:6px; font-size:13px; color: rgba(255,255,255,0.55); text-decoration: line-through; }

/* CTA */
.plan-cta{
  width:100%; height:48px; margin-top:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(30,140,255,0.98), rgba(0,110,240,0.98));
  color:#fff; font-weight:1000;
  cursor:pointer;
  box-shadow: 0 18px 36px rgba(0,120,255,0.22), inset 0 0 0 1px rgba(255,255,255,0.08);
}
.plan-cta:hover{ filter: brightness(1.05); }

/* Avg Reward inside card */
.avg-reward{
  margin-top:16px; padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
  display:grid; justify-items:center; gap:6px;
}
.avg-pill{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:84px; height:22px; padding:0 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.12);
  font-weight:1000; font-size:12px;
  color: rgba(255,255,255,0.92);
}
.avg-label{ font-size:12px; color: rgba(255,255,255,0.68); font-weight:900; }

.pricing-matrix.numbers-on .metric-val{ color: rgba(255,255,255,0.92); }

/* Responsive */
@media (max-width:1100px){
  .pricing-table{ grid-template-columns:1fr; }
  .pricing-features__spacer{ display:none; }
  .features-list{ grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
  .feature-row::after{ left:42px; right:8px; }
  .pricing-cards{ grid-template-columns:repeat(2, minmax(220px, 1fr)); }
}
@media (max-width:680px){
  .pricing-topbar{ flex-direction:column; align-items:flex-start; }
  .pricing-cards{ grid-template-columns:1fr; }
  .plan-head__value{ font-size:28px; }
}

/* =========================
   SECTION: Language Switcher
========================= */
.lang-switch{
  position: relative;
}

.lang-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  cursor: pointer;
}

.lang-caret{ opacity: .8; }

.lang-menu{
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 180px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  padding: 8px;
  display: none;
  z-index: 60;
}

.lang-switch[data-open="true"] .lang-menu{
  display: grid;
  gap: 6px;
}

.lang-item{
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  padding: 0 10px;
}

.lang-item:hover{
  border-color: rgba(46,142,255,0.35);
}

/* =========================
   SECTION: Pricing Header (FTMO-like spotlight)
========================= */
.pricing-header{
  padding: 78px 0 18px 0;
  background: transparent;
}

.pricing-header__inner{
  text-align: center;
  padding: 38px 18px 14px 18px;
  position: relative;
  isolation: isolate;
}

.pricing-header__inner::before{
  content:"";
  position:absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: min(720px, 88%);
  height: 92px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(0,212,255,0.95) 0%, rgba(46,142,255,0.78) 55%, rgba(0,212,255,0.00) 100%);
  box-shadow:
    0 22px 70px rgba(0,212,255,0.18),
    0 18px 60px rgba(46,142,255,0.16);
  filter: blur(0.2px);
  opacity: 0.92;
  z-index: -2;
}

.pricing-header__inner::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: min(900px, 96%);
  height: 140px;
  z-index: -3;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(0,212,255,0.00) 0%, rgba(0,212,255,0.16) 46%, rgba(0,212,255,0.00) 72%),
    linear-gradient(225deg, rgba(0,212,255,0.00) 0%, rgba(46,142,255,0.16) 46%, rgba(0,212,255,0.00) 72%),
    radial-gradient(closest-side at 50% 10%, rgba(46,142,255,0.22), transparent 70%);
  clip-path: polygon(18% 0%, 82% 0%, 98% 100%, 2% 100%);
  filter: blur(2px);
  opacity: 0.95;
}

.pricing-header__inner .pricing-header__title::before{
  content:"";
  display:block;
  width: min(520px, 78%);
  height: 1px;
  margin: 0 auto 18px auto;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.35), rgba(46,142,255,0.18), transparent);
  opacity: 0.9;
}

.pricing-header__title{
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 22px 60px rgba(0,0,0,0.65);
}

.pricing-header__subtitle{
  max-width: 920px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.74);
}

@media (max-width: 680px){
  .pricing-header{ padding: 58px 0 10px 0; }
  .pricing-header__inner{ padding-top: 28px; }
  .pricing-header__inner::before{ height: 78px; top: -18px; }
  .pricing-header__inner::after{ height: 120px; }
}

/* =========================
   ADDON: Language switcher in navbar
========================= */
.nav-actions{
  display:flex;
  align-items:center;
  gap: 12px;
}

.lang-switch{
  position: relative;
  display: inline-flex;
  align-items:center;
}

.lang-menu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 9999;
}

.navbar,
.navbar__inner{
  overflow: visible;
}

/* =========================
   ADDON: Legal dropdown (match nav-links a 1:1)
========================= */
.nav-links .nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ✅ Exact clone of .nav-links a */
.nav-links .nav-dropdown__btn{
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;

  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
  font-size: 14px;
  opacity: .92;

  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: opacity .15s ease, transform .15s ease;
}

.nav-links .nav-dropdown__btn:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Menu panel */
.nav-dropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(15, 18, 24, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px;
  display: none;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
}

.nav-dropdown.is-open .nav-dropdown__menu{
  display: block;
}

.nav-dropdown__item{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 800;
}

.nav-dropdown__item:hover{
  background: rgba(255,255,255,0.07);
}

.nav-dropdown__caret{
  font-size: 12px;
  opacity: 0.85;
  transform: translateY(1px);
}

/* =========================
   LEGAL PAGES (match index look)
========================= */
.legal-page {
  padding: 110px 20px 90px;
}

.legal-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.legal-hero {
  text-align: center;
  margin-bottom: 18px;
}

.legal-title {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  color: var(--title);
  text-shadow: 0 18px 45px rgba(0,0,0,0.45);
  margin-bottom: 10px;
}

.legal-subtitle {
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.legal-meta {
  margin-top: 14px;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.legal-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.legal-card {
  margin-top: 22px;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 24px 70px rgba(0,0,0,0.40);
  backdrop-filter: blur(10px);
}

.legal-card + .legal-card { margin-top: 16px; }

.legal-section {
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,14,0.18);
}

.legal-section + .legal-section { margin-top: 12px; }

.legal-section h2 {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 8px;
}

.legal-section p {
  color: rgba(255,255,255,0.80);
  line-height: 1.85;
  margin-bottom: 10px;
  white-space: pre-wrap;
}

.legal-list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.legal-list li {
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}

.legal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-note {
  margin-top: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.65;
}

/* Footer badges (new) */
.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.footer-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  line-height: 1;
}

.footer-muted{
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

/* Make sure layout looks good without Newsletter/Social */
.site-footer .footer-top{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

@media (max-width: 900px){
  .site-footer .footer-top{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px){
  .site-footer .footer-top{
    grid-template-columns: 1fr;
  }
}
