
/* 
   Optimus Wealth - Landing Page Specific Styles
   Separated from index.php to landing.css
*/

:root {
    --tcurr-primary: #ffffff;
    --tcurr-secondary: #FE1334;
    --tcurr-dark: #121212;
    --tcurr-light: #f8fafc;
    --tcurr-text: #334155;
    --tcurr-glass: rgba(255, 255, 255, 0.08);
    --tcurr-border: #e2e8f0;
    --tcurr-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tcurr-section-wrapper-inline {
    font-family: 'Inter', sans-serif;
    color: var(--tcurr-text);
    line-height: 1.6;
}

.tcurr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tcurr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.tcurr-btn-primary {
    background-color: var(--tcurr-primary);
    color: #FE1334 !important;
}

.tcurr-btn-primary:hover {
    background-color: var(--tcurr-secondary);
    color: white !important;
    transform: translateY(-2px);
}

.tcurr-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tcurr-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.tcurr-subheading {
    font-size: 1.125rem;
    color: var(--tcurr-text);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SECTION 1: Featured Hero Area --- */
#new-section-hero { 
    padding: 100px 0; 
    background: linear-gradient(135deg, #1c1c1c 0%, #000000 100%); 
    color: white; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}

#new-section-hero::after { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: radial-gradient(circle at center, rgba(254, 19, 52, 0.1) 0%, transparent 70%); 
    pointer-events: none; 
}

.tcurr-hero-tag { 
    background: rgba(254, 19, 52, 0.2); 
    color: var(--tcurr-secondary); 
    padding: 6px 16px; 
    border-radius: 50px; 
    font-size: 0.875rem; 
    font-weight: 700; 
    display: inline-block; 
    margin-bottom: 20px; 
    border: 1px solid rgba(254, 19, 52, 0.3); 
}

.tcurr-hero-title { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 850; 
    line-height: 1.1; 
    margin-bottom: 24px; 
    color: white; 
}

/* --- SECTION 2: Service Tiles --- */
#new-section-services { padding: 80px 0; background-color: var(--tcurr-light); }
.tcurr-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.tcurr-service-card { background: white; padding: 40px 30px; border-radius: 20px; box-shadow: var(--tcurr-shadow); transition: all 0.3s ease; text-align: center; border: 1px solid var(--tcurr-border); }
.tcurr-service-card:hover { transform: translateY(-10px); border-color: var(--tcurr-secondary); }
.tcurr-service-icon { width: 70px; height: 70px; background: rgba(254, 19, 52, 0.1); color: var(--tcurr-primary); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 24px; }

/* --- SECTION 3: Explore Solution --- */
#new-section-explore { padding: 100px 0; background: white; border-bottom: 1px solid var(--tcurr-border); }
.tcurr-explore-content { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* --- SECTION 4: Feature Highlights --- */
#new-section-highlights { padding: 80px 0; background-color: var(--tcurr-dark); color: white; }
.tcurr-highlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.tcurr-highlight-item { display: flex; align-items: flex-start; gap: 20px; }
.tcurr-highlight-check { width: 24px; height: 24px; flex-shrink: 0; color: var(--tcurr-secondary); font-size: 1.25rem; }
.tcurr-highlight-text { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }

/* --- SECTION 5: About Us --- */
#new-section-about { padding: 100px 0; background: white; color: var(--tcurr-dark); }
.tcurr-about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 991px) { .tcurr-about-layout { grid-template-columns: 1fr; } }

/* --- SECTION 6: Fees & Conditions --- */
#new-section-fees { padding: 80px 0; background: linear-gradient(rgba(254, 19, 52, 0.03), rgba(254, 19, 52, 0.03)); }
.tcurr-fee-card { background: white; border-radius: 20px; padding: 50px; border: 2px solid var(--tcurr-border); max-width: 800px; margin: 0 auto; position: relative; }
.tcurr-fee-badge { position: absolute; top: -20px; right: 40px; background: var(--tcurr-primary); color: white; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 1.25rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }

/* --- SECTION 7: Market Insights --- */
#new-section-insights { padding: 100px 0; background: white; color: var(--tcurr-dark); }
.tcurr-insight-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.tcurr-video-box { position: relative; background: #000; border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; }
.tcurr-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; }
.tcurr-video-overlay:hover { background: rgba(0,0,0,0.2); }
.tcurr-play-btn { width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--tcurr-primary); box-shadow: 0 0 30px rgba(255,255,255,0.4); }
@media (max-width: 991px) { .tcurr-insight-grid { grid-template-columns: 1fr; } }

/* --- SECTION 8: Board Members --- */
#new-section-board { padding: 100px 0; background-color: var(--tcurr-light); }
.tcurr-board-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.tcurr-board-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--tcurr-shadow); text-align: center; transition: transform 0.3s; }
.tcurr-board-card:hover { transform: translateY(-5px); }
.tcurr-board-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tcurr-board-content { padding: 25px; }
.tcurr-board-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; color: var(--tcurr-dark); }

/* --- SECTION 9: Core Features --- */
#new-section-core-features { padding: 100px 0; background: white; }
.tcurr-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.tcurr-feature-item { display: flex; gap: 20px; padding: 25px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); align-items: center; backdrop-filter: blur(10px); }
.tcurr-feature-icon { font-size: 2rem; color: var(--tcurr-primary); }

/* --- SECTION 10: Profit Graph / Stats --- */
#new-section-stats-graph { padding: 100px 0; background: #0f172a; color: white; text-align: center; }
.tcurr-stat-value { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; color: var(--tcurr-secondary); margin: 20px 0; }

/* --- SECTION 11: WE ARE THE BEST --- */
#new-section-excellence { padding: 80px 0; background: var(--tcurr-primary); color: white; }
.tcurr-excellence-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.tcurr-exc-num { font-size: 3rem; font-weight: 800; line-height: 1; }

/* --- SECTION 12: Get Free Quote --- */
#new-section-quote { padding: 100px 0; background: white; }
.tcurr-quote-form { max-width: 600px; margin: 0 auto; background: white; padding: 40px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid var(--tcurr-border); }
.tcurr-input { width: 100%; padding: 14px; border-radius: 8px; border: 1px solid var(--tcurr-border); margin-bottom: 20px; outline: none; box-sizing: border-box; }
.tcurr-input:focus { border-color: var(--tcurr-primary); }

/* --- SECTION 13: Investment Plans --- */
#new-section-plans { padding: 100px 0; background-color: var(--tcurr-light); }
.tcurr-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.tcurr-plan-card { background: white; padding: 40px 30px; border-radius: 24px; text-align: center; border: 2px solid transparent; transition: all 0.3s; }
.tcurr-plan-card h5 { color: var(--tcurr-dark); }
.tcurr-plan-card:hover { border-color: var(--tcurr-primary); transform: translateY(-10px); }
.tcurr-plan-price { font-size: 1.5rem; font-weight: 800; margin: 20px 0; color: var(--tcurr-primary); }

/* --- Elite Tier (HYS) Styling --- */
#new-section-elite-stocks {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tcurr-elite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tcurr-elite-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 32px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.tcurr-elite-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.05), transparent);
    transform: rotate(45deg);
    transition: 0.8s;
    pointer-events: none;
}

.tcurr-elite-card:hover::before { left: 100%; }

.tcurr-elite-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--tcurr-secondary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 193, 7, 0.1);
}

.tcurr-diamond-badge {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.tcurr-elite-price {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Outfit';
    background: linear-gradient(to right, #ffffff, #ffc107);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
}

.tcurr-elite-btn {
    background: linear-gradient(135deg, var(--tcurr-secondary), #ff8c00);
    color: #000 !important;
    border: none;
    width: 100%;
    padding: 16px;
    font-weight: 800;
    border-radius: 12px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SECTION: Partnerships Bento Grid --- */
#new-section-partnerships { padding: 100px 0; background: white; }
.tcurr-bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 20px; }
.tcurr-bento-item { position: relative; border-radius: 24px; overflow: hidden; color: white; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; border: 1px solid rgba(0,0,0,0.05); }
.tcurr-bento-item:hover { transform: scale(1.02); z-index: 10; }
.tcurr-bento-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.7); }
.tcurr-bento-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%); z-index: 2; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; }
.tcurr-bento-logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; opacity: 0.9; margin-bottom: 10px; }
.tcurr-bento-title { font-size: 1.25rem; font-weight: 700; line-height: 1.2; margin: 0; }
.tcurr-bento-desc { font-size: 0.875rem; opacity: 0.7; margin-top: 8px; max-width: 90%; }

/* Layout Spans */
.tcurr-bento-spacex { grid-column: span 2; grid-row: span 2; }
.tcurr-bento-starlink { grid-column: span 2; grid-row: span 1; }
.tcurr-bento-tesla { grid-column: span 1; grid-row: span 1; }
.tcurr-bento-x { grid-column: span 1; grid-row: span 1; }

@media (max-width: 991px) {
    .tcurr-bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .tcurr-bento-spacex { grid-row: span 1; }
}
@media (max-width: 576px) {
    .tcurr-bento-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .tcurr-bento-spacex, .tcurr-bento-starlink, .tcurr-bento-tesla, .tcurr-bento-x { grid-column: span 1; }
}

/* --- SECTION 14: Sample Footer --- */
#new-section-footer { padding: 80px 0 30px; background: #0b210b; color: rgba(255,255,255,0.7); }
.tcurr-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.tcurr-footer-link { color: rgba(255,255,255,0.7); text-decoration: none; display: block; margin-bottom: 12px; transition: color 0.3s; }
.tcurr-footer-link:hover { color: white; }

/* --- Homepage Legacy Base Styles (Refactored) --- */
.hero-section {
    position: relative;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 1;
}

.investment-plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.investment-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.step-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--tcurr-border);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tcurr-shadow);
    border-color: var(--tcurr-primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.profit-calculator {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
}

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* --- Partnerships Banner Cards --- */
.tcurr-partnership-section {
    padding: 100px 0;
    background: #020617; /* Even darker for banner contrast */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tcurr-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.tcurr-banner-card {
    position: relative;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    display: block;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tcurr-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.6) saturate(0.8);
}

.tcurr-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tcurr-banner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(254, 19, 52, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.tcurr-banner-card:hover .tcurr-banner-img {
    transform: scale(1.1);
    filter: brightness(0.8) saturate(1);
}

.tcurr-banner-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--tcurr-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.8;
}

.tcurr-banner-title {
    font-size: 1.5rem;
    font-weight: 850;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
    transition: transform 0.3s;
}

.tcurr-banner-card:hover .tcurr-banner-title {
    transform: translateX(5px);
}

/* Floating Animation for Banners */
@keyframes banner-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-banner-float {
    animation: banner-float 5s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

/* --- SECTION 9: Elite Referral System --- */
#new-section-referral { padding: 100px 0; background: #060b06; color: white; border-top: 1px solid rgba(254, 19, 52, 0.2); }
.tcurr-referral-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 50px; }
.tcurr-referral-step { text-align: center; position: relative; padding: 40px 30px; background: rgba(255, 255, 255, 0.03); border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
.tcurr-referral-step:hover { background: rgba(254, 19, 52, 0.08); transform: translateY(-10px); border-color: var(--tcurr-secondary); }
.tcurr-step-icon { font-size: 2.5rem; color: var(--tcurr-secondary); margin-bottom: 25px; display: block; }
.tcurr-step-num { position: absolute; top: 20px; right: 25px; font-size: 3rem; font-weight: 900; opacity: 0.1; color: white; line-height: 1; }

@media (max-width: 991px) { .tcurr-referral-grid { grid-template-columns: 1fr; } }

/* --- SECTION 10: Hyper-Growth Marketplace --- */
#new-section-plans-elite { padding: 100px 0; background-color: #0c140c; color: white; }
.tcurr-plan-grid-elite { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.tcurr-plan-card-elite { background: rgba(255, 255, 255, 0.05); padding: 45px 30px; border-radius: 28px; border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; overflow: hidden; }
.tcurr-plan-card-elite::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--tcurr-secondary); opacity: 0; transition: opacity 0.3s; }
.tcurr-plan-card-elite:hover { transform: translateY(-15px); background: rgba(254, 19, 52, 0.15); border-color: rgba(254, 19, 52, 0.4); box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5); }
.tcurr-plan-card-elite:hover::before { opacity: 1; }

.tcurr-elite-plan-title { font-size: 1.5rem; font-weight: 800; font-family: 'Outfit', sans-serif; margin-bottom: 20px; color: white; letter-spacing: 0.5px; }
.tcurr-elite-roi { font-size: 2rem; font-weight: 900; color: #fbbf24; margin: 15px 0; font-family: 'Outfit', sans-serif; line-height: 1.1; }
.tcurr-elite-duration { padding: 6px 16px; background: rgba(251, 191, 36, 0.1); color: #fbbf24; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 25px; }
.tcurr-elite-details { width: 100%; margin: 25px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; text-align: left; }
.tcurr-detail-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.tcurr-detail-row strong { color: white; }

/* Enhanced Plan Card Styles */
.tcurr-plan-card-elite { position: relative; overflow: hidden; z-index: 1; border: 1px solid rgba(255, 255, 255, 0.1); }
.tcurr-plan-bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; transform: scale(1.1); filter: blur(12px) brightness(0.4); opacity: 0.6; transition: all 0.5s ease; }
.tcurr-plan-card-elite:hover .tcurr-plan-bg-overlay { transform: scale(1.2); opacity: 0.8; filter: blur(8px) brightness(0.5); }

.bg-basic { background: url('../images/generated/basic_plan_bg_1774695904921.png') center/cover; }
.bg-silver { background: url('../images/generated/silver_plan_bg_1774695919938.png') center/cover; }
.bg-gold { background: url('../images/generated/gold_plan_bg_1774695936207.png') center/cover; }
.bg-platinum { background: url('../images/generated/platinum_plan_bg_1774695951705.png') center/cover; }

.tcurr-elite-btn-marketplace { width: 100%; padding: 16px; border-radius: 12px; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; background: var(--tcurr-primary); color: var(--tcurr-secondary) !important; border: none; margin-top: auto; text-decoration: none !important; }
.tcurr-elite-btn-marketplace:hover { background: var(--tcurr-secondary); color: white !important; transform: scale(1.02); box-shadow: 0 10px 20px rgba(254, 19, 52, 0.3); }

/* --- SECTION 11: Elite Stocks Marketplace --- */
#new-section-stocks-elite { padding: 100px 0; background: radial-gradient(circle at top right, #0a1f0a, #050805); color: white; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.tcurr-stock-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.tcurr-stock-card { background: rgba(255, 255, 255, 0.03); padding: 30px; border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); position: relative; }
.tcurr-stock-card:hover { background: rgba(255, 255, 255, 0.06); transform: scale(1.03); border-color: var(--tcurr-secondary); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); }

.tcurr-stock-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.tcurr-stock-symbol { font-weight: 800; color: var(--tcurr-secondary); font-size: 0.9rem; letter-spacing: 1px; }
.tcurr-stock-status { width: 8px; height: 8px; border-radius: 50%; background: #FE1334; box-shadow: 0 0 10px #FE1334; }

.tcurr-stock-name { font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 5px; }
.tcurr-stock-price { font-size: 1.75rem; font-weight: 900; color: white; margin: 15px 0 5px; font-family: 'Outfit', sans-serif; }
.tcurr-stock-trend { font-size: 0.85rem; font-weight: 700; color: #FE1334; display: flex; align-items: center; gap: 5px; }
.tcurr-stock-trend.negative { color: #ef4444; }

.tcurr-stock-action { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.tcurr-stock-btn { width: 100%; padding: 12px; border-radius: 12px; border: 1px solid rgba(254, 19, 52, 0.5); background: transparent; color: white; font-weight: 700; transition: all 0.3s; }
.tcurr-stock-card:hover .tcurr-stock-btn { background: var(--tcurr-secondary); border-color: var(--tcurr-secondary); color: white; }

/* --- SECTION 12: Explore Solution & About --- */
#new-section-explore { padding: 100px 0; background: #0b140b; color: white; }
.tcurr-solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tcurr-solution-content h2 { font-size: 3rem; font-weight: 800; margin-bottom: 25px; }
.tcurr-solution-desc { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 40px; }

.tcurr-props-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tcurr-prop-item { padding: 25px; background: rgba(255, 255, 255, 0.03); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
.tcurr-prop-item h5 { font-size: 1rem; font-weight: 700; margin: 0; line-height: 1.4; color: var(--tcurr-secondary); }

.tcurr-heritage-box { margin-top: 80px; padding: 50px; background: rgba(255, 255, 255, 0.02); border-radius: 32px; border: 1px dashed rgba(255, 255, 255, 0.1); }
.tcurr-heritage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.tcurr-heritage-text h4 { font-size: 1.5rem; color: var(--tcurr-secondary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }

/* --- SECTION 13: Global Fee Policy --- */
.tcurr-policy-card { margin-top: 60px; padding: 45px; background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%); border-radius: 28px; border: 1px solid rgba(251, 191, 36, 0.2); position: relative; overflow: hidden; }
.tcurr-policy-card::after { content: 'IMPORTANT'; position: absolute; top: 10px; right: -30px; background: #fbbf24; color: #000; font-size: 0.7rem; font-weight: 900; padding: 5px 40px; transform: rotate(45deg); }
.tcurr-policy-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 30px; display: flex; align-items: center; gap: 15px; }
.tcurr-policy-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.tcurr-policy-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); }
.tcurr-policy-list li::before { content: '•'; color: #fbbf24; font-size: 1.5rem; }

/* --- Mobile Side Nav Styles --- */
.tcurr-sidebar-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tcurr-sidebar-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.tcurr-mobile-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2060;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

@supports (backdrop-filter: blur(1px)) {
    .tcurr-mobile-sidebar {
        background: rgba(255, 255, 255, 0.8);
    }
}

.tcurr-mobile-sidebar.active {
    transform: translateX(0);
}

.tcurr-sidebar-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tcurr-sidebar-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--tcurr-dark);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tcurr-sidebar-close:hover {
    background: var(--tcurr-primary);
    color: white;
}

.tcurr-sidebar-body {
    padding: 30px 20px;
    flex: 1;
    overflow-y: auto;
}

.tcurr-sidebar-nav {
    list-style: none;
    padding: 0; margin: 0;
}

.tcurr-sidebar-link {
    display: block;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tcurr-dark);
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.tcurr-sidebar-link:hover {
    background: rgba(254, 19, 52, 0.08);
    color: var(--tcurr-primary);
    padding-left: 25px;
}

/* --- Hero Animations --- */
@keyframes tcurr-slow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.tcurr-hero-robot-animated {
    animation: tcurr-slow-bounce 5s ease-in-out infinite;
}

/* Hero Layering (Mobile/Tablet) */
@media (max-width: 991px) {
    .hero-content {
        position: relative;
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .tcurr-hero-text-container {
        position: relative;
        z-index: 10;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .tcurr-hero-robot-container {
        position: relative !important;
        top: auto; left: auto;
        width: 100%; height: auto;
        z-index: 1; opacity: 1;
        pointer-events: auto;
        display: flex;
        align-items: center; justify-content: center;
        margin-top: 30px !important;
        transform: none;
        padding: 0;
    }

    .tcurr-hero-robot-container img {
        max-width: 85% !important;
        height: auto;
        transform-origin: center;
        transform: none;
        animation: tcurr-slow-bounce 5s ease-in-out infinite;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
}




@media (max-width: 991px) { .tcurr-solution-grid, .tcurr-heritage-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BOOTSTRAP OVERRIDES — Landing Page
   Make Bootstrap components match #FE1334 brand
   ============================================================ */

/* btn-primary → red */
.btn-primary {
    background: #FE1334 !important;
    border-color: #FE1334 !important;
    color: #fff !important;
    font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: #c8001e !important;
    border-color: #c8001e !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(254, 19, 52, 0.35) !important;
}

/* btn-outline-primary → red outline */
.btn-outline-primary {
    color: #FE1334 !important;
    border-color: #FE1334 !important;
    background: transparent !important;
    font-weight: 600;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: #FE1334 !important;
    border-color: #FE1334 !important;
    color: #fff !important;
}

/* text-primary → red */
.text-primary {
    color: #FE1334 !important;
}

/* Navbar link colors */
.navbar-landing .tcurr-nav-link {
    color: #1c1c1c;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.25s ease;
    text-decoration: none;
}
.navbar-landing .tcurr-nav-link:hover {
    color: #FE1334;
}

/* Navbar desktop collapse — show on lg+, hide on mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important; /* Mobile uses .tcurr-mobile-sidebar instead */
    }
    .navbar-landing {
        background: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
}

/* Sticky navbar scroll shadow */
.navbar-landing.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1) !important;
}

/* Smooth scroll anchor offset (accounts for fixed navbar) */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ============================================================
   MOBILE RESPONSIVE FIXES (≤480px) — Overlap & Text Overflow
   ============================================================ */
@media (max-width: 480px) {
    /* Section padding reduction */
    .tcurr-container {
        padding: 0 12px;
    }

    /* Headings — prevent text overflow */
    .tcurr-heading {
        font-size: 1.6rem !important;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .tcurr-subheading {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* Hero section */
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-section {
        padding-top: 80px !important;
        min-height: auto;
    }

    .tcurr-hero-robot-container img {
        max-width: 70% !important;
    }

    /* Legal badges — stack vertically */
    .legal-badge {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    /* Plan cards — reduce padding */
    .tcurr-plan-card-elite {
        padding: 30px 18px;
        min-height: auto;
    }

    .tcurr-elite-plan-title {
        font-size: 1.2rem;
    }

    .tcurr-elite-roi {
        font-size: 1.5rem;
    }

    .tcurr-detail-row {
        font-size: 0.78rem;
    }

    /* Stock cards */
    .tcurr-stock-card {
        padding: 20px;
    }

    .tcurr-stock-price {
        font-size: 1.3rem;
    }

    .tcurr-stock-name {
        font-size: 1rem;
    }

    /* Partner grid — single column */
    .tcurr-partner-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tcurr-banner-card {
        height: 180px;
    }

    /* Board cards */
    .tcurr-board-grid {
        grid-template-columns: 1fr;
    }

    /* Features grid — single column */
    .tcurr-features-grid {
        grid-template-columns: 1fr;
    }

    /* Referral grid */
    .tcurr-referral-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Bento grid */
    .tcurr-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .tcurr-bento-spacex,
    .tcurr-bento-starlink,
    .tcurr-bento-tesla,
    .tcurr-bento-x {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Solution grid */
    .tcurr-solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tcurr-props-grid {
        grid-template-columns: 1fr;
    }

    .tcurr-heritage-grid {
        grid-template-columns: 1fr;
    }

    /* Policy card */
    .tcurr-policy-card {
        padding: 24px 16px;
    }

    .tcurr-policy-list {
        grid-template-columns: 1fr;
    }

    .tcurr-policy-title {
        font-size: 1.2rem;
    }

    /* Excellence grid */
    .tcurr-excellence-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Service grid */
    .tcurr-service-grid {
        grid-template-columns: 1fr;
    }

    /* Insight grid */
    .tcurr-insight-grid {
        grid-template-columns: 1fr;
    }

    /* Performance box */
    .tcurr-excellence-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* CTA buttons — stack */
    .btn-hero-primary,
    .btn-hero-outline {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Navbar brand image */
    .navbar-brand img {
        height: 32px !important;
    }

    /* Footer */
    .site-footer .col-md-4 {
        text-align: center;
    }

    .site-footer .d-flex.gap-3 {
        justify-content: center;
    }

    /* Stats section */
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Profit calculator */
    .profit-calculator {
        padding: 24px 16px;
    }

    /* Step cards */
    .step-card {
        padding: 20px 16px;
    }

    /* Testimonial cards */
    .testimonial-card {
        padding: 18px;
    }

    /* Elite card padding */
    .tcurr-elite-card {
        padding: 30px 20px;
    }

    /* Solution content */
    .tcurr-solution-content h2 {
        font-size: 1.8rem;
    }

    /* Hero tag */
    .tcurr-hero-tag {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    /* Diamond badge */
    .tcurr-diamond-badge {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    /* Referral step */
    .tcurr-referral-step {
        padding: 24px 16px;
    }

    .tcurr-step-num {
        font-size: 2rem;
    }

    /* Stock grid */
    .tcurr-stock-grid {
        grid-template-columns: 1fr;
    }

    /* Plans elite grid */
    .tcurr-plan-grid-elite {
        grid-template-columns: 1fr;
    }

    /* Elite grid */
    .tcurr-elite-grid {
        grid-template-columns: 1fr;
    }

    /* Highlight grid */
    .tcurr-highlight-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tcurr-highlight-text {
        font-size: 0.95rem;
    }

    /* Feature items */
    .tcurr-feature-item {
        padding: 16px;
    }

    /* Policy list items */
    .tcurr-policy-list li {
        font-size: 0.85rem;
    }

    /* Board card */
    .tcurr-board-card {
        margin-bottom: 16px;
    }

    /* Banner title */
    .tcurr-banner-title {
        font-size: 1.1rem;
    }

    /* Board name */
    .tcurr-board-name {
        font-size: 1.2rem;
    }

    /* Section padding */
    section[id^="new-section-"] {
        padding: 50px 0 !important;
    }

    /* Performance box */
    .tcurr-performance-box {
        padding: 24px 16px;
    }

    .tcurr-stat-value {
        font-size: 1.8rem !important;
    }

    /* Excellence grid numbers */
    .tcurr-exc-num {
        font-size: 1.8rem;
    }

    /* Navbar toggler */
    #tcurr-sidebar-toggle {
        padding: 4px;
    }

    /* Container margin */
    .tcurr-container {
        padding: 0 10px;
    }

    /* Hero text container */
    .tcurr-hero-text-container {
        text-align: center;
    }

    .tcurr-hero-text-container .d-flex.gap-4 {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Hero buttons */
    .tcurr-hero-text-container .d-flex.gap-3 {
        flex-direction: column;
    }


    .tcurr-hero-text-container .d-flex.gap-3 a {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
    MOBILE SUPPLEMENTAL FIXES (≤480px) — Overlap Prevention
    Applied: 2026-04-03, Cleaned: 2026-04-06
    Only rules NOT already in the block above (line ~846)
    ============================================================ */

@media (max-width: 480px) {
    /* Force all containers full width */
    .tcurr-container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
        box-sizing: border-box;
    }
    
    /* Fix all grid layouts to single column (with !important only where needed for specificity) */
    .tcurr-service-grid,
    .tcurr-highlight-grid,
    .tcurr-about-layout,
    .tcurr-insight-grid,
    .tcurr-board-grid,
    .tcurr-features-grid,
    .tcurr-referral-grid,
    .tcurr-bento-grid,
    .tcurr-solution-grid,
    .tcurr-heritage-grid,
    .tcurr-policy-list,
    .tcurr-excellence-grid,
    .tcurr-plan-grid-elite,
    .tcurr-elite-grid,
    .tcurr-stock-grid,
    .tcurr-partner-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix bento grid spans */
    .tcurr-bento-spacex,
    .tcurr-bento-starlink,
    .tcurr-bento-tesla,
    .tcurr-bento-x {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    /* Fix hero */
    #new-section-hero {
        padding: 50px 0;
    }
    
    .tcurr-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }
    
    .tcurr-hero-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Fix text overflow */
    h1, h2, h3, h4, h5, h6, p, span, div, a {
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix plan cards */
    .tcurr-plan-card,
    .tcurr-plan-card-elite,
    .tcurr-elite-card {
        padding: 20px 15px;
        margin-bottom: 16px;
    }
    
    /* Fix service cards */
    .tcurr-service-card {
        padding: 24px 16px;
        margin-bottom: 16px;
    }
    
    /* Fix stock cards */
    .tcurr-stock-card {
        padding: 16px;
        margin-bottom: 12px;
    }
    
    /* Fix buttons - full width on mobile */
    .tcurr-btn,
    .tcurr-elite-btn,
    .tcurr-stock-btn,
    .tcurr-elite-btn-marketplace {
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* Fix fee card */
    .tcurr-fee-card {
        padding: 24px 16px;
    }
    
    /* Fix video box */
    .tcurr-video-box {
        border-radius: 12px;
    }
    
    /* Fix footer */
    #new-section-footer {
        padding: 40px 0 20px;
    }
    
    .tcurr-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    /* Fix form */
    .tcurr-quote-form {
        padding: 20px 16px;
    }
    
    .tcurr-input {
        padding: 12px;
    }
    
    /* Fix banner cards */
    .tcurr-banner-card {
        height: 160px;
    }
    
    .tcurr-banner-title {
        font-size: 1rem;
    }
    
    /* Fix mobile sidebar */
    .tcurr-mobile-sidebar {
        width: 280px;
    }
    
    /* Fix policy card */
    .tcurr-policy-card {
        padding: 20px 14px;
    }
    
    /* Fix section padding */
    section[id^="new-section-"] {
        padding: 40px 0;
    }
    
    /* Fix excellence numbers */
    .tcurr-exc-num {
        font-size: 1.6rem;
    }
    
    /* Fix detail rows */
    .tcurr-detail-row {
        font-size: 0.8rem;
    }
    
    /* Fix step numbers */
    .tcurr-step-num {
        font-size: 2rem;
    }
}
