/* ═══════════════════════════════════════════════════
   AI TRADING MASTERY PRO — Complete Stylesheet
   Responsive: Mobile 320px · Tablet 768px · Desktop 1200px+
   ═══════════════════════════════════════════════════ */

:root {
  --gold: #C9A84C; --gold2: #E8C97A; --gold3: rgba(201,168,76,.12);
  --dark: #080808; --d2: #0F0F0F; --d3: #161616; --d4: #1E1E1E; --d5: #252525;
  --border: rgba(201,168,76,.14); --borderB: rgba(201,168,76,.42);
  --text: #EEEEE8; --muted: #6A6A65; --muted2: #888882;
  --green: #00D26A; --red: #FF4757; --blue: #3B82F6;
  --radius: 6px; --nav-h: 62px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--dark); color: var(--text); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; }
::-webkit-scrollbar { width: 3px; } ::-webkit-scrollbar-track { background: var(--dark); } ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── LOADING ── */
#loader { position: fixed; inset: 0; background: var(--dark); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; transition: opacity .5s ease, visibility .5s; }
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { position: relative; width: 80px; height: 80px; }
.loader-ring { width: 80px; height: 80px; animation: spinRing 1.5s linear infinite; }
.spin-arc { animation: dashSpin 1.5s ease-in-out infinite; }
@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes dashSpin { 0% { stroke-dasharray: 10 240; stroke-dashoffset: 0; } 50% { stroke-dasharray: 120 130; } 100% { stroke-dasharray: 10 240; stroke-dashoffset: -250; } }
.loader-logo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; color: var(--gold); letter-spacing: 2px; }
.loader-text { font-family: var(--font-display); font-size: 18px; letter-spacing: 6px; color: var(--text); }
.loader-sub { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 1px; }

/* ── CURSOR (desktop) ── */
@media (hover: hover) {
  .cursor { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9000; transform: translate(-50%,-50%); transition: transform .1s var(--transition); }
  .cursor-ring { width: 28px; height: 28px; border: 1px solid rgba(201,168,76,.4); border-radius: 50%; position: fixed; pointer-events: none; z-index: 8999; transform: translate(-50%,-50%); transition: transform .06s linear, width .2s var(--transition), height .2s var(--transition); }
}
@media (hover: none) { .cursor, .cursor-ring { display: none !important; } }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-15px) scale(1.05); } 66% { transform: translate(-10px,20px) scale(.95); } }
@keyframes tickScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(0,210,106,.4); } 50% { box-shadow: 0 0 0 6px rgba(0,210,106,0); } }
@keyframes shimmer { from { background-position: -400px 0; } to { background-position: 400px 0; } }

[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--transition), transform .7s var(--transition); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ── UTILITIES ── */
.gold { color: var(--gold); }
.green { color: var(--green); }
.red { color: var(--red); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.sec-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: .75rem; }
.sec-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); letter-spacing: 2px; line-height: 1; margin-bottom: 1rem; }
.sec-desc { font-size: 15px; color: var(--muted2); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.8; }
.pulse-dot { display: inline-block; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulseGlow 2s infinite; flex-shrink: 0; }
.pulse-dot.green { background: var(--green); }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--dark); border: none; padding: 12px 28px; border-radius: var(--radius); font-size: 13px; font-weight: 600; letter-spacing: .8px; cursor: pointer; transition: all .25s var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--borderB); padding: 12px 28px; border-radius: var(--radius); font-size: 13px; font-weight: 500; letter-spacing: .8px; cursor: pointer; transition: all .25s var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-outline:hover { background: var(--gold3); border-color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 15px 36px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: var(--nav-h); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(8,8,8,.92); border-bottom: .5px solid var(--border); transition: background .3s; }
nav.scrolled { background: rgba(8,8,8,.98); box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 100%; display: flex; align-items: center; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 17px; letter-spacing: 3px; color: var(--text); flex-shrink: 0; }
.logo-icon { width: 32px; height: 32px; background: var(--gold); color: var(--dark); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.logo-icon.small { width: 26px; height: 26px; font-size: 12px; }
.nav-links { display: flex; gap: 1.75rem; margin-left: auto; }
.nav-links a { font-size: 12px; letter-spacing: .5px; color: var(--muted2); transition: color .2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .75rem; margin-left: 1.5rem; }
.nav-live { display: flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 11px; color: var(--green); border: .5px solid rgba(0,210,106,.25); padding: 4px 10px; border-radius: 20px; }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; z-index: 10; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: .25rem; padding: 1rem 1.5rem; border-top: .5px solid var(--border); background: rgba(8,8,8,.98); }
.mobile-menu.open { display: flex; animation: fadeUp .3s var(--transition); }
.mobile-menu a { font-size: 14px; padding: .625rem 0; color: var(--muted2); border-bottom: .5px solid rgba(255,255,255,.04); transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── TICKER ── */
.ticker-wrap { margin-top: var(--nav-h); background: var(--d2); border-bottom: .5px solid var(--border); display: flex; align-items: stretch; overflow: hidden; }
.ticker-label { display: flex; flex-direction: column; border-right: .5px solid var(--border); flex-shrink: 0; }
.tlabel { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1px; padding: 8px 14px; border: none; background: none; color: var(--muted); cursor: pointer; transition: all .2s; border-bottom: .5px solid var(--border); flex: 1; }
.tlabel:last-child { border-bottom: none; }
.tlabel.active { background: var(--gold); color: var(--dark); font-weight: 600; }
.ticker-overflow { flex: 1; overflow: hidden; position: relative; }
.ticker-overflow::before, .ticker-overflow::after { content: ''; position: absolute; top: 0; bottom: 0; width: 40px; z-index: 2; }
.ticker-overflow::before { left: 0; background: linear-gradient(90deg, var(--d2), transparent); }
.ticker-overflow::after { right: 0; background: linear-gradient(-90deg, var(--d2), transparent); }
.ticker-track { display: flex; white-space: nowrap; animation: tickScroll 50s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.tick-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-right: .5px solid var(--border); font-family: var(--font-mono); font-size: 11px; }
.tick-sym { color: var(--text); font-weight: 600; }
.tick-px { font-size: 12px; font-weight: 600; }
.tick-chg { font-size: 10px; padding: 2px 6px; border-radius: 3px; font-weight: 500; }
.tick-up { color: var(--green); background: rgba(0,210,106,.1); }
.tick-dn { color: var(--red); background: rgba(255,71,87,.1); }

/* ── HERO ── */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 2rem 1.5rem; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: orbFloat 12s ease-in-out infinite; }
.orb1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%); top: -100px; right: -100px; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,210,106,.07), transparent 70%); bottom: -50px; left: -50px; animation-delay: -4s; }
.orb3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(59,130,246,.06), transparent 70%); top: 50%; left: 40%; animation-delay: -8s; }
.hero-content { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; border: .5px solid var(--borderB); padding: 5px 14px; border-radius: 20px; font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: 1px; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(52px, 7vw, 88px); line-height: .9; letter-spacing: 2px; margin-bottom: 1.5rem; overflow: hidden; }
.line-wrap { display: block; overflow: hidden; }
.line { display: block; animation: fadeUp .8s var(--spring) both; }
.line:nth-child(1) { animation-delay: .1s; }
.line:nth-child(2) { animation-delay: .2s; }
.line:nth-child(3) { animation-delay: .3s; }
.line:nth-child(4) { animation-delay: .4s; }
.hero-desc { font-size: 15px; color: var(--muted2); line-height: 1.85; margin-bottom: 1.75rem; max-width: 500px; }
.hero-desc strong { color: var(--text); font-weight: 500; }
.hero-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 2rem; }
.htag { font-family: var(--font-mono); font-size: 10px; border: .5px solid var(--border); padding: 4px 10px; border-radius: 20px; color: var(--muted2); transition: all .2s; }
.htag:hover { border-color: var(--gold); color: var(--gold); }
.hero-btns { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hstat { text-align: center; }
.hstat-n { font-family: var(--font-display); font-size: 32px; color: var(--gold); line-height: 1; }
.hstat-l { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hstat-div { width: 1px; height: 32px; background: var(--border); }
.scroll-ind { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 2px; animation: float 3s ease-in-out infinite; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); }

/* ── MARKET WIDGET ── */
.market-widget { background: var(--d3); border: .5px solid var(--border); border-radius: 10px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.5); animation: slideLeft .8s .3s var(--spring) both; }
.mw-head { padding: .875rem 1.125rem; background: var(--d2); border-bottom: .5px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.mw-title { font-family: var(--font-mono); font-size: 11px; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.mw-tabs { display: flex; gap: 4px; }
.mwtab { font-family: var(--font-mono); font-size: 10px; padding: 4px 12px; border: .5px solid var(--border); border-radius: 3px; background: none; color: var(--muted); cursor: pointer; transition: all .2s; }
.mwtab.active { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 600; }
.mw-body { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: .875rem; max-height: 280px; overflow-y: auto; }
.mw-body::-webkit-scrollbar { width: 2px; }
.mc { background: var(--d4); border: .5px solid var(--border); border-radius: 5px; padding: 9px 10px; transition: border-color .2s, transform .2s; cursor: default; }
.mc:hover { border-color: var(--borderB); transform: translateY(-1px); }
.mc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.mc-sym { font-family: var(--font-mono); font-size: 10px; color: var(--muted2); }
.mc-chg { font-size: 9px; padding: 1px 5px; border-radius: 3px; font-family: var(--font-mono); font-weight: 500; }
.mc-price { font-family: var(--font-display); font-size: 17px; color: var(--text); line-height: 1.1; }
.mc-spark { width: 100%; height: 20px; margin-top: 4px; }
.idr-strip { padding: .75rem 1.125rem; background: linear-gradient(135deg, rgba(201,168,76,.08), transparent); border-top: .5px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.idr-left { display: flex; align-items: center; gap: .625rem; }
.idr-flag { font-size: 20px; }
.idr-label { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 1px; margin-bottom: 2px; }
.idr-rate { font-family: var(--font-display); font-size: 18px; color: var(--gold); line-height: 1; }
.idr-chg { font-family: var(--font-mono); font-size: 10px; padding: 2px 7px; border-radius: 3px; }
.idr-time { font-family: var(--font-mono); font-size: 9px; color: var(--green); margin-top: 3px; text-align: right; }

/* ── SECTIONS COMMON ── */
section { padding: 5rem 0; }
.about-section { background: var(--d2); }
.market-section { background: var(--dark); }
.news-section { background: var(--d2); }
.modules-section { background: var(--dark); }
.testi-section { background: var(--d2); }
.pricing-section { background: var(--dark); }
.guar-section { background: var(--d2); }
.faq-section { background: var(--dark); }

/* ── COMPARE GRID ── */
.compare-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: center; margin-bottom: 3rem; }
.compare-card { background: var(--d3); border: .5px solid var(--border); border-radius: 10px; padding: 2rem; }
.compare-card.good { border-color: rgba(0,210,106,.3); background: rgba(0,210,106,.03); }
.compare-card.bad { border-color: rgba(255,71,87,.2); }
.compare-vs { display: flex; justify-content: center; padding: 0 1rem; }
.vs-circle { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--borderB); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: var(--gold); background: var(--d3); }
.cc-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.cc-icon { font-size: 24px; }
.cc-header h3 { font-size: 15px; font-weight: 500; }
.cc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cc-list li { font-size: 13px; padding: 6px 0; border-bottom: .5px solid rgba(255,255,255,.04); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.bad-item { color: var(--muted2); }
.bad-item::before { content: '✗'; color: var(--red); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.good-item { color: var(--text); }
.good-item::before { content: '✓'; color: var(--green); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

/* ── HOW IT WORKS ── */
.how-section { margin-top: 2rem; }
.flow-steps { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding: 1rem 0 1.5rem; }
.flow-step { flex: 1; min-width: 140px; background: var(--d3); border: .5px solid var(--border); padding: 1.25rem 1rem; border-radius: 8px; text-align: center; transition: border-color .25s, transform .25s; }
.flow-step:hover { border-color: var(--borderB); transform: translateY(-3px); }
.flow-arrow { font-size: 18px; color: var(--gold); padding: 0 .5rem; margin-top: 3.5rem; flex-shrink: 0; }
.fs-num { font-family: var(--font-mono); font-size: 10px; color: var(--gold); margin-bottom: 6px; }
.fs-icon { font-size: 28px; margin-bottom: 6px; }
.fs-title { font-size: 13px; font-weight: 500; margin-bottom: 5px; }
.fs-desc { font-size: 11px; color: var(--muted2); line-height: 1.5; }

/* ── CONCEPTS ── */
.concepts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.concept-card { background: var(--d3); border: .5px solid var(--border); border-radius: 10px; padding: 1.5rem; transition: border-color .25s, transform .25s; }
.concept-card:hover { border-color: var(--borderB); transform: translateY(-3px); }
.concept-icon { font-size: 28px; margin-bottom: .875rem; }
.concept-card h3 { font-size: 15px; font-weight: 500; margin-bottom: .625rem; }
.concept-card p { font-size: 13px; color: var(--muted2); line-height: 1.7; }

/* ── MARKET TABLE ── */
.market-tabs-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.mtab { font-family: var(--font-mono); font-size: 11px; padding: 7px 16px; border: .5px solid var(--border); border-radius: 4px; background: none; color: var(--muted2); cursor: pointer; transition: all .2s; white-space: nowrap; }
.mtab.active { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 600; }
.mtab:hover:not(.active) { border-color: var(--borderB); color: var(--text); }
.market-table-wrap { overflow-x: auto; border: .5px solid var(--border); border-radius: 8px; }
.mktable { width: 100%; border-collapse: collapse; min-width: 700px; }
.mktable th { font-family: var(--font-mono); font-size: 10px; color: var(--muted); padding: 10px 14px; text-align: left; border-bottom: .5px solid var(--border); background: var(--d3); letter-spacing: .5px; white-space: nowrap; }
.mktable td { padding: 11px 14px; font-size: 13px; border-bottom: .5px solid rgba(201,168,76,.05); white-space: nowrap; }
.mktable tr:hover td { background: rgba(201,168,76,.03); }
.mktable tr:last-child td { border-bottom: none; }
.td-sym { font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.td-name { font-size: 10px; color: var(--muted); margin-top: 1px; }
.td-price { font-family: var(--font-display); font-size: 15px; }
.td-chg { font-family: var(--font-mono); font-size: 11px; padding: 2px 7px; border-radius: 3px; }
.td-mcap { font-family: var(--font-mono); font-size: 11px; color: var(--muted2); }

/* ── IDR BIG BOX ── */
.idr-big-box { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; background: var(--d3); border: .5px solid var(--borderB); border-radius: 10px; padding: 2rem; background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(8,8,8,.8)); }
.idr-big-title { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 1px; margin-bottom: .5rem; }
.idr-big-rate { font-family: var(--font-display); font-size: 42px; color: var(--gold); line-height: 1; margin-bottom: .25rem; }
.idr-big-sub { font-size: 12px; color: var(--muted2); margin-bottom: .5rem; }
.idr-big-chg { font-family: var(--font-mono); font-size: 12px; padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: .5rem; }
.idr-big-src { font-size: 10px; color: var(--muted); }
.idr-cells { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1rem; }
.idr-cell { background: var(--d4); border-radius: 5px; padding: 8px; text-align: center; }
.idr-cell-l { font-family: var(--font-mono); font-size: 9px; color: var(--muted); margin-bottom: 3px; }
.idr-cell-v { font-family: var(--font-display); font-size: 14px; }
.idr-cryptos { display: flex; flex-direction: column; gap: 6px; }
.idr-crypto-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: .5px solid var(--border); }
.idr-crypto-sym { font-family: var(--font-mono); font-size: 12px; color: var(--muted2); }
.idr-crypto-val { font-family: var(--font-display); font-size: 14px; color: var(--gold); }

/* ── NEWS ── */
.news-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.5rem; }
.news-main-col { background: var(--d3); border: .5px solid var(--border); border-radius: 10px; overflow: hidden; }
.news-head { padding: .875rem 1.25rem; background: var(--d2); border-bottom: .5px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.news-live { font-family: var(--font-mono); font-size: 10px; color: var(--green); display: flex; align-items: center; gap: 6px; }
.news-updated { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.news-feed { padding: .5rem; }
.nitem { padding: .875rem; border-bottom: .5px solid var(--border); cursor: pointer; transition: background .2s; border-radius: 5px; }
.nitem:hover { background: rgba(201,168,76,.04); }
.nitem:last-child { border-bottom: none; }
.ncat { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; padding: 1px 7px; border-radius: 3px; display: inline-block; margin-bottom: 5px; }
.ncat.crypto { background: rgba(201,168,76,.12); color: var(--gold); }
.ncat.forex { background: rgba(59,130,246,.12); color: #60A5FA; }
.ncat.macro { background: rgba(0,210,106,.12); color: var(--green); }
.ntitle { font-size: 13px; font-weight: 500; line-height: 1.5; margin-bottom: 4px; }
.nmeta { font-size: 10px; color: var(--muted); display: flex; gap: .75rem; }
.news-side-col { display: flex; flex-direction: column; gap: 1rem; }
.side-card { background: var(--d3); border: .5px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.side-card-title { font-family: var(--font-mono); font-size: 10px; color: var(--gold); letter-spacing: 1px; margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.fg-gauge-wrap { padding: .5rem 0; }
.fg-svg { display: block; max-width: 180px; margin: 0 auto; }
.fg-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; margin-top: .25rem; }
.fg-status { text-align: center; font-family: var(--font-display); font-size: 18px; letter-spacing: 2px; color: var(--gold); margin: .625rem 0; }
.fg-history { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.fg-hist-item { background: var(--d4); padding: 6px; border-radius: 4px; text-align: center; }
.fg-hist-l { font-family: var(--font-mono); font-size: 8px; color: var(--muted); margin-bottom: 2px; }
.fg-hist-v { font-family: var(--font-display); font-size: 16px; color: var(--text); }
.src-list { display: flex; flex-direction: column; gap: 5px; }
.src-item { display: flex; align-items: center; gap: 10px; padding: 7px 9px; border: .5px solid var(--border); border-radius: 5px; background: var(--d4); transition: all .2s; }
.src-item:hover { border-color: var(--borderB); transform: translateX(3px); }
.src-logo { width: 30px; height: 30px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; flex-shrink: 0; color: white; }
.bloomberg { background: #000; font-size: 16px; font-family: Georgia, serif; }
.coindesk { background: #4FC3F7; color: #000; }
.ct { background: #F7931A; }
.reuters { background: #FF8200; font-size: 16px; }
.panic { background: #E53935; }
.flive { background: #1565C0; }
.cnbc { background: #0073CF; font-size: 9px; letter-spacing: .5px; }
.investing { background: #F5A623; color: #000; }
.src-info { flex: 1; }
.src-name { font-size: 12px; font-weight: 500; }
.src-sub { font-size: 10px; color: var(--muted); }
.src-arrow { font-size: 12px; color: var(--muted); }

/* ── MODULES ── */
.modules-list { display: flex; flex-direction: column; }
.mod-item { display: grid; grid-template-columns: 70px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: .5px solid var(--border); }
.mod-item:last-child { border-bottom: none; }
.mod-left { display: flex; flex-direction: column; align-items: center; }
.mod-num { font-family: var(--font-display); font-size: 48px; color: var(--border); line-height: 1; transition: color .3s; }
.mod-item:hover .mod-num { color: var(--borderB); }
.mod-line { width: 1px; flex: 1; background: var(--border); margin-top: .5rem; }
.mod-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .75rem; }
.mod-title { font-size: 17px; font-weight: 500; margin-bottom: 4px; transition: color .2s; }
.mod-item:hover .mod-title { color: var(--gold); }
.mod-sub { font-size: 11px; color: var(--muted2); }
.mod-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.mod-dur { font-family: var(--font-mono); font-size: 10px; color: var(--muted); border: .5px solid var(--border); padding: 2px 8px; border-radius: 3px; }
.mod-badge { font-family: var(--font-mono); font-size: 9px; padding: 2px 8px; border-radius: 3px; }
.mod-badge.pro { background: rgba(201,168,76,.15); color: var(--gold); }
.mod-desc { font-size: 13px; color: var(--muted2); line-height: 1.75; margin-bottom: .875rem; }
.mod-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: .875rem; }
.mod-tags span { font-size: 10px; border: .5px solid var(--border); padding: 2px 9px; border-radius: 3px; color: var(--muted2); font-family: var(--font-mono); }
.mod-resources { background: var(--d3); border: .5px solid var(--border); border-radius: 6px; padding: .875rem; }
.mr-title { font-family: var(--font-mono); font-size: 9px; color: var(--gold); margin-bottom: .5rem; letter-spacing: 1px; }
.mod-resources a { display: block; font-size: 11px; color: #60A5FA; margin-bottom: 4px; transition: color .2s; }
.mod-resources a:hover { color: var(--text); }
.mod-resources a:last-child { margin-bottom: 0; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.tcard { background: var(--d3); border: .5px solid var(--border); border-radius: 10px; padding: 1.5rem; transition: border-color .25s, transform .25s; }
.tcard:hover { border-color: var(--borderB); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: .875rem; letter-spacing: 2px; }
.tquote { font-size: 13px; line-height: 1.8; color: var(--text); margin-bottom: 1.125rem; }
.tauthor { display: flex; align-items: center; gap: .75rem; }
.tav { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--dark); font-size: 13px; flex-shrink: 0; }
.tname { font-size: 13px; font-weight: 500; }
.trole { font-size: 10px; color: var(--muted2); }

/* ── PRICING ── */
.countdown-bar { display: flex; align-items: center; gap: 1rem; background: rgba(255,71,87,.07); border: .5px solid rgba(255,71,87,.25); border-radius: 6px; padding: .75rem 1.25rem; margin-bottom: 2rem; font-size: 13px; flex-wrap: wrap; }
.countdown-time { font-family: var(--font-display); font-size: 24px; color: var(--red); letter-spacing: 2px; }
.countdown-save { font-family: var(--font-mono); font-size: 11px; color: var(--green); margin-left: auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: .5px solid var(--border); border-radius: 10px; overflow: hidden; }
.pcard { background: var(--d2); padding: 2rem 1.5rem; position: relative; }
.pcard.hot { background: var(--d3); }
.phot-badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--dark); font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; padding: 3px 14px; border-radius: 0 0 6px 6px; }
.pcard-top { padding-top: 1.5rem; margin-bottom: 1.5rem; }
.ptier { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 1px; margin-bottom: .75rem; }
.pprice-wrap { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .25rem; }
.pprice { font-family: var(--font-display); font-size: 50px; color: var(--text); line-height: 1; }
.pprice sup { font-size: 20px; vertical-align: top; margin-top: 8px; }
.porig { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.psave { font-family: var(--font-mono); font-size: 11px; color: var(--green); }
.plist { list-style: none; display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.plist li { font-size: 12px; padding: 7px 0; border-bottom: .5px solid var(--border); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.plist li.y { color: var(--text); }
.plist li.n { color: var(--muted); }
.plist li.y::before { content: '✓'; color: var(--green); font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.plist li.n::before { content: '—'; color: var(--muted); font-size: 11px; flex-shrink: 0; }
.pguarantee { text-align: center; font-size: 11px; color: var(--muted); margin-top: .75rem; }
.pay-logos-row { display: flex; gap: .625rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 1.5rem; }
.pay-logo { display: flex; align-items: center; justify-content: center; padding: 6px 12px; border: .5px solid var(--border); border-radius: 5px; background: var(--d2); transition: border-color .2s; }
.pay-logo:hover { border-color: var(--borderB); }

/* ── GUARANTEE ── */
.guar-box { background: var(--d3); border: .5px solid var(--borderB); border-radius: 12px; padding: 3rem; text-align: center; background: linear-gradient(135deg, rgba(201,168,76,.06), var(--d3)); }
.guar-badge { width: 90px; height: 90px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; background: rgba(201,168,76,.1); animation: float 4s ease-in-out infinite; }
.gb-inner { font-family: var(--font-display); font-size: 14px; color: var(--gold); line-height: 1.3; text-align: center; letter-spacing: 1px; }
.guar-box h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); letter-spacing: 2px; margin-bottom: 1rem; }
.guar-box p { font-size: 14px; color: var(--muted2); max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; max-width: 780px; }
.faq-item { border-bottom: .5px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-size: 14px; background: none; border: none; color: var(--text); text-align: left; gap: 1rem; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 18px; color: var(--gold); transition: transform .35s var(--spring); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 13px; color: var(--muted2); line-height: 1.8; transition: max-height .4s var(--transition), padding .4s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

/* ── FOOTER ── */
footer { background: var(--d2); border-top: .5px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 16px; letter-spacing: 3px; margin-bottom: 1rem; }
.footer-desc { font-size: 12px; color: var(--muted2); line-height: 1.8; margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.fc-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted2); transition: color .2s; }
.fc-item:hover { color: var(--text); }
footer h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 1rem; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: 12px; color: var(--muted2); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: .5px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
.footer-risk { font-size: 11px; color: var(--muted); }

/* ── AI CHAT ── */
.chat-wrap { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400; display: flex; flex-direction: column; align-items: flex-end; gap: .625rem; }
.chat-box { width: 340px; background: var(--d3); border: .5px solid var(--borderB); border-radius: 12px; overflow: hidden; box-shadow: 0 12px 50px rgba(0,0,0,.6); display: none; flex-direction: column; transform-origin: bottom right; }
.chat-box.open { display: flex; animation: scaleIn .3s var(--spring); }
.chat-head { padding: .875rem 1rem; background: var(--d2); border-bottom: .5px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.chat-head-left { display: flex; align-items: center; gap: .625rem; }
.chat-av { width: 32px; height: 32px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.chat-hname { font-size: 13px; font-weight: 500; }
.chat-hstatus { font-family: var(--font-mono); font-size: 9px; color: var(--green); display: flex; align-items: center; gap: 4px; }
.chat-head-right { display: flex; align-items: center; gap: 5px; }
.cmode-btn { font-family: var(--font-mono); font-size: 9px; padding: 3px 9px; border: .5px solid var(--border); border-radius: 3px; background: none; color: var(--muted); cursor: pointer; transition: all .2s; }
.cmode-btn.active { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.chat-close-btn { background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer; padding: 2px 5px; transition: color .2s; }
.chat-close-btn:hover { color: var(--text); }
.chat-msgs { height: 240px; overflow-y: auto; padding: .75rem; display: flex; flex-direction: column; gap: .5rem; }
.chat-msgs::-webkit-scrollbar { width: 2px; }
.cmsg { max-width: 85%; padding: 8px 11px; border-radius: 10px; font-size: 12px; line-height: 1.6; }
.cmsg.ai { background: var(--d4); border: .5px solid var(--border); align-self: flex-start; border-bottom-left-radius: 3px; }
.cmsg.user { background: var(--gold); color: var(--dark); align-self: flex-end; font-weight: 500; border-bottom-right-radius: 3px; }
.cmsg.sys { background: rgba(59,130,246,.1); color: #93C5FD; font-family: var(--font-mono); font-size: 10px; align-self: center; border: .5px solid rgba(59,130,246,.2); border-radius: 5px; }
.chat-typing { padding: 8px 11px; display: none; align-items: center; gap: 4px; align-self: flex-start; }
.chat-typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: typingBounce .8s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce { 0%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-6px); } }
.chat-quick-btns { display: flex; gap: 4px; flex-wrap: wrap; padding: .5rem .75rem; background: var(--d2); border-top: .5px solid var(--border); }
.chat-quick-btns button { font-size: 10px; padding: 3px 9px; border: .5px solid var(--border); background: none; color: var(--muted); border-radius: 3px; cursor: pointer; font-family: var(--font-mono); transition: all .2s; }
.chat-quick-btns button:hover { border-color: var(--gold); color: var(--gold); }
.chat-input-row { display: flex; border-top: .5px solid var(--border); }
.chat-input { flex: 1; padding: .75rem; background: var(--d4); border: none; color: var(--text); font-family: var(--font-body); font-size: 12px; outline: none; }
.chat-input::placeholder { color: var(--muted); }
.chat-send { padding: .75rem 1rem; background: var(--gold); border: none; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.chat-send:hover { background: var(--gold2); }
.chat-toggle-btn { width: 52px; height: 52px; background: var(--gold); border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(201,168,76,.35); transition: all .25s var(--spring); }
.chat-toggle-btn:hover { background: var(--gold2); transform: scale(1.08); }

/* ── PAYMENT MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 600; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(8px); }
.modal-overlay.show { display: flex; }
.modal-box { background: var(--d2); border: .5px solid var(--borderB); border-radius: 12px; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; position: relative; animation: scaleIn .35s var(--spring); }
.modal-box::-webkit-scrollbar { width: 2px; }
.modal-head { padding: 1.25rem 1.5rem; border-bottom: .5px solid var(--border); display: flex; justify-content: space-between; align-items: center; background: var(--d3); position: sticky; top: 0; z-index: 1; }
.modal-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; }
.modal-plan-name { font-family: var(--font-mono); font-size: 10px; color: var(--gold); margin-top: 2px; }
.modal-price { font-family: var(--font-display); font-size: 32px; color: var(--gold); }
.modal-close { background: none; border: none; color: var(--muted); font-size: 20px; cursor: pointer; transition: color .2s; padding: 4px 8px; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 1.5rem; }
.mf-group { margin-bottom: .875rem; }
.mf-group label { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: .5px; margin-bottom: 5px; }
.mf-group input { width: 100%; padding: 10px 13px; background: var(--d4); border: .5px solid var(--border); border-radius: 5px; color: var(--text); font-size: 13px; font-family: var(--font-body); outline: none; transition: border-color .2s; }
.mf-group input:focus { border-color: var(--borderB); }
.mf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.pay-method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.pm-opt { border: .5px solid var(--border); border-radius: 5px; padding: 8px 4px; text-align: center; cursor: pointer; transition: all .2s; background: var(--d4); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.pm-opt:hover { border-color: var(--borderB); }
.pm-opt.selected { border-color: var(--gold); background: var(--gold3); }
.pm-opt span { font-family: var(--font-mono); font-size: 9px; color: var(--muted); }
.mf-secure { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); margin: 1rem 0; font-family: var(--font-mono); }
.modal-success { display: none; text-align: center; padding: 3rem 2rem; }
.modal-success.show { display: block; animation: fadeUp .5s var(--spring); }
.success-anim { font-size: 56px; margin-bottom: 1rem; animation: scaleIn .5s var(--spring); }
.modal-success h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; color: var(--gold); margin-bottom: .75rem; }
.modal-success p { font-size: 14px; color: var(--muted2); line-height: 1.8; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (768px - 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .market-widget { max-width: 500px; margin: 0 auto; }
  .compare-grid { grid-template-columns: 1fr; gap: 1rem; }
  .compare-vs { display: none; }
  .concepts-grid { grid-template-columns: repeat(2,1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .news-side-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .idr-big-box { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 767px)
══════════════════════════════════════════════ */
@media (max-width: 767px) {
  :root { --nav-h: 56px; }
  .container { padding: 0 1rem; }
  section { padding: 3.5rem 0; }
  .sec-title { font-size: clamp(28px, 7vw, 40px); }

  /* NAV mobile */
  .nav-links { display: none; }
  .nav-live { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 1rem; }

  /* HERO mobile */
  .hero { padding: 1.5rem 1rem; min-height: 100svh; align-items: flex-start; padding-top: calc(var(--nav-h) + 2.5rem); }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: clamp(44px, 12vw, 68px); }
  .hero-desc { font-size: 14px; }
  .hero-btns { flex-direction: column; gap: .75rem; }
  .btn-lg { padding: 13px 24px; font-size: 13px; width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; }
  .hstat-n { font-size: 26px; }
  .hstat-div { height: 24px; }
  .scroll-ind { display: none; }
  .hero-tags { gap: 5px; }
  .htag { font-size: 9px; padding: 3px 8px; }

  /* MARKET WIDGET mobile */
  .market-widget { border-radius: 8px; }
  .mw-body { grid-template-columns: 1fr 1fr; gap: 5px; padding: .625rem; max-height: 240px; }
  .mc-price { font-size: 15px; }

  /* TICKER mobile */
  .ticker-label { display: none; }
  .tick-item { padding: 8px 14px; min-width: 150px; }

  /* COMPARE mobile */
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .flow-steps { flex-direction: column; gap: 1px; }
  .flow-arrow { display: none; }
  .flow-step { border-radius: 0; }

  /* CONCEPTS mobile */
  .concepts-grid { grid-template-columns: 1fr; }

  /* MARKET TABLE mobile */
  .market-tabs-row { gap: 4px; }
  .mtab { font-size: 10px; padding: 6px 10px; }
  .mktable th:nth-child(6), .mktable td:nth-child(6),
  .mktable th:nth-child(7), .mktable td:nth-child(7) { display: none; }
  .idr-big-box { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.25rem; }
  .idr-big-rate { font-size: 32px; }
  .idr-cells { grid-template-columns: repeat(3,1fr); }

  /* NEWS mobile */
  .news-layout { grid-template-columns: 1fr; }
  .news-side-col { display: flex; flex-direction: column; gap: 1rem; }

  /* MODULES mobile */
  .mod-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .mod-num { font-size: 36px; }
  .mod-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .mod-meta { flex-direction: row; align-items: center; }

  /* TESTI mobile */
  .testi-grid { grid-template-columns: 1fr; }

  /* PRICING mobile */
  .pricing-grid { grid-template-columns: 1fr; border-radius: 8px; }
  .countdown-bar { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .countdown-save { margin-left: 0; }

  /* FOOTER mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

  /* CHAT mobile */
  .chat-box { width: calc(100vw - 2rem); max-width: 340px; }
  .chat-wrap { bottom: 1rem; right: 1rem; }

  /* MODAL mobile */
  .modal-box { max-height: 95vh; border-radius: 12px 12px 0 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .pay-method-grid { grid-template-columns: repeat(4,1fr); gap: 4px; }
  .mf-row { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 380px)
══════════════════════════════════════════════ */
@media (max-width: 380px) {
  .hero-title { font-size: 40px; }
  .mw-body { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: .75rem; }
  .hstat-n { font-size: 22px; }
  .pprice { font-size: 42px; }
  .pay-method-grid { grid-template-columns: repeat(2,1fr); }
}

/* iPad Pro landscape */
@media (min-width: 1024px) and (max-width: 1199px) {
  .hero-title { font-size: 72px; }
  .concepts-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: repeat(3,1fr); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* Tambahkan di baris paling bawah untuk memaksa tampilan muncul */
.hero, .hero-content, [data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
}
