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

:root {
  --gold: #F5C842; --gold-dim: #c9a034; --gold-light: #fde68a;
  --ink: #0B0C0E; --ink2: #111318; --ink3: #1a1d24; --ink4: #252931;
  --slate: #3d424f; --muted: #6b7280; --dim: #9ca3af; --light: #e5e7eb;
  --white: #ffffff; --green: #22c55e; --red: #ef4444; --blue: #3b82f6;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Bricolage Grotesque', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-script: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }
body { background: var(--ink); color: var(--light); font-family: var(--font-body); overflow-x: hidden; cursor: none; width: 100%; position: relative; }
img { max-width: 100%; height: auto; }

/* ── CURSOR & SCROLLBAR ── */
.cursor { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transition: transform 0.1s ease; mix-blend-mode: difference; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(245,200,66,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transition: all 0.15s ease; }
@media(max-width:768px) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } a, button { cursor: pointer; } }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Textura de fondo global */
body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.025; pointer-events: none; z-index: 1000; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 0 clamp(1rem,5vw,4rem); height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(11,12,14,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(245,200,66,0.08); transition: all 0.3s; }
nav.scrolled { border-bottom-color: rgba(245,200,66,0.2); box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; object-fit: contain; filter: drop-shadow(0 0 12px rgba(245,200,66,0.2)); transition: filter 0.3s; }
.nav-logo:hover img { filter: drop-shadow(0 0 20px rgba(245,200,66,0.4)); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--dim); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold)!important; color: var(--ink)!important; padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 700!important; font-size: 0.8rem!important; letter-spacing: 0.06em!important; text-transform: uppercase; transition: all 0.2s!important; }
.nav-cta:hover { background: var(--gold-light)!important; transform: translateY(-1px); }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 4px; }
@media(max-width:768px) { .nav-links { display: none; } .nav-mobile-btn { display: block; } }

.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--ink2); border-bottom: 1px solid rgba(245,200,66,0.15); padding: 1.5rem; z-index: 499; flex-direction: column; gap: 1rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--dim); text-decoration: none; font-weight: 500; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-cta { background: var(--gold); color: var(--ink)!important; text-align: center; border-radius: 8px; font-weight: 700; border: none; margin-top: 0.5rem; }

/* ── HERO ── */
.hero { min-height: 100vh; padding: 72px 0 0; display: grid; place-items: center; position: relative; overflow: hidden; }
.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: saturate(0.6); }
.hero-bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,12,14,0.75) 0%, rgba(11,12,14,0.82) 50%, rgba(11,12,14,0.97) 100%); }
.hero-grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(245,200,66,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(245,200,66,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%); }
.hero-glow { position: absolute; z-index: 1; width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(245,200,66,0.1) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: clamp(4rem,10vh,8rem) clamp(1rem,5vw,3rem); text-align: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.25); border-radius: 100px; padding: 6px 16px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; animation: fadeSlideDown 0.7s ease both; }
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero-h1 { font-family: var(--font-display); font-size: clamp(3.5rem,12vw,10rem); line-height: 0.9; letter-spacing: 0.02em; color: var(--white); margin-bottom: 0.3em; animation: fadeSlideUp 0.8s 0.1s ease both; }
.hero-h1 .gold-line { color: var(--gold); display: block; position: relative; }
.hero-h1 .gold-line::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 60%; height: 4px; background: var(--gold); border-radius: 2px; opacity: 0.6; }
.hero-sub { font-size: clamp(1rem,2vw,1.3rem); color: var(--dim); max-width: 580px; margin: 1.8rem auto 2.5rem; line-height: 1.65; font-weight: 300; animation: fadeSlideUp 0.8s 0.25s ease both; }
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; animation: fadeSlideUp 0.8s 0.4s ease both; }
.btn-primary { background: var(--gold); color: var(--ink); padding: 0.9rem 2.2rem; border-radius: 8px; font-weight: 800; font-size: 1rem; letter-spacing: 0.03em; text-decoration: none; border: 2px solid var(--gold); transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(245,200,66,0.3); }
.btn-secondary { background: transparent; color: var(--white); padding: 0.9rem 2.2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.15); transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); transform: translateY(-3px); }

/* Confianza Prestada */
.hero-trust { margin-top: 1.5rem; animation: fadeSlideUp 0.8s 0.5s ease both; }
.hero-trust p { font-size: 0.85rem; color: var(--dim); max-width: 300px; margin: 0 auto; line-height: 1.4; }
.hero-trust strong { color: var(--white); }

/* Estadísticas Hero */
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4.5rem; border: 1px solid rgba(245, 200, 66, 0.15); border-radius: 16px; background: rgba(11, 12, 14, 0.4); backdrop-filter: blur(12px); max-width: 800px; margin-left: auto; margin-right: auto; animation: fadeSlideUp 0.8s 0.55s ease both; }
.hero-stat { padding: 1.8rem 1rem; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.08); transition: background 0.3s ease; }
.hero-stat:hover { background: rgba(245, 200, 66, 0.04); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--gold); line-height: 1; letter-spacing: 0.02em; text-shadow: 0 0 20px rgba(245, 200, 66, 0.3); margin-bottom: 8px; }
.hero-stat-label { font-size: 0.75rem; color: var(--light); opacity: 0.85; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; }

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 1.5rem 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .hero-stat:nth-child(2n) { border-right: none; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-stat-num { font-size: 2.2rem; }
  .hero-stat-label { font-size: 0.68rem; }
}

.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; animation: fadeSlideUp 1s 1s ease both; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── UTILS ── */
.section { padding: clamp(3rem,8vh,7rem) clamp(1rem,5vw,4rem); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; font-family: var(--font-script); font-size: 1.3rem; font-weight: 700; color: var(--gold); margin-bottom: 0.8rem; letter-spacing: 0.01em; }
.section-h2 { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,5rem); letter-spacing: 0.03em; line-height: 0.95; color: var(--white); margin-bottom: 1.2rem; }
.section-p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 560px; font-weight: 300; }
.hl { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; } .reveal-delay-2 { transition-delay: 0.2s; } .reveal-delay-3 { transition-delay: 0.3s; }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── PAIN ── */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5px; margin-top: 4rem; background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.04); border-radius: 16px; overflow: hidden; }
.pain-card { background: var(--ink2); padding: 2.5rem; position: relative; transition: background 0.3s; }
.pain-card:hover { background: var(--ink3); }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); opacity: 0; transition: opacity 0.3s; }
.pain-card:hover::before { opacity: 1; }
.pain-icon { width: 48px; height: 48px; background: rgba(239,68,68,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--red); }
.pain-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.pain-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── DASHBOARD ── */
.dashboard-section { background: var(--ink2); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.dashboard-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
@media(max-width:900px) { .dashboard-layout { grid-template-columns: 1fr; gap: 3rem; } }
.tab-buttons { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; }
.tab-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-radius: 12px; background: transparent; border: 1px solid rgba(255,255,255,0.06); cursor: pointer; text-align: left; width: 100%; transition: all 0.25s; color: var(--dim); }
.tab-btn:hover { background: var(--ink3); border-color: rgba(255,255,255,0.12); color: var(--light); }
.tab-btn.active { background: var(--ink3); border-color: rgba(245,200,66,0.35); color: var(--white); }
.tab-btn-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--ink4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s; color: var(--muted); }
.tab-btn.active .tab-btn-icon { background: rgba(245,200,66,0.12); color: var(--gold); }
.tab-btn-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: inherit; }
.tab-btn-text p { font-size: 0.78rem; color: var(--muted); font-weight: 300; line-height: 1.4; }

.browser-mockup { position: relative; }
.browser-mockup::before { content: ''; position: absolute; inset: -2px; background: linear-gradient(135deg, rgba(245,200,66,0.15), transparent 60%); border-radius: 16px; z-index: 0; }
.browser-frame { position: relative; z-index: 1; background: var(--ink); border-radius: 14px; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.browser-bar { background: var(--ink3); padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.d1 { background: #ff5f57; } .d2 { background: #ffbd2e; } .d3 { background: #28c840; }
.browser-url { flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 4px 12px; font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); text-align: center; border: 1px solid rgba(255,255,255,0.05); }
.browser-screen { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #0d0f15; }
.browser-screen img { width: 100%; height: 100%; object-fit: fill; object-position: top; transition: opacity 0.35s ease; display: block; }
.browser-screen img.fade-out { opacity: 0; }

/* ── MOBILE SECTION ── */
.mobile-section { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.04); overflow: hidden; }
.mobile-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }

/* Abanico Desktop */
.phones-fan { position: relative; height: 600px; display: flex; align-items: center; justify-content: center; }
.pw { position: absolute; cursor: pointer; transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.pw:hover { z-index: 50 !important; }
.pf { background: #0d0f15; border-radius: 36px; border: 2.5px solid rgba(255,255,255,0.12); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.pf img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.pl { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); font-size: 0.65rem; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }

.pw-1 { left: 0; top: 50px; width: 150px; transform: rotate(-14deg); z-index: 1; opacity: .5; } .pw-1 .pf { height: 310px; }
.pw-2 { left: 80px; top: 26px; width: 165px; transform: rotate(-7deg); z-index: 2; opacity: .72; } .pw-2 .pf { height: 340px; }
.pw-3 { left: 180px; top: 6px; width: 190px; transform: rotate(0deg); z-index: 10; } .pw-3 .pf { height: 400px; border-color: rgba(245,200,66,.5); box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 40px rgba(245,200,66,.12); }
.pw-4 { left: 295px; top: 26px; width: 165px; transform: rotate(7deg); z-index: 2; opacity: .72; } .pw-4 .pf { height: 340px; }
.pw-5 { left: 395px; top: 50px; width: 150px; transform: rotate(14deg); z-index: 1; opacity: .5; } .pw-5 .pf { height: 310px; }

.pw-1:hover { transform: rotate(-14deg) translateY(-12px); opacity: 1; }
.pw-2:hover { transform: rotate(-7deg) translateY(-12px); opacity: 1; }
.pw-3:hover { transform: translateY(-16px) scale(1.04); }
.pw-4:hover { transform: rotate(7deg) translateY(-12px); opacity: 1; }
.pw-5:hover { transform: rotate(14deg) translateY(-12px); opacity: 1; }

.phones-carousel { display: none; }

/* Pasos */
.steps-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.step-row { display: flex; gap: 1.2rem; padding-bottom: 1.8rem; position: relative; }
.step-row::before { content: ''; position: absolute; left: 18px; top: 40px; bottom: 0; width: 1px; background: rgba(255,255,255,0.06); }
.step-row:last-child::before { display: none; }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--ink3); border: 1.5px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--dim); flex-shrink: 0; z-index: 1; transition: all 0.3s; }
.step-row.active .step-num { background: rgba(245,200,66,0.1); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 16px rgba(245,200,66,0.2); }
.step-row.done .step-num { background: rgba(34,197,94,0.1); border-color: var(--green); color: var(--green); }
.step-body { padding-top: 8px; }
.step-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 3px; display: flex; align-items: center; gap: 8px; }
.step-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
.step-tag { font-size: 0.65rem; background: rgba(245,200,66,0.1); color: var(--gold); border-radius: 100px; padding: 2px 8px; font-weight: 600; letter-spacing: 0.05em; }

/* Carrusel Mobile (Full Bleed) */
@media(max-width:900px){
  .mobile-layout { grid-template-columns: 1fr; gap: 0; }
  .phones-fan { display: none; }
  
  .phones-carousel { display: block; width: 100vw !important; margin-left: calc(-50vw + 50%) !important; position: relative; overflow: hidden !important; padding-bottom: 85px !important; margin-top: 0.5rem !important; margin-bottom: 4rem !important; }
  .carousel-viewport { width: 100%; position: relative; overflow: visible; }
  .carousel-track { display: flex; align-items: center; gap: 15px; width: max-content; will-change: transform; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
  
  .c-slide { flex: 0 0 130px; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); opacity: 0.15; filter: blur(4px) grayscale(100%); transform: scale(0.85); pointer-events: none; }
  .c-slide.center { flex: 0 0 180px; opacity: 1; filter: blur(0) grayscale(0); transform: scale(1); pointer-events: auto; z-index: 10; }
  
  .carousel-dots { display: flex; justify-content: center; align-items: center; gap: 12px; position: absolute; left: 0; right: 0; bottom: 35px; width: 100%; z-index: 100; }
  .cdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s ease; cursor: pointer; }
  .cdot.on { background: var(--gold); width: 24px; border-radius: 4px; }
  
  .carousel-hint { position: absolute; bottom: 10px; left: 0; right: 0; width: 100%; text-align: center; opacity: 0.6; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .mobile-text { padding: 0 clamp(1rem,5vw,4rem) clamp(2rem,5vh,4rem); }
}

/* ── NOTIFICATIONS ── */
.notif-section { background: var(--ink2); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.notif-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 2rem; }
@media(max-width:768px) { .notif-layout { grid-template-columns: 1fr; gap: 3rem; } }
.wa-phone { background: #0d1418; border-radius: 28px; border: 2px solid rgba(255,255,255,0.08); overflow: hidden; max-width: 320px; margin: 0 auto; box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,200,66,0.05); }
.wa-header { background: #1f2c34; padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.wa-avatar { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.wa-avatar img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.wa-header-info p { font-size: 0.85rem; font-weight: 700; color: #fff; }
.wa-header-info span { font-size: 0.7rem; color: #8c9ea9; }
.wa-body { padding: 1rem; background: #0d1418; min-height: 260px; display: flex; flex-direction: column; gap: 0.75rem; }
.wa-date { text-align: center; }
.wa-date span { background: rgba(255,255,255,0.06); border-radius: 6px; padding: 2px 10px; font-size: 0.65rem; color: #8c9ea9; }
.wa-bubble { background: #1f2c34; border-radius: 12px 12px 12px 0; padding: 0.75rem 0.9rem; max-width: 85%; font-size: 0.8rem; color: #e9edef; line-height: 1.55; }
.wa-bubble .meta { font-size: 0.65rem; color: #8c9ea9; text-align: right; margin-top: 4px; }
.wa-bubble hr { border-color: rgba(255,255,255,0.08); margin: 8px 0; }
.wa-bubble .detail { font-size: 0.75rem; color: #8c9ea9; margin: 2px 0; }
.wa-reply { background: #005c4b; border-radius: 12px 12px 0 12px; padding: 0.75rem 0.9rem; max-width: 75%; align-self: flex-end; font-size: 0.8rem; color: #e9edef; opacity: 0; transition: opacity 0.5s; }
.wa-reply.visible { opacity: 1; }
.wa-reply .meta { font-size: 0.65rem; color: #8c9ea9; text-align: right; margin-top: 4px; display: flex; align-items: center; justify-content: flex-end; gap: 4px; }

.notif-features { display: flex; flex-direction: column; gap: 1rem; }
.notif-feat { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.2rem; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; transition: border-color 0.25s; }
.notif-feat:hover { border-color: rgba(245,200,66,0.2); }
.notif-feat-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.nfi-blue { background: rgba(59,130,246,0.12); color: var(--blue); }
.nfi-green { background: rgba(34,197,94,0.12); color: var(--green); }
.nfi-gold { background: rgba(245,200,66,0.1); color: var(--gold); }
.notif-feat h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.notif-feat p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin: 0; }
.bancard-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: 100px; padding: 5px 12px; font-size: 0.75rem; font-weight: 700; color: var(--green); letter-spacing: 0.05em; margin-top: 8px; }
.bancard-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }

/* ── PRICING ── */
.pricing-section { background: var(--ink); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 4rem auto 0; }
@media(max-width:640px) { .pricing-grid { grid-template-columns: 1fr; gap: 2rem; } }

.price-card { background: rgba(17, 19, 24, 0.5); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 2.5rem; position: relative; display: flex; flex-direction: column; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease; }
.price-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); border-color: rgba(255, 255, 255, 0.15); }
.price-card.featured { border-color: rgba(245, 200, 66, 0.4); background: linear-gradient(160deg, rgba(26, 29, 36, 0.7) 0%, rgba(17, 19, 24, 0.8) 100%); box-shadow: 0 0 60px rgba(245, 200, 66, 0.1), inset 0 1px 0 rgba(245, 200, 66, 0.2); }
.price-card.featured:hover { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(245, 200, 66, 0.2); border-color: rgba(245, 200, 66, 0.6); }

.price-feat-badge { position: absolute; top: 0; right: 2.5rem; background: var(--gold); color: var(--ink); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 16px; border-radius: 0 0 10px 10px; box-shadow: 0 4px 15px rgba(245, 200, 66, 0.4); }
.price-tier { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.price-name { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.5rem; }
.price-tagline { font-size: 0.85rem; color: var(--dim); font-style: italic; margin-bottom: 2rem; font-weight: 300; line-height: 1.5; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 1.8rem; }
.price-currency { font-size: 0.9rem; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.price-num { font-family: var(--font-display); font-size: 3.8rem; letter-spacing: 0.02em; color: var(--white); line-height: 1; transition: text-shadow 0.3s; }
.price-card.featured .price-num { color: var(--gold); text-shadow: 0 0 20px rgba(245, 200, 66, 0.3); }
.price-period { font-size: 0.85rem; color: var(--muted); align-self: flex-end; margin-bottom: 8px; }

.price-items { list-style: none; display: flex; flex-direction: column; gap: 1rem; flex: 1; margin-bottom: 2.5rem; }
.price-items li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--dim); line-height: 1.45; }
.price-items li .check { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }
.price-items li strong { color: var(--light); font-weight: 500; }
.price-items li.hl-row { background: rgba(245, 200, 66, 0.05); border: 1px solid rgba(245, 200, 66, 0.15); border-radius: 10px; padding: 10px 12px; margin: 0 -4px; color: var(--white); }
.price-items li.hl-row strong { color: var(--gold); }

.price-cta { display: block; text-align: center; padding: 1rem; border-radius: 12px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase; }
.price-cta.outline { border: 1.5px solid rgba(255, 255, 255, 0.15); color: var(--white); }
.price-cta.outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.05); transform: translateY(-3px); }
.price-cta.solid { background: var(--gold); color: var(--ink); border: 2px solid var(--gold); box-shadow: 0 8px 20px rgba(245, 200, 66, 0.2); }
.price-cta.solid:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-4px); box-shadow: 0 12px 25px rgba(245, 200, 66, 0.4); }

.pricing-guarantee { display: flex; align-items: center; justify-content: center; gap: 15px; max-width: 600px; margin: 3rem auto 0; padding: 1.2rem; background: rgba(245, 200, 66, 0.05); border: 1px dashed rgba(245, 200, 66, 0.3); border-radius: 12px; text-align: left; }
.pricing-guarantee h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.pricing-guarantee p { color: var(--dim); font-size: 0.8rem; line-height: 1.4; margin: 0; }
@media(max-width: 640px) { .pricing-guarantee { flex-direction: column; text-align: center; } }

.no-commission { text-align: center; margin-top: 1rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.no-commission strong { color: var(--green); text-shadow: 0 0 10px rgba(34, 197, 94, 0.3); }

/* ── FAQ ── */
.faq-section { background: var(--ink2); border-top: 1px solid rgba(255,255,255,0.04); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
@media(max-width:768px) { .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 0.95rem; color: var(--light); gap: 1rem; transition: color 0.2s; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--gold); }
.faq-arrow { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--muted); }
.faq-item[open] .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-answer { padding: 0 0 1.4rem; font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.faq-answer strong { color: var(--white); }

/* ── CTA BOTTOM ── */
.cta-section { background: var(--ink); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,200,66,0.07) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; padding: clamp(5rem,12vh,9rem) clamp(1rem,5vw,3rem); }
.cta-eyebrow { font-family: var(--font-script); font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; display: block; }
.cta-h2 { font-family: var(--font-display); font-size: clamp(3.5rem,9vw,7rem); letter-spacing: 0.02em; line-height: 0.92; color: var(--white); margin-bottom: 1.4rem; }
.cta-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 2.5rem; font-weight: 300; line-height: 1.6; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.cta-fine { font-family: var(--font-mono); font-size: 0.7rem; color: var(--slate); letter-spacing: 0.04em; }
.cta-watermark { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 15vw; color: rgba(245,200,66,0.03); white-space: nowrap; pointer-events: none; letter-spacing: 0.05em; user-select: none; }

/* ── FOOTER & FLOATING WA ── */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.05); padding: 3rem clamp(1rem,5vw,4rem) 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
@media(max-width:640px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo img { height: 36px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; max-width: 300px; font-weight: 300; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li { color: var(--muted); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--slate); }
.footer-bottom span { color: var(--gold); }

.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 490; box-shadow: 0 6px 30px rgba(37,211,102,0.5); text-decoration: none; transition: all 0.3s; cursor: pointer; animation: floatPop 0.6s 1.5s ease both; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }
@keyframes floatPop { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

/* STICKY CTA MOBILE */
.mobile-sticky-bar { display: none; }
@media(max-width: 768px) {
  .mobile-sticky-bar { display: flex; align-items: center; justify-content: space-between; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(11, 12, 14, 0.9); backdrop-filter: blur(15px); border-top: 1px solid rgba(245, 200, 66, 0.2); padding: 12px 20px; z-index: 480; box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5); }
  .sticky-text { display: flex; flex-direction: column; }
  .st-title { font-weight: 700; color: var(--white); font-size: 0.9rem; }
  .st-sub { color: var(--green); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; }
  .sticky-btn { padding: 0.6rem 1rem !important; font-size: 0.85rem !important; }
  .wa-float { bottom: 90px; right: 1rem; width: 50px; height: 50px; }
  footer { padding-bottom: 100px; }
}