/* ==========================================
   LANDING PAGE STYLES
   ========================================== */

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(243, 146, 0, 0.2);
    border: 1px solid #F39200;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.hero-badge span {
    color: #F39200;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
}

.hero-title {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #A7A9A9;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Demo Card */
.demo-card {
    background-color: #242526;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-top: 4px solid #F39200;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.demo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-icon-success {
    background-color: rgba(29, 165, 56, 0.2);
    color: #1DA538;
}

.demo-icon-globe {
    background-color: rgba(169, 67, 231, 0.2);
    color: #A943E7;
}

.demo-subtitle {
    background-color: #1A1B1C;
    border-radius: 8px;
    padding: 16px;
    font-family: monospace;
    font-size: 14px;
    color: #A7A9A9;
    margin-bottom: 16px;
}

.demo-subtitle-translated {
    color: #FFFFFF;
}

.demo-loading {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    gap: 4px;
}

/* Try It Free Section */
.try-section {
    padding: 60px 2rem;
    background-color: #0E0E0F;
}

.try-card {
    background-color: #242526;
    border-radius: 16px;
    padding: 32px;
    border-top: 4px solid #F39200;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    color: #A7A9A9;
    text-align: center;
    margin-bottom: 32px;
    font-size: 16px;
}

.upload-area {
    border: 2px dashed rgba(243, 146, 0, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.upload-area:hover {
    border-color: #F39200;
}

.upload-label {
    cursor: pointer;
    display: block;
}

.upload-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
}

.upload-subtitle {
    color: #A7A9A9;
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 80px 2rem;
    background-color: rgba(14, 14, 15, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.feature-card {
    background-color: #242526;
    border-radius: 16px;
    padding: 24px;
    transition: border-top 0.3s;
}

.feature-card:hover {
    border-top: 4px solid #F39200;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon-orange {
    background-color: rgba(243, 146, 0, 0.2);
    color: #F39200;
}

.feature-icon-green {
    background-color: rgba(29, 165, 56, 0.2);
    color: #1DA538;
}

.feature-icon-blue {
    background-color: rgba(15, 170, 223, 0.2);
    color: #0FAADF;
}

.feature-icon-purple {
    background-color: rgba(169, 67, 231, 0.2);
    color: #A943E7;
}

.feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text {
    font-size: 14px;
    color: #A7A9A9;
    line-height: 1.6;
}

/* Languages Section */
.languages-section {
    padding: 80px 2rem;
    background-color: #0E0E0F;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 2rem;
    background-color: rgba(14, 14, 15, 0.5);
}

/* FAQ Section */
.faq-section {
    padding: 80px 2rem;
    background-color: #0E0E0F;
}

/**
 * Story Intelligence Section & Final CTA Styles
 * 
 * CORRECTED: Now matches language tiers design style
 * - Dark cards (#242526) with colored top borders
 * - NOT solid gradient backgrounds
 * 
 * Add this to /assets/css/landing.css
 */

/* =====================================================
   STORY INTELLIGENCE SECTION
   ===================================================== */

.story-section {
    padding: 80px 0;
    /* No separate background - inherits from page like language tiers */
}

.story-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.story-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* Story Grid - Problem & Difference Cards */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

/* Story Cards - MATCHING LANGUAGE TIER STYLE */
.story-card {
    background-color: #242526;
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.3s;
}

.story-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.story-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 0;
}

.story-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #A7A9A9;
    margin: 0;
}

/* Problem Card - Red/Orange border */
.problem-card {
    border-top: 4px solid #FF4444;
}

.problem-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 68, 68, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i,
.problem-icon svg {
    width: 28px;
    height: 28px;
    color: #FF4444;
}

/* Difference Card - Green border */
.difference-card {
    border-top: 4px solid #1DA538;
}

.difference-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(29, 165, 56, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.difference-icon i,
.difference-icon svg {
    width: 28px;
    height: 28px;
    color: #1DA538;
}

/* Story Points - Checkmark List */
.story-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-point {
    position: relative;
    padding-left: 32px;
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.story-point::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #1DA538;
    font-size: 1.125rem;
}

/* Story CTA Card - Keep gradient for CTA emphasis */
.story-cta {
    background: linear-gradient(135deg, #F39200 0%, #E6177D 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.story-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    margin-top: 0;
}

.story-cta > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.story-cta .btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #E6177D;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.story-cta .cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    margin-bottom: 0;
}

/* Final CTA Section removed - not used on homepage */

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }
    
    .story-section .section-title {
        font-size: 2rem;
    }
    
    .story-card {
        padding: 24px;
    }
    
    .story-card h3 {
        font-size: 1.5rem;
    }
    
    .problem-icon,
    .difference-icon {
        width: 48px;
        height: 48px;
    }
    
    .story-cta {
        padding: 32px 24px;
    }
    
    .story-cta h3 {
        font-size: 1.5rem;
    }
}