/* ==========================================================================
   Email KI Bot - Page Specific Styles
   ========================================================================== */

/* Hero Section */
.product-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1b1a 100%);
    position: relative;
    overflow: hidden;
}
.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Animated particles in hero */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 196, 77, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.hero-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.hero-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.hero-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 19s; }
.hero-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
.hero-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.hero-particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 23s; }
.hero-particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 16s; }
.hero-particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 20s; }
.hero-particle:nth-child(10) { left: 15%; animation-delay: 6s; animation-duration: 18s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(0.5);
        opacity: 0;
    }
}
.product-hero .container {
    position: relative;
    z-index: 1;
}
.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 196, 77, 0.15);
    border: 1px solid rgba(255, 196, 77, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}
.product-hero-badge i {
    font-size: 0.75rem;
}
.product-hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.product-hero h1 span {
    color: var(--primary-color);
}
.product-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 32px;
}
.product-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.product-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}
.product-hero-feature i {
    color: var(--text-dark);
    font-size: 0.625rem;
    background: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.product-hero-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}
.product-hero-price strong {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
}
.product-hero-visual {
    position: relative;
}
.product-hero-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27ca40; }
.mockup-emails-container {
    position: relative;
    height: 440px;
    overflow: hidden;
    margin-bottom: 16px;
}
.mockup-email {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background 0.3s ease, opacity 0.4s ease;
    cursor: default;
}
.mockup-email:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
}

/* Email animation states */
.mockup-email.incoming {
    animation: emailIncoming 0.5s ease forwards;
}
.mockup-email.processing {
    border-color: rgba(255, 196, 77, 0.3);
    background: rgba(255, 196, 77, 0.05);
}
.mockup-email.exiting {
    animation: emailExiting 0.4s ease forwards;
}

@keyframes emailIncoming {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes emailExiting {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 120px;
        margin-bottom: 16px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
        margin-bottom: 0;
        padding: 0 20px;
    }
}
.mockup-email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.mockup-email-from {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.9375rem;
}
.mockup-email-tag {
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.mockup-email-tag.visible {
    opacity: 1;
    transform: scale(1);
}
.mockup-email-tag.support {
    background: #3b82f6;
    color: white;
}
.mockup-email-tag.sales {
    background: #10b981;
    color: white;
}
.mockup-email-tag.billing {
    background: #8b5cf6;
    color: white;
}
.mockup-email-tag.hr {
    background: #ec4899;
    color: white;
}
.mockup-email-subject {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 8px;
}
.mockup-email-preview {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    line-height: 1.4;
}
.mockup-ai-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 196, 77, 0.15);
    border: 1px solid rgba(255, 196, 77, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.mockup-ai-badge.analyzing {
    background: rgba(255, 196, 77, 0.25);
    border-color: rgba(255, 196, 77, 0.5);
}
.mockup-ai-badge i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.mockup-ai-badge.analyzing i {
    animation: robotPulse 0.6s ease infinite;
}
@keyframes robotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.mockup-ai-status {
    flex: 1;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}
.problem-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.problem-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.problem-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.problem-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.problem-icon {
    width: 64px;
    height: 64px;
    background: #FEF3F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.problem-icon i {
    font-size: 1.5rem;
    color: #DC2626;
}
.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.problem-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}
.problem-stat {
    font-size: 2rem;
    font-weight: 800;
    color: #DC2626;
    margin-bottom: 8px;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1b1a 100%);
    overflow-x: hidden;
}
.solution-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.solution-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}
.solution-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}
.solution-card-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.solution-card-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}
.solution-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
}
.solution-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.solution-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 10px;
}
.solution-card li i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 0.75rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}
.how-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.how-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.how-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}
.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--border-color);
}
.how-step {
    display: flex;
    gap: 32px;
    position: relative;
}
.how-step-number {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.how-step-content {
    flex: 1;
    padding: 16px 0 48px;
}
.how-step-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.how-step-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}
.how-step:last-child .how-step-content {
    padding-bottom: 0;
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: var(--bg-light);
    overflow-x: hidden;
}
.use-cases-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.use-cases-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.use-cases-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.use-case-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}
.use-case-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.use-case-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.use-case-icon i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}
.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.use-case-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-card {
    text-align: center;
    padding: 32px;
}
.stat-card-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1b1a 100%);
    overflow-x: hidden;
}
.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}
.pricing-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 196, 77, 0.3);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}
.pricing-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.pricing-price {
    margin-bottom: 32px;
}
.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-white);
}
.pricing-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--bg-white);
    vertical-align: top;
}
.pricing-price .note {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}
.pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pricing-cta .btn {
    padding: 18px 40px;
    font-size: 1.125rem;
}
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}
.pricing-guarantee i {
    color: var(--primary-color);
}

/* FAQ Section Overrides */
.faq-section {
    background: var(--bg-light);
}

/* Feature Deep Dive Section */
.feature-deep-dive {
    padding: 100px 0;
    background: var(--bg-white);
    overflow-x: hidden;
}
.feature-deep-dive-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}
.feature-deep-dive-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.feature-deep-dive-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.feature-row:last-child {
    margin-bottom: 0;
}
.feature-row.reverse .feature-content {
    order: 2;
}
.feature-row.reverse .feature-mockup {
    order: 1;
}
.feature-content {
    max-width: 480px;
}
.feature-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.feature-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}
.feature-content > p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}
.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-dark);
}
.feature-benefits li i {
    color: var(--primary-color);
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Feature Mockups */
.feature-mockup {
    position: relative;
}
.feature-mockup-window {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.feature-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}
.feature-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.feature-mockup-dot.red { background: #ff5f56; }
.feature-mockup-dot.yellow { background: #ffbd2e; }
.feature-mockup-dot.green { background: #27ca40; }
.feature-mockup-content {
    padding: 24px;
}

/* Categorization Mockup */
.cat-mockup-inbox {
    display: flex;
    gap: 20px;
}
.cat-email-list {
    flex: 1;
}
.cat-email-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.cat-email-item:hover {
    border-color: var(--primary-color);
    transform: translateX(4px);
}
.cat-email-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.875rem;
}
.cat-email-info {
    flex: 1;
    min-width: 0;
}
.cat-email-from {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.cat-email-subject {
    font-size: 0.8125rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-email-tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
}
.cat-email-tag.urgent { background: #FEE2E2; color: #DC2626; }
.cat-email-tag.support { background: #DBEAFE; color: #2563EB; }
.cat-email-tag.sales { background: #D1FAE5; color: #059669; }
.cat-email-tag.billing { background: #EDE9FE; color: #7C3AED; }
.cat-categories {
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cat-category {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
}
.cat-category:hover {
    border-color: var(--primary-color);
}
.cat-category-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}
.cat-category-name {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Response Mockup */
.response-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.response-original {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
}
.response-original-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}
.response-from {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}
.response-time {
    font-size: 0.75rem;
    color: var(--text-light);
}
.response-subject {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.response-body {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
}
.response-ai-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFDF5 100%);
    border: 1px solid rgba(255, 196, 77, 0.3);
    border-radius: 10px;
    padding: 16px;
}
.response-ai-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.response-ai-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.875rem;
}
.response-ai-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.875rem;
}
.response-ai-badge {
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: auto;
}
.response-draft {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 14px;
    font-size: 0.8125rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}
.response-actions {
    display: flex;
    gap: 10px;
}
.response-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.response-btn.primary {
    background: var(--primary-color);
    color: var(--text-dark);
}
.response-btn.primary:hover {
    background: var(--primary-dark);
}
.response-btn.secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}
.response-btn.secondary:hover {
    border-color: var(--primary-color);
}

/* Routing Mockup */
.routing-mockup {
    position: relative;
}
.routing-email {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.routing-email-icon {
    width: 40px;
    height: 40px;
    background: #DBEAFE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
}
.routing-email-content {
    flex: 1;
}
.routing-email-subject {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.routing-email-preview {
    font-size: 0.8125rem;
    color: var(--text-light);
}
.routing-arrow {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.25rem;
}
.routing-targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.routing-target {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.5;
}
.routing-target.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 196, 77, 0.2);
}
.routing-target-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}
.routing-target:nth-child(1) .routing-target-avatar { background: #3B82F6; }
.routing-target:nth-child(2) .routing-target-avatar { background: #10B981; }
.routing-target:nth-child(3) .routing-target-avatar { background: #8B5CF6; }
.routing-target-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.routing-target-role {
    font-size: 0.75rem;
    color: var(--text-light);
}
.routing-target-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #059669;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.routing-target.active .routing-target-indicator {
    opacity: 1;
}

/* Tracking Mockup */
.tracking-mockup {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tracking-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.tracking-item:hover {
    border-color: var(--primary-color);
}
.tracking-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tracking-status.urgent { background: #DC2626; animation: pulse 2s infinite; }
.tracking-status.warning { background: #F59E0B; }
.tracking-status.ok { background: #10B981; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}
.tracking-info {
    flex: 1;
    min-width: 0;
}
.tracking-subject {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tracking-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-light);
}
.tracking-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.tracking-sla {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}
.tracking-sla.overdue { background: #FEE2E2; color: #DC2626; }
.tracking-sla.due-soon { background: #FEF3C7; color: #D97706; }
.tracking-sla.on-track { background: #D1FAE5; color: #059669; }
.tracking-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.tracking-stat {
    text-align: center;
}
.tracking-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}
.tracking-stat-value.warning { color: #D97706; }
.tracking-stat-value.success { color: #059669; }
.tracking-stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Feature mockup animations */
.feature-mockup-window {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-mockup-window:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Email slide in animation */
@keyframes emailSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tag pop animation */
@keyframes tagPop {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Typing indicator animation */
@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
    }
    30% {
        opacity: 1;
    }
}

/* Hero animations */
.product-hero-content {
    animation: slideInLeft 0.8s ease forwards;
}

.product-hero-visual {
    animation: slideInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.product-hero-badge {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.product-hero h1 {
    animation: fadeInUp 0.6s ease 0.5s forwards;
    opacity: 0;
}

.product-hero-subtitle {
    animation: fadeInUp 0.6s ease 0.6s forwards;
    opacity: 0;
}

.product-hero-features {
    animation: fadeInUp 0.6s ease 0.7s forwards;
    opacity: 0;
}

.product-hero-cta {
    animation: fadeInUp 0.6s ease 0.8s forwards;
    opacity: 0;
}


.mockup-email {
    opacity: 0;
    animation: emailSlideIn 0.5s ease forwards;
}


.mockup-ai-badge {
    animation: fadeInUp 0.5s ease 2.4s forwards;
    opacity: 0;
}

/* AI typing indicator in mockup */
.mockup-ai-badge::after {
    content: '';
    display: inline-flex;
    width: 24px;
    margin-left: 8px;
}

.mockup-typing-dots {
    display: inline-flex;
    gap: 4px;
    margin-left: 8px;
}

.mockup-typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.mockup-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.mockup-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Problem cards animation */
.problem-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

/* Solution cards animation */
.solution-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.solution-card-icon {
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-card-icon {
    transform: scale(1.1);
}

/* How it works animations */
.how-step-number {
    transition: transform 0.3s ease;
}

.how-step:hover .how-step-number {
    transform: scale(1.1);
}

.how-step-content {
    transition: transform 0.3s ease;
}

.how-step:hover .how-step-content {
    transform: translateX(10px);
}

/* Use case cards animation */
.use-case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
}

.use-case-icon {
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Stats animations */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-card-number {
    transition: color 0.3s ease, transform 0.3s ease;
}

.stat-card:hover .stat-card-number {
    transform: scale(1.1);
}


/* FAQ animations */
.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .product-hero-mockup {
        animation: none;
    }
    .hero-particles {
        display: none;
    }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .product-hero-visual {
        order: -1;
    }
    .product-hero h1 {
        font-size: 2.5rem;
    }
    .solution-grid {
        grid-template-columns: 1fr;
    }
    /* Reduce particle count on tablet */
    .hero-particle:nth-child(n+6) {
        display: none;
    }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .feature-row.reverse .feature-content,
    .feature-row.reverse .feature-mockup {
        order: unset;
    }
    .feature-content {
        max-width: none;
    }
    .cat-mockup-inbox {
        flex-direction: column;
    }
    .cat-categories {
        width: 100%;
        flex-direction: row;
    }
    .cat-category {
        flex: 1;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .product-hero {
        padding: 120px 0 60px;
    }
    .product-hero h1 {
        font-size: 2rem;
    }
    .product-hero-subtitle {
        font-size: 1.0625rem;
    }
    .product-hero-features {
        flex-direction: column;
        gap: 12px;
    }
    .product-hero-feature {
        font-size: 0.875rem;
    }
    .product-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .product-hero-mockup {
        padding: 20px;
    }
    .mockup-emails-container {
        height: 420px;
    }
    .mockup-email {
        padding: 14px;
    }
    .mockup-email-from {
        font-size: 0.8125rem;
    }
    .mockup-email-subject {
        font-size: 0.75rem;
    }
    .mockup-email-preview {
        font-size: 0.6875rem;
    }
    .mockup-email-tag {
        font-size: 0.625rem;
        padding: 3px 8px;
    }
    .mockup-ai-badge {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
    .problem-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-section .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .pricing-card {
        padding: 32px 24px;
    }
    .pricing-price .amount {
        font-size: 3rem;
    }
    .how-steps::before {
        display: none;
    }
    .how-step {
        flex-direction: column;
        gap: 16px;
    }
    .how-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .how-step-content {
        padding: 0 0 32px;
    }

    /* Disable heavy animations on mobile */
    .hero-particles {
        display: none;
    }
    .product-hero-mockup {
        animation: none;
    }

    /* Feature deep dive mobile */
    .feature-deep-dive {
        padding: 60px 0;
        overflow-x: hidden;
    }
    .feature-deep-dive .container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }
    .feature-deep-dive-header {
        margin-bottom: 48px;
    }
    .feature-deep-dive-header h2 {
        font-size: 1.75rem;
    }
    .feature-row {
        margin-bottom: 60px;
        gap: 32px;
    }
    .feature-content h3 {
        font-size: 1.5rem;
    }
    .feature-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .feature-mockup {
        max-width: 100%;
        overflow: hidden;
    }
    .feature-mockup-window {
        max-width: 100%;
    }
    .feature-mockup-content {
        padding: 16px;
    }
    /* Categorization mockup mobile */
    .cat-email-item {
        padding: 12px;
    }
    .cat-email-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    .cat-email-from {
        font-size: 0.8125rem;
    }
    .cat-email-subject {
        font-size: 0.75rem;
    }
    .cat-email-tag {
        font-size: 0.625rem;
        padding: 3px 6px;
    }
    .cat-categories {
        gap: 6px;
    }
    .cat-category {
        padding: 8px;
    }
    .cat-category-count {
        font-size: 1.125rem;
    }
    .cat-category-name {
        font-size: 0.6875rem;
    }
    /* Response mockup mobile */
    .response-original {
        padding: 12px;
    }
    .response-from, .response-subject {
        font-size: 0.8125rem;
    }
    .response-body {
        font-size: 0.75rem;
    }
    .response-ai-section {
        padding: 12px;
    }
    .response-draft {
        padding: 10px;
        font-size: 0.75rem;
    }
    .response-actions {
        flex-wrap: wrap;
    }
    .response-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
    /* Routing mockup mobile */
    .routing-targets {
        grid-template-columns: 1fr;
    }
    .routing-target {
        padding: 12px;
    }
    .routing-target-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    /* Tracking mockup mobile */
    .tracking-item {
        padding: 12px;
        gap: 10px;
    }
    .tracking-subject {
        font-size: 0.8125rem;
    }
    .tracking-meta {
        flex-wrap: wrap;
        gap: 8px;
    }
    .tracking-sla {
        padding: 4px 8px;
        font-size: 0.6875rem;
    }
    .tracking-summary {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .tracking-stat-value {
        font-size: 1.25rem;
    }
    .tracking-stat-label {
        font-size: 0.6875rem;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .product-hero h1 {
        font-size: 1.75rem;
    }
    .product-hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .product-hero-subtitle {
        font-size: 0.9375rem;
    }
    .mockup-emails-container {
        height: 380px;
    }
    .mockup-email {
        padding: 12px;
        margin-bottom: 10px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .stat-card {
        padding: 16px;
    }
    .stat-card-number {
        font-size: 2.5rem;
    }
    .problem-stat {
        font-size: 1.5rem;
    }
    .problem-card {
        padding: 24px;
    }
    .solution-card {
        padding: 24px;
    }
    .use-case-card {
        padding: 24px;
    }
    .cat-categories {
        flex-wrap: wrap;
    }
    .cat-category {
        flex: 1 1 45%;
    }
    .response-actions {
        gap: 8px;
    }
    .response-btn {
        flex: 1 1 100%;
    }
    .tracking-summary {
        grid-template-columns: 1fr;
    }
}
