/* Landing Page Specific Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #ffffff;
    color: #162435;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Remove duplicate navigation - using header from build system instead */

/* Hero Section */
.hero {
    padding: 40px 0 100px;
    position: relative;
    background: linear-gradient(135deg, rgba(22, 36, 53, 0.03) 0%, rgba(41, 147, 153, 0.05) 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0 80px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 147, 153, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

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

.trial-alert {
    display: inline-block;
    background: linear-gradient(135deg, #fff4e6, #ffe8cc);
    border: 1px solid #ff9800;
    color: #e67e00;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

h1 {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 3px;
    overflow: visible;
    background: linear-gradient(135deg, #162435 0%, #299399 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 4s ease infinite;
    background-size: 200% 200%;
}

h2 {
    font-size: clamp(22px, 7vw, 22px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 3px;
    overflow: visible;
    background: linear-gradient(135deg, #162435 0%, #299399 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 4s ease infinite;
    background-size: 200% 200%;
}

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

body.landing-page .hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0 auto 40px auto;
    max-width: 600px;
    text-align: center !important;
    display: block;
}

.performance-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.badge {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22, 36, 53, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 147, 153, 0.2);
    border-color: #299399;
}

.badge-number {
    font-size: 36px;
    font-weight: bold;
    color: #299399;
    display: block;
}

.badge-label {
    font-size: 14px;
    color: #162435;
    margin-top: 5px;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-box {
    background: #ffffff;
    border: 3px solid #299399;
    padding: 30px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(41, 147, 153, 0.15);
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(41, 147, 153, 0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.trial-offer {
    background: #299399;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
}

.trial-offer:hover { text-decoration: none; }

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 20px;
}

.current-price {
    font-size: 48px;
    font-weight: bold;
    color: #162435;
    margin: 10px 0;
}

.price-increase-warning {
    color: #e67e00;
    font-size: 14px;
    font-weight: 600;
}

.guarantee-text {
    color: #299399;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.main-cta {
    background: #cdff00;
    color: #00253b;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 37, 59, 0.15);
}

.main-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 37, 59, 0.25);
}

/* Live Results Ticker */
.ticker {
    background: linear-gradient(90deg, #162435, #299399);
    padding: 20px 0;
    overflow: hidden;
    margin: 80px 0;
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Faster scrolling on mobile */
@media (max-width: 768px) {
    .ticker-content {
        animation: scroll 20s linear infinite;
    }
}

.ticker-item {
    padding: 0 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    flex-shrink: 0;
}

.ticker-gain {
    color: #7fffd4;
    font-weight: bold;
    font-size: 18px;
}

/* Proof Section */
.proof-section {
    padding: 80px 0;
    background: #fafbfc;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 900;
    color: #162435;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
    margin-bottom: 10px;
}

.performance-card {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(22, 36, 53, 0.1);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.performance-card:hover {
    border-color: #299399;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(41, 147, 153, 0.2);
}

.month-label {
    color: #162435;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.performance-multiplier {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #299399, #3fb4bb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.performance-comparison {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.vs-spy {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

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

.vs-label {
    font-size: 12px;
    color: #162435;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.vs-value {
    font-size: 24px;
    font-weight: bold;
}

.us-value { color: #299399; }
.spy-value { color: #ef4444; }

/* Stock Picks Showcase */
.picks-showcase {
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 40px;
    margin: 80px 0;
    box-shadow: 0 20px 60px rgba(22, 36, 53, 0.1);
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pick-card {
    background: linear-gradient(135deg, #fafbfc, #ffffff);
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.pick-card:hover {
    transform: scale(1.05);
    border-color: #299399;
    box-shadow: 0 10px 30px rgba(41, 147, 153, 0.2);
}

.stock-symbol {
    font-size: 20px;
    font-weight: bold;
    color: #162435;
    margin-bottom: 10px;
}

.stock-gain {
    font-size: 32px;
    font-weight: 900;
    color: #299399;
    margin-bottom: 5px;
}

.stock-date {
    font-size: 12px;
    color: #162435;
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding: 80px 0;
    background: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.trust-item {
    padding: 30px;
    background: #fafbfc;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.trust-item:hover {
    border-color: #299399;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 147, 153, 0.15);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: #162435;
    font-weight: bold;
}

.trust-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(22, 36, 53, 0.03) 0%, rgba(41, 147, 153, 0.05) 100%);
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #162435;
}

.guarantee {
    background: linear-gradient(135deg, #e8f5f5, #d1eded);
    border: 2px solid #299399;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    margin-top: 30px;
    color: #162435;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .performance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        max-width: 300px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .current-price {
        font-size: 36px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
