/* Auto Prophets - Fees Page Specific CSS */
/* Styles specific to the fees page only */

/* ============================
   FEES HERO SECTION
   ============================ */

.fees-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
}

.fees-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(34, 139, 34, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* No Setup Fee Banner - Prominent messaging */
.no-setup-fee-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-primary) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

.no-setup-fee-banner i {
    font-size: 1.1rem;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
        transform: scale(1.02);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    z-index: 2;
    position: relative;
}

.hero-guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    font-weight: 600;
}

.guarantee-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

.hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.fees-overview-card {
    background: var(--glass-dark);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.fees-overview-card h3 {
    color: var(--text-accent);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.fee-tiers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fee-tier {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
}

.fee-tier:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.fee-tier.popular {
    border-color: var(--primary-gold);
    background: var(--glass-accent);
}

.tier-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.tier-name {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tier-fee {
    color: var(--text-accent);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* ============================
   TRIAL SECTION
   ============================ */

.trial-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.trial-content {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.trial-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trial-card-column {
    display: flex;
    flex-direction: column;
}

.trial-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trial-card {
    background: 
        linear-gradient(rgba(15, 15, 25, 0.85), rgba(25, 25, 35, 0.9));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trial-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--gold-glow);
    background: 
        linear-gradient(rgba(15, 15, 25, 0.8), rgba(25, 25, 35, 0.85));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.trial-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gold-glow);
}

.trial-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.trial-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trial-features {
    display: flex;
    flex-direction: column;
    
    margin-top: 1rem;
}

.trial-explanation {
    margin-top: 0;
    padding: 2rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    height: fit-content;
}

.trial-explanation p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.trial-cta-section {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.trial-cta-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Hide the trial visual for a cleaner content-focused design */
.trial-visual {
    display: none;
}

.imageSlides {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.imageSlides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.imageSlides img:first-child {
    opacity: 1;
}

/* Enhanced trial visual effects */
.trial-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gold-gradient);
    border-radius: var(--border-radius-lg);
    opacity: 0.1;
    z-index: -1;
    filter: blur(20px);
}

.imageSlides:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.imageSlides:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 161, 77, 0.1) 0%, 
        transparent 50%, 
        rgba(212, 161, 77, 0.1) 100%);
    pointer-events: none;
}

/* ============================
   GUARANTEES SECTION
   ============================ */

.guarantees-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gold-glow);
}

.guarantee-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.guarantee-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.guarantees-highlight {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass-accent);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
}

.highlight-content {
    display: block;
    text-align: center;
}

.highlight-content i {
    font-size: 3rem;
    color: var(--accent-green);
    flex-shrink: 0;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Security Diagram Styles */
.security-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    max-width: 800px;
}

.account-box {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    background: var(--glass-subtle);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.exchange-account {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.fee-account {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
}

.account-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.account-box h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.account-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.arrow {
    font-size: 1.5rem;
    color: var(--accent-purple);
    font-weight: bold;
}

.security-note {
    background: var(--glass-subtle);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
}

@media (max-width: 768px) {
    .security-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .separator .arrow {
        transform: rotate(90deg);
    }
    
    .account-box {
        max-width: 100%;
    }
}

/* ============================
   PRICING SECTION
   ============================ */

.pricing-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.plan-card.popular {
    border-color: var(--primary-gold);
    background: var(--glass-accent);
    transform: scale(1.05);
}

.plan-card.trial {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(0, 255, 171, 0.05) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--gold-glow);
}

.plan-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.plan-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .price {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-accent);
    line-height: 1;
}

.plan-price .period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.plan-activation {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--border-radius);
}

.activation-fee {
    color: var(--text-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.activation-fee del {
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.plan-activation small {
    display: block;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.feature i {
    color: var(--accent-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-cta {
    margin-top: auto;
}

.btn-plan {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg), var(--gold-glow);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 161, 77, 0.6);
    color: var(--bg-primary);
}

.pricing-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.notes-left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notes-right-column {
    display: flex;
    flex-direction: column;
}

.note-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.note-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-card h4 i {
    color: var(--text-accent);
}

.note-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.whale-requirements {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.whale-requirements li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.whale-requirements li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.whale-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================
   FEE STRUCTURE SECTION
   ============================ */

.fee-structure-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.fee-structure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* How It Works Flow Design */
.how-it-works-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    max-width: 350px;
    min-width: 280px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 161, 77, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 50%,
        rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flow-step:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.flow-step:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-number span {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--bg-primary);
    text-shadow: none;
}

.step-icon {
    margin: 1rem 0 1.5rem 0;
}

.step-icon i {
    font-size: 3rem;
    color: #00FFAB;
    text-shadow: 0 0 20px rgba(0, 255, 171, 0.6);
    transition: all 0.3s ease;
}

.flow-step:hover .step-icon i {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(0, 255, 171, 0.8);
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-highlight {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.2) 0%, 
        rgba(0, 255, 171, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #00FFAB;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(0, 255, 171, 0.3);
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.8);
    font-size: 2rem;
    margin: 0 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: flowPulse 2s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
        text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }
}

/* ============================
   KEY INSIGHTS SECTION
   ============================ */

.key-insights {
    
}

.insights-title {
    font-size: 2rem;
    text-align: center;
    margin: 1rem auto;
}

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

.insight-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition-normal);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 161, 77, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.insight-card:hover::before {
    left: 100%;
}

.insight-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--gold-glow);
}

.insight-heading {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.insight-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================
   FEE CALCULATOR
   ============================ */

.fee-calculator {
    
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.calculator-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calculator-header h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.calc-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
}

.calculator-main {
    margin-top: 1.5rem;
}

.calc-input-section {
    margin-bottom: 2rem;
    text-align: center;
}

.input-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.1rem;
}

.input-wrapper {
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

#profitInput {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--glass-light);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-align: center;
    transition: var(--transition-normal);
}

#profitInput:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.currency-text {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-help {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.results-section {
    margin-top: 2rem;
}

.results-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calc-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.calc-tier {
    background: var(--glass-light);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.calc-tier:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .calc-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.silver-tier {
    border-color: #9CA3AF;
}

.silver-tier:hover {
    border-color: #9CA3AF;
    box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3);
}

.gold-tier {
    border-color: var(--primary-gold);
    background: var(--glass-accent);
}

.gold-tier:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 4px 15px rgba(212, 161, 77, 0.4);
}

.whale-tier {
    border-color: #8B5CF6;
}

.whale-tier:hover {
    border-color: #8B5CF6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.tier-header {
    margin-bottom: 1rem;
}

.tier-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-info h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-rate {
    color: var(--text-accent);
    font-size: 1.5rem;
    font-weight: 900;
}

.popular-badge {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-results {
    margin-top: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.keep {
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
}

.result-item.fee {
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
}

.result-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.result-value {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.calc-footer {
    margin-top: 2rem;
    text-align: center;
}

.calc-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-calculator {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg), var(--gold-glow);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-calculator:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 161, 77, 0.6);
    color: var(--bg-primary);
}

/* ============================
   MOBILE RESPONSIVE
   ============================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .trial-content {
        margin: 2rem auto;
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trial-details {
        gap: 1.5rem;
    }

    .trial-card {
        padding: 2rem 1.5rem;
    }

    .trial-features {
        gap: 0.75rem;
    }

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

    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .pricing-notes {
        grid-template-columns: 1fr;
    }

    .notes-left-column,
    .notes-right-column {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .fees-hero {
        padding: 1rem 0;
    }

    .no-setup-fee-banner {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .fee-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trial-card {
        padding: 1.5rem;
    }

    .trial-icon {
        width: 60px;
        height: 60px;
    }

    .trial-icon i {
        font-size: 1.5rem;
    }

    .trial-card h3 {
        font-size: 1.2rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantee-card,
    .plan-card {
        padding: 1.5rem;
    }

    .guarantee-icon,
    .plan-icon {
        width: 60px;
        height: 60px;
    }

    .guarantee-icon i,
    .plan-icon i {
        font-size: 1.5rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card.popular {
        transform: none;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .highlight-content i {
        font-size: 2.5rem;
    }

    /* How It Works Flow Mobile Styles */
    .how-it-works-flow {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .flow-step {
        max-width: 100%;
        min-width: auto;
        margin: 0 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
        font-size: 1.5rem;
    }

    .step-icon i {
        font-size: 2.5rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-highlight {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insight-card {
        padding: 1.5rem;
    }

    .insight-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .calc-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 300px;
    }

    .fees-overview-card {
        padding: 1.5rem;
    }

    .fees-overview-card h3 {
        font-size: 1.1rem;
    }

    .tier-fee {
        font-size: 1.5rem;
    }

    .guarantee-item {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .guarantee-item i {
        font-size: 1rem;
    }

    .trial-features {
        gap: 0.5rem;
    }

    .feature,
    .feature-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .plan-price .price {
        font-size: 2.5rem;
    }

    .plan-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================
   EXAMPLES AND SCENARIOS SECTION
   ============================ */

.examples-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.example-card {
    background: var(--glass-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

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

.example-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.example-icon.success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.example-icon.neutral {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.example-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.example-content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.example-result {
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
}

.example-result.success {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.example-result.neutral {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: #f39c12;
}

/* ============================
   DIAGRAM AND PROFIT TABLE SECTION
   ============================ */

.diagram-section {
    background: var(--glass-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 2rem 0;
    border: 1px solid var(--glass-border);
}

.diagram-container {
    text-align: center;
    margin: 2rem 0;
}

.diagram-explanation {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.profit-table-container {
    padding: 1rem;
    margin: 1rem 0 0;
    
    overflow-x: auto;
}

.profit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 2fr 1fr;
    gap: 0;
    min-width: 600px;
}

.table-header {
    display: contents;
}

.week-header, .data-header {
    background: linear-gradient(135deg, var(--primary-gold), #d4a14d);
    color: white;
    padding: 1rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.table-row {
    display: contents;
}

.week-cell, .data-cell {
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.week-cell {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
}

.data-cell.profit {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    font-weight: 600;
}

.data-cell.loss {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    font-weight: 600;
}

.data-cell.neutral {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    font-weight: 600;
}

.data-cell.fee {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    font-weight: 600;
}

.data-cell.no-fee {
    background: rgba(149, 165, 166, 0.1);
    color: #95a5a6;
    font-weight: 600;
}

.data-cell.result {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    font-weight: 700;
    font-size: 1rem;
}

/* ============================
   PROFIT & LOSS EXPLANATION
   ============================ */

.profit-loss-explanation {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.profit-loss-explanation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #10B981);
    z-index: 1;
}

.pl-header {    
    margin-bottom: 3rem;
    text-align: center;
}

.pl-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    margin: 0 auto;
}

.pl-title h3 {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-align: center;
}

.pl-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.pl-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pl-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.pl-step:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pl-step-number {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--bg-primary);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.pl-step-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00FFAB;
    flex-shrink: 0;
}

.pl-step-content h4 {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.pl-step-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.pl-highlight {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #00FFAB;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pl-flow-arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 215, 0, 0.8);
    font-size: 2rem;
    animation: flowPulse 2s ease-in-out infinite;
}

.scenarios-section {
    margin-top: 3rem;
}

.scenarios-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.scenario-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.active-scenario {
    border-color: rgba(16, 185, 129, 0.4);
}

.stopped-scenario {
    border-color: rgba(239, 68, 68, 0.4);
}

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

.scenario-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00FFAB;
}

.stopped-scenario .scenario-icon {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #EF4444;
}

.scenario-header h5 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-item.profit {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10B981;
}

.timeline-item.loss {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #EF4444;
}

.timeline-point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold-gradient);
    flex-shrink: 0;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.week {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.amount {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.fee {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.scenario-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scenario-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 1rem;
}

.scenario-point.highlight {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
}

.scenario-point i {
    color: #10B981;
    font-size: 1.1rem;
}

.scenario-point.highlight i {
    color: #FFD700;
}

.example-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ============================
   CHART AND INSIGHTS
   ============================ */

.line-chart {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--glass-border);
}

.chart-title {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.chart-graph {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    padding-right: 1rem;
}

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

.chart-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-line {
    height: 3px;
    width: 30px;
    border-radius: 2px;
}

.legend-line.total-profits {
    background: #3498db;
}

.legend-line.your-profits {
    background: #2ecc71;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.fee-charged {
    background: #9b59b6;
}

.legend-dot.no-fee {
    background: #95a5a6;
}

.fee-principle {
    margin-top: 2rem;
    text-align: center;
}

.principle-highlight {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1), rgba(39, 174, 96, 0.1));
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    color: #2ecc71;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.principle-highlight i {
    font-size: 1.3rem;
    color: #f39c12;
}

/* ============================
   FAQ SECTION
   ============================ */

.faq-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-light);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    cursor: default; /* Remove click cursor since answers are always visible */
    background: rgba(255, 255, 255, 0.02);
}

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

.faq-question-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.faq-toggle {
    display: none; /* Hide toggle since answers are always visible */
}

.faq-item.active .faq-toggle {
    display: none;
}

.faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    display: block; /* Always show answers */
    color: var(--text-muted);
    line-height: 1.8; /* Better readability */
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-green);
    margin-top: 0.5rem;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* ============================
   FINAL CTA SECTION
   ============================ */

.final-cta-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-main h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.money-back-guarantee {
    margin-top: 2rem;
    text-align: center;
}

.guarantee-highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.guarantee-highlight h4 {
    margin-bottom: 1rem;
}

.guarantee-note, .no-refund-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-stats {
    display: grid;
    gap: 2rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2ecc71;
}

.stat-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* ============================
   LEGAL SECTION
   ============================ */

.legal-section {
    background: radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.3) 0%, transparent 50%), 
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%), 
                linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.legal-content h2 {
    margin-bottom: 3rem;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.legal-card {
    background: var(--glass-light);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    text-align: left;
}

.legal-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.legal-card i {
    font-size: 1.2rem;
}

.legal-footer {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass-border);
}

.legal-footer a {
    color: var(--primary-gold);
    text-decoration: none;
}

.legal-footer a:hover {
    text-decoration: underline;
}

.terms-link, .privacy-link {
    color: var(--primary-gold);
    text-decoration: none;
}

.terms-link:hover, .privacy-link:hover {
    text-decoration: underline;
}

.terms-reminder {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Additional responsive styles for new sections */
@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .profit-table {
        grid-template-columns: repeat(6, 1fr);
        font-size: 0.8rem;
    }
    
    .week-header, .data-header, .week-cell, .data-cell {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .pl-header {

    }
    
    .pl-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
}
