/* Landing Page Styles for My Clinical Writer */

:root {
    --primary-color: #3B82F6;
    --secondary-color: #10B981;
    --danger-color: #EF4444;
    --dark-color: #1F2937;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --text-muted: #6B7280;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero h2 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-get-started {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.hero-stats {
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
}

.problem-box, .solution-box {
    padding: 40px;
    border-radius: 12px;
    height: 100%;
}

.problem-box {
    background: #FEF2F2;
    border: 2px solid #FECACA;
}

.solution-box {
    background: #F0FDF4;
    border: 2px solid #BBF7D0;
}

.problem-list, .solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li, .solution-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger-color);
    font-weight: bold;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-bg);
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 32px;
    color: white;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Template Showcase */
.template-showcase {
    padding: 80px 0;
}

.template-card, .component-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

.template-preview {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--light-bg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Use Cases */
.use-cases {
    padding: 80px 0;
}

.use-case-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.scrollable-text {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.scrollable-text::-webkit-scrollbar {
    width: 6px;
}

.scrollable-text::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrollable-text::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.scrollable-text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Testimonial Images */
.testimonial-item .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #E5E7EB;
}

.testimonial-item .profile {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-item .profile h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.testimonial-item .profile h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 400;
}

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-item p {
    flex-grow: 1;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-item .stars {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-box .stars {
    color: #FFC107;
    margin-bottom: 20px;
}

.testimonial-box p {
    flex-grow: 1;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
}

.profile h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.profile span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    padding: 14px 32px;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: #F3F4F6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    padding-bottom: 30px;
}

.footer-info .logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-info .logo:hover img {
    opacity: 1;
}

.footer-info p {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    padding: 8px 0;
}

.footer-links ul li a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-legal {
    background: #111827;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Info Cards */
.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
}

.info-card ul {
    padding-left: 20px;
}

.info-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.existing-tools {
    background: #f8f9fa;
}

/* Documentation Concerns Section */
.documentation-concerns {
    background: #f8f9fa;
}

.concern-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.concern-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.concern-card h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
}

.concern-card ul {
    padding-left: 20px;
}

.concern-card ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Insurance Billing Section */
.insurance-billing {
    background: white;
}

.billing-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.billing-info-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.billing-info-card ul {
    padding-left: 20px;
}

.billing-info-card ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .cta-section h2 {
        font-size: 1.875rem;
    }
}