/* AdaptiveTrend Sales Page Specific Styles */

/* Sales Hero Section */
.sales-hero {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
}

.sales-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
}

.sales-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-sales {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb-sales a {
    color: var(--primary-color);
    text-decoration: none;
}

.sales-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

/* Value Props Section */
.value-props-section {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.section-title-sales {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

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

.prop-card-sales {
    background: var(--background-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.prop-card-sales:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.prop-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.prop-card-sales h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.prop-card-sales p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features Section Sales */
.features-section-sales {
    padding: 80px 20px;
    background: var(--background-dark);
}

.features-grid-sales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item-sales {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--background-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-item-sales:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.checkmark-sales {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: 700;
}

.feature-item-sales div {
    flex: 1;
}

.feature-item-sales h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item-sales p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* User Guide Section */
.user-guide-section {
    padding: 80px 20px;
    background: var(--secondary-color);
}

.guide-section-sales {
    margin-bottom: 60px;
}

.guide-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--border-color);
}

.guide-section-sales h4 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.guide-section-sales p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.guide-section-sales ul, .guide-section-sales ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.guide-section-sales li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.7;
}

.guide-section-sales strong {
    color: var(--text-primary);
}

/* Signal Cards Sales */
.signal-grid-sales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.signal-card-sales {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.signal-card-sales:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
    transform: translateY(-3px);
}

.signal-name-sales {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.signal-label-sales {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.signal-buy {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid #10b981;
}

.signal-sell {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.signal-description-sales {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.signal-when-sales {
    background: rgba(255, 140, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid var(--primary-color);
}

.signal-when-sales strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

/* Color Legend Sales */
.color-legend-sales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.color-item-sales {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--background-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.color-swatch-sales {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.color-info-sales strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.color-info-sales span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Settings Table Sales */
.settings-table-sales {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--background-card);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.settings-table-sales th {
    background: var(--primary-color);
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
}

.settings-table-sales td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.settings-table-sales tr:last-child td {
    border-bottom: none;
}

.settings-table-sales tr:hover {
    background: rgba(255, 140, 0, 0.05);
}

.settings-table-sales strong {
    color: var(--text-primary);
}

/* Code Block Sales */
.code-block-sales {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

/* Highlight Box Sales */
.highlight-box-sales {
    background: rgba(255, 140, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.highlight-box-sales h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.highlight-box-sales p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* FAQ Items Sales */
.faq-item-sales {
    background: var(--background-card);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item-sales:hover {
    border-color: var(--primary-color);
}

.faq-item-sales h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.faq-item-sales p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA Sales */
.final-cta-sales {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
    color: var(--text-primary);
    text-align: center;
    padding: 80px 20px;
}

.final-cta-sales h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.final-cta-sales p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sales-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-sales {
        font-size: 2rem;
    }
    
    .guide-title {
        font-size: 1.8rem;
    }
    
    .signal-grid-sales {
        grid-template-columns: 1fr;
    }
    
    .props-grid-sales {
        grid-template-columns: 1fr;
    }
    
    .final-cta-sales h2 {
        font-size: 2rem;
    }
    
    .cta-button-large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}