/* Agentic Secretary Landing Page Styles */

/* Product Hero Section */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003DA5 0%, #0057B8 40%, #00843D 100%);
    padding: 2rem;
    margin-top: 60px;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 184, 28, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.product-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    color: white;
    padding: 2rem;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #ff9500);
    color: var(--text-primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

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

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

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

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* 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 var(--accent-red);
}

.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, var(--accent-red), #ff6b6b);
    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 */
.solution-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

.workflow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-phase {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    width: 100%;
    transition: all var(--transition-speed);
}

.workflow-phase:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.phase-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.phase-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.phase-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

.workflow-connector {
    width: 4px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    margin: 0;
}

/* Features Section */
.features-section {
    background: white;
}

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

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    transition: all var(--transition-speed);
    border-left: 4px solid transparent;
}

.feature-card:hover {
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    color: white;
    margin-bottom: 1.25rem;
}

.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;
    font-size: 0.95rem;
}

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

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table th small {
    display: block;
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.8rem;
}

.comparison-table th.highlight {
    background: var(--accent-green);
}

.comparison-table td.highlight {
    background: rgba(0, 132, 61, 0.1);
    font-weight: 600;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table .check {
    color: var(--accent-green);
}

.comparison-table .check::before {
    content: '\2713 ';
    font-weight: bold;
}

.comparison-table .cross {
    color: var(--accent-red);
}

.comparison-table .cross::before {
    content: '\2717 ';
    font-weight: bold;
}

.comparison-table .partial {
    color: var(--accent-color);
}

.comparison-table .partial::before {
    content: '\25CB ';
    font-weight: bold;
}

/* 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 var(--primary-color);
}

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

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

.tech-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.tech-list strong {
    color: var(--primary-color);
}

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

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

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

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

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

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

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

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

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

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

.pilot-goals li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.roadmap-list li::before {
    content: '\25B6';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.roadmap-phase {
    color: var(--primary-color);
    font-weight: 600;
}

.pilot-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
}

.pilot-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 0;
}

.pilot-card h3:not(:first-child) {
    margin-top: 2rem;
}

.participant-list,
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.participant-list li,
.requirements-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.participant-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.requirements-list li::before {
    content: '\25A0';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.6rem;
    top: 0.75rem;
}

.btn-large {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 1.5rem;
}

/* Development Section */
.development-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.development-content {
    max-width: 900px;
    margin: 0 auto;
}

.development-content > p {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.development-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.dev-highlight {
    text-align: center;
    padding: 1.5rem;
}

.dev-highlight h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

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

/* Footer Adjustments */
.footer-version {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Form Select Styling */
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-speed);
    background: white;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.1);
}

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

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }

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

    .product-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

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

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

    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .product-hero h1 {
        font-size: 2rem;
    }

    .product-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .pilot-card {
        padding: 1.5rem;
    }
}
