/* TradeScheduler Marketing Site Styles */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #1e293b;        /* Deep Navy */
    --accent: #0ea5e9;         /* Electric Blue */
    --orange: #f97316;         /* Vibrant Orange */
    --charcoal: #374151;       /* Charcoal */
    --light-gray: #f8fafc;     /* Light Gray */
    --white: #ffffff;          /* White */
    --success: #10b981;        /* Green */
    --border: #e2e8f0;         /* Light border */
    --text-dark: #1f2937;      /* Dark text */
    --text-gray: #6b7280;      /* Gray text */
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Typography */
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 0 1.5rem;
    --max-width: 1200px;
    
    /* Breakpoints */
    --mobile: 640px;
    --tablet: 768px;
    --desktop: 1024px;
    --wide: 1280px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p { margin-bottom: 1rem; color: var(--text-gray); }

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-gray { color: var(--text-gray); }

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), #0284c7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.2s;
}

/* Hero */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.check-icon {
    color: var(--success);
    font-weight: 700;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.mockup-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.mockup-placeholder {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 4px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: var(--success); }

.mockup-title {
    font-weight: 600;
    color: var(--text-dark);
}

.mockup-grid {
    display: grid;
    gap: 8px;
}

.grid-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.grid-header div {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
    padding: 0.5rem;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.job-card {
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid;
}

.job-card.solar {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.job-card.electrical {
    background: #dbeafe;
    border-color: var(--accent);
    color: #1e40af;
}

.job-card.plumbing {
    background: #dcfce7;
    border-color: var(--success);
    color: #166534;
}

.job-card.hvac {
    background: #f3e8ff;
    border-color: #a855f7;
    color: #7c2d12;
}

.empty-slot {
    padding: 0.75rem;
    border: 2px dashed var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Problem Section */
.problem {
    padding: var(--section-padding);
    background: var(--white);
}

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

.problem-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Features Overview */
.features-overview {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-gray);
}

/* Built for Trades */
.built-for-trades {
    padding: var(--section-padding);
    background: var(--white);
}

.built-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.built-text h2 {
    margin-bottom: 1rem;
}

.built-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.built-points {
    margin-bottom: 2rem;
}

.built-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.built-point p {
    margin: 0;
    color: var(--text-dark);
}

.comparison {
    display: grid;
    gap: 1rem;
}

.comparison-item {
    padding: 1.5rem;
    border-radius: 8px;
}

.comparison-item:first-child {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.comparison-item:last-child {
    background: #f0fdf4;
    border-left: 4px solid var(--success);
}

.comparison-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.comparison-item p {
    margin: 0;
    font-size: 0.9rem;
}

.built-image {
    display: flex;
    justify-content: center;
}

.comparison-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
}

.mockup-side {
    margin-bottom: 2rem;
}

.mockup-side:last-child {
    margin-bottom: 0;
}

.mockup-side h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.generic-calendar {
    display: grid;
    gap: 4px;
}

.hour-slot {
    padding: 0.5rem;
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.trades-schedule {
    display: grid;
    gap: 8px;
}

.trade-slot {
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.trade-slot.am {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    color: #92400e;
}

.trade-slot.pm {
    background: #e5e7eb;
    border: 1px dashed var(--border);
    color: var(--text-gray);
}

/* Social Proof */
.social-proof {
    padding: var(--section-padding);
    background: var(--primary);
    color: var(--white);
}

.social-proof .section-header h2 {
    color: var(--white);
}

.social-proof .section-header p {
    color: #cbd5e1;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--white);
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-author .author-info strong {
    color: var(--white);
    display: block;
}

.testimonial-author .author-info span {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.6;
}

.logo-placeholder {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

/* Final CTA */
.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--accent), #0284c7);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.footer-location p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-contact span {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cookie-link {
    color: var(--accent);
    text-decoration: none;
}

.cookie-accept {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    z-index: 1;
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-gray);
    margin: 0;
}

.trial-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* AI Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ai-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .ai-highlight {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .ai-text {
        font-size: 0.9rem;
    }
    
    .ai-conversation {
        padding: 1rem;
        min-height: 250px;
    }
    
    .message-content {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 0 1rem;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .built-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-grid,
    .features-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Social Proof Ticker */
.social-ticker {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.ticker-label {
    color: var(--text-gray);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-scroll {
    color: var(--text-dark);
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Guarantee Badges */
.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.guarantee {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
    padding: 0.25rem 0;
}

/* Homepage FAQ */
.homepage-faq {
    padding: 6rem 0;
    background: var(--light-gray);
}

.homepage-faq .faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.homepage-faq .faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
}

.homepage-faq .faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.homepage-faq .faq-question:hover {
    background: var(--light-gray);
}

.homepage-faq .faq-toggle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.2s;
}

.homepage-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.homepage-faq .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.homepage-faq .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.homepage-faq .faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Exit Intent Modal */
.exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.exit-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
}

.exit-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.exit-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.exit-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Phone number links */
a[href^="tel:"] {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

a[href^="tel:"]:hover {
    text-decoration: underline;
}

/* AI Feature Styling */
.ai-highlight {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    text-align: center;
    color: white;
    animation: ai-pulse 3s ease-in-out infinite;
}

.ai-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #7c3aed;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ai-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.ai-feature {
    background: linear-gradient(135deg, #f8f5ff, #f3f0ff);
    border: 2px solid #7c3aed;
    position: relative;
    overflow: hidden;
}

.ai-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
    animation: ai-shimmer 3s infinite;
}

.ai-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #7c3aed;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* AI Scheduling Section */
.ai-scheduling {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f5ff 0%, #f3f0ff 100%);
    position: relative;
    overflow: hidden;
}

.ai-scheduling::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    animation: ai-bg-pulse 8s ease-in-out infinite alternate;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: ai-pulse 2s ease-in-out infinite;
}

.ai-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.ai-benefits {
    margin-bottom: 3rem;
}

.ai-benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: start;
}

.ai-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ai-benefit strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ai-benefit p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.5;
}

.ai-stats {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0d7fa;
}

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

.ai-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #7c3aed;
    line-height: 1;
}

.ai-stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* AI Demo Mockup */
.ai-demo {
    display: flex;
    justify-content: center;
}

.ai-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid #e0d7fa;
}

.ai-header {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.ai-conversation {
    padding: 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-message {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ai-message.incoming .message-content {
    background: #f1f5f9;
    color: var(--text-dark);
    margin-right: 2rem;
}

.ai-message.outgoing .message-content {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    margin-left: 2rem;
    align-self: flex-end;
}

.ai-message.ai-thinking {
    align-items: center;
    text-align: center;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: pre-line;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-align: right;
}

.ai-message.incoming .message-time {
    text-align: left;
}

.thinking-dots {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.thinking-dots span {
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    animation: ai-thinking 1.5s ease-in-out infinite;
}

.thinking-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.thinking-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.thinking-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
}

/* AI Animations */
@keyframes ai-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
}

@keyframes ai-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes ai-thinking {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-10px); opacity: 1; }
}

@keyframes ai-bg-pulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
.nav-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cookie-banner,
    .modal {
        display: none;
    }
    
    .hero {
        margin-top: 0;
    }
}