* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth anchor scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a1628;
    color: #ecf0f1;
    line-height: 1.6;
    overflow-x: hidden;

    /* 🔒 Stop Chrome Android text autoscaling */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a1628 0%, #1a2332 50%, #2a3442 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 40px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 900;
    color: #d4af37;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212,175,55,0.5);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.hero .subtitle {
    font-size: 1.5em;
    color: #ecf0f1;
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInUp 1.2s ease;
}

.hero .tagline {
    font-size: 1.1em;
    color: #bdc3c7;
    font-style: italic;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Badge */
.premium-badge {
    background: linear-gradient(135deg, #c6ff00 0%, #d4af37 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(212,175,55,0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.premium-badge h2 {
    font-size: 2em;
    font-weight: 900;
    color: #7b1fa2;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-decoration: underline;
    text-decoration-style: double;
    text-decoration-color: #d4af37;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.premium-badge p {
    font-size: 1.3em;
    color: #7b1fa2;
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.premium-badge .highlight {
    font-size: 1.35em;
    font-weight: 900;
    color: #7b1fa2;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 20px;
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(46,125,50,0.5);
    animation: highlightPulse 2s ease-in-out infinite;
    line-height: 1.6;
    text-align: left;
}

@keyframes highlightPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(46,125,50,0.5); }
    50% { transform: scale(1.02); box-shadow: 0 8px 30px rgba(46,125,50,0.7); }
}

.premium-badge .highlight .dream-title {
    font-size: 1.4em;
    display: block;
    margin-bottom: 15px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    text-decoration: underline;
    text-decoration-style: double;
    text-decoration-color: #dc143c;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.premium-badge .highlight .dream-points {
    font-size: 0.85em;
    display: block;
    text-align: left;
    padding-left: 0;
    color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Styling */
.section {
    margin-bottom: 80px;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-title {
    font-size: 2.5em;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid #d4af37;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

/* Info Boxes */
.intro-box {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(156,39,176,0.3);
}

.intro-box p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #c6ff00;
}

.power-box {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(76,175,80,0.3);
}

.power-box h3 {
    font-size: 1.5em;
    color: white;
    text-align: center;
    
    margin-bottom: 15px;
}

.power-box h3 .power-line-two {
    display: block;
    margin-top: 8px;   /* THIS controls spacing */
}


.power-box p {
    font-size: 1.3em;
    color: white;
    text-align: center;
    line-height: 1.7;
}

/* Checklist */
.checklist {
    background: rgba(76,175,80,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4caf50;
    margin: 30px 0;
}

.checklist ul {
    list-style: none;
}

.checklist li {
    font-size: 1.1em;
    color: #4caf50;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    font-weight: 600;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 1.5em;
    font-weight: bold;
}

/* No Need List */
.no-need-list {
    background: rgba(239,83,80,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ef5350;
    margin: 30px 0;
}

.no-need-list ul {
    list-style: none;
}

.no-need-list li {
    font-size: 1.1em;
    color: #ef5350;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    font-weight: 600;
}

.no-need-list li::before {
    content: '🚫';
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Trading Frequency Cards */
.trading-freq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.freq-card {
    background: rgba(212,175,55,0.1);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.freq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}

.freq-card .number {
    font-size: 3.5em;
    color: #d4af37;
    font-weight: 900;
    margin-bottom: 15px;
}

.freq-card .label {
    font-size: 1.2em;
    color: #ecf0f1;
    font-weight: 600;
}

/* Strength Grid */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.strength-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease, background 0.3s ease;
}

.strength-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.1);
}

.strength-card strong {
    display: block;
    font-size: 1.2em;
    color: #d4af37;
    margin-bottom: 10px;
}

.strength-card span {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Highlight Box */
.highlight-box {
    background: rgba(255,237,74,0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #d4af37;
    margin: 30px 0;
}

.highlight-box p {
    color: #ecf0f1;
    font-size: 1.1em;
    line-height: 1.8;
}


/* Risk Warning */
.risk-warning {
    background: rgba(255,152,0,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    margin: 30px 0;
}

.risk-warning h3 {
    color: #ff9800;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.risk-warning p {
    color: #ecf0f1;
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.risk-warning .historical-data {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Performance Section */
.performance-note {
    background: rgba(33,150,243,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #2196f3;
    margin: 30px 0;
}

.performance-note p {
    color: #ecf0f1;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.metric-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    text-align: center;
}

.metric-label {
    font-size: 0.9em;
    color: #95a5a6;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 2em;
    font-weight: 900;
    color: #d4af37;
}

.metric-value.negative {
    color: #ef5350;
}

/* Year Performance Cards */
.year-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 4px solid #4caf50;
    box-shadow: 0 10px 30px rgba(76,175,80,0.3);
}

.year-card h4 {
    color: #d4af37;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.year-content {
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 10px;
}

.year-profit {
    color: #2c3e50;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 3px solid #4caf50;
    padding-bottom: 15px;
    text-align: center;
}

.year-profit span {
    display: block;
    font-size: 2em;
    color: #2e7d32;
    font-weight: 900;
    margin-top: 10px;
}

.year-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.year-metric {
    color: #1a237e;
    font-size: 1.05em;
    padding: 10px;
    background: rgba(33,150,243,0.1);
    border-radius: 5px;
}

/* Performance Image Section */
.performance-images {
    margin: 40px 0;
}

.performance-image-container {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    border: 2px solid #d4af37;
}

.performance-image-container h4 {
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.image-placeholder {
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(102,126,234,0.2) 100%);
    min-height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #95a5a6;
    border: 2px dashed #d4af37;
}

/* Methodology Box */
.methodology-box {
    background: rgba(156,39,176,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #9c27b0;
    margin: 30px 0;
}

.methodology-box h4 {
    color: #9c27b0;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

.methodology-box h4:first-of-type {
    margin-top: 0;
}

.methodology-box ul {
    margin-left: 30px;
}

.methodology-box li {
    color: #ecf0f1;
    font-size: 1.05em;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Growth Cards */
.growth-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(102,126,234,0.4);
}

.growth-box h3 {
    color: white;
    font-size: 2em;
    margin-bottom: 20px;
}

.growth-box p {
    color: white;
    font-size: 1.2em;
    line-height: 1.8;
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.growth-card {
    background: rgba(76,175,80,0.1);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #4caf50;
    text-align: center;
    transition: transform 0.3s ease;
}

.growth-card:hover {
    transform: scale(1.05);
}

.growth-label {
    font-size: 0.9em;
    color: #95a5a6;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.growth-amount {
    font-size: 2.5em;
    font-weight: 900;
    color: #4caf50;
    margin: 15px 0;
}

.growth-result {
    margin-top: 15px;
    color: #ecf0f1;
    font-size: 0.95em;
}

.growth-result strong {
    color: #4caf50;
    font-size: 1.3em;
    display: block;
    margin-top: 5px;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.column-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #d4af37;
}

.column-box h4 {
    color: #d4af37;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.column-box ul {
    list-style: none;
}

.column-box li {
    color: #ecf0f1;
    font-size: 1.05em;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.column-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.5em;
}

/* FAQ Section */
.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,255,255,0.1);
}

.faq-question {
    font-size: 1.2em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.faq-answer {
    color: #ecf0f1;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Ecosystem Section */
.ecosystem-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(102,126,234,0.4);
}

.ecosystem-intro p {
    color: white;
    font-size: 1.2em;
    line-height: 1.8;
}

/* Access Model */
.access-slots {
    background: rgba(255,237,74,0.1);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #d4af37;
    margin: 30px 0;
}

.access-slots p {
    color: #ecf0f1;
    font-size: 1.15em;
    line-height: 2;
    margin-bottom: 10px;
}

/* QR Code Section */
.qr-section {
    text-align: center;
    margin: 40px 0;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    color: #666;
}

/* Contact Section - THIS WAS MISSING! */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.contact-email {
    font-size: 1.05em;
    color: #2196f3;
    text-decoration: none;
    word-break: break-all;
    display: block;
    line-height: 1.6;
}

.contact-email:hover {
    color: #64b5f6;
    text-decoration: underline;
}

/* Application Form */
.application-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 3px solid #d4af37;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #d4af37;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #ecf0f1;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a1628;
    padding: 18px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
}

/* Footer */
.footer {
    background: #0d1b2a;
    padding: 50px 20px;
    text-align: center;
    border-top: 3px solid #d4af37;
}

.footer p {
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.8;
}
/* =========================================
   MOBILE VERSION – FINAL & LOCKED
   Target: 360px–390px
   DESKTOP COMPLETELY UNTOUCHED
   ========================================= */
@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */
    html {
        font-size: 90%;
    }

    body {
        line-height: 1.45;
        overflow-x: hidden;
    }

    /* ---------- HERO ---------- */
    .hero {
        min-height: auto;
        padding: 45px 12px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 1.5em;
        letter-spacing: 0.3px;
        white-space: nowrap;
        margin: 0 auto 10px;
        text-align: center;
    }

    .hero .subtitle {
        font-size: 1.05em;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .hero .tagline {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    /* HERO GREEN BOX – MOBILE ONLY */
     .hero .power-box {
         margin-left: auto;
         margin-right: auto;
         text-align: center;
     }

     .hero .power-box p {
         text-align: center;
    }
     .hero .power-box h3 {
         font-size: 1.2em;
         line-height: 1.25;
    } 


    /* ---------- CONTAINER & SECTIONS ---------- */
    .container {
        padding: 25px 14px;
    }

    .section {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.5em;      /* fixes 3-line titles */
        line-height: 1.25;
        margin-bottom: 18px;
        padding-bottom: 8px;
        text-align: center;
    }

        /* ✨ KEY SUCCESS FACTORS — MOBILE ONLY */

    .section .highlight-box h4 {
        font-size: 1.35em;
        line-height: 1.35;
        margin-bottom: 14px;
        font-weight: 700;
        text-align: center;
    }

    .section .highlight-box ul {
        margin-left: 20px;
    }

    .section .highlight-box li {
        font-size: 1.08em;
        line-height: 1.75;
        margin-bottom: 8px;
    }


    /* ---------- PREMIUM BADGE ---------- */
    .premium-badge {
        padding: 22px;
        margin: 26px auto;
    }

    .premium-badge h2 {
        font-size: 1.6em;
        text-align: center;
    }

    .premium-badge p {
        font-size: 1.07em;         /* restore readable size */
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .premium-badge p[style] {
        font-size: 1.05em;
        font-weight: 700;
    }

    /* ---------- EVERY TRADERS / DREAM ---------- */
    .premium-badge .highlight {
        text-align: center;
        padding: 18px;
    }

    .premium-badge .dream-title {
        font-size: 1.1em;      /* reduced – no dominance */
        line-height: 1.2;
        text-align: center;
        display: block;
     
    }

    .premium-badge .dream-title::after {
        content: none;          /* prevent duplicate DREAM */
    }

    .premium-badge .dream-points {
        font-size: 0.85em;
        text-align: left;
        margin-top: 8px;
        line-height: 1.6;
    }

        /* 🌟 Every Traders Dream — mobile underline refinement */

    .premium-badge .highlight .dream-title {
        text-decoration-thickness: 3px; /* reduced from desktop */
        text-underline-offset: 12px;    /* more breathing space */
        line-height: 1.65;      /* between lines only */
        margin-bottom: 25px; 
    }


    /* ---------- REAL POWER ---------- */
    .power-box {
        padding: 16px;
        margin: 20px 0;
    }

    .power-box h3 {
        font-size: 1.1em !important ;
        line-height: 1.9;
        text-align: center;
    }

    .power-box p {
        font-size: 1.13em;
        line-height: 1.7;
    }

    /* === FINAL POWER-BOX LINE GAP FIX === */
    .hero .power-box h3 br {
        display: block;
        margin-top: 20px;
    }

    /* SECTION green power-box (non-hero) – mobile only */
    .section .power-box h3 {
        font-size: 1.19em;
        line-height: 1.3;
    }

    .section .power-box p {
        font-size: 1.12em;
        line-height: 1.55;
    }


    /* ---------- SMALL ACCOUNT GROWTH ---------- */
    .growth-box {
        padding: 20px;
    }

    .growth-box h3 {
        font-size: 1.25em;      /* subtitle smaller than main */
        line-height: 1.3;
    }

    .growth-box p {
        font-size: 1.1em;
        line-height: 1.5;
    }

    /* ---------- SMALL % / $ BOXES ---------- */
    .freq-card,
    .metric-item,
    .growth-card {
        padding: 14px;
    }

    .freq-card .number,
    .metric-value,
    .growth-amount {
        font-size: 1.55em;
    }

    .freq-card .label,
    .metric-label,
    .growth-label {
        font-size: 1.1em;
    }

    .growth-result {
        font-size: 0.9em;
        line-height: 1.4;
    }

    /* ---------- 2025 PERFORMANCE ---------- */
    .year-card {
        padding: 14px;
        margin: 14px 0;
    }

    .year-card h4 {
        font-size: 1.2em;
    }

    .year-content {
        padding: 16px;
    }

    .year-profit span {
        font-size: 1.45em;
        white-space: nowrap;
    }

    /* ---------- LIFETIME SLOT ALLOCATION ---------- */
        .access-slots {
        padding: 20px;      /* reduced from 30px */
        margin: 20px 0;     /* tighter spacing */
    }

    .access-slots p {
        font-size: 1.1sem;  /* keeps text calm */
        line-height: 1.6;
    }


    /* ---------- FAQ ---------- */
    .faq-question {
        font-size: 1.25em;
        line-height: 1.4;
    }

    .faq-answer {
        font-size: 1.1em;
        line-height: 1.6;
    }

    /* ---------- CONTACT US ---------- */
    .contact-card {
        padding: 18px;
    }

    .contact-icon {
        font-size: 3em;
        margin-bottom: 10px;
    }

        /* 📧 Contact section — email text size (mobile only) */

    .contact-email {
        font-size: 1.22em;        /* increased from default */
        line-height: 1.5;
        word-break: break-word;  /* prevents overflow */
    }


    /* ---------- APPLICATION FORM ---------- */
    .application-form {
        padding: 26px;
    }

    .submit-btn {
        padding: 12px 28px;
        font-size: 1.12em;
    }

    /* ---------- GRIDS ---------- */
    .trading-freq,
    .strength-grid,
    .metrics-grid,
    .growth-cards,
    .two-column,
    .contact-grid,
    .year-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* ---------- FOOTER ---------- */
    .footer {
        padding: 30px 15px;
    }

}

/* =========================================
   EXTRA SAFETY FOR TRUE 360px DEVICES
   ========================================= */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.45em;
        letter-spacing: 0.2px;
    }
}
/* ================================
   MOBILE STICKY ACTION BAR
================================ */

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 9999;
}

/* Base button style */
.sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
}

/* LEFT — GOLD (exact shiny gold like top title) */
.sticky-btn.secondary {
    background: linear-gradient(135deg, #e0b84c, #b8962e);
}

/* CENTER — PURPLE / BLUE (hero color) */
.sticky-btn.tertiary {
    background: linear-gradient(135deg, #6a1b9a, #4527a0);
}

/* RIGHT — GREEN (Every Traders Dream) */
.sticky-btn.primary {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.sticky-btn.secondary {
    text-shadow: 0 1px 1px rgba(0,0,0,0.4);
}


/* Hide on desktop */
@media (min-width: 768px) {
    .mobile-sticky-bar {
        display: none;
    }
}

/* Prevent overlap */
@media (max-width: 767px) {
    body {
        padding-bottom: 75px;
    }
}


/* =========================================
   HERO SPLIT SECTIONS
   Green → Purple → Blue flow
   ========================================= */

/* Purple: Experience / Credibility */
.intro-credibility {
    background: linear-gradient(
        135deg,
        #8e24aa,
        #7b1fa2
    );
}

/* Blue: Why EA over Manual */
.intro-logic {
    background: linear-gradient(
        135deg,
        #1e3c72,
        #2a5298
    );
}

/* Keep hero consistency */
.intro-credibility,
.intro-logic {
    border-radius: 18px;
    padding: 28px;
    margin: 30px 0;
}

/* ✔ Consistent Tick List (Desktop + Mobile) */
.tick-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.tick-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size: 1.05em;          /* increased font */
    line-height: 1.65;          /* better spacing */
    color: #ecf0f1;
}

.tick-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.25em;
    font-weight: 700;
    color: #5cd437;             /* SAME green used elsewhere */
}


