/* SoloStaff Meeting Secretary Landing Page Styles */

/* Product Badge - Early Access Purple Theme */
.product-badge.early-access {
    background: linear-gradient(135deg, #6b5b95, #8b7bb5);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 91, 149, 0.5);
    animation: pulse-purple 2s infinite;
}

@keyframes pulse-purple {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(107, 91, 149, 0.5);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(107, 91, 149, 0.7);
    }
}

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

.secretary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 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(99, 102, 241, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

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

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

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

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

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

.secretary-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 */
.secretary-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.secretary-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 purple accent */
.audience-section.secretary .audience-card {
    border-bottom: 4px solid #6366f1;
}

.audience-section.secretary .audience-icon {
    background: linear-gradient(135deg, #4338ca, #6366f1);
}

/* Problem/Solution 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 - Purple Theme */
.solution-section.secretary {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

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

/* Workflow Steps - 4 phases */
.workflow-horizontal.secretary-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    padding: 0 1rem;
}

.workflow-horizontal.secretary-workflow .workflow-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: all var(--transition-speed);
}

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

.workflow-horizontal.secretary-workflow .step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a78bfa, #8b5cf6);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.workflow-horizontal.secretary-workflow .step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #a78bfa;
}

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

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

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

.screenshots-section.secretary .screenshot-caption h4 {
    color: #a78bfa;
}

.screenshots-section.secretary .user-guide-cta .guide-link {
    color: #a78bfa;
}

.screenshots-section.secretary .user-guide-cta .guide-link:hover {
    color: #c4b5fd;
}

/* 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 #6366f1;
}

.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, #4338ca, #6366f1);
    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;
}

/* Pricing Section - Purple accent */
.pricing-section.secretary .pricing-card {
    border: 2px solid #6366f1;
}

.pricing-section.secretary .price-main {
    color: #6366f1;
}

.pricing-section.secretary .pricing-features li::before {
    color: #6366f1;
}

.pricing-section.secretary .value-amount.highlight {
    color: #6366f1;
}

/* Early Access Section - Purple Theme */
.early-access-section.secretary .version-badge {
    background: linear-gradient(135deg, #4338ca, #6366f1);
}

.early-access-section.secretary .pilot-goals li::before {
    color: #6366f1;
}

.early-access-section.secretary .roadmap-list li::before {
    color: #a78bfa;
}

/* Technical Section - Purple accent */
.technical-section.secretary .tech-card {
    border-top: 4px solid #6366f1;
}

.technical-section.secretary .tech-card h3 {
    color: #4338ca;
}

.technical-section.secretary .tech-list strong {
    color: #4338ca;
}

/* Honesty Section - Purple designed-for */
.honesty-section.secretary .honesty-card.designed-for h3 {
    color: #6366f1;
    border-bottom-color: #6366f1;
}

.honesty-section.secretary .designed-for .honesty-list li::before {
    color: #6366f1;
}

/* Comparison Table - Purple highlight */
.comparison-section.secretary .comparison-table th.highlight {
    background: #4338ca;
}

.comparison-section.secretary .comparison-table td.highlight {
    background: rgba(99, 102, 241, 0.1);
}

.comparison-section.secretary .comparison-table .check {
    color: #6366f1;
}

/* Use Case Cards */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

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

/* Integration Logos/Icons */
.integrations-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.integration-item svg {
    width: 48px;
    height: 48px;
    color: #6366f1;
}

.integration-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Requirements Note */
.requirements-note {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.requirements-note h4 {
    color: #4338ca;
    margin-bottom: 0.75rem;
}

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

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .workflow-horizontal.secretary-workflow {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

    .secretary-hero .hero-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .secretary-hero .product-hero-content {
        padding: 3rem 1rem 2rem 1rem;
    }

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

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