/**
 * SellyChat Marketing Website - Main Stylesheet
 * 
 * Responsive styles with mobile-first approach.
 * Breakpoints: 768px (tablet), 1024px (desktop)
 * 
 * Requirements: 12.1, 12.2, 12.3
 * 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout & Container
 * 4. Buttons
 * 5. Navigation & Header
 * 6. Mobile Menu
 * 7. Logo
 * 8. Sections & Cards
 * 9. Grid Layouts
 * 10. Hero Sections
 * 11. Forms
 * 12. Alerts
 * 13. Pagination
 * 14. Utility Classes
 * 15. Footer
 * 16. Component Partials (Feature Card, Testimonial, Pricing Card, Blog Card)
 * 17. Page-Specific Styles (Home, Features, Pricing, Blog, Contact, About, Use Cases, Legal)
 */

/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

/**
 * Modern CSS Reset
 * Provides consistent baseline across browsers
 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   3. Layout & Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.container-sm {
    max-width: 800px;
}

.container-lg {
    max-width: 1400px;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.3);
}

.btn-primary {
    background-color: #4361ee;
    color: #ffffff;
    border-color: #4361ee;
}

.btn-primary:hover {
    background-color: #3a0ca3;
    border-color: #3a0ca3;
}

.btn-secondary {
    background-color: transparent;
    color: #4361ee;
    border-color: #4361ee;
}

.btn-secondary:hover {
    background-color: #4361ee;
    color: #ffffff;
}

.btn-white {
    background-color: #ffffff;
    color: #4361ee;
    border-color: #ffffff;
}

.btn-white:hover {
    background-color: #f3f4f6;
    border-color: #f3f4f6;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* ==========================================================================
   5. Navigation & Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4361ee;
}

.nav-actions {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }

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

    .mobile-menu-toggle {
        display: none;
    }
}

/* ==========================================================================
   6. Mobile Menu Toggle Animation
   ========================================================================== */

/**
 * Hamburger menu animation
 * Transforms into an X when active
 */
.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Mobile Navigation CTA
   ========================================================================== */

.mobile-nav-cta {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid #e5e5e5;
    border-bottom: none !important;
}

.mobile-nav-cta .nav-cta {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Navigation CTA Button
   ========================================================================== */

.nav-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
}

/* ==========================================================================
   Logo Styles
   ========================================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
}

/* ==========================================================================
   Active Navigation Link Styles
   ========================================================================== */

/* Mobile active link styles */
.mobile-nav-list a.active {
    color: #4361ee;
    font-weight: 600;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

.section {
    padding: 3rem 0;
}

.section-lg {
    padding: 4rem 0;
}

.section-xl {
    padding: 5rem 0;
}

/* ==========================================================================
   Card Styles
   ========================================================================== */

.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-highlighted {
    border: 2px solid #4361ee;
    position: relative;
}

.card-highlighted::before {
    content: 'Recommended';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4361ee;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */

.grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a2e;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #dc2626;
}

/* ==========================================================================
   Alert Styles
   ========================================================================== */

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ==========================================================================
   Pagination Styles
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.375rem;
    color: #1a1a2e;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-link:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
}

.pagination-link.active {
    background-color: #4361ee;
    border-color: #4361ee;
    color: #ffffff;
}

.pagination-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-muted {
    color: #6b7280;
}

.text-primary {
    color: #4361ee;
}

.text-success {
    color: #059669;
}

.text-error {
    color: #dc2626;
}

.bg-light {
    background-color: #f9fafb;
}

.bg-primary {
    background-color: #4361ee;
}

.rounded {
    border-radius: 0.5rem;
}

.shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


/* ==========================================================================
   Footer Styles
   ========================================================================== */

/**
 * Footer component styles
 * Requirements: 11.4, 14.4
 */

/* Footer Logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-logo:hover {
    color: #4361ee;
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-size: 1.25rem;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: #a0a0a0;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Headings */
.footer-heading {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a0a0a0;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Social Media Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #4361ee;
    color: #ffffff;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #a0a0a0;
    font-size: 0.875rem;
    margin: 0;
}

/* Footer Responsive Styles */
@media (min-width: 768px) {
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 280px;
    }
}


/* ==========================================================================
   Feature Card Styles
   ========================================================================== */

/**
 * Feature card component styles
 * Requirements: 4.2 - Features overview section with 6 feature cards
 */

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.feature-card-description {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #4361ee;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: gap 0.2s ease;
}

.feature-card-link:hover {
    gap: 0.5rem;
}

/* ==========================================================================
   Testimonial Styles
   ========================================================================== */

/**
 * Testimonial component styles
 * Requirements: 4.3 - Testimonials section with at least 3 customer testimonials
 */

.testimonial {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.125rem;
}

.testimonial-star {
    color: #d1d5db;
    font-size: 1.25rem;
}

.testimonial-star.filled {
    color: #fbbf24;
}

.testimonial-quote {
    flex: 1;
}

.testimonial-quote p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #4361ee;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-weight: 600;
    color: #1a1a2e;
    font-style: normal;
    font-size: 0.9375rem;
}

.testimonial-author-details {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-role {
    color: #6b7280;
}

.testimonial-company {
    color: #4361ee;
    font-weight: 500;
}

/* ==========================================================================
   Pricing Card Styles
   ========================================================================== */

/**
 * Pricing card component styles
 * Requirements: 6.1 - Display all subscription plans
 */

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-card-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.pricing-card-description {
    color: #6b7280;
    font-size: 0.9375rem;
    margin: 0;
}

.pricing-card-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.pricing-card-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.pricing-card-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.pricing-card-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9375rem;
}

.pricing-card-feature:last-child {
    border-bottom: none;
}

.pricing-card-feature.not-included {
    color: #9ca3af;
}

.pricing-card-feature-label {
    color: #6b7280;
    text-align: left;
}

.pricing-card-feature-value {
    font-weight: 500;
    color: #1a1a2e;
}

.pricing-card-feature.not-included .pricing-card-feature-value {
    color: #9ca3af;
}

.pricing-card-cta {
    margin-top: auto;
}

.pricing-card-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
}

/* Highlighted pricing card */
.pricing-card.card-highlighted {
    transform: scale(1.02);
}

.pricing-card.card-highlighted .pricing-card-amount {
    color: #4361ee;
}

@media (min-width: 1024px) {
    .pricing-card.card-highlighted {
        transform: scale(1.05);
    }
}

/* ==========================================================================
   Blog Card Styles
   ========================================================================== */

/**
 * Blog card component styles
 * Requirements: 8.2 - Display post title, excerpt, featured image, author, date, and categories
 */

.blog-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.blog-card-image-link {
    display: block;
    overflow: hidden;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background-color: #f3f4f6;
    color: #4361ee;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: background-color 0.2s ease;
}

.blog-card-category:hover {
    background-color: #e5e7eb;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: #1a1a2e;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #4361ee;
}

.blog-card-excerpt {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-card-author {
    font-weight: 500;
    color: #374151;
}

.blog-card-separator {
    color: #d1d5db;
}

.blog-card-date,
.blog-card-read-time {
    color: #6b7280;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #4361ee;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: gap 0.2s ease;
}

.blog-card-read-more:hover {
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .blog-card-image {
        height: 225px;
    }
}


/* ==========================================================================
   Homepage Styles
   ========================================================================== */

/**
 * Homepage-specific styles
 * Requirements: 4.1, 4.2, 4.3, 4.4, 4.5, 4.6
 */

/* Hero Section (Requirement 4.1) */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

/* Hero Chat Preview */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-chat-preview {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.chat-bubble {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-bubble:last-child {
    margin-bottom: 0;
}

.chat-bubble-bot {
    align-items: flex-start;
}

.chat-bubble-user {
    flex-direction: row-reverse;
}

.chat-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.chat-bubble p {
    background-color: #f3f4f6;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.chat-bubble-bot p {
    background-color: #f3f4f6;
    border-bottom-left-radius: 0.25rem;
}

.chat-bubble-user p {
    background-color: #4361ee;
    color: #ffffff;
    border-bottom-right-radius: 0.25rem;
}

/* Trust Statistics Section (Requirement 4.6) */
.trust-stats-section {
    padding: 3rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4361ee;
    line-height: 1;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

/* Features Section (Requirement 4.2) */
.features-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.section-subheadline {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.section-cta {
    margin-top: 2rem;
}

/* Customer Logos Section (Requirement 4.6) */
.customer-logos-section {
    padding: 3rem 0;
    background-color: #ffffff;
}

.logos-headline {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
}

.customer-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.customer-logo {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.customer-logo:hover {
    opacity: 1;
}

.customer-logo img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.customer-logo:hover img {
    filter: grayscale(0%);
}

/* Testimonials Section (Requirement 4.3) */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Pricing Preview Section (Requirement 4.4) */
.pricing-preview-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Security Badges Section (Requirement 4.6) */
.security-badges-section {
    padding: 2rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.security-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9375rem;
    font-weight: 500;
}

.security-badge-icon {
    font-size: 1.25rem;
}

/* Final CTA Section (Requirement 4.5) */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
}

.final-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.final-cta-section .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.final-cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.final-cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.final-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4361ee;
}

.final-cta-note {
    font-size: 0.9375rem;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.final-cta-note .checkmark {
    color: #a7f3d0;
}

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

@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .trust-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-stat-value {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 2.25rem;
    }

    .final-cta-content h2 {
        font-size: 2.5rem;
    }

    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 0;
    }

    .hero-section .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-subheadline {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-cta-group {
        justify-content: flex-start;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   Features Page Styles
   ========================================================================== */

/**
 * Features page-specific styles
 * Requirements: 5.1, 5.2, 5.3, 5.4
 */

/* Features Hero Section */
.features-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    text-align: center;
}

.features-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.features-hero-subheadline {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Overview Section (Requirement 5.1) */
.features-overview-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.features-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-overview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.feature-overview-card:hover {
    background-color: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.1);
}

.feature-overview-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4361ee;
    color: #ffffff;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.feature-overview-icon svg {
    width: 28px;
    height: 28px;
}

.feature-overview-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.feature-overview-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Feature Module Sections (Requirements 5.2, 5.3) */
.feature-module-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.feature-module-section:nth-child(even) {
    background-color: #f9fafb;
}

.feature-module-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.feature-module-visual {
    order: 1;
}

.feature-module-content {
    order: 2;
}

.feature-module-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #f3f4f6;
}

.feature-module-image {
    width: 100%;
    height: auto;
    display: block;
}

.feature-module-label {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: #eef2ff;
    color: #4361ee;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.feature-module-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.feature-module-description {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Feature Benefits Grid (Requirement 5.3) */
.feature-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.feature-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4361ee;
    border-radius: 0.5rem;
}

.feature-benefit-icon svg {
    width: 20px;
    height: 20px;
}

.feature-benefit-content {
    flex: 1;
}

.feature-benefit-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.feature-benefit-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Feature Use Cases (Requirement 5.3) */
.feature-use-cases {
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.feature-use-cases-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.feature-use-cases-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-use-case-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #374151;
}

.feature-use-case-icon {
    color: #10b981;
    font-weight: 700;
}

/* Feature Module CTA (Requirement 5.4) */
.feature-module-cta {
    margin-top: 1.5rem;
}

/* Reversed Layout for Alternating Sections */
.feature-module-reversed .feature-module-visual {
    order: 1;
}

.feature-module-reversed .feature-module-content {
    order: 2;
}

/* Features Final CTA Section */
.features-final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
}

.features-final-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features-final-cta-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.features-final-cta-section .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.features-final-cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.features-final-cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.features-final-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4361ee;
}

/* ==========================================================================
   Features Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .features-hero-section {
        padding: 5rem 0;
    }

    .features-hero-headline {
        font-size: 2.75rem;
    }

    .features-hero-subheadline {
        font-size: 1.25rem;
    }

    .features-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-module-headline {
        font-size: 2rem;
    }

    .feature-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-use-cases-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-final-cta-content h2 {
        font-size: 2.5rem;
    }

    .features-final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .features-hero-section {
        padding: 6rem 0;
    }

    .features-hero-headline {
        font-size: 3rem;
    }

    .features-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature-overview-card {
        padding: 2rem;
    }

    .feature-module-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .feature-module-visual {
        order: 1;
    }

    .feature-module-content {
        order: 2;
    }

    /* Reversed layout on desktop */
    .feature-module-reversed .feature-module-visual {
        order: 2;
    }

    .feature-module-reversed .feature-module-content {
        order: 1;
    }

    .feature-module-headline {
        font-size: 2.25rem;
    }
}


/* ==========================================================================
   Pricing Page Styles
   ========================================================================== */

/**
 * Pricing page-specific styles
 * Requirements: 6.1, 6.2, 6.3, 6.4, 6.5, 6.6
 */

/* Pricing Hero Section */
.pricing-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    text-align: center;
}

.pricing-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.pricing-hero-subheadline {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Toggle Section (Requirement 6.4) */
.billing-toggle-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.billing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.billing-toggle {
    display: inline-flex;
    background-color: #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.billing-toggle-btn {
    position: relative;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #6b7280;
    background-color: transparent;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-toggle-btn:hover {
    color: #374151;
}

.billing-toggle-btn.active {
    background-color: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.billing-toggle-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #059669;
    background-color: #d1fae5;
    border-radius: 1rem;
    text-transform: uppercase;
}

.billing-toggle-message {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 3rem 0 5rem;
    background-color: #ffffff;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Comparison Table Section (Requirement 6.2) */
.comparison-section {
    padding: 5rem 0;
}

.section-alt {
    background-color: #f9fafb;
}

.comparison-header {
    margin-bottom: 3rem;
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table thead {
    background-color: #f9fafb;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-feature-header {
    text-align: left;
    font-weight: 600;
    color: #374151;
    width: 30%;
}

.comparison-plan-header {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
    position: relative;
}

.comparison-plan-header.highlighted {
    background-color: #eef2ff;
    color: #4361ee;
}

.recommended-badge {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #4361ee;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.comparison-feature-cell {
    text-align: left;
    vertical-align: top;
}

.comparison-feature-label {
    display: block;
    font-weight: 500;
    color: #1a1a2e;
    font-size: 0.9375rem;
}

.comparison-feature-description {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: 0.125rem;
}

.comparison-value-cell {
    font-weight: 500;
    color: #374151;
    font-size: 0.9375rem;
}

.comparison-value-cell.highlighted {
    background-color: #fafbff;
}

.comparison-value-cell.not-included {
    color: #9ca3af;
}

.comparison-table tfoot td {
    padding: 1.5rem 1.25rem;
    border-bottom: none;
}

.comparison-cta-cell {
    vertical-align: middle;
}

.comparison-cta-cell.highlighted {
    background-color: #fafbff;
}

.comparison-cta-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* FAQ Section (Requirement 6.5) */
.faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #1a1a2e;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #4361ee;
}

.faq-question-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.faq-item.is-open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 5rem 0;
}

.pricing-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.pricing-cta-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pricing-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Button Large Variant */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* ==========================================================================
   Pricing Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .pricing-hero {
        padding: 5rem 0 2rem;
    }

    .pricing-hero-headline {
        font-size: 2.75rem;
    }

    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-title,
    .faq-title,
    .pricing-cta-headline {
        font-size: 2.25rem;
    }

    .pricing-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .pricing-hero-headline {
        font-size: 3rem;
    }

    .pricing-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .comparison-table {
        min-width: auto;
    }
}


/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

/**
 * Blog listing and post page styles
 * Requirements: 8.2, 8.6
 */

/* Blog Hero Section */
.blog-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    text-align: center;
}

.blog-hero-label {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: #eef2ff;
    color: #4361ee;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.blog-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.blog-hero-subheadline {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

/* Blog Layout - Main + Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.blog-main {
    min-width: 0; /* Prevent overflow */
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Blog Empty State */
.blog-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f9fafb;
    border-radius: 1rem;
}

.blog-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.blog-empty-state h2 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.blog-empty-state p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: #6b7280;
}

.pagination-prev,
.pagination-next {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-text {
    display: none;
}

.pagination-info {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-widget-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-widget-cta {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
}

.sidebar-widget-cta .sidebar-widget-title {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-widget-cta .sidebar-widget-text {
    color: rgba(255, 255, 255, 0.9);
}

.sidebar-widget-cta .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.sidebar-widget-cta .btn-primary:hover {
    background-color: #f3f4f6;
}

/* Sidebar Recent Posts */
.sidebar-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-recent-post {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-recent-post a {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: inherit;
    text-decoration: none;
}

.sidebar-recent-post a:hover .sidebar-recent-post-title {
    color: #4361ee;
}

.sidebar-recent-post-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.sidebar-recent-post-content {
    flex: 1;
    min-width: 0;
}

.sidebar-recent-post-title {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.sidebar-recent-post-date {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category {
    margin-bottom: 0.5rem;
}

.sidebar-category:last-child {
    margin-bottom: 0;
}

.sidebar-category a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-category a:hover,
.sidebar-category.active a {
    background-color: #eef2ff;
    color: #4361ee;
}

.sidebar-category-name {
    font-size: 0.9375rem;
    font-weight: 500;
}

.sidebar-category-count {
    font-size: 0.8125rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
}

.sidebar-category.active .sidebar-category-count,
.sidebar-category a:hover .sidebar-category-count {
    background-color: #4361ee;
    color: #ffffff;
}

/* Blog CTA Section */
.blog-cta-section {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.blog-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.blog-cta-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.blog-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.blog-cta-section .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.blog-cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.blog-cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.blog-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4361ee;
}

/* Button Block */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Blog Post Page Styles
   ========================================================================== */

/* Blog Post Hero */
.blog-post-hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.blog-post-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb */
.blog-post-breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #4361ee;
}

.breadcrumb-separator {
    color: #d1d5db;
}

.breadcrumb-current {
    color: #374151;
    font-weight: 500;
}

/* Blog Post Categories */
.blog-post-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #eef2ff;
    color: #4361ee;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-post-category:hover {
    background-color: #4361ee;
    color: #ffffff;
}

/* Blog Post Title */
.blog-post-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Blog Post Meta */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #6b7280;
}

.blog-post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #4361ee;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-post-author-name {
    font-weight: 500;
    color: #374151;
}

.blog-post-meta-separator {
    color: #d1d5db;
}

/* Featured Image */
.blog-post-featured-image-wrapper {
    padding: 0 0 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.blog-post-featured-image {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Post Content */
.blog-post-content-section {
    padding: 3rem 0;
}

/* Prose Styles for Article Content */
.prose {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.prose h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.prose h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.prose p {
    margin-bottom: 1.5rem;
}

.prose a {
    color: #4361ee;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: #3a0ca3;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose blockquote {
    border-left: 4px solid #4361ee;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4b5563;
}

.prose pre {
    background-color: #1a1a2e;
    color: #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.prose code {
    background-color: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
}

.prose pre code {
    background-color: transparent;
    padding: 0;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.prose hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2.5rem 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th,
.prose td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.prose th {
    background-color: #f9fafb;
    font-weight: 600;
}

/* Blog Post Footer */
.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Blog Post Tags */
.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.blog-post-tags-label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9375rem;
}

.blog-post-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-post-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    color: #6b7280;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
}

/* Blog Post Share */
.blog-post-share {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.blog-post-share-label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9375rem;
}

.blog-post-share-buttons {
    display: flex;
    gap: 0.75rem;
}

.blog-post-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-post-share-btn:hover {
    background-color: #4361ee;
    border-color: #4361ee;
    color: #ffffff;
}

.blog-post-share-twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
}

.blog-post-share-linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
}

.blog-post-share-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.blog-post-share-copy.copied {
    background-color: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

/* Blog Post Author Bio */
.blog-post-author-bio {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.blog-post-author-bio-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #4361ee;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.blog-post-author-bio-content {
    flex: 1;
}

.blog-post-author-bio-label {
    display: block;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.blog-post-author-bio-name {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.blog-post-author-bio-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Blog Post CTA Section */
.blog-post-cta-section {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
    padding: 4rem 0;
}

.blog-post-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.blog-post-cta-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.blog-post-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.blog-post-cta-section .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.blog-post-cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.blog-post-cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.blog-post-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4361ee;
}

/* ==========================================================================
   Blog Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .blog-hero-section {
        padding: 5rem 0;
    }

    .blog-hero-headline {
        font-size: 2.75rem;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pagination-text {
        display: inline;
    }

    .blog-cta-buttons,
    .blog-post-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .blog-post-title {
        font-size: 2.5rem;
    }

    .blog-post-share {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .blog-hero-headline {
        font-size: 3rem;
    }

    .blog-layout {
        grid-template-columns: 1fr 320px;
        gap: 3rem;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post-title {
        font-size: 2.75rem;
    }

    .blog-cta-content h2,
    .blog-post-cta-content h2 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/**
 * Contact page-specific styles
 * Requirements: 10.1, 10.2, 10.3, 10.4, 10.5
 */

/* Contact Hero Section */
.contact-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    text-align: center;
}

.contact-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.contact-hero-subheadline {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Main Section */
.contact-main-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: #6b7280;
    font-size: 0.9375rem;
    margin: 0;
}

/* Contact Form Styles (Requirement 10.1) */
.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 0.9375rem;
}

.required-indicator {
    color: #dc2626;
    margin-left: 0.125rem;
}

.optional-indicator {
    color: #9ca3af;
    font-weight: 400;
    font-size: 0.875rem;
}

.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: #4361ee;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
    color: #9ca3af;
}

.contact-form .form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Form Validation Error Styles (Requirements 10.4, 10.5) */
.contact-form .form-group.has-error .form-input,
.contact-form .form-group.has-error .form-textarea {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.contact-form .form-group.has-error .form-input:focus,
.contact-form .form-group.has-error .form-textarea:focus {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form .form-error {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
}

.form-privacy-notice {
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #6b7280;
    text-align: center;
}

.form-privacy-notice a {
    color: #4361ee;
    text-decoration: underline;
}

.form-privacy-notice a:hover {
    color: #3a0ca3;
}

/* Success Message Styles */
.contact-success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.success-text {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Methods Section (Requirement 10.2) */
.contact-methods h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-methods-intro {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.contact-method-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
}

.contact-method-card:hover {
    background-color: #f3f4f6;
}

.contact-method-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4361ee;
    border-radius: 0.5rem;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method-content {
    flex: 1;
}

.contact-method-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.contact-method-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.contact-method-link {
    font-size: 0.9375rem;
    color: #4361ee;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-method-link:hover {
    color: #3a0ca3;
}

/* Social Media Section */
.contact-social-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-social-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-social-intro {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-social-link:hover {
    background-color: #eef2ff;
    color: #4361ee;
}

.contact-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-social-icon svg {
    width: 20px;
    height: 20px;
}

/* Response Time Info */
.contact-response-info {
    padding: 1.5rem;
    background-color: #f0fdf4;
    border-radius: 0.75rem;
    border-left: 4px solid #10b981;
}

.contact-response-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-response-info p {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.contact-response-info strong {
    color: #059669;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.contact-faq-header {
    margin-bottom: 3rem;
}

.contact-faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-faq-header p {
    font-size: 1.0625rem;
    color: #6b7280;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-faq-item h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.contact-faq-item p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.contact-cta-text {
    font-size: 1.0625rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ==========================================================================
   Contact Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .contact-hero-section {
        padding: 5rem 0;
    }

    .contact-hero-headline {
        font-size: 2.75rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .contact-submit-btn {
        width: auto;
        min-width: 200px;
    }

    .contact-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .contact-hero-headline {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }

    .contact-form-wrapper {
        padding: 3rem;
    }

    .contact-faq-header h2 {
        font-size: 2.25rem;
    }

    .contact-cta-content h2 {
        font-size: 2.25rem;
    }
}


/* ==========================================================================
   About Page Styles
   ========================================================================== */

/**
 * About page-specific styles
 * Requirements: 9.1, 9.2, 9.3, 9.4
 */

/* About Hero Section */
.about-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    text-align: center;
}

.about-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.about-hero-subheadline {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mission Section (Requirement 9.1) */
.mission-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: #eef2ff;
    color: #4361ee;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}


.mission-statement {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.mission-description {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.7;
}

.vision-content {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 1rem;
    border-left: 4px solid #4361ee;
}

.vision-statement {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Values Section (Requirement 9.3) */
.values-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4361ee;
    border-radius: 0.75rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Story Section (Requirement 9.2) */
.story-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-text p {
    font-size: 1.0625rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}


/* Milestones Timeline */
.milestones-section {
    max-width: 800px;
    margin: 0 auto;
}

.milestones-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
    text-align: center;
}

.milestones-timeline {
    position: relative;
    padding-left: 2rem;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e5e7eb;
}

.milestone-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.milestone-item-last {
    padding-bottom: 0;
}

.milestone-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    transform: translateX(-50%);
}

.milestone-year {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #4361ee;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 1rem;
}


.milestone-content {
    background-color: #f9fafb;
    padding: 1.25rem;
    border-radius: 0.5rem;
}

.milestone-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.milestone-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Team Section (Requirement 9.2) */
.team-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}


.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 1.5rem;
}

.team-member-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.team-member-role {
    font-size: 0.9375rem;
    color: #4361ee;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-member-bio {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-member-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f4f6;
    color: #6b7280;
    transition: all 0.2s ease;
}

.team-member-social:hover {
    background-color: #4361ee;
    color: #ffffff;
}

.team-member-social svg {
    width: 18px;
    height: 18px;
}


/* Contact Section on About Page (Requirement 9.4) */
.about-page .contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.contact-intro {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4361ee;
    border-radius: 0.5rem;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}


.contact-item-content {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-item-content a,
.contact-item-content address {
    font-size: 0.9375rem;
    color: #1a1a2e;
    font-style: normal;
    line-height: 1.5;
}

.contact-item-content a:hover {
    color: #4361ee;
}

/* Social Connect Section */
.social-connect {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 1rem;
}

.social-connect h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.social-intro {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}


.social-link:hover {
    background-color: #eef2ff;
    color: #4361ee;
}

.social-link-icon {
    display: flex;
    align-items: center;
}

.social-link-icon svg {
    width: 20px;
    height: 20px;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
}

.about-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-cta-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.about-cta-section .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.about-cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.about-cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.about-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4361ee;
}


/* ==========================================================================
   About Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .about-hero-section {
        padding: 5rem 0;
    }

    .about-hero-headline {
        font-size: 2.75rem;
    }

    .mission-grid {
        grid-template-columns: 1.5fr 1fr;
        align-items: start;
    }

    .mission-statement {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .about-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-hero-headline {
        font-size: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ==========================================================================
   Use Case Page Styles
   ========================================================================== */

/**
 * Use case page-specific styles
 * Requirements: 7.2, 7.3, 7.4, 7.5, 7.6, 7.7
 */

/* Use Case Hero Section */
.use-case-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.use-case-label {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: #eef2ff;
    color: #4361ee;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.use-case-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.use-case-hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.use-case-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}


/* Use Case Benefits Section (Requirement 7.6) */
.use-case-benefits-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.use-case-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.use-case-benefit-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.use-case-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.use-case-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4361ee;
    border-radius: 0.75rem;
}

.use-case-benefit-icon svg {
    width: 28px;
    height: 28px;
}

.use-case-benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.use-case-benefit-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}


/* Use Case Conversations Section (Requirement 7.6) */
.use-case-conversations-section {
    padding: 5rem 0;
}

.section-alt {
    background-color: #f9fafb;
}

.use-case-conversations-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.use-case-chat-window {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.use-case-chat-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background-color: #1a1a2e;
}

.use-case-chat-header-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4b5563;
}

.use-case-chat-header-dot:nth-child(1) {
    background-color: #ef4444;
}

.use-case-chat-header-dot:nth-child(2) {
    background-color: #fbbf24;
}

.use-case-chat-header-dot:nth-child(3) {
    background-color: #10b981;
}

.use-case-chat-header-title {
    margin-left: auto;
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}


.use-case-chat-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-chat-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.use-case-chat-message-user {
    flex-direction: row-reverse;
}

.use-case-chat-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.use-case-chat-bubble {
    max-width: 80%;
}

.use-case-chat-bubble p {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.use-case-chat-message-bot .use-case-chat-bubble p {
    background-color: #f3f4f6;
    border-bottom-left-radius: 0.25rem;
}

.use-case-chat-message-user .use-case-chat-bubble p {
    background-color: #4361ee;
    color: #ffffff;
    border-bottom-right-radius: 0.25rem;
}

/* Use Case Features Section */
.use-case-features-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.use-case-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}


.use-case-feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.use-case-feature-card:hover {
    background-color: #eef2ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.1);
}

.use-case-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4361ee;
    color: #ffffff;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.use-case-feature-icon svg {
    width: 24px;
    height: 24px;
}

.use-case-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.use-case-feature-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Use Case Testimonials Section */
.use-case-testimonials-section {
    padding: 5rem 0;
}

.use-case-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}


/* Use Case CTA Section (Requirement 7.7) */
.use-case-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
}

.use-case-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.use-case-cta-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.use-case-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.use-case-cta-section .btn-primary {
    background-color: #ffffff;
    color: #4361ee;
}

.use-case-cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

.use-case-cta-section .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.use-case-cta-section .btn-secondary:hover {
    background-color: #ffffff;
    color: #4361ee;
}

.use-case-cta-note {
    font-size: 0.9375rem;
    opacity: 0.9;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.use-case-cta-note .checkmark {
    color: #a7f3d0;
}


/* Use Case Related Section */
.use-case-related-section {
    padding: 4rem 0;
}

.use-case-related-cta {
    margin-top: 2rem;
}

/* ==========================================================================
   Use Case Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .use-case-hero-section {
        padding: 5rem 0;
    }

    .use-case-hero-headline {
        font-size: 2.75rem;
    }

    .use-case-hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .use-case-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .use-case-cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .use-case-hero-headline {
        font-size: 3rem;
    }

    .use-case-benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .use-case-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================================================
   Use Cases Index Page Styles
   ========================================================================== */

/**
 * Use cases listing page styles
 * Requirements: 7.1
 */

/* Use Cases Index Hero */
.use-cases-hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: #ffffff;
    text-align: center;
}

.use-cases-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.use-cases-hero-subheadline {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Use Cases Grid Section */
.use-cases-grid-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-index-card {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
}


.use-case-index-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.use-case-index-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    color: #4361ee;
    border-radius: 0.75rem;
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.use-case-index-card:hover .use-case-index-icon {
    background-color: #4361ee;
    color: #ffffff;
}

.use-case-index-content {
    flex: 1;
}

.use-case-index-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.use-case-index-card:hover .use-case-index-title {
    color: #4361ee;
}

.use-case-index-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.use-case-index-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #4361ee;
    transition: gap 0.2s ease;
}

.use-case-index-card:hover .use-case-index-link {
    gap: 0.5rem;
}


/* Use Cases Empty State */
.use-cases-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
}

.use-cases-empty-state p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Use Cases Index CTA Section */
.use-cases-cta-section {
    padding: 4rem 0;
    background-color: #ffffff;
    text-align: center;
}

.use-cases-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.use-cases-cta-text {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.use-cases-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* ==========================================================================
   Use Cases Index Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .use-cases-hero-headline {
        font-size: 2.75rem;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .use-cases-hero-headline {
        font-size: 3rem;
    }
}


/* ==========================================================================
   Legal Page Styles
   ========================================================================== */

/**
 * Legal page-specific styles (Privacy Policy, Terms of Service)
 * Requirements: 11.1, 11.2, 11.3
 */

/* Legal Hero Section */
.legal-hero-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.legal-hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

/* Last Updated Date (Requirement 11.3) */
.legal-last-updated {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

.legal-last-updated-label {
    font-weight: 600;
    color: #374151;
}

/* Legal Content Section */
.legal-content-section {
    padding: 3rem 0 4rem;
}

.legal-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}


/* Legal Document Content */
.legal-document {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-document-content.prose {
    max-width: none;
    color: #374151;
    line-height: 1.8;
}

.legal-document-content h2 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-document-content h2:first-child {
    margin-top: 0;
}

.legal-document-content h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-document-content p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-document-content ul,
.legal-document-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.legal-document-content a {
    color: #4361ee;
    text-decoration: underline;
}

.legal-document-content a:hover {
    color: #3a0ca3;
}

.legal-document-content strong {
    color: #1a1a2e;
    font-weight: 600;
}


/* Legal Sidebar */
.legal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-sidebar-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.legal-sidebar-title {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-sidebar-text {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Legal Navigation */
.legal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav-list li {
    margin-bottom: 0.5rem;
}

.legal-nav-list li:last-child {
    margin-bottom: 0;
}

.legal-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.legal-nav-link:hover {
    background-color: #f3f4f6;
    color: #4361ee;
}

.legal-nav-link.active {
    background-color: #eef2ff;
    color: #4361ee;
}

.legal-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* Legal Buttons */
.legal-contact-btn,
.legal-print-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-icon {
    display: flex;
    align-items: center;
}

/* Legal Footer Section */
.legal-footer-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.legal-footer-text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.legal-footer-text a {
    color: #4361ee;
    font-weight: 500;
}

.legal-footer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Legal Page Responsive Styles
   ========================================================================== */

@media (min-width: 768px) {
    .legal-hero-headline {
        font-size: 2.5rem;
    }

    .legal-document {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .legal-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }

    .legal-sidebar {
        position: sticky;
        top: 100px;
        align-self: start;
    }

    .legal-hero-headline {
        font-size: 2.75rem;
    }
}


/* ==========================================================================
   Additional Utility Classes
   ========================================================================== */

/**
 * Extended utility classes for common patterns
 * Requirements: 12.3
 */

/* Text Alignment */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

/* Display Utilities */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

/* Flexbox Utilities */
.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}


/* Gap Utilities */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Margin Utilities */
.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}


/* Padding Utilities */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

/* Width Utilities */
.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

/* Font Weight Utilities */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Font Size Utilities */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}


/* Color Utilities */
.text-white {
    color: #ffffff;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #1a1a2e;
}

.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

/* Border Utilities */
.border {
    border: 1px solid #e5e7eb;
}

.border-t {
    border-top: 1px solid #e5e7eb;
}

.border-b {
    border-bottom: 1px solid #e5e7eb;
}

.rounded-sm {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Overflow Utilities */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Position Utilities */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

/* Cursor Utilities */
.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}


/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .nav-cta,
    .btn,
    .legal-sidebar,
    .blog-sidebar,
    .pagination,
    .final-cta-section,
    .about-cta-section,
    .use-case-cta-section,
    .blog-cta-section,
    .contact-cta-section {
        display: none !important;
    }

    /* Reset backgrounds */
    body {
        background: #ffffff;
        color: #000000;
    }

    .hero-section,
    .features-hero-section,
    .pricing-hero,
    .blog-hero-section,
    .about-hero-section,
    .use-case-hero-section,
    .legal-hero-section,
    .contact-hero-section {
        background: none !important;
        padding: 1rem 0;
    }

    /* Ensure text is readable */
    h1, h2, h3, h4, h5, h6 {
        color: #000000;
        page-break-after: avoid;
    }

    p, li {
        orphans: 3;
        widows: 3;
    }

    /* Show URLs for links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    /* Page breaks */
    .section {
        page-break-inside: avoid;
    }

    /* Container adjustments */
    .container {
        max-width: 100%;
        padding: 0;
    }
}