/* Modern SaaS Design - RealEye Attention Predictor */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Purple brand colors (preserved) */
    --realeye-purple: #D268CC;
    --realeye-purple-dark: #B854A8;
    --realeye-purple-light: #E284DB;

    /* Primary theme colors */
    --primary-color: #D268CC;
    --primary-dark: #B854A8;
    --primary-light: #E284DB;
    --secondary-color: #94a3b8;
    --accent-color: #D268CC;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;

    /* Dark theme text colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-light: #94a3b8;
    --text-muted: #64748b;

    /* Dark theme backgrounds */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-surface: #222222;
    --bg-elevated: #2a2a2a;
    --bg-hover: #333333;

    /* Dark theme borders */
    --border-color: #333333;
    --border-light: #444444;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Spacing scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Navbar height for dropdown positioning */
    --navbar-height: 84px;

    /* Aliases for compatibility */
    --border-radius: var(--radius-md);
    --border-radius-sm: var(--radius-sm);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

/* Ensure all "Attention Predictor™" text uses Space Grotesk font across all pages */
*:contains("Attention Predictor") {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
}

*:contains("Attention Predictor™") {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
}

/* Specific selectors for brand name */
.attention-predictor-brand,
.attention-predictor-text,
.wavy-attention-text,
h1 span:contains("Attention"),
h2 span:contains("Attention"),
h3 span:contains("Attention"),
.highlight:contains("Attention"),
.demo-title span:contains("Attention") {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 600;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Headings use Space Grotesk */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

h6 {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
}

/* Body text elements use Roboto Slab */
p,
span,
div,
li,
td,
th,
blockquote,
.text-content {
    font-family: var(--font-body);
}

/* Specific typography elements */
.lead {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
}

.text-lg {
    font-family: var(--font-body);
    font-size: 1.125rem;
}

.text-sm {
    font-family: var(--font-body);
    font-size: 0.875rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
#main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    /* bg-white/90 */
    backdrop-filter: blur(16px);
    /* backdrop-blur-md */
    border-bottom: 1px solid #f3f4f6;
    /* border-b border-gray-100 */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo a {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

.logo span {
    color: #1f2937;
    /* Dark text for white background */
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    white-space: nowrap;
}

.logo-short {
    display: none;
}

.logo-full {
    display: block;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #4b5563;
    /* Darker gray for white background */
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav {
    position: relative;
}

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

.main-nav>ul>li {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    /* Darker gray for white background */
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.mobile-cta {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    /* Lighter border for white background */
    margin-top: 1rem;
}

.desktop-cta {
    display: flex;
    gap: 0.75rem;
}

.header-cta {
    display: flex;
    gap: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    min-height: 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

/* Hero Section */
.hero {
    background: var(--bg-primary);
    background-image: url('/images/bg-pattern-wave.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 80px);
    /* Full viewport minus navbar */
    max-height: calc(100vh - 80px);
    padding: clamp(2rem, 5vh, 5rem) 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    /* Center vertically */
    justify-items: center;
    /* Center horizontally */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    max-height: calc(100vh - 160px);
    /* Account for navbar and padding */
}

.hero-content {
    text-align: left;
    /* Align content to the left */
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: flex-start;
    /* Align content to the left */
    height: 100%;
}

.hero h1 {
    font-size: clamp(2.55rem, 6.375vw, 4.4625rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    color: var(--text-primary);
    text-shadow: none;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.5rem, 1.8vw, 1.46625rem);
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: clamp(0.02em, 0.3vw, 0.1em);
    margin-top: clamp(3rem, 6vh, 5rem);
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    opacity: 0.9;
    text-align: center;
    white-space: nowrap;
}

.highlight {
    font-family: var(--font-heading);
    color: var(--realeye-purple);
    text-shadow: none;
}

.wavy-attention-text::before {
    display: none !important;
}


.hero-subtitle {
    font-size: clamp(0.85rem, 2.125vw, 1.0625rem);
    color: var(--text-secondary);
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: clamp(1.5rem, 3vh, 2rem);
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* Center the buttons */
}

/* Hero-specific button improvements */
.hero-cta .btn {
    font-weight: 600;
    letter-spacing: 0.025em;
    border-width: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-cta .btn:hover::before {
    left: 100%;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    /* Keep justified alignment */
    margin-bottom: clamp(3rem, 6vh, 5rem);
    width: 100%;
    /* Ensure full width for proper justification */
    overflow-x: auto;
    /* Allow horizontal scroll on very small screens if needed */
}

.hero-badges .badge:nth-child(1),
.hero-badges .badge:nth-child(2),
.hero-badges .badge:nth-child(3) {
    text-align: center;
}

.badge {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-lg);
    font-size: clamp(0.65rem, 1.8vw, 0.75rem);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    line-height: 1.2;
    flex: 1;
    flex-shrink: 1;
    min-width: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    height: 100%;
    width: 100%;
}

.demo-placeholder {
    background-color: var(--bg-primary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.demo-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Example images and goal details */
.example-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.goal-details {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.trust-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.logo-placeholder {
    padding: 1rem 2rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Enhanced Trust Section */
.trust-content {
    margin-top: 3rem;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 500;
}

.trust-customers {
    margin-bottom: 3rem;
}

.trust-customers h4 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.customer-logo {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.customer-logo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.customer-logo strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.customer-logo span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-description {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.trust-description p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.trust-description p:last-child {
    margin-bottom: 0;
}

.trust-description strong {
    color: var(--primary-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Challenge Solution Section */
.challenge-solution-section {
    padding: 2rem 0;
    /* Reduced from 6rem to fit viewport */
    background-color: var(--bg-secondary);
    min-height: calc(100vh - 120px);
    /* Fit within viewport minus header/footer */
    display: flex;
    align-items: center;
    /* Center content vertically */
}

.challenge-solution-section .container {
    max-width: 1400px;
    /* Wider than default container */
    padding: 0 2rem;
    /* More padding for larger screens */
}

.challenge-solution {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    /* Reduced gap for better fit */
    align-items: center;
    /* Align items to center for middle alignment */
    width: 100%;
    /* Use full container width */
    margin: 0;
}

.challenge-column,
.solution-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    gap: 1rem;
    height: 100%;
    /* Ensure full height to allow proper alignment */
}

.challenge-column h2,
.solution-column h2 {
    font-size: 1.5rem;
    /* Reduced font size */
    font-weight: 600;
    margin: 0;
    /* Remove default margin */
    color: var(--text-primary);
    text-align: center;
}

.challenge-column h2 {
    color: #dc2626;
    /* Red for challenge */
}

.solution-column h2 {
    color: #059669;
    /* Green for solution */
}

/* Position Challenge h1 title to align with middle of Solution h1 */
.challenge-column h1 {
    transform: translateY(-1.5rem);
    /* Move title higher to align with Solution middle without affecting box position */
}

.challenge-box,
.solution-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    /* Reduced padding */
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    max-height: 400px;
    /* Limit height to fit viewport */
    max-width: 475px;
    /* Make boxes slightly narrower */
    overflow: auto;
    /* Allow scrolling if content is too long */
    margin-left: auto;
    margin-right: auto;
    /* Center the narrower boxes horizontally */
}

.solution-box {
    max-width: 550px;
    /* Make solution box wider for better text layout */
    padding: 2.25rem;
    /* Slightly more padding for better content spacing */
}

.challenge-box:hover,
.solution-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.challenge-box p,
.solution-box p {
    font-size: 1rem;
    /* Reduced font size */
    line-height: 1.6;
    /* Tighter line height */
    color: var(--text-secondary);
    margin: 0;
}

.solution-box p {
    font-size: 1.125rem;
    /* Bigger font size for solution box */
    line-height: 1.7;
    /* Slightly more line height for better readability */
}

.challenge-solution-slider {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 200px;
    /* Reduced width to make slider smaller */
}

/* Mobile responsive for challenge-solution */
@media (max-width: 1024px) {
    .challenge-solution-section {
        min-height: auto;
        /* Remove viewport height constraint on mobile */
        padding: 3rem 0;
        /* More padding on tablet */
    }

    .challenge-solution-section .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .challenge-solution {
        grid-template-columns: 1fr auto 1fr;
        gap: 1.5rem;
        /* Reduced gap for smaller screens */
        align-items: center;
        /* Keep center alignment on tablet */
    }

    .challenge-solution-slider {
        width: 160px;
        /* Reduced width for smaller screens */
    }
}

@media (max-width: 768px) {
    .challenge-solution-section {
        padding: 2rem 0;
        /* Reduced padding on mobile */
        min-height: auto;
    }

    .challenge-solution-section .container {
        padding: 0 1rem;
    }

    .challenge-solution {
        grid-template-columns: 1fr auto 1fr;
        gap: 1rem;
        /* Smaller gap on mobile */
        align-items: center;
        /* Keep center alignment on mobile */
    }

    .challenge-solution-slider {
        width: 180px;
        /* Exact width for mobile */
    }

    .challenge-box,
    .solution-box {
        padding: 1.5rem;
        /* Reduced padding on mobile */
        max-height: none;
        /* Remove height constraint on mobile */
    }

    .solution-box {
        padding: 1.75rem;
        /* Slightly more padding for solution box on mobile */
    }

    .challenge-column h2,
    .solution-column h2 {
        font-size: 1.25rem;
        /* Smaller heading on mobile */
        margin-bottom: 1rem;
    }

    .challenge-box p,
    .solution-box p {
        font-size: 0.95rem;
        /* Slightly smaller text on mobile */
    }

    .solution-box p {
        font-size: 1.05rem;
        /* Bigger font for solution box even on mobile */
    }
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.features-section.bg-light {
    background-color: var(--bg-secondary);
}

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

.feature-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card .btn {
    margin-top: 1rem;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

/* Ensure heading doesn't wrap on larger screens */
@media (min-width: 769px) {
    .benefits-content h2 {
        white-space: nowrap;
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1.5fr 1fr !important;
    }
}

@media (min-width: 1024px) {
    .benefits-content h2 {
        font-size: 2.5rem;
    }
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-number {
    background-color: var(--primary-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.2s ease;
}

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

.use-case-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.use-case-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.use-case-card li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.use-case-card li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.cta-section .btn-outline:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* CTA Section Responsive Styles */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }

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

    .cta-content p {
        font-size: 1rem;
    }
}

/* Product Design Prediction Specific Styles */
.hero-stats {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.workflow-steps .feature-card {
    text-align: center;
    position: relative;
}

.workflow-steps .feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--border-color);
    transform: translateY(-50%);
}

.workflow-steps .feature-card:last-child::after {
    display: none;
}

.feature-highlight {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    font-size: 0.9em;
}

.feature-highlight strong {
    color: var(--text-primary);
}

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

.heatmap-showcase {
    margin-top: 3rem;
}

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

.heatmap-images {
    text-align: center;
}

.heatmap-images img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

.heatmap-example-card {
    text-align: center;
    background: var(--bg-elevated);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.heatmap-example-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.heatmap-example-card h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.heatmap-example-card img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.heatmap-example-card p {
    color: var(--text-secondary);
    font-size: 0.9em;
    line-height: 1.5;
}

.combined-view {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.combined-view h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.combined-view img {
    max-width: 100%;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin: 1rem 0;
    box-shadow: var(--shadow-md);
}

.cta-info-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.cta-info-box p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.cta-info-box strong {
    color: var(--text-primary);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workflow-steps .feature-card::after {
        display: none;
    }

    .heatmap-example {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

/* Additional Page-Specific Styles */
.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.step-number {
    background: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.examples-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'text image';
    gap: 3rem;
    align-items: center;
}

.example-content.image-left {
    grid-template-areas: 'image text';
}

.example-image {
    grid-area: image;
    text-align: center;
}

.example-text {
    grid-area: text;
}

.example-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.example-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tagline-spaced {
    margin-left: 0.8em;
}

.tagline-emphasized {
    margin-left: 0.8em;
    font-weight: 700;
}

.badge .check-icon {
    color: var(--primary-color);
}

.badge .success-text {
    color: var(--success-color);
}

.demo-section {
    padding: 2rem 1rem;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.demo-section .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.demo-header {
    text-align: center;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.demo-title {
    margin-bottom: 0.8rem;
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: #ffffff;
}

.demo-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin: 0 auto 2rem auto;
    padding: 0;
    text-align: center;
    max-width: 800px;
}

.process-flow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    overflow-x: auto;
}

.process-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(90deg, rgba(210, 104, 204, 0.02) 0%, rgba(139, 92, 246, 0.04) 50%, rgba(210, 104, 204, 0.02) 100%);
    border-radius: 30px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(210, 104, 204, 0.15);
    overflow: hidden;
    min-width: 850px;
    border: 1px solid rgba(210, 104, 204, 0.1);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    z-index: 4;
}

.process-step img {
    width: 300px;
    height: 225px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.wave-label {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.realeye-link {
    text-decoration: none;
    color: #FC7753;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Responsive adjustments for new styles */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .example-content {
        grid-template-columns: 1fr;
        grid-template-areas: 'text' 'image';
        gap: 2rem;
    }

    .example-content.image-left {
        grid-template-areas: 'text' 'image';
    }

    .examples-grid {
        gap: 2rem;
    }

    .process-container {
        flex-direction: column;
        min-width: auto;
        gap: 1rem;
    }

    .process-step img {
        width: 250px;
        height: 187px;
    }
}

/* Dataset and Model Stats */
.dataset-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.mae-scores {
    margin: 2rem 0;
}

.overall-performance {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border: 2px solid var(--success-color);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.performance-score {
    font-size: 2rem;
    color: var(--success-color);
    font-weight: 700;
}

.performance-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.performance-note {
    text-align: center;
    margin: 1rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.component-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.score-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.score-value {
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: 700;
}

.score-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
    .dataset-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .component-scores {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Comparison Table Styles */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    color: var(--text-primary);
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-elevated);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-tertiary);
}

.comparison-table tr:hover {
    background: var(--bg-hover);
}

.comparison-table .feature-column {
    font-weight: 600;
}

/* Workflow Steps Grid */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Additional responsive improvements */
@media (max-width: 768px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .comparison-table {
        margin: 1rem 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Shelf Prediction Specific Styles */
.demo-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.demo-type-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.demo-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.demo-type-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.demo-type-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.demo-item {
    text-align: center;
}

.demo-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.demo-item img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.demo-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Shelf Testing Section */
.realeye-shelf-testing-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.shelf-testing-content {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.shelf-testing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.shelf-testing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.shelf-testing-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.shelf-testing-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.shelf-testing-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.shelf-testing-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.shelf-testing-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.shelf-testing-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.shelf-testing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.integration-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    min-width: 120px;
}

.flow-arrow {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.recommendation-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.recommendation-box h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.recommendation-box p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.recommendation-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.recommendation-cta .btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.recommendation-cta .btn-primary:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.recommendation-cta .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.recommendation-cta .btn-outline:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

/* Benefit Cards */
.benefit-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Use Cases Styles */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.use-case-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.use-case-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.use-case-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.use-case-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* API Documentation Styles */
.api-overview {
    margin-bottom: 4rem;
}

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

.api-details {
    margin-bottom: 3rem;
}

.api-details h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.api-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.code-example {
    margin: 2rem 0;
}

.code-example h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.response-format {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.response-format h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.response-format p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Python Usage Specific Styles */
.python-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.python-examples {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.python-example {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.python-example h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.python-example p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.code-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-callout {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.info-callout h4 {
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-callout p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.integration-examples {
    margin-top: 3rem;
}

.integration-examples h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.example-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.example-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.example-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Model Details Styles */
.model-architecture {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.model-architecture h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.architecture-card {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.architecture-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.simple-explanation {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.simple-explanation h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.simple-explanation strong {
    color: var(--primary-color);
}

/* VAI Metrics Styles */
.vai-explanation {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.vai-explanation h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.vai-component {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.vai-component:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vai-component h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.component-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

.vai-metric-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.vai-metric-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vai-metric-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.metric-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Product Package Report Styles */
.report-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.report-preview {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
}

.report-preview h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.report-sample {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.report-image {
    text-align: center;
}

.report-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.report-details {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.report-details h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

.report-feature {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.report-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.report-feature h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

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

/* Human Eyetracking Comparison Styles */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.comparison-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.comparison-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.accuracy-comparison {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.accuracy-comparison h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.comparison-metric {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.comparison-metric h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.comparison-metric .metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.comparison-metric .metric-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* News Styles */
.news-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.news-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.news-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.news-title {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-title-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.news-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

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

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-style: italic;
}

.news-image {
    margin: 1.5rem 0;
    text-align: center;
}

.news-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.news-body {
    line-height: 1.7;
    color: var(--text-secondary);
}

.news-body h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.news-body p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.news-body ul,
.news-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.news-body li {
    margin-bottom: 0.5rem;
}

.news-body strong {
    color: var(--text-primary);
}

.news-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-body a:hover {
    text-decoration: underline;
}

.news-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.news-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.news-tags {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-category {
    display: inline-block;
    background: var(--bg-primary);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* About RealEye Styles */
.about-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.team-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}

.team-section h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

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

.team-member {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.team-member h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.company-info {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}

.company-info h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.company-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

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

.company-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.company-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Model Details Styles */
.model-architecture {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.model-architecture h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.architecture-card {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.architecture-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* VAI Metrics Styles */
.vai-explanation {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.vai-explanation h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

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

.vai-component {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.vai-component:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vai-component h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.component-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Product Package Report Styles */
.report-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.report-preview {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
}

.report-preview h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.report-sample {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.report-image {
    text-align: center;
}

.report-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.report-details {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.report-details h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Human Eyetracking Comparison Styles */
.comparison-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.comparison-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.comparison-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.accuracy-comparison {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.accuracy-comparison h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* News Styles */
.news-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.news-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.news-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.news-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.news-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.news-card a:hover {
    text-decoration: underline;
}

/* About RealEye Styles */
.about-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.team-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-top: 3rem;
}

.team-section h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

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

.team-member {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.team-member h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

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

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        padding-top: 1rem;
    }
}

/* Code Blocks */
pre {
    background-color: var(--text-primary);
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

code {
    font-family: var(--font-mono);
    background-color: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--primary-color);
}

pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: inherit;
}

/* Product Package Report Specific Styles */
.heatmap-guide {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.color-guide {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.color-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    min-width: 300px;
}

.color-swatch {
    width: 60px;
    height: 40px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.color-swatch.warm {
    background: linear-gradient(45deg, #ff4444, #ff8800, #ffdd00);
}

.color-swatch.cool {
    background: linear-gradient(45deg, #4CAF50, #8b5cf6, #9C27B0);
}

.color-description h4 {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 1rem;
    font-weight: 600;
}

.color-description p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Data Section */
.data-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-surface);
}

.table-container {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
}

.scores-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
}

.scores-table th,
.scores-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.scores-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.scores-table td {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.scores-table tbody tr:hover {
    background: var(--bg-hover);
}

.scores-table tbody tr:last-child td {
    border-bottom: none;
}

/* Score styling - Dark theme compatible */
.score {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.score.excellent {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.score.high {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.score.good {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.score.medium {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Link Cards */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.link-card {
    display: block;
    padding: var(--spacing-md);
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.link-card h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.link-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.section-links {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

.section-links>p {
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* Use case benefit styling */
.use-case-benefit {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--bg-surface);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    gap: 0 !important;
    border-top: none;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

/* Add invisible bridge area to prevent dropdown from disappearing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: -1;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* Add a small delay when hiding the dropdown to prevent flickering */
.dropdown-menu {
    transition-delay: 0.1s;
}

/* Ensure dropdowns hide immediately when not hovering the parent */
.dropdown:not(:hover) .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition-delay: 0s;
}

.dropdown-menu li {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1;
    border: none;
    height: auto;
    list-style: none;
    flex-shrink: 0;
    width: 100%;
    text-align: left;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    margin: 0;
    line-height: 1.4;
    border: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: relative;
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

/* First dropdown item should have rounded top corners */
.dropdown-menu li:first-child a {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown-menu li:first-child a:hover {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Last dropdown item should have rounded bottom corners */
.dropdown-menu li:last-child a {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.dropdown-menu li:last-child a:hover {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* If there's only one item, it should have all corners rounded */
.dropdown-menu li:only-child a {
    border-radius: var(--radius-md);
}

.dropdown-menu li:only-child a:hover {
    border-radius: var(--radius-md);
}

.dropdown-menu hr {
    margin: 0.1rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.dropdown-menu .active {
    background-color: var(--primary-color);
    color: white;
}

/* Demo Showcase Styles */
.demo-showcase {
    position: relative;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 1.6rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    height: 80%;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Restore original spacing */
    margin: 0 auto;
    /* Keep centered positioning */
    min-height: 400px;
    /* Ensure minimum height for visibility */
}

.demo-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.demo-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.demo-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Interactive Horizontal Slider Demo Styles */
.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* Ensure full width */
}

.image-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 200px;
    /* Reduced size to make slider smaller */
    height: auto;
    /* Let height be determined by content */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
    background: var(--bg-tertiary);
    /* Remove conflicting height constraints to let aspect-ratio work properly */
}

/* Force consistent initialization */
.before-after-slider .overlay-image-container {
    clip-path: inset(0 50% 0 0) !important;
}

.before-after-slider .slider-handle {
    left: 50% !important;
}

.slider-images {
    position: relative;
    width: 100%;
    height: auto;
    /* Let height be determined by the images */
}

.base-image-container {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
}

.base-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.overlay-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease-out;
    z-index: 2;
}

.overlay-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50% !important;
    /* Force center position */
    width: 4px;
    background: #ffffff !important;
    /* Force white line */
    cursor: ew-resize;
    transform: translateX(-50%);
    transition: left 0.1s ease-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: #ffffff !important;
    /* Force white background */
    border: 2px solid #ffffff !important;
    /* Force white border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.handle-circle::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff !important;
    /* Force white dot */
    border-radius: 50%;
    position: absolute;
}

.handle-grip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.grip-line {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: #333333 !important;
    /* Force dark arrows */
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.image-labels {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.label-before,
.label-after {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 0.875rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, -50%);
    }

    40% {
        transform: translate(-50%, -60%);
    }

    60% {
        transform: translate(-50%, -40%);
    }
}

/* Mobile responsive for slider */
@media (max-width: 768px) {
    .before-after-slider {
        max-width: 100%;
        height: auto;
    }

    .slider-container {
        width: 100%;
    }

    .image-labels {
        bottom: 12px;
        padding: 0 12px;
    }

    .label-before,
    .label-after {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
}

/* Mobile Responsive Design */

/* Tablet styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .trust-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .demo-types {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .shelf-testing-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .report-sample {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    /* Header mobile styles */
    .header-container {
        padding: 1rem;
    }

    .logo-full {
        display: none;
    }

    .logo-short {
        display: block;
        font-size: 1.25rem;
    }

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

    .desktop-cta {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid #e2e8f0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .main-nav>ul>li {
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav>ul>li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
    }

    .mobile-cta {
        display: block;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-secondary);
        margin-top: 0.5rem;
        border-radius: var(--radius-md);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Hero section mobile */
    .hero {
        height: calc(100vh - 70px);
        /* Smaller navbar on mobile */
        max-height: calc(100vh - 70px);
        padding: clamp(1rem, 3vh, 2rem) 0;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 3vw, 2rem);
        padding: 0 1rem;
        text-align: center;
        max-height: calc(100vh - 140px);
        /* Account for mobile navbar and padding */
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: clamp(0.75rem, 2vh, 1rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: clamp(1rem, 2vh, 1.5rem);
    }

    .hero-cta {
        justify-content: center;
        margin-bottom: clamp(1rem, 2vh, 1.5rem);
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        min-height: 2.5rem;
        line-height: 1.2;
    }

    /* Demo showcase mobile */
    .demo-showcase {
        padding: 1rem;
    }

    .demo-images {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .demo-caption {
        font-size: 0.875rem;
    }

    /* Demo types mobile */
    .demo-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-type-card {
        padding: 2rem;
    }

    .demo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    /* Shelf testing mobile */
    .shelf-testing-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shelf-testing-card {
        padding: 2rem;
    }

    .integration-flow {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .flow-step {
        min-width: 100%;
        text-align: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .recommendation-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* Trust section mobile */
    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    /* Section spacing mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

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

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

    /* Grid layouts mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-content {
        min-width: 100%;
    }

    .benefits-content h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

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

    .recommendation-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .use-cases-links {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .model-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .metric-item {
        padding: 1rem;
        font-size: 1rem;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

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

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

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    /* API specs mobile */
    .api-specs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .architecture-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vai-components {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards mobile */
    .deliverable-card,
    .use-case-link,
    .benefit-card,
    .use-case-card,
    .shelf-testing-card,
    .comparison-card,
    .news-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    /* Button mobile */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 3rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 3.25rem;
        width: 100%;
        max-width: 300px;
    }

    /* Code blocks mobile */
    pre {
        overflow-x: auto;
        font-size: 0.75rem;
    }

    .code-example {
        margin: 1rem 0;
    }
}

/* Mobile styles */
@media (max-width: 768px) {

    /* Header mobile styles */
    .header-container {
        padding: 1rem;
    }

    .logo-full {
        display: none;
    }

    .logo-short {
        display: block;
        font-size: 1.25rem;
    }

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

    .desktop-cta {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid #e2e8f0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.mobile-menu-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .main-nav>ul>li {
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav>ul>li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
    }

    .mobile-cta {
        display: block;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-secondary);
        margin-top: 0.5rem;
        border-radius: var(--radius-md);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Hero section mobile */
    .hero {
        height: calc(100vh - 70px);
        /* Smaller navbar on mobile */
        max-height: calc(100vh - 70px);
        padding: clamp(1rem, 3vh, 2rem) 0;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 3vw, 2rem);
        padding: 0 1rem;
        text-align: center;
        max-height: calc(100vh - 140px);
        /* Account for mobile navbar and padding */
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2rem);
        margin-bottom: clamp(0.75rem, 2vh, 1rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: clamp(1rem, 2vh, 1.5rem);
    }

    .hero-cta {
        justify-content: center;
        margin-bottom: clamp(1rem, 2vh, 1.5rem);
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-badges {
        justify-content: center;
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        min-height: 2.5rem;
        line-height: 1.2;
    }

    /* Demo showcase mobile */
    .demo-showcase {
        padding: 1rem;
    }

    .demo-images {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .demo-caption {
        font-size: 0.875rem;
    }

    /* Trust section mobile */
    .trust-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    /* Section spacing mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

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

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

    /* Grid layouts mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-content {
        min-width: 100%;
    }

    .benefits-content h2 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

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

    .recommendation-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .use-cases-links {
        grid-template-columns: 1fr;
    }

    .model-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metrics-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .metric-item {
        padding: 1rem;
        font-size: 1rem;
    }

    .trust-logos {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    /* Cards mobile */
    .deliverable-card,
    .use-case-link {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    /* Button mobile */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 3rem;
        width: 100%;
        max-width: 280px;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 3.25rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem;
    }

    .logo-short {
        font-size: 1.125rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

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

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

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.375rem;
    }

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

    .deliverables-section,
    .realeye-recommendation,
    .use-cases-overview,
    .advanced-model-info {
        padding: 3rem 0;
    }

    .deliverable-card,
    .use-case-link {
        padding: 1.25rem;
    }

    .recommendation-text h2,
    .model-info-text h2 {
        font-size: 1.375rem;
    }

    .metrics-showcase {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .metric-item {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }

    .trust-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .demo-showcase {
        padding: 0.75rem;
    }

    /* Form elements mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        min-height: 44px;
        width: 100%;
        max-width: 260px;
        /* Touch target size */
    }
}

/* Extra small mobile styles */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.5rem;
    }

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

    .deliverable-card h3,
    .use-case-link h4 {
        font-size: 1rem;
    }

    .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 44px;
        width: 100%;
        max-width: 240px;
    }
}

/* Application Examples Styles */
.application-examples {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.application-examples h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.application-examples p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.application-card {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.application-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Technical Specifications Styles */
.tech-specs {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
}

.tech-specs h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.tech-specs p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-specs ul {
    list-style: none;
    padding: 0;
}

.tech-specs li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-specs li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.tech-specs strong {
    color: var(--text-primary);
}

.tech-specs .metric-range {
    color: var(--text-secondary);
    font-family: var(--font-mono);
    background: var(--bg-primary);
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}