/* ==========================================================================
   CSS Variables & Theme
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #0a0e17;
    --bg-darker: #05070a;
    --bg-card: rgba(18, 24, 38, 0.7);
    --bg-card-hover: rgba(25, 32, 50, 0.9);

    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    /* Increased contrast for readability */

    /* Brand Colors */
    --gold: #d4af37;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gold-light: #f5d170;
    --gold-gradient: linear-gradient(135deg, #f5d170 0%, #d4af37 100%);

    --green: #10b981;
    --green-dim: rgba(16, 185, 129, 0.15);
    --green-glow: rgba(16, 185, 129, 0.3);

    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.15);

    --blue: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.15);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0a0e1a;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader-candles {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: flex-end;
    height: 80px;
    margin-bottom: 20px;
}
.preloader-candle {
    width: 6px;
    border-radius: 3px;
    animation: candlePulse 1s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}
.preloader-candle.green { background: #34d399; box-shadow: 0 0 10px rgba(52, 211, 153, 0.4); }
.preloader-candle.red { background: #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.4); }
@keyframes candlePulse {
    0% { height: 10px; }
    100% { height: var(--h); }
}
.preloader-logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.preloader-logo span { color: var(--gold); }
.preloader-bar {
    width: 150px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar-fill {
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    animation: loadingBar 1.5s ease-in-out forwards;
}
@keyframes loadingBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-gold {
    color: var(--gold);
}

.text-green {
    color: var(--green);
}

.text-red {
    color: var(--red);
}

.text-blue {
    color: var(--blue);
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-muted {
    color: var(--text-muted);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-gold-dim {
    background-color: var(--gold-dim);
}

.bg-red-dim {
    background-color: var(--red-dim);
}

.bg-green-dim {
    background-color: var(--green-dim);
}

.bg-blue-dim {
    background-color: var(--blue-dim);
}

.bg-grid {
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.animated-border {
    position: relative;
    border-radius: var(--border-radius-lg);
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), transparent, var(--green), transparent, var(--gold));
    background-size: 400% 400%;
    z-index: -1;
    border-radius: calc(var(--border-radius-lg) + 2px);
    animation: borderGlow 6s ease linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.z-10 {
    position: relative;
    z-index: 10;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-800 {
    max-width: 800px;
}

.d-inline-block {
    display: inline-block;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.section-padding {
    padding: 6rem 0;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    outline: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: var(--transition);
    z-index: 1;
}

.btn:hover::after {
    animation: shine 1.5s ease-out forwards;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn i {
    font-size: 1.25em;
}

/* ==========================================================================
   Live Stock Ticker
   ========================================================================== */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: #05070a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0;
    z-index: 101;
    display: flex;
    white-space: nowrap;
}

.ticker {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.ticker-symbol {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.ticker-value {
    color: var(--text-main);
}

.ticker-change {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.ticker-change.up {
    color: var(--green);
}

.ticker-change.down {
    color: var(--red);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 40px;
    /* Below ticker */
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(5, 7, 10, 0.95);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.desktop-nav a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.mobile-nav.active {
    height: auto;
    padding-bottom: 1rem;
}

.mobile-nav a.mobile-link {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Glass Cards & UI Elements
   ========================================================================== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.bg-glow.gold.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
}

.bg-glow.blue.right {
    top: -20%;
    right: -20%;
    background: var(--blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 160px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.yellow {
    color: #facc15;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.hero-highlights i {
    color: var(--green);
    font-size: 1.25rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Mockup/Visual */
.mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.badge-live {
    background: var(--green-dim);
    color: var(--green);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Animated Candlestick Chart */
.chart-placeholder {
    height: 200px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-style: dashed;
}

.candlestick-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
}

.candle {
    position: relative;
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.candle .wick {
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    z-index: 1;
}

.candle .body {
    width: 100%;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.candle.up .wick {
    background: var(--green);
}

.candle.up .body {
    background: var(--green);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

.candle.down .wick {
    background: var(--red);
}

.candle.down .body {
    background: var(--red);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}

/* Candle Float Keyframes - each candle gets a unique oscillation */
/* Candle Float Keyframes - each candle gets a unique oscillation */
@keyframes candleFloat1 {
    0%   { transform: translateY(-10px); }
    50%  { transform: translateY(-22px); }
    100% { transform: translateY(-10px); }
}
@keyframes candleFloat2 {
    0%   { transform: translateY(-15px); }
    50%  { transform: translateY(-30px); }
    100% { transform: translateY(-15px); }
}
@keyframes candleFloat3 {
    0%   { transform: translateY(-30px); }
    50%  { transform: translateY(-18px); }
    100% { transform: translateY(-30px); }
}
@keyframes candleFloat4 {
    0%   { transform: translateY(-40px); }
    50%  { transform: translateY(-58px); }
    100% { transform: translateY(-40px); }
}
@keyframes candleFloat5 {
    0%   { transform: translateY(-80px); }
    50%  { transform: translateY(-64px); }
    100% { transform: translateY(-80px); }
}
@keyframes candleFloat6 {
    0%   { transform: translateY(-70px); }
    50%  { transform: translateY(-88px); }
    100% { transform: translateY(-70px); }
}

/* Animated Candles - Uptrend Pattern */
.c-1 {
    height: 70px;
    animation: candleFloat1 3.2s ease-in-out infinite;
}

.c-1 .wick {
    height: 100%;
    top: 0;
}

.c-1 .body {
    height: 60%;
    top: 20%;
}

.c-2 {
    height: 90px;
    animation: candleFloat2 3.8s ease-in-out infinite 0.4s;
}

.c-2 .wick {
    height: 100%;
    top: 0;
}

.c-2 .body {
    height: 70%;
    top: 10%;
}

.c-3 {
    height: 50px;
    animation: candleFloat3 2.9s ease-in-out infinite 0.8s;
}

.c-3 .wick {
    height: 100%;
    top: 0;
}

.c-3 .body {
    height: 40%;
    top: 30%;
}

.c-4 {
    height: 110px;
    animation: candleFloat4 4.1s ease-in-out infinite 1.2s;
}

.c-4 .wick {
    height: 100%;
    top: 0;
}

.c-4 .body {
    height: 80%;
    top: 10%;
}

.c-5 {
    height: 60px;
    animation: candleFloat5 3.5s ease-in-out infinite 1.6s;
}

.c-5 .wick {
    height: 100%;
    top: 0;
}

.c-5 .body {
    height: 30%;
    top: 20%;
}

.c-6 {
    height: 130px;
    animation: candleFloat6 4.4s ease-in-out infinite 2.0s;
}

.c-6 .wick {
    height: 100%;
    top: 0;
}

.c-6 .body {
    height: 60%;
    top: 20%;
}

/* Live Animated Candle */
.live-candle {
    height: 180px;
    transform: translateY(-90px);
}

.live-candle .wick {
    height: 100%;
    top: 0;
    background: var(--green);
    animation: liveWick 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.live-candle .body {
    top: 50%;
    animation: liveTrading 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes liveWick {

    0%,
    30% {
        background: var(--red);
    }

    15%,
    45%,
    60%,
    100% {
        background: var(--green);
    }
}

@keyframes liveTrading {
    0% {
        height: 15%;
        top: 65%;
        background: var(--red);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    }

    15% {
        height: 35%;
        top: 45%;
        background: var(--green);
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    }

    30% {
        height: 10%;
        top: 55%;
        background: var(--red);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    }

    45% {
        height: 50%;
        top: 30%;
        background: var(--green);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
    }

    60% {
        height: 25%;
        top: 40%;
        background: var(--red);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
    }

    80% {
        height: 75%;
        top: 5%;
        background: var(--green);
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.9);
    }

    100% {
        height: 65%;
        top: 15%;
        background: var(--green);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.7);
    }
}
.trade-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Storyboard Section (The Journey)
   ========================================================================== */
.storyboard-section {
    position: relative;
    overflow: hidden;
}

.storyboard-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .storyboard-grid {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}

.story-card {
    flex: 1;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
}

.story-card:hover {
    transform: translateY(-5px);
}

.before-card {
    background: #0d1117;
    /* Dark background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 3px solid #f87171;
    /* Red top border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.before-card:hover {
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.1);
}

.after-card {
    background: linear-gradient(160deg, #10b981 0%, #065f46 100%);
    /* Green gradient background */
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.after-card:hover {
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.story-header i {
    font-size: 1.5rem;
}

.story-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: #ffffff;
    /* White title for both cards */
}

/* Specific text colors for after card */
.after-card .story-header i {
    color: rgba(255, 255, 255, 0.7);
}

.after-card .story-desc {
    color: rgba(255, 255, 255, 0.85);
}

.after-card .story-list li {
    color: #ffffff;
}

.after-card .story-list i {
    color: rgba(255, 255, 255, 0.7);
}

.story-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.story-list i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.story-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
    margin-top: 1rem;
}

.before-card .story-metric {
    border-color: rgba(239, 68, 68, 0.2);
}

.after-card .story-metric {
    background: rgba(0, 0, 0, 0.15);
}

.story-metric span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 60%;
    line-height: 1.4;
}

.after-card .story-metric span {
    color: rgba(255, 255, 255, 0.8);
}

.story-metric strong {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.after-card .story-metric strong {
    color: #34d399;
    /* Bright green text on the dark green background */
}

.story-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.story-divider-box {
    width: 44px;
    height: 44px;
    background: #0d1117;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.story-divider-box i {
    font-size: 1.5rem;
    color: var(--gold);
}

.desktop-arrow {
    display: none;
}

.mobile-arrow {
    display: block;
}

@media (min-width: 900px) {
    .desktop-arrow {
        display: block;
    }

    .mobile-arrow {
        display: none;
    }
}

/* ==========================================================================
   Problem Section
   ========================================================================== */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.02);
    text-align: left;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.arrow-down {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: inline-block;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* ==========================================================================
   Grid & Layout Utils
   ========================================================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    width: 50%;
    padding: 0 15px;
}

.items-center {
    align-items: center;
}

.pr-md-5 {
    padding-right: 3rem;
}

/* ==========================================================================
   Program Features List
   ========================================================================== */
.check-list-large li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.check-list-large li:last-child {
    margin-bottom: 0;
}

.check-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.check-content h4 {
    margin-bottom: 0.25rem;
}

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

.callout {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--green);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.h3 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0.5rem 0;
}

.alert-box {
    display: flex;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    align-items: flex-start;
}

.alert-box i {
    font-size: 1.5rem;
    color: var(--blue);
}

.alert-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   Business Pillars
   ========================================================================== */
.business-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar {
    background: var(--bg-card);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.pillar i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quote-box {
    position: relative;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-box blockquote {
    font-size: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
}

.quote-box i {
    font-size: 3rem;
    opacity: 0.2;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-darker);
    padding: 0 1rem;
}

/* ==========================================================================
   Audience Grid
   ========================================================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.audience-card i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.premium {
    background: linear-gradient(to bottom, rgba(30, 36, 50, 0.9), rgba(18, 24, 38, 0.9));
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: rgba(212, 175, 55, 0.6);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1rem;
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-features i {
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

/* ==========================================================================
   Course Benefits Section
   ========================================================================== */
.course-benefits-section {
    background: var(--bg-darker);
}

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

.benefit-card {
    background: linear-gradient(145deg, rgba(15, 22, 41, 0.9), rgba(10, 14, 26, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(201, 165, 68, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 165, 68, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card.featured {
    border-color: rgba(201, 165, 68, 0.3);
    background: linear-gradient(145deg, rgba(20, 28, 48, 0.95), rgba(12, 16, 30, 0.95));
    box-shadow: 0 10px 30px rgba(201, 165, 68, 0.1);
}

.benefit-card.featured::before {
    opacity: 1;
    background: var(--gold-gradient);
    height: 3px;
}

.benefit-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold-gradient);
    color: #000;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 165, 68, 0.1);
    border: 1px solid rgba(201, 165, 68, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(201, 165, 68, 0.2);
    box-shadow: 0 0 25px rgba(201, 165, 68, 0.2);
    transform: scale(1.1);
}

.guarantee-icon {
    background: rgba(52, 211, 153, 0.1) !important;
    border-color: rgba(52, 211, 153, 0.25) !important;
    color: #34d399 !important;
}

.benefit-card:hover .guarantee-icon {
    background: rgba(52, 211, 153, 0.2) !important;
    box-shadow: 0 0 25px rgba(52, 211, 153, 0.2) !important;
}

.benefit-card h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.benefit-card p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 165, 68, 0.08);
    border: 1px solid rgba(201, 165, 68, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.guarantee-highlight {
    background: rgba(52, 211, 153, 0.08) !important;
    border-color: rgba(52, 211, 153, 0.2) !important;
    color: #34d399 !important;
}

/* ==========================================================================
   Enhanced Pricing Section
   ========================================================================== */
.plan-label {
    display: inline-block;
    background: rgba(201, 165, 68, 0.1);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.plan-type {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.85em;
}

.price-block {
    margin-top: 1rem;
}

.original-price {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.original-price s {
    color: #ef4444;
}

.discount-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.price-note {
    color: #9ca3af;
    font-size: 0.78rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.plan-tagline {
    background: rgba(201, 165, 68, 0.06);
    border: 1px solid rgba(201, 165, 68, 0.1);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    color: #ccc;
    font-size: 0.82rem;
    line-height: 1.6;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.plan-tagline i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.vip-tagline {
    background: rgba(201, 165, 68, 0.1);
    border-color: rgba(201, 165, 68, 0.25);
}

.contact-strip {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-strip a {
    color: #9ca3af;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s ease;
}

.contact-strip a:hover {
    color: var(--gold);
}

.contact-strip .bxl-whatsapp {
    color: #25d366;
    font-size: 1rem;
}

.plans-bottom-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(201, 165, 68, 0.05);
    border: 1px solid rgba(201, 165, 68, 0.12);
    border-radius: 12px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.plans-bottom-note p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card.featured {
        order: -1;
    }
}

/* ==========================================================================
   Transparency Section
   ========================================================================== */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-dim);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--blue);
}

.transparency-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

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

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-question.active+.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    /* max-height is set via JS */
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #020406;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.disclaimer h4 {
    color: var(--text-muted);
    font-size: 1rem;
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    text-align: justify;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    margin-top: 3rem;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.reveal-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Media Queries (Responsive)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .business-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-highlights {
        justify-content: center;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .col-md-6 {
        width: 100%;
        padding: 0;
    }

    .order-1-mobile {
        order: 1;
        text-align: center;
    }

    .order-2-mobile {
        order: 2;
    }

    .mb-4-mobile {
        margin-bottom: 2rem;
    }

    .pr-md-5 {
        padding-right: 0;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card.premium {
        transform: scale(1);
    }

    .pricing-card.premium:hover {
        transform: translateY(-5px);
    }

    .transparency-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-contact p {
        justify-content: center;
    }
}