/* Agentic Bookkeeper Landing Page Styles */

/* Product Hero Section - Green/Gold Theme for Financial Focus */
.bookkeeper-hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 40%, #1e3a5f 100%);
}

.bookkeeper-hero::before {
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 184, 28, 0.15) 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(45, 90, 61, 0.3) 0%, transparent 60%);
}

/* Ensure hero text is white on dark background */
.bookkeeper-hero .product-hero-content {
    color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.audience-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-green);
}

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

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

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

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

/* Screenshots Section */
.screenshots-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

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

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

.screenshot-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-speed);
    backdrop-filter: blur(10px);
}

.screenshot-card {
    cursor: pointer;
    position: relative;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.screenshot-zoom-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover .screenshot-zoom-hint {
    opacity: 1;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-caption {
    padding: 1.5rem;
}

.screenshot-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.screenshot-caption p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

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

/* 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: var(--accent-color);
    color: var(--text-primary);
    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: var(--accent-color);
    align-self: center;
    flex-shrink: 0;
    margin: 0 0.5rem;
}

/* 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: var(--accent-green);
    border-bottom-color: var(--accent-green);
}

.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: var(--accent-green);
    font-weight: bold;
}

.honesty-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

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

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--bg-gold-light) 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 var(--accent-green);
}

.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-original {
    font-size: 1.5rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.price-main {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-green);
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.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: var(--accent-green);
    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: var(--accent-green);
    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;
}

/* Reuse pilot styles from agentic-secretary.css */
.early-access-section .version-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #2d5a3d;
    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: var(--accent-green);
    font-weight: bold;
}

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

/* Form styling */
.form-group input[type="text"]#business {
    background: var(--bg-light);
}

.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

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

/* 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: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #003DA5;
    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: #00843D;
}

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

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table .check {
    color: #00843D;
}

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

.comparison-table .cross {
    color: #d32f2f;
}

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

.comparison-table .partial {
    color: #FFB81C;
}

.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 #003DA5;
}

.tech-card h3 {
    font-size: 1.3rem;
    color: #003DA5;
    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: #003DA5;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    box-sizing: border-box;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    max-width: 800px;
}

/* 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, var(--accent-color), transparent);
        margin-top: 0;
    }
}

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

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

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

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

@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;
    }
}
