/* =========================================================================
   STYLE.CSS — Arabic (RTL) Stylesheet for BISA Token Website
   Dark navy elite theme — matches English version exactly (RTL-adapted)
   ========================================================================= */

:root {
    --primary-navy: #0B132B;
    --secondary-navy: #1C2541;
    --gold-majestic: #D4AF37;
    --gold-dark: #AA8C2C;
    --gold-bright: #F9A826;
    --emerald-vibrant: #14C784;
    --cyan-glow: #00E1D9;
    --bg-cream: #F8F9FA;
    --text-main: #FFFFFF;
    --text-muted: #6C757D;
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.25);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--primary-navy);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

section { padding: 5rem 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { line-height: 1.3; }

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 4rem;
    color: #FFF;
}
.section-title span { color: var(--gold-majestic); }

/* =========================================================================
   Scroll Progress Bar
   ========================================================================= */
#scroll-progress {
    position: fixed;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: linear-gradient(to left, var(--gold-majestic), var(--emerald-vibrant));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* =========================================================================
   Language Switcher (fixed — left side for RTL pages)
   ========================================================================= */
.lang-switcher-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}
.elite-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 19, 43, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--gold-majestic);
    color: var(--gold-majestic);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    direction: ltr;
}
.elite-lang-btn:hover {
    background: var(--gold-majestic);
    color: var(--primary-navy);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}
.elite-lang-btn svg { stroke: currentColor; flex-shrink: 0; }

@media (max-width: 768px) {
    .lang-switcher-container { top: 15px; left: 15px; }
    .elite-lang-btn { padding: 6px 14px; font-size: 0.85rem; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--gold-majestic);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.035'%3E%3Cpath d='M30 0 L35 10 L45 10 L37 16 L40 27 L30 21 L20 27 L23 16 L15 10 L25 10 Z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-text { flex: 1; min-width: 300px; }

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}
.hero-text h1 span {
    background: linear-gradient(to right, var(--gold-majestic), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 2.5rem;
    color: #A0AABF;
    max-width: 600px;
    line-height: 1.8;
}

.vip-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-majestic);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-portrait {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.portrait-frame {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    border-radius: 24px;
    padding: 4px;
    background: linear-gradient(135deg, var(--emerald-vibrant), var(--gold-majestic), var(--cyan-glow));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite, float 8s ease-in-out infinite;
}
.portrait-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid var(--secondary-navy);
    background-color: var(--primary-navy);
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-6px); } }

/* =========================================================================
   Buttons
   ========================================================================= */
@keyframes glowingButton {
    0% { box-shadow: 0 0 5px var(--gold-majestic); }
    50% { box-shadow: 0 0 20px var(--gold-majestic), 0 0 30px rgba(212, 175, 55, 0.4); }
    100% { box-shadow: 0 0 5px var(--gold-majestic); }
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-majestic), var(--gold-dark));
    color: var(--primary-navy);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--gold-bright);
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    animation: glowingButton 2s infinite ease-in-out;
    transition: 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}
.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    animation: none;
    box-shadow: 0 0 40px var(--gold-majestic);
}

/* =========================================================================
   Trust Indicators (SVG chips)
   ========================================================================= */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #D1D5DB;
    transition: 0.3s;
}
.trust-chip:hover { border-color: var(--gold-majestic); color: var(--gold-bright); }
.trust-chip svg { stroke: var(--gold-majestic); flex-shrink: 0; }

/* =========================================================================
   Scarcity Bar
   ========================================================================= */
.scarcity-bar {
    margin-top: 1.5rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    max-width: 500px;
}
.scarcity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.scarcity-label { font-size: 0.85rem; color: #A0AABF; font-weight: 600; }
.scarcity-count { font-size: 0.95rem; font-weight: 800; color: var(--gold-bright); }
.scarcity-track { height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 50px; overflow: hidden; }
.scarcity-fill {
    height: 100%;
    background: linear-gradient(to left, var(--gold-majestic), var(--emerald-vibrant));
    border-radius: 50px;
    transition: width 1s ease;
}
.scarcity-note { margin-top: 0.6rem; font-size: 0.8rem; color: #A0AABF; }
.scarcity-usd {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--emerald-vibrant);
    font-weight: 600;
    opacity: 0.85;
}
.scarcity-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--emerald-vibrant);
    font-weight: 700;
    white-space: nowrap;
}
.live-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald-vibrant);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.75); }
}

/* =========================================================================
   Social Proof Stats
   ========================================================================= */
.social-proof-section {
    background: var(--secondary-navy);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.5rem 0;
}
.proof-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}
.proof-stat { text-align: center; padding: 1.5rem 2rem; border-right: 1px solid rgba(255, 255, 255, 0.06); }
.proof-stat:first-child { border-right: none; }
.proof-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold-majestic); margin-bottom: 0.3rem; }
.proof-stat span { font-size: 0.85rem; color: #A0AABF; line-height: 1.5; display: block; }

@media (max-width: 768px) {
    .proof-stats-grid { grid-template-columns: 1fr 1fr; }
    .proof-stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
}

/* =========================================================================
   Video Section
   ========================================================================= */
.video-section {
    background-color: var(--secondary-navy);
    padding: 5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.majestic-video-container { max-width: 950px; margin: 0 auto; text-align: center; }
.majestic-frame {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-majestic), var(--gold-dark));
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(8, 37, 103, 0.2), 0 0 30px rgba(212, 175, 55, 0.3);
    margin-bottom: 2.5rem;
    animation: glowingButton 4s infinite ease-in-out;
}
.majestic-frame-inner {
    background: var(--primary-navy);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--secondary-navy);
}

/* YouTube Lazy */
.yt-lazy {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    cursor: pointer; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    background: #000;
}
.yt-poster { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; }
.yt-lazy:hover .yt-poster { opacity: 0.65; }
.yt-play-btn { position: relative; z-index: 2; transition: transform 0.2s ease; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)); }
.yt-lazy:hover .yt-play-btn { transform: scale(1.12); }

.post-video-suggestion {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border: 1px solid var(--gold-majestic);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: #FFF;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}
.post-video-suggestion::before {
    content: '👑';
    position: absolute;
    top: -20px; left: -10px;
    font-size: 8rem;
    opacity: 0.05;
}
.post-video-suggestion h3 { color: var(--gold-bright); margin-bottom: 1rem; font-size: 1.8rem; font-weight: 900; position: relative; z-index: 2; }
.post-video-suggestion p { color: #D1D5DB; margin-bottom: 2rem; font-size: 1.1rem; line-height: 1.8; position: relative; z-index: 2; }

/* =========================================================================
   Cards & Grid
   ========================================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }

.card {
    background: #FFFFFF;
    color: #1A1A24;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-premium);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.card:hover { transform: translateY(-10px); border-color: var(--gold-majestic); }
.card::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 5px; height: 100%;
    background: linear-gradient(to bottom, var(--gold-majestic), var(--emerald-vibrant));
}
.card h3 { color: var(--primary-navy); margin-bottom: 1.2rem; font-weight: 800; }
.card ul { list-style: none; }
.card ul li { margin-bottom: 0.8rem; padding-right: 1.5rem; position: relative; }
.card ul li::before { content: '✦'; position: absolute; right: 0; color: var(--gold-majestic); }

.big-number { font-size: 4rem; font-weight: 900; color: var(--emerald-vibrant); display: block; margin-bottom: 0.5rem; }

/* Accent section for profit distribution on dark background */
.accent-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    padding: 5rem 1.5rem;
    margin-bottom: 5rem;
}

/* =========================================================================
   Elite Example Box
   ========================================================================= */
.elite-example-box {
    background: linear-gradient(135deg, var(--secondary-navy), var(--primary-navy));
    color: #FFF;
    border: 2px solid var(--gold-majestic);
    border-radius: 20px;
    padding: 3.5rem;
    margin-top: 4rem;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}
.elite-example-box::before {
    content: '📊';
    position: absolute;
    top: -20px; right: -20px;
    font-size: 10rem;
    opacity: 0.05;
}
.elite-example-title { color: var(--gold-bright); font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem; text-align: center; position: relative; z-index: 2; }
.elite-example-desc { text-align: center; color: #A0AABF; font-size: 1.1rem; margin-bottom: 2.5rem; position: relative; z-index: 2; }

.example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; position: relative; z-index: 2; }

.example-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-right: 4px solid var(--gold-majestic);
    backdrop-filter: blur(5px);
}
.example-step.investor-step { border-right-color: var(--emerald-vibrant); }
.example-step h4 { color: var(--cyan-glow); margin-bottom: 0.5rem; font-size: 1.1rem; }
.example-step.investor-step h4 { color: var(--emerald-vibrant); }
.example-step p { color: #A0AABF; font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
.example-step strong { color: #FFF; font-size: 1.1rem; }

.example-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(20, 199, 132, 0.1), rgba(8, 37, 103, 0.4));
    border: 1px solid var(--emerald-vibrant);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(20, 199, 132, 0.15);
    position: relative;
    overflow: hidden;
}
.example-highlight::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, transparent, var(--emerald-vibrant), transparent);
}
.highlight-intro { color: #D1D5DB; font-size: 1.1rem; margin-bottom: 1rem; }
.highlight-main-value {
    color: var(--emerald-vibrant);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(20, 199, 132, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    direction: ltr;
}
.highlight-main-value .currency { font-size: 1.5rem; color: var(--gold-bright); font-weight: 700; }
.highlight-roi-box {
    display: inline-block;
    background: rgba(20, 199, 132, 0.15);
    border: 1px solid rgba(20, 199, 132, 0.4);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.highlight-roi-box .roi-percentage { color: var(--emerald-vibrant); font-size: 1.5rem; font-weight: 900; margin: 0 0.3rem; }
.highlight-footer { color: #A0AABF; font-size: 0.95rem; line-height: 1.8; max-width: 700px; margin: 0 auto; }

/* =========================================================================
   Calculator
   ========================================================================= */
.calculator-section {
    background: linear-gradient(135deg, var(--secondary-navy), var(--primary-navy));
    border: 2px solid var(--emerald-vibrant);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    color: #FFF;
    box-shadow: 0 10px 30px rgba(20, 199, 132, 0.2);
    position: relative;
}
.calculator-section::before {
    content: '🧮';
    position: absolute;
    top: -10px; right: -10px;
    font-size: 8rem;
    opacity: 0.05;
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2rem; position: relative; z-index: 2; }
.calc-inputs { display: flex; flex-direction: column; gap: 1.5rem; }
.calc-input-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.calc-input-group label { color: var(--gold-bright); font-weight: 700; font-size: 1rem; }
.calc-input-group input, .calc-input-group select {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--gold-majestic);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    font-family: 'Tajawal', sans-serif;
    transition: 0.3s;
    outline: none;
}
.calc-input-group input:focus, .calc-input-group select:focus {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
}
.calc-input-group select option { background-color: var(--secondary-navy); color: #FFF; }
.calc-input-group small { color: #A0AABF; font-size: 0.85rem; }

.calc-results {
    background: rgba(20, 199, 132, 0.1);
    border: 1px solid var(--emerald-vibrant);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.calc-results h4 { color: var(--emerald-vibrant); font-size: 1.4rem; margin-bottom: 1rem; }
.result-value { font-size: 3rem; font-weight: 900; color: white; display: block; margin-bottom: 1.5rem; }
.result-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    color: #A0AABF;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}
.calc-note {
    background: rgba(255, 255, 255, 0.04);
    border-right: 4px solid var(--gold-majestic);
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #D1D5DB;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* =========================================================================
   Steps Section
   ========================================================================= */
.steps-wrapper {
    background: rgba(255, 255, 255, 0.02);
    padding: 4rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.steps-list { list-style: none; counter-reset: step-counter; }
.steps-list li {
    counter-increment: step-counter;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1.2rem;
    padding: 2rem 4.5rem 2rem 2rem;
    border-radius: 12px;
    position: relative;
    border-right: 4px solid transparent;
    transition: 0.3s;
}
.steps-list li:hover {
    border-right-color: var(--gold-majestic);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-5px);
}
.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    right: 1.2rem; top: 1.8rem;
    background: var(--gold-majestic);
    color: var(--primary-navy);
    width: 35px; height: 35px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1rem;
}
.steps-list li span { font-weight: 900; color: var(--gold-bright); display: block; margin-bottom: 0.5rem; font-size: 1.1rem; }

/* =========================================================================
   Token Section
   ========================================================================= */
.token-logo-wrapper { text-align: center; margin-bottom: 3rem; }
.token-logo-circle {
    width: 140px; height: 140px; margin: 0 auto;
    border-radius: 50%; padding: 6px;
    background: linear-gradient(135deg, var(--gold-majestic), var(--gold-bright));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transition: 0.3s ease;
}
.token-logo-circle:hover { transform: scale(1.1) rotate(5deg); }
.token-logo-circle img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary-navy); }

.severe-alert {
    background: rgba(212, 175, 55, 0.08);
    border-right: 4px solid var(--gold-majestic);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.severe-alert strong { color: var(--gold-majestic); }

.contract-box {
    background: linear-gradient(135deg, var(--secondary-navy), var(--primary-navy));
    border: 1px solid var(--gold-majestic);
    border-radius: 24px;
    padding: 4rem 3rem;
    color: #FFF;
    box-shadow: var(--shadow-gold);
}

/* Payment Warning */
.payment-warning {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 4px solid var(--gold-majestic);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.payment-warning-title { color: var(--gold-majestic); font-weight: 800; margin-bottom: 0.5rem; font-size: 1rem; }
.payment-warning p:last-child { margin-bottom: 0; }

/* Address Bar */
.address-bar {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed var(--cyan-glow);
    margin-bottom: 3rem;
    position: relative;
}
.address-bar span {
    color: var(--cyan-glow);
    font-weight: 800;
    font-family: monospace;
    font-size: clamp(0.75rem, 3vw, 1.1rem);
    word-break: break-all;
    word-wrap: break-word;
    display: block;
    margin-bottom: 1rem;
}

/* Copy Button */
.copy-btn {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-bright);
    border: 1px solid var(--gold-majestic);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Tajawal', sans-serif;
}
.copy-btn:hover { background: var(--gold-majestic); color: var(--primary-navy); }

/* Contract Grid */
.contract-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.detail-item { background: rgba(255, 255, 255, 0.05); padding: 1.5rem; border-radius: 12px; text-align: center; border: 1px solid rgba(212, 175, 55, 0.2); }
.detail-item span { display: block; color: var(--gold-majestic); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.detail-item strong { font-size: 1.2rem; letter-spacing: 1px; }

/* Wallet Guide */
.wallet-guide {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 225, 217, 0.2);
}
.wallet-guide h4 { color: var(--cyan-glow); margin-bottom: 1.5rem; font-size: 1.2rem; text-align: center; }
.wallet-steps-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.wallet-steps-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    border-right: 4px solid var(--emerald-vibrant);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #D1D5DB;
}
.wallet-steps-list li strong { color: var(--gold-bright); }

/* Binance Guide */
.binance-guide { background: rgba(8, 37, 103, 0.4); border-color: var(--gold-majestic); margin-top: 2rem; }
.binance-guide h4 { color: var(--gold-bright); }
.binance-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.binance-step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: 0.3s ease;
}
.binance-step-card:hover { border-color: var(--gold-majestic); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.binance-step-card .step-badge {
    position: absolute; top: -15px; right: -15px;
    background: var(--gold-majestic); color: var(--primary-navy);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 900; font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); z-index: 2;
}
.binance-step-img { width: 100%; border-radius: 10px; border: 2px solid var(--secondary-navy); margin-bottom: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.binance-step-card p { color: #D1D5DB; font-size: 0.95rem; line-height: 1.7; }
.binance-step-card strong { color: var(--cyan-glow); }

/* Vision Box */
.vision-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 2.5rem;
    border-radius: 16px;
    border-right: 6px solid var(--gold-majestic);
    margin-top: 3rem;
}
.vision-box h4 { color: var(--gold-bright); margin-bottom: 1rem; font-weight: 900; font-size: 1.4rem; }
.vision-box p { color: #D1D5DB; line-height: 1.8; }

/* =========================================================================
   FAQ Accordion
   ========================================================================= */
.faq-list { list-style: none; }
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(212, 175, 55, 0.3); }
.faq-item.open { border-color: var(--gold-majestic); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.8rem 2.5rem;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--gold-bright); }
.faq-icon { stroke: var(--gold-majestic); flex-shrink: 0; transition: transform 0.35s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2.5rem;
}
.faq-item.open .faq-answer { max-height: 1200px; padding: 0 2.5rem 2rem 2.5rem; }
.faq-answer p { margin-bottom: 1rem; color: #D1D5DB; line-height: 1.8; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { padding-right: 1.5rem; margin-top: 0.5rem; }
.faq-answer ul li { margin-bottom: 0.5rem; font-size: 0.95rem; color: #D1D5DB; }

/* =========================================================================
   Footer
   ========================================================================= */
footer {
    background: #050a17;
    padding: 5rem 2rem;
    text-align: center;
    border-top: 5px solid var(--gold-majestic);
    color: white;
}

/* =========================================================================
   Back to Top Button
   ========================================================================= */
#back-to-top {
    position: fixed;
    bottom: 90px; left: 24px;
    background: var(--primary-navy);
    border: 1px solid var(--gold-majestic);
    color: var(--gold-majestic);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 998;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--gold-majestic); color: var(--primary-navy); }

/* =========================================================================
   Sticky Bottom CTA Bar
   ========================================================================= */
.sticky-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, var(--secondary-navy), var(--primary-navy));
    border-top: 2px solid var(--gold-majestic);
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 990;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-cta-bar.visible { opacity: 1; transform: translateY(0); }
.sticky-cta-text { color: #A0AABF; font-size: 0.9rem; font-weight: 600; }
.sticky-cta-btn {
    background: linear-gradient(135deg, var(--gold-majestic), var(--gold-dark));
    color: var(--primary-navy);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}
.sticky-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); }

/* =========================================================================
   Scroll-in Animations
   ========================================================================= */
.animate-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-fade-up.is-visible { opacity: 1; transform: translateY(0); }
.animate-fade-up:nth-child(2) { transition-delay: 0.06s; }
.animate-fade-up:nth-child(3) { transition-delay: 0.12s; }
.animate-fade-up:nth-child(4) { transition-delay: 0.18s; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 992px) {
    .hero-content-wrapper { flex-direction: column; text-align: center; }
    .hero-portrait { order: -1; flex: none; width: 100%; max-width: 340px; margin: 0 auto; }
    .trust-indicators { justify-content: center; }
    .scarcity-bar { max-width: 100%; margin-left: auto; margin-right: auto; }
    section { padding: 4rem 0; }
    .steps-wrapper { padding: 2rem 1rem; }
}

@media (max-width: 768px) {
    .example-grid { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    .wallet-guide { padding: 1.5rem; }
    .contract-box { padding: 3rem 1.5rem; }
    .elite-example-box { padding: 2rem 1.5rem; }
    .calculator-section { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .cta-btn { width: 100%; padding: 1rem; font-size: 1rem; }
    .hero-text h1 { font-size: 2rem; }
    .big-number { font-size: 3rem; }
    .steps-list li { padding: 1.5rem 3.5rem 1.5rem 1rem; }
    .steps-list li::before { top: 1.5rem; right: 0.8rem; width: 30px; height: 30px; }
    .contract-grid { grid-template-columns: 1fr 1fr; }
    .address-bar span { font-size: 0.75rem; }
    .binance-step-card { padding-top: 2.5rem; }
    .sticky-cta-bar { flex-direction: column; gap: 0.6rem; padding: 0.8rem 1rem; }
    .sticky-cta-btn { width: 100%; text-align: center; }
    #back-to-top { bottom: 110px; left: 15px; }
    .result-value { font-size: 2.2rem; }
    .highlight-main-value { font-size: 2.5rem; }
    .scarcity-bar { max-width: 100%; }
}
