/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: #0B0F1A;
    color: #E6E8EB;
    line-height: 1.6;
}

/* ================= VARIABLES ================= */
:root {
    --bg-main: #0B0F1A;
    --bg-alt: #121826;
    --card-bg: #0F1629;
    --text-main: #E6E8EB;
    --text-muted: #9CA3AF;
    --gold: #C9A24D;
    --green: #22C55E;
    --radius: 14px;
    --container: 1180px;
}

/* ================= GLOBAL ================= */
section {
    padding: 64px 24px;
}

h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.15;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

a { text-decoration: none; color: inherit; }

/* ================= CONTAINERS ================= */
.header-container,
.hero-container,
.trust-grid,
.what-grid,
.compare,
.steps-grid,
.offer-grid,
.auth-container,
.testimonials-grid {
    max-width: var(--container);
    margin: 0 auto;
}

/* ================= HEADER ================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11,15,26,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    height: 68px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.4px;
}

nav a {
    margin-left: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

nav a:hover { color: var(--text-main); }

/* ================= HERO ================= */
.hero {
    padding: 96px 24px 72px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
    max-width: 520px;
    margin: 20px 0;
}

.hero-micro {
    font-size: 0.85rem;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--gold);
    color: #0B0F1A;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    transition: transform .2s ease, opacity .2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
}

.btn-link:hover { border-color: var(--text-muted); }

.mockup {
    height: 100%;
    background: linear-gradient(180deg,#121826,#0F1629);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
    font-size: 0.9rem;
}

/* ================= TRUST ================= */
.trust {
    background: var(--bg-alt);
    padding: 40px 24px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    font-size: 0.85rem;
    text-align: center;
}

/* ================= PROBLEM ================= */
.problem { text-align: center; padding-top: 48px; }

.problem ul {
    list-style: none;
    margin-top: 24px;
}

.problem li { margin: 8px 0; }

/* ================= WHAT ================= */
.what { background: var(--bg-alt); }

.what-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 40px;
}

.what-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius);
}

/* ================= DIFFERENCE ================= */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.compare-col {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius);
}

.compare-col.highlight {
    border: 1px solid rgba(201,162,77,.5);
}

/* ================= STEPS ================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
}

.step {
    background: var(--card-bg);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
}

.step span {
    font-size: 1.4rem;
    color: var(--gold);
}
.offer {
  background: radial-gradient(circle at bottom, rgba(255,199,66,0.08), transparent 60%), #0b0b0b;
  padding: 100px 20px;
}

.offer h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.offer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.offer-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
}

.offer-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.offer-card .price {
  font-size: 40px;
  font-weight: 800;
  color: #ffc742;
  line-height: 1.2;
}

.offer-card .price small {
  display: block;
  font-size: 16px;
  color: #c7c7c7;
  margin-top: 6px;
}

.offer-note {
  color: #c7c7c7;
  margin-top: 16px;
  font-size: 16px;
}

/* CARD DESTACADA */
.offer-card[data-plan="lifetime"] {
  border: 1px solid rgba(255,199,66,0.4);
  box-shadow: 0 0 30px rgba(255,199,66,0.12);
}

.offer-card .badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: #ffc742;
  color: #000;
  font-weight: 800;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
}

/* ================= VALIDATION ================= */
.validation {
    background: var(--bg-alt);
    text-align: center;
    padding: 48px 24px;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
    background: var(--bg-main);
    padding: 56px 24px;
}

.testimonials-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 14px;
    font-style: italic;
}

.testimonial-user {
    font-size: 0.85rem;
}

.verified {
    color: var(--green);
    margin-left: 6px;
}

/* ================= OFFER ================= */
.offer { padding: 64px 24px; }

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
    margin-top: 40px;
}

.offer-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: var(--radius);
}

.offer-card.highlight {
    border: 1px solid var(--gold);
}

.price {
    font-size: 1.8rem;
    margin: 12px 0;
}

/* ================= FAQ ================= */
.faq {
    background: var(--bg-alt);
    padding: 64px 24px;
}

.faq-item {
    max-width: 720px;
    margin: 0 auto 16px;
    background: var(--card-bg);
    padding: 20px 24px;
    border-radius: var(--radius);
}

.faq-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* ================= AUTH ================= */
.auth-section { background: var(--bg-alt); }

.auth-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}

.auth-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: var(--radius);
}

.auth-card input,
.auth-card select {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    background: #0B0F1A;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    color: var(--text-main);
}

/* ================= FOOTER ================= */
.footer {
    padding: 40px 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ================= DASHBOARD (SIN CAMBIOS FUNCIONALES) ================= */
body.dashboard { background: var(--bg-main); }

/* ================= DASHBOARD ================= */
body.dashboard {
    background: var(--bg-main);
}

.dash-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.dash-header h1 {
    font-size: 1.6rem;
}

.btn-outline {
    padding: 10px 18px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    font-size: 0.85rem;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.dash-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.dash-card h3 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.status-active {
    color: #22c55e;
    font-weight: 600;
}

.status-inactive {
    color: #ef4444;
    font-weight: 600;
}

.dash-panel {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius);
    margin-bottom: 32px;
    border: 1px solid rgba(255,255,255,0.05);
}

.dash-panel h2 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.dash-links {
    list-style: none;
}

.dash-links li {
    padding: 8px 0;
    color: var(--text-muted);
}

.activity-list {
    list-style: none;
}

.activity-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.review-form textarea {
    width: 100%;
    min-height: 100px;
    margin-top: 16px;
    padding: 14px;
    background: #0B0F1A;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text-main);
}
.testimonials {
    background: var(--bg-alt);
    text-align: center;
}

.testimonials-grid {
    max-width: 1000px;
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 16px;
}

.testimonial-user {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-user .verified {
    color: var(--green);
    margin-left: 6px;
    font-size: 0.85rem;
}

.empty-testimonials {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.hero-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}
.final-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 24px !important;
    text-align: center !important;
}
.auth-section {
    position: relative !important;
    z-index: 2 !important;
}

.final-cta {
    position: relative !important;
    z-index: 1 !important;
}
.btn-secondary {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    padding: 12px 26px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: background .2s ease, color .2s ease !important;
}

.btn-secondary:hover {
    background: var(--gold) !important;
    color: #0B0F1A !important;
}
button.full,
.btn-primary.full,
.btn-secondary.full {
    width: 100% !important;
    text-align: center !important;
}
.auth-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}
.auth-card form button {
    margin-top: 24px !important;
}
.hero {
  padding: 80px 24px 56px !important;
}
.trust {
  padding: 40px 24px !important;
}
.problem {
  padding: 40px 24px 32px !important;
}
.what {
  padding: 32px 24px !important;
}
/* FAQ ACCORDION */
.faq-item {
  background: var(--card-bg);
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 12px;
  cursor: pointer;
  transition: background .2s;
}

.faq-item:hover {
  background: rgba(255,255,255,0.04);
}

.faq-item h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.faq-item .answer {
  display: none;
  margin-top: 12px;
  color: var(--text-main);
  font-size: .93rem;
}

.faq-item.open .answer {
  display: block;
}

.faq-item h4::after {
  content: "+";
  font-size: 1.2rem;
  transition: transform .3s;
}

.faq-item.open h4::after {
  transform: rotate(45deg);
}
.btn-primary {
  box-shadow: 0px 6px 18px rgba(201,162,77,0.45) !important;
}

.btn-primary:hover {
  box-shadow: 0px 8px 22px rgba(201,162,77,0.62) !important;
}
@media (max-width: 768px) {
  .hero-container,
  .offer-grid,
  .what-grid,
  .steps-grid,
  .compare {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  nav {
    display: flex;
    gap: 20px;
  }
}
.dash-panel {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price {
    font-weight: 600;
    color: var(--gold);
}
/* ================= REGISTER REQUEST ================= */

body.dashboard {
    background: var(--bg-main);
}

/* CONTENEDOR GENERAL */
.dash-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px;
}

/* HEADER */
.dash-header {
    margin-bottom: 48px;
}

.dash-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* PANEL BASE */
.dash-panel {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 32px;
}

/* TITULOS DE PANEL */
.dash-panel h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    text-align: left;
}

/* LISTAS */
.dash-links {
    list-style: none;
    margin-top: 16px;
}

.dash-links li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* GRID DE PAGOS */
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

/* TARJETAS DE PAGO */
.dash-card {
    background: #0B0F1A;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.2s ease, border 0.2s ease;
}

.dash-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,162,77,0.4);
}

.dash-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.dash-card p {
    font-size: 0.95rem;
}

/* PRECIO */
.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    margin: 16px 0;
}

/* BOTON TELEGRAM */
.dash-panel .btn-primary {
    display: inline-block;
    margin-top: 24px;
}

/* TEXTO CENTRADO (CTA) */
.dash-panel[style*="text-align:center"] {
    background: linear-gradient(
        180deg,
        #121826,
        #0F1629
    );
}

/* AVISO FINAL */
.dash-panel p {
    line-height: 1.6;
}

/* ANIMACION SUAVE */
.dash-panel {
    animation: fadeInUp 0.4s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .dash-container {
        padding: 48px 20px;
    }

    .dash-panel {
        padding: 32px 24px;
    }

    .dash-header h1 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.4rem;
    }
}
.mini-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: underline;
}

.text-muted {
  color: var(--text-muted);
  font-size: 0.8rem;
}
/* =========================
   REFERRAL LINK
========================= */

.ref-link {
  width: 100%;
  padding: 14px 16px;
  margin-top: 6px;

  font-size: 0.95rem;
  font-family: monospace;

  background: #0f172a; /* fondo oscuro */
  color: #e5e7eb;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;

  cursor: pointer;
  overflow-x: auto;
}

.ref-link:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(59,130,246,0.25);
}
/* =========================
   FORM CUENTA MT5
========================= */

.account-form {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.account-form input {
  flex: 1;
  min-width: 220px;

  padding: 12px 14px;
  font-size: 0.95rem;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);

  background: #020617;
  color: #e5e7eb;
}

.account-form button {
  padding: 12px 18px;
  white-space: nowrap;
}
/* =========================
   DASHBOARD AJUSTES FINALES
========================= */

.ref-link {
  width: 100% !important;
  padding: 14px 16px !important;
  margin-top: 6px !important;
  font-size: 0.95rem !important;
  font-family: monospace !important;
  background: #0f172a !important;
  color: #e5e7eb !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  overflow-x: auto !important;
}

.ref-link:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.35) !important;
}

/* Cuenta MT5 */
.account-form {
  display: flex !important;
  gap: 12px !important;
  margin-top: 12px !important;
  flex-wrap: wrap !important;
}

.account-form input {
  flex: 1 !important;
  min-width: 220px !important;
  padding: 12px 14px !important;
  font-size: 0.95rem !important;
  border-radius: 10px !important;
  background: #020617 !important;
  color: #e5e7eb !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.account-form button {
  padding: 12px 18px !important;
  white-space: nowrap !important;
}

/* Botón renovar */
.btn-outline.small {
  padding: 8px 14px !important;
  font-size: 0.85rem !important;
  margin-top: 8px !important;
  display: inline-block !important;
}

/* Referidos */
.ref-note {
  margin-top: 10px !important;
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
}
.offer-card {
  cursor: pointer !important;
  transition: transform .2s, box-shadow .2s !important;
}

.offer-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,.25) !important;
}

.problem-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr)) !important;
  gap: 16px !important;
}

.problem-grid div {
  background: rgba(255,255,255,.04) !important;
  padding: 16px !important;
  border-radius: 12px !important;
  text-align: center !important;
}

.what-card,
.offer-card,
.compare-col {
  background: rgba(255,255,255,.04) !important;
  border-radius: 16px !important;
  padding: 24px !important;
}

.testimonial-card {
  background: rgba(255,255,255,.05) !important;
  padding: 20px !important;
  border-radius: 14px !important;
}
.mockup {
  position: relative !important;
  background: linear-gradient(135deg, #0f172a, #020617) !important;
  border-radius: 16px !important;
  padding: 14px !important;
  box-shadow: 0 25px 60px rgba(0,0,0,.45) !important;
}

.mockup img {
  width: 100% !important;
  display: block !important;
  border-radius: 12px !important;
}

.mockup-label {
  position: absolute !important;
  bottom: 10px !important;
  right: 14px !important;
  background: rgba(0,0,0,.6) !important;
  color: #e5e7eb !important;
  font-size: 12px !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
}
/* CONTENEDOR DE LA IMAGEN (panel / card / preview) */
.preview-panel,
.panel-preview,
.image-preview,
.dash-panel img {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
  border-radius: 12px !important; /* ajusta si usas otro radio */
}

/* IMAGEN */
.preview-panel img,
.panel-preview img,
.image-preview img,
.dash-panel img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 12px !important; /* mismo radio que el contenedor */
  object-fit: cover !important;
  background: transparent !important;
}

/* SI HAY UN WRAPPER INTERNO */
.preview-panel > *,
.panel-preview > *,
.image-preview > * {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* POR SI EL RECUADRO VIENE DE UNA CARD GENERAL */
.dash-card.preview,
.dash-card.image,
.dash-card:has(img) {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
/* =========================
   GOLD APEX PRO UPGRADE
   (solo visual - no rompe lógica)
========================= */

/* Fondo más profundo */
body.index-page {
  background: radial-gradient(circle at top right, rgba(201,162,77,0.12), transparent 60%),
              radial-gradient(circle at bottom left, rgba(201,162,77,0.08), transparent 60%),
              #0B0F1A !important;
}

/* HERO más impactante */
.hero {
  position: relative !important;
  overflow: hidden !important;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  top: -40% !important;
  right: -20% !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(201,162,77,0.15), transparent 70%) !important;
  pointer-events: none !important;
}

.hero h1 {
  font-size: 3.2rem !important;
  font-weight: 700 !important;
}

.hero-sub {
  font-size: 1.05rem !important;
}

/* Botones más premium */
.btn-primary {
  background: linear-gradient(135deg, #C9A24D, #FFD369) !important;
  color: #0B0F1A !important;
  box-shadow: 0 10px 30px rgba(201,162,77,0.45) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
}

.btn-secondary {
  border: 1px solid #C9A24D !important;
}

/* Mockup más pro */
.mockup {
  background: linear-gradient(135deg, #05080f, #0f172a) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
}

.mockup img {
  border-radius: 14px !important;
}

/* Trust más institucional */
.trust {
  background: linear-gradient(180deg, #0F1629, #0B0F1A) !important;
}

.trust span {
  font-weight: 600 !important;
  letter-spacing: .3px !important;
}

/* Cards tipo panel financiero */
.what-card,
.compare-col,
.step,
.offer-card,
.auth-card,
.testimonial-card,
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35) !important;
}

/* Oferta más agresiva visualmente */
.offer-card.highlight {
  border: 1px solid #C9A24D !important;
  box-shadow: 0 0 0 1px rgba(201,162,77,0.3),
              0 20px 60px rgba(201,162,77,0.25) !important;
}

.offer-card .price {
  font-size: 2rem !important;
}

/* Badge recomendada más potente */
.badge {
  background: linear-gradient(135deg, #C9A24D, #FFD369) !important;
  color: #0B0F1A !important;
  font-weight: 700 !important;
}

/* CTA final más impactante */
.final-cta {
  background: radial-gradient(circle at center, rgba(201,162,77,0.15), transparent 65%) !important;
}

/* Inputs más profesionales */
input, select, textarea {
  background: #05080f !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

input:focus, select:focus, textarea:focus {
  border-color: #C9A24D !important;
  box-shadow: 0 0 0 2px rgba(201,162,77,0.25) !important;
}

/* FAQ más clara visualmente */
.faq-item h4 {
  font-weight: 600 !important;
}

/* Transiciones suaves globales */
.what-card,
.offer-card,
.compare-col,
.step {
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.what-card:hover,
.offer-card:hover,
.compare-col:hover,
.step:hover {
  transform: translateY(-6px) !important;
}

/* Tipografía más agresiva */
h1, h2, h3 {
  letter-spacing: -0.03em !important;
}
/* ======================
   HERO METRICS BLOQUE
====================== */

.hero-stats {
  display: flex !important;
  gap: 18px !important;
  margin: 28px 0 !important;
  flex-wrap: wrap !important;
}

.stat {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  padding: 16px 20px !important;
  border-radius: 14px !important;
  min-width: 160px !important;
  text-align: center !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35) !important;
}

.stat strong {
  font-size: 1.6rem !important;
  color: #C9A24D !important;
}

.stat span {
  font-size: 0.8rem !important;
  color: #9CA3AF !important;
}
/* ======================
   RESULTS SECTION PRO
====================== */

.results {
  padding: 80px 24px !important;
  text-align: center !important;
}

.results-card {
  max-width: 900px !important;
  margin: 40px auto !important;
  padding: 20px !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 18px !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45) !important;
}

.results-card img {
  width: 100% !important;
  border-radius: 14px !important;
}

.results-metrics {
  display: flex !important;
  justify-content: center !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  margin-top: 24px !important;
}

.results-metrics span {
  color: #C9A24D !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}
/* ======================
   HEADER ULTRA PRO
====================== */

.nav-cta {
  background: linear-gradient(135deg, #C9A24D, #FFD369) !important;
  color: #0B0F1A !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  margin-left: 20px !important;
  box-shadow: 0 8px 30px rgba(201,162,77,0.5) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
}
/* ======================
   HERO ULTRA PRO
====================== */

.hero-left h1 {
  max-width: 680px !important;
}

.hero-left h1 span {
  color: #C9A24D !important;
}

.hero-micro {
  opacity: 0.85 !important;
}

.hero-container {
  align-items: center !important;
}
/* ======================
   OFFER PSICOLOGÍA VENTA
====================== */

.offer-card {
  position: relative !important;
}

.offer-card.highlight {
  transform: scale(1.04) !important;
  z-index: 2 !important;
}

.offer-card[data-plan="lifetime"]::before {
  content: "MEJOR VALOR" !important;
  position: absolute !important;
  top: -14px !important;
  right: 20px !important;
  background: linear-gradient(135deg, #C9A24D, #FFD369) !important;
  color: #0B0F1A !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  box-shadow: 0 6px 20px rgba(201,162,77,0.4) !important;
}
/* ======================
   MICROINTERACCIONES PRO
====================== */

.btn-primary,
.offer-card,
.nav-cta,
.stat {
  transition: all 0.25s ease !important;
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02) !important;
}

.stat:hover {
  transform: translateY(-4px) !important;
}

.testimonial-card:hover {
  transform: translateY(-4px) !important;
}
/* ===============================
   RESET VISUAL PREMIUM
================================ */

body.index-page {
  background: radial-gradient(1200px 600px at top center, #111827 0%, #0B0F1A 60%) !important;
  color: #E5E7EB !important;
}

/* ===============================
   HEADER / NAVBAR PREMIUM
================================ */

nav, .navbar {
  background: rgba(10, 15, 25, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

.nav-cta {
  background: linear-gradient(135deg, #C9A24D, #F5D27A) !important;
  color: #0B0F1A !important;
  font-weight: 800 !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(201,162,77,0.4) !important;
}

/* ===============================
   HERO PREMIUM REAL
================================ */

.hero {
  background: radial-gradient(800px 400px at right top, rgba(201,162,77,0.08), transparent),
              radial-gradient(600px 300px at left center, rgba(255,255,255,0.04), transparent) !important;
}

.hero-left h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem) !important;
  line-height: 1.1 !important;
}

.hero-left h1 span {
  background: linear-gradient(135deg, #C9A24D, #F5D27A) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-sub {
  font-size: 1.1rem !important;
  opacity: 0.9 !important;
}

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
  gap: 20px !important;
  margin: 30px 0 !important;
}

.stat {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 18px !important;
  padding: 20px !important;
  backdrop-filter: blur(10px) !important;
}

.stat strong {
  font-size: 1.4rem !important;
  color: #F5D27A !important;
}

/* ===============================
   MOCKUP EFECTO PRODUCTO REAL
================================ */

.mockup img {
  border-radius: 20px !important;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6) !important;
}

.mockup {
  position: relative !important;
}

.mockup::after {
  content: "" !important;
  position: absolute !important;
  inset: -10px !important;
  border-radius: 30px !important;
  background: radial-gradient(circle, rgba(201,162,77,0.15), transparent 70%) !important;
  z-index: -1 !important;
}

/* ===============================
   SECCIONES CON PROFUNDIDAD
================================ */

section {
  padding: 100px 20px !important;
}

.trust, .what, .steps, .faq {
  background: rgba(255,255,255,0.015) !important;
}

.problem, .difference, .testimonials, .results {
  background: rgba(255,255,255,0.03) !important;
}

/* ===============================
   CARDS PREMIUM
================================ */

.what-card,
.step,
.compare-col,
.offer-card,
.testimonial-card,
.auth-card {
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 22px !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4) !important;
}

/* ===============================
   OFERTA NIVEL SAAS PRO
================================ */

.offer-card[data-plan="lifetime"] {
  outline: 2px solid rgba(201,162,77,0.4) !important;
  box-shadow: 0 0 0 1px rgba(201,162,77,0.3),
              0 20px 80px rgba(201,162,77,0.15) !important;
}

.price {
  font-size: 2rem !important;
  color: #F5D27A !important;
}

/* ===============================
   CTA FINAL PODEROSO
================================ */

.final-cta {
  background: radial-gradient(800px 400px at center, rgba(201,162,77,0.15), transparent) !important;
}

.final-cta h2 {
  font-size: 2.2rem !important;
}

/* ===============================
   BOTONES PRO
================================ */

.btn-primary {
  background: linear-gradient(135deg, #C9A24D, #F5D27A) !important;
  color: #0B0F1A !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 15px 50px rgba(201,162,77,0.4) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03) !important;
}

/* ===============================
   TRANSICIONES SUAVES PRO
================================ */

* {
  transition: all 0.25s ease !important;
}
/* =====================================================
   HEADER NIVEL SAAS FINANCIERO REAL
===================================================== */

.pro-header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(10, 15, 25, 0.85) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 16px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.logo a {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  background: linear-gradient(135deg, #C9A24D, #F5D27A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
}

nav a {
  color: #E5E7EB !important;
  font-weight: 500 !important;
  opacity: 0.85;
}

nav a:hover {
  opacity: 1;
}

.nav-cta {
  background: linear-gradient(135deg, #C9A24D, #F5D27A) !important;
  color: #0B0F1A !important;
  padding: 10px 20px !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 15px 40px rgba(201,162,77,0.35);
}

/* Espacio para header fijo */
.hero {
  padding-top: 140px !important;
}


/* =====================================================
   HERO PREMIUM CON FONDO PROFESIONAL
===================================================== */

.hero {
  background:
    radial-gradient(900px 500px at right top, rgba(201,162,77,0.10), transparent),
    radial-gradient(600px 400px at left center, rgba(255,255,255,0.04), transparent),
    #0B0F1A !important;
}

.hero-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  align-items: center !important;
  gap: 60px !important;
}

.hero-left h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
}

.hero-left h1 span {
  background: linear-gradient(135deg, #C9A24D, #F5D27A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.15rem !important;
  opacity: 0.9 !important;
}

.hero-micro {
  opacity: 0.7 !important;
}

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px !important;
  margin: 32px 0 !important;
}

.stat {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px !important;
  padding: 22px !important;
  backdrop-filter: blur(14px);
}

.stat strong {
  font-size: 1.5rem !important;
  color: #F5D27A !important;
}

.stat span {
  font-size: 0.9rem !important;
  opacity: 0.7;
}


/* =====================================================
   MOCKUP PRO REALISTA
===================================================== */

.mockup img {
  width: 100%;
  border-radius: 22px !important;
  box-shadow: 0 40px 120px rgba(0,0,0,0.75);
}

.mockup {
  position: relative;
}

.mockup::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(201,162,77,0.18), transparent 70%);
  z-index: -1;
  border-radius: 40px;
}

.mockup-label {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  opacity: 0.6;
}


/* =====================================================
   FONDOS DE SECCIÓN PROFESIONALES
===================================================== */

section {
  padding: 100px 24px !important;
}

.trust, .what, .steps, .faq {
  background: rgba(255,255,255,0.015);
}

.problem, .difference, .testimonials, .results, .offer {
  background: rgba(255,255,255,0.035);
}


/* =====================================================
   TARJETAS PREMIUM
===================================================== */

.what-card,
.step,
.compare-col,
.offer-card,
.testimonial-card,
.auth-card {
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
/* ================================
   ESTILO PRO VISUAL SIN ROMPER HTML
================================ */

/* Fondo general */
body {
  background: #0B0F1A !important;
  color: #E5E7EB !important;
}

/* Header premium */
.main-header {
  position: fixed !important;
  width: 100%;
  top: 0;
  background: rgba(11,15,26,0.8) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

/* Separación por header fijo */
.hero {
  padding-top: 140px !important;
}

/* HERO fondo real */
.hero {
  background:
    radial-gradient(900px 600px at right top, rgba(201,162,77,0.12), transparent),
    radial-gradient(600px 400px at left center, rgba(255,255,255,0.04), transparent),
    #0B0F1A !important;
}

/* Hero layout más aireado */
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 60px !important;
}

/* Título más pro */
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
}

.hero h1 span {
  background: linear-gradient(135deg, #C9A24D, #FFD369);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stats como cards pro */
.stat {
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 20px;
}

.stat strong {
  color: #FFD369;
}

/* Mockup profesional */
.mockup img {
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}

/* Secciones con alternancia elegante */
.trust,
.what,
.steps,
.faq {
  background: rgba(255,255,255,0.015) !important;
}

.problem,
.difference,
.testimonials,
.results,
.offer {
  background: rgba(255,255,255,0.035) !important;
}

/* Cards premium */
.what-card,
.step,
.compare-col,
.offer-card,
.testimonial-card,
.auth-card {
  background: rgba(255,255,255,0.035) !important;
  border: 1px solid rgba(255,255,255,0.05) !important;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Botones más pro */
.btn-primary {
  background: linear-gradient(135deg, #C9A24D, #FFD369) !important;
  color: #0B0F1A !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 40px rgba(201,162,77,0.4);
}

/* Oferta destacada */
.offer-card[data-plan="lifetime"] {
  outline: 2px solid rgba(201,162,77,0.4);
  transform: scale(1.04);
}
.hero-stats .stat strong {
  font-size: clamp(1.2rem, 3vw, 2.2rem) !important;
  line-height: 1.1 !important;
  display: block !important;
  word-break: break-word !important;
}

.hero-stats .stat {
  min-width: 0 !important;
}
/* ================= ESTILO PREMIUM GLOBAL ================= */

section {
  padding: 80px 20px !important;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(180deg, #0c0f14, #0f141b) !important;
}

section:nth-child(odd) {
  background: #0b0e13 !important;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), transparent);
}
.video-section {
  background: radial-gradient(circle at top, #141a23, #0b0e13) !important;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-text h2 {
  font-size: 2.2rem !important;
}

.video-text p {
  opacity: 0.85;
  line-height: 1.7;
}

.video-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.video-features li {
  margin-bottom: 10px;
  color: #d4af37;
  font-weight: 500;
}

.video-box {
  background: #0f141b;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,215,0,0.08);
}

.video-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}
/* ===============================
   CONTENEDORES GENERALES DE SECCIÓN
================================ */
.trust-container,
.problem-container,
.what-container,
.difference-container,
.steps-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px;
}

/* ===============================
   TÍTULOS DE SECCIÓN
================================ */
.trust h2,
.problem h2,
.what h2,
.difference h2,
.steps h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

/* ===============================
   SUBTÍTULOS PROFESIONALES
================================ */
.section-sub {
  max-width: 720px;
  margin: 0 auto 50px auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.75;
}

/* ===============================
   TRUST GRID PRO
================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-grid span {
  background: rgba(255,255,255,0.03);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

/* ===============================
   PROBLEM LIST PRO
================================ */
.problem ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.problem ul li {
  padding: 12px 0;
  font-size: 1.05rem;
  opacity: 0.85;
}

/* ===============================
   WHAT CARDS PRO
================================ */
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.what-card {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 18px;
}

.what-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ===============================
   DIFFERENCE PRO
================================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.compare-col {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.compare-col.highlight {
  background: linear-gradient(145deg, rgba(212,175,55,0.12), rgba(255,255,255,0.03));
}

.compare-col ul {
  list-style: none;
  padding: 0;
}

.compare-col ul li {
  padding: 8px 0;
}

/* ===============================
   STEPS PRO
================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.step {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
}

.step span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
/* =========================
   HERO PRO PREMIUM
========================= */

.hero-pro {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top, #1a1a1a, #0b0b0b 80%);
  overflow: hidden;
}

.hero-pro-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}

.hero-pro-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 60px;
  text-align: center;
  color: white;
}

.hero-pro-title h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-pro-title h2 {
  font-size: 3.6rem;
  font-weight: 900;
}

.hero-pro-title span {
  color: #ffcc00;
  text-shadow: 0 0 40px rgba(255, 204, 0, 0.6);
}

/* METRICS */
.hero-metrics-pro {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.metric-pro {
  background: #0f0f0f;
  border: 1px solid rgba(255,204,0,0.3);
  padding: 20px 30px;
  border-radius: 14px;
  min-width: 200px;
}

.metric-pro strong {
  color: #ffcc00;
  font-size: 1.6rem;
}

.metric-pro span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* BOTONES */
.hero-pro-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-pro-gold {
  background: linear-gradient(135deg, #ffcc00, #f7b500);
  color: #000;
  padding: 16px 32px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(255,204,0,0.4);
  transition: transform .2s ease;
}

.btn-pro-gold:hover {
  transform: translateY(-2px);
}

/* CHART */
.hero-chart-pro {
  background: #050505;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 30px;
}

/* STATS BOTTOM */
.hero-stats-bottom {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero-stats-bottom span {
  color: #28d479;
}
.hero-chart-pro {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}

#equityChart {
  width: 100% !important;
  height: 320px !important;
  display: block;
}
/* ===============================
   NAVBAR PRO (AISLADO)
================================ */

.pro-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #0c0c0c, #101010);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pro-navbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO */
.pro-logo a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo-main {
  color: #ffffff;
}

.logo-ea {
  color: #f7c02d;
  margin-left: 4px;
}

/* NAV MENU */
.pro-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #f7c02d;
}

/* Línea activa */
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #f7c02d;
  border-radius: 2px;
}

/* Logout sutil */
.nav-link.logout:hover {
  color: #ff5b5b;
}

/* CTA */
.pro-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-pro-cta {
  background: linear-gradient(135deg, #f7c02d, #ffdd55);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 0 transparent;
  transition: all 0.25s ease;
}

.btn-pro-cta:hover {
  box-shadow: 0 0 18px rgba(247,192,45,0.45);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  .pro-navbar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pro-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .pro-cta {
    justify-content: center;
  }
}
/* ============================= */
/* NAVBAR PRO SaaS PREMIUM */
/* ============================= */

.pro-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);

  transition: all 0.35s ease;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.pro-navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: all 0.35s ease;
}

/* LOGO */
.pro-logo a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-main {
  color: #ffffff;
  font-size: 20px;
}

.logo-ea {
  color: #f7c02d;
  margin-left: 4px;
}

/* NAV LINKS */
.pro-nav {
  display: flex;
  gap: 36px;
}

.pro-nav .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  opacity: 0.85;
  transition: all 0.25s ease;
}

.pro-nav .nav-link:hover {
  color: #f7c02d;
  opacity: 1;
}

/* Línea dorada activa */
.pro-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f7c02d;
  border-radius: 2px;
}

/* Logout hover rojo suave */
.pro-nav .logout:hover {
  color: #ff5b5b;
}

/* CTA */
.btn-pro-cta {
  background: linear-gradient(135deg, #f7c02d, #ffcc00);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(247,192,45,0);
  transition: all 0.3s ease;
}

.btn-pro-cta:hover {
  box-shadow: 0 0 18px rgba(247,192,45,0.45);
  transform: translateY(-1px);
}

/* ============================= */
/* EFECTO SCROLL PREMIUM */
/* ============================= */

.pro-navbar.scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pro-navbar.scrolled .pro-navbar-inner {
  padding: 10px 32px;
}
/* ============================= */
/* SECCIÓN PRO INFO (MT5 + RIESGO) */
/* ============================= */

.trust,
.problem,
.what {
  background: radial-gradient(circle at top, rgba(247,192,45,0.05), transparent 70%),
              linear-gradient(180deg, #0b0b0b, #050505);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.trust-container,
.problem-container,
.what-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.trust h2,
.problem h2,
.what h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.trust h2 {
  color: #fff;
}

.trust h2::after {
  content: " con Gestión de Riesgo Profesional";
  color: #f7c02d;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.trust-grid span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: #e5e5e5;
}

.trust-grid span::before {
  content: "✔";
  background: #f7c02d;
  color: #000;
  font-weight: bold;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(247,192,45,0.4);
}
/* ============================= */
/* TESTIMONIOS PRO UI */
/* ============================= */

.testimonials {
  background: linear-gradient(180deg, #050505, #0b0b0b);
  padding: 120px 20px;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #161616;
  border: 1px solid rgba(247,192,45,0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  position: relative;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(247,192,45,0.05);
  pointer-events: none;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  background: #000;
}

.testimonial-content {
  flex: 1;
}

.testimonial-user {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 16px;
  color: #e2e2e2;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.testimonial-text::before {
  content: "✔";
  background: #f7c02d;
  color: #000;
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* ===================================== */
/* PRO V2 SECTIONS - PREMIUM STYLE */
/* ===================================== */

.pro-v2 {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

/* =========================================
   PROBLEM SECTION - PRO V2 FIXED LAYOUT
   ========================================= */

.problem.pro-v2 {
  background: radial-gradient(circle at top, #111 0%, #0a0a0a 60%);
  padding: 110px 20px;
}

.problem.pro-v2 .problem-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
grid-template-areas:
  "title list"
  "subtitle list";

  column-gap: 80px;
  align-items: center;
}

/* Asignación por tipo de elemento */
.problem.pro-v2 h2 {
  grid-area: title;
  font-size: 42px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 25px;
}

.problem.pro-v2 .section-sub {
  grid-area: subtitle;
  color: #c7c7c7;
  font-size: 17px;
  max-width: 520px;
}

.problem.pro-v2 ul {
  grid-area: list;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Items */
.problem.pro-v2 ul li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Check dorado */
.problem.pro-v2 ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: #ffc742;
  color: #111;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 199, 66, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .problem.pro-v2 .problem-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "list";
    row-gap: 40px;
  }

  .problem.pro-v2 h2 {
    font-size: 34px;
  }
}


/* ---------- QUÉ ES ---------- */
.what.pro-v2 {
  background:
    radial-gradient(circle at bottom, rgba(247,192,45,0.08), transparent 70%),
    linear-gradient(180deg, #060606, #0b0b0b);
}

.what.pro-v2 .what-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.what.pro-v2 h2 {
  color: #fff;
  font-size: 42px;
}

.what.pro-v2 .section-sub {
  color: #bfbfbf;
  max-width: 850px;
  margin: 20px auto 60px;
}

.what.pro-v2 .what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.what.pro-v2 .what-card {
  background: #161616;
  border-radius: 14px;
  padding: 36px;
  border: 1px solid rgba(247,192,45,0.08);
  transition: 0.3s ease;
}

.what.pro-v2 .what-card:hover {
  box-shadow: 0 0 40px rgba(247,192,45,0.12);
  transform: translateY(-4px);
}

.what.pro-v2 h3 {
  color: #ffc742;
  font-size: 22px;
  margin-bottom: 14px;
}

.what.pro-v2 p {
  color: #d0d0d0;
  font-size: 16px;
}

/* ---------- DIFERENCIA ---------- */
.difference.pro-v2 {
  background: linear-gradient(180deg, #050505, #0b0b0b);
}

.difference.pro-v2 .difference-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.difference.pro-v2 h2 {
  color: #fff;
  font-size: 40px;
}

.difference.pro-v2 .section-sub {
  color: #bdbdbd;
  margin: 20px auto 60px;
}

.difference.pro-v2 .compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.difference.pro-v2 .compare-col {
  background: #121212;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #1f1f1f;
}

.difference.pro-v2 .compare-col.highlight {
  border: 1px solid rgba(247,192,45,0.4);
  background: #181818;
}

.difference.pro-v2 h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

.difference.pro-v2 .highlight h4 {
  color: #f7c02d;
}

.difference.pro-v2 ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.difference.pro-v2 li {
  list-style: none;
  color: #e0e0e0;
  display: flex;
  gap: 12px;
}

.difference.pro-v2 li::before {
  content: "✔";
  background: #f7c02d;
  color: #000;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- PASOS ---------- */
.steps.pro-v2 {
  background:
    radial-gradient(circle at bottom, rgba(247,192,45,0.08), transparent 70%),
    #070707;
}

.steps.pro-v2 .steps-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.steps.pro-v2 h2 {
  color: #fff;
  font-size: 40px;
}

.steps.pro-v2 .section-sub {
  color: #bdbdbd;
  margin: 20px auto 60px;
}

.steps.pro-v2 .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
}

.steps.pro-v2 .step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #ffc742;
  color: #000;
  font-weight: 800;
  font-size: 32px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(247,192,45,0.4);
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.steps.pro-v2 .step span:hover {
  box-shadow: 0 0 40px rgba(247,192,45,0.7);
}

.steps.pro-v2 .step p {
  color: #d0d0d0;
  font-size: 17px;
}
/* ===============================
   ICONOS COMPARACIÓN (PRO)
   =============================== */

.difference .compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.difference .compare-col li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #d0d0d0;
  font-size: 15px;
  line-height: 1.6;
}

/* base icon */
.difference .compare-col li::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  box-sizing: border-box;
}

/* ❌ Trading manual */
.difference .compare-col:not(.highlight) li::before {
  content: "✕";
  color: #ff5b5b;
  border: 1px solid rgba(255, 91, 91, 0.5);
}

/* ✔ Gold Apex EA */
.difference .compare-col.highlight li::before {
  content: "✓";
  color: #111;
  background: #ffc742;
  box-shadow: 0 0 6px rgba(255, 199, 66, 0.5);
}
.final-cta {
  background: radial-gradient(circle at center, rgba(255,199,66,0.12), transparent 65%), #050505;
  text-align: center;
  padding: 120px 20px;
}

.final-cta h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 40px;
}

.final-cta .btn-primary {
  background: linear-gradient(135deg, #ffc742, #ffb800);
  color: #000;
  font-weight: 900;
  padding: 18px 48px;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 40px rgba(255,199,66,0.35);
  transition: all 0.25s ease;
}

.final-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 55px rgba(255,199,66,0.55);
}
.faq {
  max-width: 1100px;
  margin: 120px auto;
  padding: 60px;
  background: #111;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.faq h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
  text-align: left;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-item p {
  color: #c7c7c7;
  line-height: 1.6;
}

.faq h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.faq-item h4 {
  font-size: 17px;
}

.faq-item p {
  font-size: 15px;
  color: #c7c7c7;
}

.faq-item {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
/* Separación entre botones del navbar */
.pro-cta {
  display: flex;
  gap: 14px; /* podés subir a 16px si querés más aire */
}
.pro-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.pro-burger span {
  width: 26px;
  height: 2px;
  background: #f7c02d;
  border-radius: 2px;
}

/* MODO MÓVIL */
@media (max-width: 768px) {

  .pro-navbar-inner {
    position: relative;
  }

  .pro-burger {
    display: flex;
  }

  .pro-nav,
  .pro-cta {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 18px;
    padding: 25px 20px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .pro-navbar.open .pro-nav,
  .pro-navbar.open .pro-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .pro-nav a,
  .pro-cta a {
    font-size: 18px;
    text-align: center;
  }

  .pro-cta {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 10px;
    padding-top: 20px;
  }
}
@media (max-width: 768px) {

  .pro-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 25px 20px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .pro-navbar.open .pro-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* CTA solo si existe */
  .pro-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {

  .pro-mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px 20px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .pro-navbar.open .pro-mobile-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .pro-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .pro-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}
/* WRAPPER GENERAL */
.pro-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* MOBILE */
@media (max-width: 768px) {

  .pro-nav-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .pro-navbar.open .pro-nav-wrapper {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .pro-nav {
    flex-direction: column;
    gap: 18px;
  }

  .pro-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-pro-cta {
    width: 100%;
    text-align: center;
  }
}
/* ===== AUTH RESPONSIVE FIX ===== */
@media (max-width: 768px) {

  .auth-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  .auth-card {
    width: 100% !important;
  }

}
@media (max-width: 768px) {
  .auth-card {
    padding: 22px;
    border-radius: 14px;
  }
}
.terms-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.terms-box {
  background: #0f172a;
  color: #e2e8f0;
  max-width: 600px;
  width: 90%;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.terms-box h2 {
  margin-bottom: 15px;
  color: #facc15;
}

.terms-content {
  font-size: 14px;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.terms-check {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}

.terms-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.terms-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0,0,0,0.85) !important;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
}

.terms-box {
  background: #0f172a;
  color: #e2e8f0;
  max-width: 600px;
  width: 90%;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.terms-box h2 {
  margin-bottom: 15px;
  color: #facc15;
}

.terms-content {
  font-size: 14px;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 15px;
}

.terms-check {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}

.terms-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.terms-box {
  max-width: 650px;
  width: 92%;
  max-height: 80vh; /* 👈 importante */
  background: #0f172a;
  color: #e2e8f0;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.terms-content {
  flex: 1;
  overflow-y: auto;   /* 👈 scroll interno */
  max-height: 50vh;   /* 👈 controla tamaño */
  padding-right: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.terms-content::-webkit-scrollbar {
  width: 6px;
}

.terms-content::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 10px;
}
.risk-highlight {
  font-weight: bold;
  background: rgba(255, 215, 0, 0.15); /* dorado suave */
  padding: 4px 6px;
  border-radius: 4px;
}