/* Bintas Trade - Marketing Landing Page Styling */

:root {
    --primary: #ffa600;
    --primary-dark: #e08d00;
    --secondary: #ff5500;
    --dark: #07080c;
    --dark-lighter: #12151f;
    --text: #ffffff;
    --text-muted: #a0aec0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 166, 0, 0.15);
    --font-main: 'Outfit', sans-serif;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    --red: #ff4a4a;
    --amber: #ffb800;
    --blue: #ff7700;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.14;
    animation: move 25s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--amber);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(120px, 80px) scale(1.25); }
}

/* Typography Utility */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

span {
    color: var(--primary);
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-alt {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #07080c;
    box-shadow: 0 10px 25px rgba(255, 166, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 166, 0, 0.4);
    filter: brightness(1.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 166, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 166, 0, 0.3);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 166, 0, 0.12);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-decoration: none;
    color: white;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #07080c;
    padding: 0.65rem 1.35rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 166, 0, 0.2);
}

.nav-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 166, 0, 0.35);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, rgba(7, 8, 12, 0.45) 0%, rgba(7, 8, 12, 0.7) 60%, var(--dark) 100%), url('community.jpg') no-repeat center center / cover;
    background-attachment: scroll;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    background: rgba(255, 166, 0, 0.12);
    border: 1px solid rgba(255, 166, 0, 0.25);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 166, 0, 0.15);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
    line-height: 1.5;
}

.hero-actions-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
}

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

.stat-item .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.stat-item .lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Visual & Candlestick Chart Simulation */
.hero-visual {
    display: flex;
    justify-content: center;
}

.chart-container {
    background: rgba(22, 26, 35, 0.5);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.chart-coin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coin-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem;
    border-radius: 8px;
}

.coin-name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.coin-time {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chart-change.positive {
    background: rgba(0, 255, 136, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
}

.candlestick-chart {
    height: 240px;
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.candle {
    position: absolute;
    bottom: var(--wick-bottom);
    left: var(--offset);
    width: 16px;
    height: var(--height);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Fluid Horizontal Positioning of Candlesticks (Percentages instead of pixels) */
.candle.c-1 { --height: 80px; --offset: 5%; --wick-top: 10px; --wick-bottom: 95px; }
.candle.c-2 { --height: 50px; --offset: 22%; --wick-top: 70px; --wick-bottom: 140px; }
.candle.c-3 { --height: 110px; --offset: 39%; --wick-top: 120px; --wick-bottom: 260px; }
.candle.c-4 { --height: 70px; --offset: 56%; --wick-top: 190px; --wick-bottom: 280px; }
.candle.c-5 { --height: 40px; --offset: 73%; --wick-top: 230px; --wick-bottom: 290px; }
.candle.c-6 { --height: 120px; --offset: 90%; --wick-top: 310px; --wick-bottom: 450px; }

/* Wicks */
.candle::after {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(var(--wick-top) - var(--wick-bottom));
    left: 7px;
    bottom: 0;
    z-index: -1;
}

.candle.bull {
    background-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 166, 0, 0.4);
}

.candle.bull::after {
    background-color: var(--primary);
}

.candle.bear {
    background-color: var(--red);
    box-shadow: 0 0 15px rgba(255, 74, 74, 0.2);
}

.candle.bear::after {
    background-color: var(--red);
}

.trade-call {
    position: absolute;
    top: -55px;
    left: -65px;
    background: rgba(10, 11, 16, 0.9);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    box-shadow: 0 10px 25px rgba(255, 166, 0, 0.2);
    z-index: 10;
    width: 150px;
    backdrop-filter: blur(8px);
}

.trade-call .badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.trade-call .target {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.chart-footer {
    display: flex;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.indicator {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Features Section Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 166, 0, 0.3);
    box-shadow: 0 15px 35px rgba(255, 166, 0, 0.12);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.icon-box.primary { background: rgba(255, 166, 0, 0.12); color: var(--primary); }
.icon-box.secondary { background: rgba(255, 85, 0, 0.12); color: var(--secondary); }
.icon-box.amber { background: rgba(255, 184, 0, 0.12); color: var(--amber); }
.icon-box.blue { background: rgba(255, 119, 0, 0.12); color: var(--blue); }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Curriculum Section */
.curriculum-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.curriculum-module {
    background: rgba(22, 26, 35, 0.4);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.curriculum-module:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(3px);
}

.module-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.module-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.1);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.module-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.module-lessons {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.25rem;
}

.module-lessons li {
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.module-lessons li i {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--dark-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.user-info h4 {
    font-size: 0.95rem;
    color: white;
}

.user-info .role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-card p.quote {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--amber);
    font-size: 0.8rem;
    display: flex;
    gap: 0.25rem;
}

/* Call-to-Action Card & Pricing */
.cta-card {
    background: radial-gradient(circle at top right, rgba(255, 166, 0, 0.14) 0%, rgba(18, 21, 31, 0.85) 100%);
    border: 1px solid rgba(255, 166, 0, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 166, 0, 0.12);
    border: 1px solid rgba(255, 166, 0, 0.25);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.cta-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.price-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 166, 0, 0.15);
    padding: 1.5rem;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    min-width: 260px;
}

.price-box .currency {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-box .amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 0.35rem 0;
}

.price-box .duration {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0 auto 3rem auto;
    text-align: left;
}

.benefits-list li {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefits-list li i {
    color: var(--primary);
}

.large-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 1.1rem;
    font-size: 1.05rem;
    box-shadow: 0 15px 30px rgba(255, 166, 0, 0.3);
    margin-bottom: 1.5rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.secure-checkout i {
    color: var(--secondary);
}

/* FAQs Section */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--dark-lighter);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: white;
}

/* Hide default markers in various browsers */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Section */
.main-footer {
    background-color: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 5rem;
}

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

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

.footer-info .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.footer-links h4, .footer-legal h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .section-padding {
        padding: 4.5rem 0;
    }
    
    .hero-section {
        background: linear-gradient(180deg, rgba(9, 10, 15, 0.5) 0%, rgba(9, 10, 15, 0.75) 50%, var(--dark) 100%), url('community.jpg') no-repeat center top / cover;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-actions-row {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(12, 14, 21, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2.5rem 1.5rem;
        gap: 1rem;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        border-top: 1px solid rgba(255, 166, 0, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.show {
        transform: translateY(0);
    }
    
    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.85rem 1.25rem;
        border-radius: 12px;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text);
        transition: var(--transition);
    }
    
    .nav-link:hover, .nav-link.active {
        background: rgba(255, 166, 0, 0.12);
        border-color: rgba(255, 166, 0, 0.3);
        color: var(--primary);
        transform: translateX(4px);
    }

    .nav-btn.mobile-only {
        display: block;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: #07080c;
        box-shadow: 0 10px 25px rgba(255, 166, 0, 0.3);
        border-radius: 12px;
    }
    
    .hero-section {
        background: linear-gradient(180deg, rgba(9, 10, 15, 0.45) 0%, rgba(9, 10, 15, 0.75) 50%, rgba(9, 10, 15, 0.95) 85%, var(--dark) 100%), url('community.jpg') no-repeat center top / cover;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-actions-row {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        width: 100%;
        max-width: 450px;
        border-top: none;
        padding-top: 0;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 166, 0, 0.18);
        border-radius: 14px;
        padding: 0.85rem 0.5rem;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .stat-item .num {
        font-size: 1.35rem;
        color: var(--primary);
    }
    
    .stat-item .lbl {
        font-size: 0.72rem;
    }
    
    .subpage-hero {
        padding: 7rem 0 3rem 0;
    }
    
    .subpage-hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .module-lessons {
        padding-left: 1.5rem;
    }
    
    .cta-card {
        padding: 3rem 1.25rem;
    }
    
    .cta-card h2 {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .chart-container {
        padding: 1.25rem;
        border-radius: 20px;
        border-color: rgba(255, 166, 0, 0.2);
    }
    
    .candlestick-chart {
        height: 200px;
    }
    
    .candle {
        width: 12px;
    }
    
    .candle::after {
        left: 5px;
    }
    
    .trade-call {
        position: absolute;
        left: auto;
        right: 5px;
        top: -45px;
        width: 140px;
        padding: 0.4rem 0.6rem;
        background: rgba(12, 14, 21, 0.95);
        border: 1px solid var(--primary);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
}

/* Community Section */
.community-section {
    position: relative;
    overflow: hidden;
}

.community-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

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

.community-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    padding: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.15);
}

.community-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.community-floating-card {
    position: absolute;
    bottom: 25px;
    right: -25px;
    background: rgba(18, 22, 33, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.community-floating-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.community-floating-card h4 {
    font-size: 0.85rem;
    color: white;
    font-weight: 700;
}

.community-floating-card p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.community-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.community-content h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.community-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.community-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.community-benefits li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.15rem;
    color: var(--primary);
    margin-top: 0.15rem;
}

.community-benefits h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.community-benefits p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Responsive adjustments for community section */
@media (max-width: 992px) {
    .community-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .community-visual {
        order: 2;
        margin-top: 1rem;
    }
    
    .community-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .community-floating-card {
        right: 15px;
    }
    
    .community-benefits {
        align-items: flex-start;
        text-align: left;
        max-width: 500px;
    }
}

/* Subpage Header Banner */
.subpage-hero {
    padding: 9rem 0 4.5rem 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at bottom, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.subpage-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.subpage-hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subpage-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}
