/* High-Converting Professional Trading Signals Landing Page - start2.css */

/* Typography Scale - Perfect Ratios (1.25 - Major Third) */
:root {
    --font-scale: 1.25;
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.563rem;  /* 25px */
    --text-3xl: 1.953rem;  /* 31px */
    --text-4xl: 2.441rem;  /* 39px */
    --text-5xl: 3.052rem;  /* 49px */
    --text-6xl: 3.815rem;  /* 61px */
}

.trader-cta {
    background: transparent;
    padding: 0;
    margin-top: 90px;
    position: relative;
    max-width: none;
}

/* Hero Section - Optimized for Conversion */
.hero-section {
    background: var(--ga-color-surface);
    color: var(--ga-color-heading);
    padding: 3rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--ga-color-border);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--ga-color-heading);
    letter-spacing: -0.025em;
}

.hero-title .highlight {
    color: var(--ga-color-primary-legacy);
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: 2.5rem;
    color: var(--ga-color-muted-2);
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

/* Social Proof Stats */
.social-proof-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--ga-color-border);
    border-bottom: 1px solid var(--ga-color-border);
}

.proof-item {
    text-align: left;
}

.proof-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--ga-color-primary-legacy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: var(--text-xs);
    color: var(--ga-color-muted-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Primary CTA Section */
.hero-cta-primary {
    margin-bottom: 1.5rem;
}

.cta-headline {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--ga-color-heading);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-description {
    font-size: var(--text-base);
    color: var(--ga-color-muted-2);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    max-width: 85%;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: var(--text-sm);
    color: var(--ga-color-success);
    font-weight: 600;
}

.disclaimer-text {
    font-size: var(--text-xs);
    color: var(--ga-color-muted-2);
    line-height: 1.5;
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Hero Visual - Chart Demo */
.hero-visual {
    position: relative;
}

.chart-demo {
    background: var(--ga-color-surface-muted);
    border-radius: var(--ga-radius-2xl);
    padding: 1.5rem;
    border: 1px solid var(--ga-color-border);
    position: relative;
}

.demo-label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--ga-color-primary-legacy);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.signal-chart {
    width: 100%;
    border-radius: var(--ga-radius-lg);
    display: block;
}

.chart-results {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--ga-color-surface);
    border-radius: var(--ga-radius-lg);
    border: 1px solid var(--ga-color-border);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-label {
    font-size: var(--text-sm);
    color: var(--ga-color-muted-2);
    font-weight: 500;
}

.result-value {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--ga-color-success);
}

/* Social Proof Section */
.proof-section {
    background: var(--ga-color-surface-muted);
    padding: 3rem 2rem;
}

.proof-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-highlight {
    background: var(--ga-color-surface);
    border: 1px solid var(--ga-color-border);
    border-radius: var(--ga-radius-2xl);
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 3rem;
    color: var(--ga-color-border);
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-style: italic;
    color: var(--ga-color-heading);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ga-color-primary-legacy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ga-color-surface);
    font-weight: 700;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--ga-color-heading);
    display: block;
}

.author-title {
    color: var(--ga-color-muted);
    font-size: 0.9rem;
}

/* Value Section */
.value-section {
    background: var(--ga-color-surface);
    padding: 4rem 2rem;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--ga-color-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--ga-color-muted-2);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    background: var(--ga-color-surface-muted);
    padding: 2rem;
    border-radius: var(--ga-radius-2xl);
    border: 1px solid var(--ga-color-border);
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--ga-color-primary-legacy);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--ga-color-primary-legacy);
    border-radius: var(--ga-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ga-color-surface);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ga-color-heading);
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: var(--ga-color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Signals Section */
.signals-section {
    background: var(--ga-color-surface-muted);
    padding: 4rem 2rem;
}

.signals-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.signal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.signal-card {
    background: var(--ga-color-surface);
    border: 1px solid var(--ga-color-border);
    border-radius: var(--ga-radius-2xl);
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.signal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--ga-color-primary-legacy);
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.signal-ticker {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ga-color-heading);
}

.signal-status {
    padding: 0.3rem 0.8rem;
    border-radius: var(--ga-radius-2xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.signal-status.active {
    background: var(--ga-color-primary-legacy);
    color: var(--ga-color-surface);
}

.signal-status.complete {
    background: var(--ga-color-success-legacy);
    color: var(--ga-color-surface);
}

.signal-status.monitoring {
    background: var(--ga-color-warning);
    color: #000000;
}

.signal-target {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ga-color-primary-legacy);
    margin-bottom: 0.5rem;
}

.signal-date {
    font-size: 0.85rem;
    color: var(--ga-color-muted);
    margin-bottom: 1rem;
}

.signal-link {
    display: inline-block;
    background: var(--ga-color-primary-legacy);
    color: var(--ga-color-surface);
    padding: 0.6rem 1.2rem;
    border-radius: var(--ga-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.signal-link:hover {
    background: var(--ga-color-primary-hover);
    color: var(--ga-color-surface);
    transform: translateY(-1px);
}

.home-blogs-section {
    background: var(--ga-color-surface);
    padding: 4rem 2rem;
    border-top: 1px solid var(--ga-color-border);
}

.home-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.home-blogs-heading span,
.home-blog-card > span {
    color: var(--ga-color-primary-hover);
    font-size: var(--text-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home-blogs-heading h2 {
    margin: 0.35rem 0 0.75rem;
    color: var(--ga-color-heading);
    font-size: var(--text-4xl);
    line-height: 1.14;
}

.home-blogs-heading p {
    color: var(--ga-color-muted-2);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.home-blogs-heading a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: var(--ga-radius-md);
    background: var(--ga-color-primary-legacy);
    color: var(--ga-color-surface);
    font-weight: 800;
    text-decoration: none;
}

.home-blogs-heading a:hover {
    background: var(--ga-color-primary-hover);
    color: var(--ga-color-surface);
}

.home-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-blog-card {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--ga-color-border);
    border-radius: var(--ga-radius-lg);
    background: var(--ga-color-surface);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--ga-shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-blog-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--ga-color-primary-rgb), 0.35);
    box-shadow: var(--ga-shadow-lg);
}

.home-blog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--ga-radius-md);
    background: var(--ga-color-surface-muted);
}

.home-blog-card h3 {
    margin: 0;
    color: var(--ga-color-heading);
    font-size: 1.05rem;
    line-height: 1.2;
}

.home-blog-card p {
    margin: 0;
    color: var(--ga-color-muted);
    line-height: 1.5;
    font-size: var(--text-sm);
}

/* Final CTA Section */
.cta-section {
    background: var(--ga-color-surface);
    color: var(--ga-color-heading);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--ga-color-border);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ga-color-heading);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--ga-color-muted);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-form-section {
    background: var(--ga-color-surface-muted);
    border: 1px solid var(--ga-color-border);
    border-radius: var(--ga-radius-2xl);
    padding: 2rem;
    margin-top: 2rem;
}

.final-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.final-trust-item {
    font-size: 0.9rem;
    color: var(--ga-color-success-legacy);
    font-weight: 600;
}

/* Under Text Section */
.under-text {
    background: var(--ga-color-surface-muted);
    padding: 2rem;
    border-top: 1px solid var(--ga-color-border);
}

.under-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.under-text p {
    font-size: 0.9rem;
    color: var(--ga-color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Section Indicator - Hidden */
.section-indicator {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trader-cta {
        margin-top: 0px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .social-proof-stats {
        justify-content: space-between;
    }

    .home-blogs-container {
        grid-template-columns: 1fr;
    }

    .home-blogs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-section,
    .proof-section,
    .value-section,
    .signals-section,
    .home-blogs-section,
    .cta-section,
    .under-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
        max-width: 100%;
    }

    .cta-headline {
        font-size: var(--text-xl);
    }

    .cta-description {
        max-width: 100%;
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .section-subtitle {
        font-size: var(--text-base);
    }

    .social-proof-stats,
    .final-trust-badges {
        gap: 1rem;
    }

    .benefit {
        padding: 1.25rem;
        gap: 1rem;
    }

    .home-blogs-container {
        grid-template-columns: 1fr;
    }

    .home-blogs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-3xl);
    }

    .social-proof-stats {
        flex-direction: column;
    }

    .benefit {
        flex-direction: column;
    }
}
