/* SoloStaff SalesFlow Landing Page Styles */

/* Product Badge - Coming Soon Blue/Indigo Theme */
.product-badge.coming-soon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.5);
}

.dev-disclaimer {
    font-size: 0.85rem;
    color: #ef4444;
    font-style: italic;
    margin: 0.75rem 0 0 0;
}

/* Product Hero Section - Blue/Indigo Theme for Sales Focus */
.salesflow-hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #1e3a8a 100%);
}

.salesflow-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Ensure hero text is white on dark background */
.salesflow-hero .product-hero-content {
    color: white;
    position: relative;
    z-index: 1;
}

.salesflow-hero h1,
.salesflow-hero .product-tagline,
.salesflow-hero .product-description {
    color: white;
}

.salesflow-hero .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

.salesflow-hero .product-hero-content {
    padding: 4rem 2rem 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.salesflow-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.salesflow-hero .product-tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.salesflow-hero .product-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Hero Stats in columns */
.salesflow-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.salesflow-hero .stat-item {
    text-align: center;
}

.salesflow-hero .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #818cf8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.salesflow-hero .stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

/* Audience Section with indigo accent */
.audience-section .audience-card {
    border-bottom: 4px solid #4f46e5;
}

.audience-section .audience-icon {
    background: linear-gradient(135deg, #3730a3, #4f46e5);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(to bottom, #fff 0%, var(--bg-light) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    border-bottom: 4px solid #ef4444;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    color: white;
}

.problem-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Solution Section - Indigo Theme */
.solution-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
}

.solution-section .section-title,
.solution-section .section-subtitle {
    color: white;
}

/* Horizontal Workflow */
.workflow-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 0 2rem;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    flex: 1;
    transition: all var(--transition-speed);
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.workflow-step .step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #818cf8, #6366f1);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.workflow-step .step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: white;
}

.workflow-step .step-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.workflow-connector-h {
    width: 60px;
    height: 4px;
    background: #818cf8;
    align-self: center;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

/* Screenshots Section - Coming Soon Notice */
.screenshots-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    color: white;
}

.screenshots-section .section-title,
.screenshots-section .section-subtitle {
    color: white;
}

.coming-soon-notice {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-notice .notice-icon {
    margin-bottom: 1.5rem;
    color: #818cf8;
}

.coming-soon-notice h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.coming-soon-notice p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.coming-soon-notice p:last-child {
    margin-bottom: 0;
}

.coming-soon-notice .guide-link {
    color: #818cf8;
    font-weight: 600;
    text-decoration: underline;
}

.coming-soon-notice .guide-link:hover {
    color: #a5b4fc;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    border-top: 4px solid #4f46e5;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3730a3, #4f46e5);
    border-radius: 12px;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* AI Section */
.ai-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #4f46e5;
    transition: all var(--transition-speed);
}

.ai-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.ai-card h3 {
    font-size: 1.2rem;
    color: #3730a3;
    margin-bottom: 0.75rem;
}

.ai-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.ai-note {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.ai-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.ai-note strong {
    color: #3730a3;
}

/* Honesty Section */
.honesty-section {
    background: var(--bg-light);
}

.honesty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.honesty-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.honesty-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.honesty-card.not-for h3 {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

.honesty-card.designed-for h3 {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

.honesty-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.honesty-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.5;
}

.not-for .honesty-list li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.designed-for .honesty-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.honesty-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #818cf8;
}

.honesty-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Technical Section */
.technical-section {
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #4f46e5;
}

.tech-card h3 {
    font-size: 1.3rem;
    color: #1e1b4b;
    margin-bottom: 1.5rem;
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.95rem;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list strong {
    color: #1e1b4b;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, #eef2ff 0%, white 100%);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid #4f46e5;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: #4f46e5;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.pricing-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.pricing-costs {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.pricing-costs h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-costs p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cost-note {
    font-size: 0.85rem !important;
    opacity: 0.8;
    margin-top: 0.5rem !important;
}

.pricing-value {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pricing-value h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.value-label {
    color: var(--text-secondary);
}

.value-amount {
    font-weight: 600;
    color: var(--primary-color);
}

.value-amount.highlight {
    color: #4f46e5;
    font-size: 1.1rem;
}

.value-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Early Access Section */
.early-access-section {
    background: white;
}

.early-access-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.early-access-info {
    text-align: left;
    margin-top: 2rem;
}

.early-access-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.early-access-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.early-access-info h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.early-access-section .version-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3730a3, #4f46e5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.early-access-section .version-badge .version {
    font-weight: 700;
    font-size: 1.1rem;
}

.early-access-section .version-badge .phase {
    font-size: 0.85rem;
    opacity: 0.9;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.early-access-section .pilot-goals,
.early-access-section .roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.early-access-section .pilot-goals li,
.early-access-section .roadmap-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.early-access-section .pilot-goals li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
}

.early-access-section .roadmap-list li::before {
    content: '\25B6';
    position: absolute;
    left: 0;
    color: #818cf8;
    font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 850px) {
    .workflow-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .workflow-step {
        max-width: 400px;
        width: 100%;
    }

    .workflow-connector-h {
        width: 4px;
        height: 30px;
        background: linear-gradient(to bottom, #818cf8, transparent);
        margin-top: 0;
    }
}

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

    .ai-grid {
        grid-template-columns: 1fr;
    }

    .price-main {
        font-size: 2.5rem;
    }

    .value-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .salesflow-hero h1 {
        font-size: 2.5rem;
    }

    .salesflow-hero .product-tagline {
        font-size: 1.2rem;
    }

    .salesflow-hero .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .workflow-step {
        padding: 1.5rem 1rem;
    }

    .workflow-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .salesflow-hero h1 {
        font-size: 2rem;
    }

    .coming-soon-notice {
        padding: 2rem 1.5rem;
    }
}
