/* input(2735,1): run-time error CSS1019: Unexpected token, found '@import'
input(2735,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap')'
input(4555,1): run-time error CSS1019: Unexpected token, found '}' */
/* ===== TECHNICAL SPECS SECTION ===== */

.technical-specs {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eaed;
    transition: all 0.3s ease;
    position: relative;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.spec-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
    padding-bottom: 12px;
    border-bottom: 2px solid #ff6b35;
}

.spec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-card li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.spec-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== INTEGRATION PROCESS SECTION ===== */

.integration-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff6b35, #f7931e);
    z-index: 1;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-indicator {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
}

.step-number {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content {
    flex: 1;
    background: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eaed;
    margin-top: 8px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark-gray);
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-duration {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== FINAL CTA SECTION ===== */

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.final-cta .section-title {
    color: white;
}

.final-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn {
    min-width: 180px;
}

.final-cta .btn-primary {
    background: white;
    color: var(--color-dark-blue);
    border-color: white;
}

.final-cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}
/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* Sticky Navigation with Enhanced Styling */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

    .main-header.scrolled {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

    .brand-link:hover {
        opacity: 0.8;
    }

.logo {
    height: 40px;
    width: auto;
    margin-right:10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--color-dark-gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover {
        color: var(--color-primary-orange);
        background-color: rgba(255, 129, 0, 0.05);
    }

.nav-link-active {
    color: var(--color-primary-orange) !important;
    font-weight: 600;
    background-color: rgba(255, 129, 0, 0.1);
}

.nav-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
}

/* ===== COOKIE CONSENT BANNER ===== */

.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-consent-banner {
    background: white;
    border-radius: 20px 20px 8px 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    border: 1px solid #e8eaed;
}

@keyframes slideUp {
    from { 
        transform: translateY(100px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    padding: 32px;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 16px;
}

.cookie-consent-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-gray);
}

.cookie-consent-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    line-height: 1;
}

.cookie-consent-close:hover {
    background: #f3f4f6;
    color: var(--color-dark-gray);
}

.cookie-consent-body {
    margin-bottom: 24px;
}

.cookie-consent-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.cookie-btn.btn-primary {
    background: var(--color-primary-orange);
    color: white;
    border-color: var(--color-primary-orange);
}

.cookie-btn.btn-primary:hover {
    background: var(--color-primary-orange-dark);
    border-color: var(--color-primary-orange-dark);
}

.cookie-btn.btn-secondary {
    background: transparent;
    color: var(--color-primary-orange);
    border-color: var(--color-primary-orange);
}

.cookie-btn.btn-secondary:hover {
    background: var(--color-orange-tint);
}

.cookie-btn.btn-tertiary {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #d1d5db;
}

.cookie-btn.btn-tertiary:hover {
    background: #e5e7eb;
    color: #4b5563;
}

/* ===== COOKIE CATEGORIES ===== */

.cookie-categories {
    margin: 24px 0;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    overflow: hidden;
}

.cookie-category {
    border-bottom: 1px solid #e8eaed;
    padding: 20px;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cookie-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.cookie-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--color-primary-orange);
    margin-top: 2px;
}

.cookie-checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-category-title {
    font-weight: 600;
    color: var(--color-dark-gray);
    font-size: 1.1rem;
}

.cookie-required {
    color: var(--color-primary-orange);
    font-weight: 500;
    font-size: 0.85rem;
}

.cookie-category-description {
    color: #4a5568;
    line-height: 1.5;
    margin: 0 0 8px 0;
    font-size: 0.95rem;
}

.cookie-providers {
    margin-top: 8px;
}

.cookie-providers small {
    color: #6b7280;
    font-style: italic;
}

/* ===== COOKIE CONSENT FOOTER ===== */

.cookie-consent-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    text-align: center;
}

.cookie-legal-links {
    margin: 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.cookie-link {
    color: var(--color-primary-orange);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-separator {
    margin: 0 8px;
    color: #d1d5db;
}

/* ===== COOKIE SETTINGS BUTTON ===== */

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary-orange);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 129, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 129, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .cookie-consent-overlay {
        align-items: flex-end;
        padding: 0;
    }
    
    .cookie-consent-banner {
        border-radius: 20px 20px 0 0;
        max-height: 85vh;
    }
    
    .cookie-consent-content {
        padding: 24px;
    }
    
    .cookie-consent-header h3 {
        font-size: 1.25rem;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-checkbox-label {
        align-items: flex-start;
    }
    
    .cookie-category {
        padding: 16px;
    }
    
    .cookie-settings-button {
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 20px;
    }
    
    .cookie-consent-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-consent-close {
        align-self: flex-end;
        margin-top: -8px;
    }
}
/* Form Styles */
.demo-form-section,
.assessment-form-section {
    padding: 80px 0;
    background-color: var(--color-beige-tint);
}

.demo-content,
.assessment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark-gray);
}

.required {
    color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 129, 0, 0.1);
}

/* Form Validation Styles */
.valid.modified:not([type=checkbox]) {
    border-color: var(--color-success);
    box-shadow: 0 0 0 3px rgba(108, 237, 204, 0.1);
}

.invalid {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.validation-message {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: 4px;
}

.darker-border-checkbox.form-check-input {
    border-color: var(--color-dark-gray-lightest);
}

/* Enhanced Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.social-proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.company-types {
    display: grid;
    gap: 16px;
}

.company-type-card {
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .company-type-card:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

.company-type-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.stats-showcase {
    display: grid;
    gap: 32px;
}

.stat-highlight {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .stat-highlight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff6b35, #f7931e);
    }

    .stat-highlight:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    }

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 12px;
    line-height: 1;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--color-dark-gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}


/* Enhanced Problem Solution Section */
.problem-solution {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark-gray);
    font-weight: 700;
    line-height: 1.2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.problem-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #e74c3c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .problem-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    }

.problem-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.problem-card h3 {
    color: #e74c3c;
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 600;
}

.problem-stat {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #dc2626;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 24px;
    display: inline-block;
    font-size: 0.875rem;
}

.solution-section {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    padding: 80px 60px;
    border-radius: 24px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .solution-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.solution-headline {
    font-size: 2.5rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.solution-section .section-title {
    color: white;
}

.solution-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-4px);
    }

/* Enhanced Final CTA Section */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-orange-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.375rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

.cta-buttons {
    margin-bottom: 60px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: white;
    border-color: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--color-beige-tint);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--color-primary-orange);
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px 28px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Enhanced Footer */
.main-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 0 40px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
}

.footer-contact p {
    margin-bottom: 12px;
    opacity: 0.8;
    color: #cbd5e0;
}

.footer-cta {
    text-align: center;
}

.footer-cta h3 {
    font-size: 1.875rem;
    margin-bottom: 24px;
    color: white;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    opacity: 0.7;
    color: #a0aec0;
}
/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-dark-gray);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-nav-toggle span:last-child {
    margin-bottom: 0;
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu.mobile-open {
    display: flex !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }
    .architecture-wrapper-mobile {
        position: relative;
        height: 1600px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .architecture-wrapper-mobile-trad {
        position: relative;
        height: 1160px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content,
    .social-proof-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 8px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-cta {
        display: none;
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.mobile-open + .nav-cta {
        display: flex;
    }
    
    .nav-btn,
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero {
        padding: 60px 0 40px;
        min-height: 60vh;
        align-items: center;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .problems-grid,
    .features-grid,
    .roi-stats,
    .comparison-grid,
    .components-visual,
    .components-details,
    .specs-grid,
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .traditional-flow, .complete-flow {
        width: 350px;
        height: 300px;
        transform: scale(0.8);
    }
    
    .architecture-diagram {
        padding: 40px 20px;
        min-height: 400px;
    }
    
    .missing-feedback, .feedback-complete, .basket-times {
        position: static;
        margin: 20px auto 0;
        text-align: center;
        width: auto;
        max-width: none;
        transform: none;
    }
    
    .missing-text, .feedback-text {
        display: inline-block;
        margin: 10px 0;
    }
    
    .promise-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .responsibility-bars {
        margin-top: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .solution-section {
        padding: 40px 30px;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .demo-content,
    .assessment-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        border-radius: 12px;
        text-align: center;
    }
}

/* ===== TABLET BREAKPOINT (768px - 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    /* Reduce hero and section padding */
    .hero, .problem-solution, .key-features, .roi-preview {
        padding: 80px 0;
    }
    
    /* Optimize grid systems for tablet */
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ===== MOBILE BREAKPOINT (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Base mobile layout */
    .container {
        padding: 0 16px;
    }
    
    body {
        padding-top: 70px; /* Reduce for mobile header */
    }
    
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.mobile-open {
        left: 0;
    }
    
    .nav-link {
        padding: 16px 24px;
        font-size: 1.125rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        width: 100%;
        padding: 0 24px;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hide desktop nav elements on mobile */
    .nav-menu:not(.mobile-open) {
        display: none;
    }
    
    /* Typography scaling for mobile */
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    h2 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        line-height: 1.3;
    }
    
    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Reduce section padding for mobile */
    .hero, .problem-solution, .key-features, .roi-preview {
        padding: 50px 0;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .technical-specs, .integration-process, .final-cta {
        padding: 60px 0;
    }
    
    .tms-comparison, .architecture-comparison {
        padding: 60px 0;
    }
    
    /* Hero section mobile optimization */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Grid systems mobile optimization */
    .problems-grid,
    .features-grid,
    .specs-grid,
    .benefits-grid,
    .plans-grid,
    .roi-stats,
    .testimonials-grid,
    .process-timeline,
    .integrations-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Components details mobile - critical for architecture page */
    .components-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Integration benefits grid */
    .integration-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Card optimization for mobile */
    .problem-card, .feature-card, .spec-card {
        padding: 24px;
        margin-bottom: 16px;
    }
    
    /* Button optimization for touch */
    .btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px; /* Touch-friendly */
        touch-action: manipulation;
    }
    
    /* CTA sections mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    /* Footer optimization */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Desktop/Mobile Display Control */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* ===== ACCESSIBILITY AND TOUCH IMPROVEMENTS ===== */
@media (max-width: 768px) {
    /* Touch-friendly focus indicators */
    *:focus-visible {
        outline: 3px solid #ff6b35;
        outline-offset: 2px;
        border-radius: 4px;
    }
    
    /* Ensure all interactive elements meet minimum touch target size */
    .btn, 
    .nav-link, 
    .mobile-nav-toggle,
    .toggle-btn,
    input[type="button"],
    input[type="submit"],
    button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on form focus for iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
        min-height: 44px;
    }
    
    /* Add mobile scroll behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
}

/* ===== DESKTOP ARCHITECTURE DISPLAY (min-width: 769px) ===== */
@media (min-width: 769px) {
    .architecture-wrapper {
        position: relative;
        height: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .architecture {
        width: 100%
    }
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
}

/* ===== LARGE DESKTOP BREAKPOINT (min-width: 1200px) ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 32px;
    }
}
/* Pricing Page Styles */
.pricing-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-beige-tint) 0%, #e9ecef 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border-color: var(--color-primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 129, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-orange-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
}

.plan-description {
    font-size: 1rem;
    color: var(--color-dark-gray-lighter);
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-price {
    margin-bottom: 8px;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-dark-gray);
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--color-dark-gray-lighter);
    margin-left: 8px;
}

.plan-limit, .plan-setup {
    font-size: 0.875rem;
    color: var(--color-dark-gray-lighter);
    margin-bottom: 8px;
}

.plan-features, .plan-not-included {
    margin: 32px 0;
}

.plan-features h4, .plan-not-included h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-dark-gray-light);
}

.plan-features ul, .plan-not-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li, .plan-not-included li {
    padding: 8px 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.plan-features li {
    color: var(--color-success-green);
}

.plan-not-included li {
    color: var(--color-error);
}

.guarantee {
    padding: 80px 0;
    background: white;
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--color-beige-tint) 0%, #e9ecef 100%);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.guarantee-card h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-dark-gray);
}

.guarantee-card p {
    font-size: 1.125rem;
    color: var(--color-dark-gray-lighter);
    margin-bottom: 32px;
    line-height: 1.6;
}

.guarantee-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.benefit {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    color: var(--color-success);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===== FAQ SECTION ===== */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-dark-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-beige-tint);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
    line-height: 1.4;
}

.faq-item p {
    font-size: 1rem;
    color: var(--color-dark-gray-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== FINAL CTA SECTION ===== */

.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: white;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.final-cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 180px;
}

.cta-buttons .btn-primary {
    background: var(--color-primary-orange);
    border-color: var(--color-primary-orange);
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: var(--color-primary-orange-dark);
    border-color: var(--color-primary-orange-dark);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .final-cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== CHECKOUT TRANSFORMATION COMPONENT ===== */
.checkout-transformation {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.checkout-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eaed;
    padding: 24px;
    position: relative;
}

.before-section {
    opacity: 0.85;
    transform: scale(0.98);
}

.after-section {
    border: 2px solid #34a853;
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(52, 168, 83, 0.15);
}

.checkout-header {
    margin-bottom: 20px;
    text-align: center;
}

    .checkout-header h4 {
        font-size: 18px;
        font-weight: 600;
        color: #202124;
        margin-bottom: 4px;
    }

.checkout-subtitle {
    font-size: 14px;
    color: #5f6368;
    font-weight: 400;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

    .delivery-option:hover {
        border-color: #1a73e8;
        background-color: #f8f9ff;
    }

    .delivery-option.selected {
        border-color: #1a73e8;
        background-color: #f8f9ff;
        border-width: 2px;
    }

    .delivery-option.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        background-color: #f8f9fa;
    }

        .delivery-option.disabled:hover {
            border-color: #dadce0;
            background-color: #f8f9fa;
        }

    .delivery-option.highlighted {
        border-color: #34a853;
        background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
        animation: subtle-pulse 3s infinite;
    }

.option-radio {
    margin-right: 16px;
    flex-shrink: 0;
}

.radio-button {
    width: 20px;
    height: 20px;
    border: 2px solid #dadce0;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

    .delivery-option.selected .radio-button,
    .radio-button.checked {
        border-color: #1a73e8;
        background-color: #1a73e8;
    }

.delivery-option.highlighted .radio-button {
    border-color: #34a853;
    background-color: #34a853;
}

.radio-button.checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-name {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 2px;
}

.option-time {
    font-size: 14px;
    color: #5f6368;
}

.option-price {
    font-size: 16px;
    font-weight: 600;
    color: #202124;
    text-align: right;
}

    .option-price.unavailable {
        color: #ea4335;
        font-weight: 500;
        font-style: italic;
    }

.popular-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #34a853;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformation-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
    position: relative;
}

.arrow-container {
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    animation: glow-pulse 2s infinite alternate;
}

.arrow-text {
    white-space: nowrap;
}

.arrow-icon {
    font-size: 18px;
    font-weight: bold;
    animation: bounce-right 2s infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1.02);
        box-shadow: 0 8px 32px rgba(52, 168, 83, 0.15);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 40px rgba(52, 168, 83, 0.25);
    }
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    100% {
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    }
}

@keyframes bounce-right {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }
}

/* Mobile responsiveness for checkout transformation */
@media (max-width: 768px) {
    .checkout-transformation {
        max-width: 100%;
        gap: 20px;
        padding: 16px;
        margin-top: 40px;
    }

    .checkout-section {
        padding: 20px;
    }

    .delivery-option {
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .option-radio {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .option-content {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .option-price {
        text-align: left;
    }

    .arrow-container {
        padding: 10px 16px;
        font-size: 13px;
    }

    .popular-badge {
        position: static;
        align-self: flex-start;
        margin-top: 8px;
    }
}

@media (min-width: 768px) {
    .checkout-transformation {
        gap: 30px;
        padding: 24px;
        max-width: 500px;
    }

    .checkout-section {
        padding: 28px;
    }

    .arrow-container {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact page styles now use global hero improvements */

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
}

.form-container > p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 32px;
}

/* Form Styling */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
}

/* Validation Messages */
.validation-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

/* Form States */
.loading-message,
.success-message,
.error-message {
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    text-align: center;
}

.loading-message {
    background: #e0f2fe;
    color: #0277bd;
    border: 1px solid #b3e5fc;
}

.success-message {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.success-message h3 {
    margin-bottom: 12px;
    color: #1b5e20;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Contact Info Section */
.contact-info {
    padding: 40px 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-dark-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    text-align: center;
}

.contact-method h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.contact-method p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-method .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-container,
    .contact-info {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .form-container,
    .contact-info {
        padding: 24px;
    }
    
    .form-container h2 {
        font-size: 1.75rem;
    }
    
    .contact-methods {
        gap: 24px;
    }
    
    .contact-method .btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .form-container,
    .contact-info {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Enhanced Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: white;
    padding: 80px 0 60px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.hero-subheading {
    font-size: 1.375rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    font-weight: 400;
    line-height: 1.5;
    white-space: pre-line;
}

    .hero-subheading .line {
        display: block;
        margin-bottom: 8px;
    }

        .hero-subheading .line:first-child {
            font-weight: 500;
        }

        .hero-subheading .line:nth-child(2) {
            font-weight: 400;
        }

        .hero-subheading .line:last-child {
            font-weight: 600;
            color: #ffd700;
        }

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    line-height: 1.6;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: linear-gradient(145deg, var(--color-beige-tint), #e9ecef);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

    .dashboard-mockup:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .dashboard-mockup::before {
        content: '';
        position: absolute;
        top: 24px;
        left: 24px;
        right: 24px;
        height: 60px;
        background: linear-gradient(90deg, var(--color-primary-orange), var(--color-primary-orange-light));
        border-radius: 12px;
    }

    .dashboard-mockup::after {
        content: '';
        position: absolute;
        top: 100px;
        left: 24px;
        right: 24px;
        bottom: 24px;
        background: white;
        border-radius: 12px;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    }

/* Import Google Fonts for better typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables - New Color Palette */
:root {
    /* Primary Color Palette */
    --color-primary-orange: #FF8100;
    --color-dark-gray: #424242;
    --color-teal: #6ECDCC;
    --color-light-teal: #abe4d4;
    --color-beige: #E0DCC1;
    --color-dark-blue: #004965;
    --color-success-green: #34a853;
    
    /* Generated Shades */
    --color-primary-orange-light: #FF9B33;
    --color-primary-orange-dark: #E67300;
    --color-primary-orange-darker: #CC5A00;
    
    --color-dark-gray-light: #666666;
    --color-dark-gray-lighter: #888888;
    --color-dark-gray-lightest: #AAAAAA;
    
    --color-teal-light: #8EDBD9;
    --color-teal-dark: #4BBAB7;
    
    --color-dark-blue-light: #336B85;
    --color-dark-blue-lighter: #668FA5;
    
    /* Background Tints */
    --color-orange-tint: #FFF4E6;
    --color-orange-tint-light: #FFF8F0;
    --color-teal-tint: #F0FFFE;
    --color-beige-tint: #F5F3ED;
    --color-blue-tint: #E6F2F7;
    
    /* Status Colors */
    --color-success: var(--color-teal);
    --color-error: #DC2626;
    --color-warning: #F59E0B;
    --color-info: var(--color-dark-blue);
    
    /* Common Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-transparent: transparent;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-width {
    max-width: 750px;
    margin: 0 auto;
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-dark-gray);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-dark-gray-light);
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
}

.small-text {
    font-size: 0.875rem;
    line-height: 1.5;
}
/* Enhanced Button Styles with Animations */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    min-width: 44px;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.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;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-orange) 0%, var(--color-primary-orange-dark) 100%);
    color: white;
    border-color: var(--color-primary-orange);
    box-shadow: 0 8px 25px rgba(255, 129, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-orange-dark) 0%, var(--color-primary-orange-darker) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 129, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary-orange);
    border-color: var(--color-primary-orange);
    box-shadow: 0 4px 14px rgba(255, 129, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 129, 0, 0.25);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 14px;
    font-weight: 700;
}
/* TMS Comparison Section */
.tms-comparison {
    padding: 80px 0;
    background: white;
}

/* Customer Promise Diagram */
.customer-promise-diagram {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.promise-header h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-dark-gray);
}

/* Promise Timeline Styles */
.promise-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.timeline-segment {
    text-align: center;
    flex: 1;
    padding: 0 20px;
}

.segment-header {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.optivery-segment .segment-header {
    background: #ff6b35;
    color: white;
}

.tms-segment .segment-header {
    background: #3b82f6;
    color: white;
}

.segment-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.3;
}

.segment-bar {
    height: 8px;
    border-radius: 4px;
    margin: 0 auto;
    max-width: 120px;
}

.optivery-bar {
    background: #ff6b35;
}

.tms-bar {
    background: #3b82f6;
}

/* Responsibility Bars */
.responsibility-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.responsibility-bar {
    display: flex;
    align-items: center;
    gap: 16px;
}

.responsibility-label {
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 80px;
}

.optivery-responsibility .responsibility-label {
    color: #ff6b35;
}

.tms-responsibility .responsibility-label {
    color: #3b82f6;
}

.responsibility-line {
    flex: 1;
    height: 4px;
    border-radius: 2px;
}

.optivery-responsibility .responsibility-line {
    background: linear-gradient(90deg, #ff6b35 0%, #ff6b35 60%, transparent 60%);
}

.tms-responsibility .responsibility-line {
    background: linear-gradient(90deg, transparent 0%, transparent 60%, #3b82f6 60%, #3b82f6 100%);
}

.tms-examples {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

/* Components Breakdown */
.components-breakdown {
    margin: 60px 0;
}

.components-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.components-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Component Block */
.component-block {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.component-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.component-block.optivery-handled {
    border: 2px solid #ff6b35;
    background: linear-gradient(135deg, #fff5f3 0%, #fef7f6 100%);
}

.component-block.tms-handled {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #f0f6ff 0%, #f7faff 100%);
}

/* Component Detail */
.component-detail {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.component-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.component-detail.optivery-handled {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f3 0%, #fef7f6 100%);
}

.component-detail.tms-handled {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f6ff 0%, #f7faff 100%);
}

/* Component ID */
.component-id {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.component-detail .component-id {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.optivery-handled .component-id {
    background: #ff6b35;
    color: white;
}

.tms-handled .component-id {
    background: #3b82f6;
    color: white;
}

.component-detail.optivery-handled .component-id {
    background: #ff6b35;
    color: white;
}

.component-detail.tms-handled .component-id {
    background: #3b82f6;
    color: white;
}

/* Component Title and Description */
.component-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-dark-gray);
}

.component-detail .component-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-dark-gray);
}

.component-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.component-detail .component-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Handler Labels */
.handled-by {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.handler-label {
    color: #9ca3af;
    margin-right: 4px;
}

.handler-name {
    font-weight: 600;
}

.component-detail .handler-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.optivery-handled .handler-name {
    color: #ff6b35;
}

.tms-handled .handler-name {
    color: #3b82f6;
}

.component-detail.optivery-handled .handler-name {
    color: #ff6b35;
}

.component-detail.tms-handled .handler-name {
    color: #3b82f6;
}

/* Flow Diagram */
.flow-diagram {
    text-align: center;
    margin: 40px 0;
}

.flow-arrow {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Integration Highlight */
.integration-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.highlight-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
}

.highlight-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.integration-benefits .benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}

.integration-benefits .benefit-icon {
    font-size: 1.25rem;
}

/* Explanation Card */
.explanation-card {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0 60px;
    text-align: center;
}

.explanation-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tms-comparison {
        padding: 40px 0;
    }
    
    .customer-promise-diagram {
        padding: 24px;
    }
    
    .promise-timeline {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    
    .timeline-segment {
        margin-bottom: 16px;
        padding: 16px;
        text-align: center;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
    }
    
    .timeline-segment.optivery-segment {
        border-color: #ff6b35;
        background: #fff5f3;
    }
    
    .timeline-segment.tms-segment {
        border-color: #3b82f6;
        background: #f0f6ff;
    }
    
    .segment-header {
        width: 40px;
        height: 40px;
        margin: 0 auto 8px;
        font-size: 1.25rem;
    }
    
    .segment-bar {
        height: 6px;
        max-width: 100px;
        margin: 12px auto;
    }
    
    .responsibility-bars {
        margin-top: 20px;
    }
    
    .responsibility-bar {
        margin-bottom: 12px;
        flex-wrap: wrap;
    }
    
    .responsibility-label {
        min-width: auto;
        margin-bottom: 4px;
    }
    
    .tms-examples {
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }
    
    .components-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .integration-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* Error Boundary */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* Blazor Error UI */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* Desktop/Mobile Display Control */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}
.components-reconnect-modal {
    display: none;
}

/* Enhanced ROI Preview Section */
.roi-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-dark-blue-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.roi-preview .section-title {
    color: white;
}

    .roi-preview::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.roi-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    position: relative;
    z-index: 2;
}

.roi-stat {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .roi-stat:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.15);
    }

.roi-number {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1;
}

.roi-label {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.roi-description {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    font-size: 1.125rem;
    line-height: 1.5;
}

/* Page Specific Styles */
.page-container {
    padding-top: 80px;
}

.features-list {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.feature-detail {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-detail h3 {
    color: #ff6b35;
    margin-bottom: 16px;
}

.feature-detail ul {
    list-style: none;
    padding: 0;
}

.feature-detail ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-detail ul li:before {
    content: "✓ ";
    color: #26b050;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff6b35;
}

.benefit-stat {
    background-color: #fff3f0;
    color: #ff6b35;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin: 16px 0;
    display: inline-block;
}

/* ===== CASE STUDY SECTION ===== */

.case-study {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.case-study-card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 20px 20px 0 0;
}

.case-study-card h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
    text-align: center;
}

.case-study-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #ff6b35;
    text-align: center;
}

.case-study-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
}

.case-study-card p strong {
    color: var(--color-dark-gray);
    font-weight: 600;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8eaed;
}

.result-item {
    background: linear-gradient(135deg, #fff5f3 0%, #fef7f6 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #ffe4e0;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.metric {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.improvement {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1;
}

.before-after {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #e8eaed;
}

/* Conversion Impact Section */
.conversion-impact {
    padding: 80px 0;
    background: white;
}

.conversion-impact .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--color-dark-gray);
}

.benefit-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card li {
    padding: 6px 0;
    color: #4a5568;
    position: relative;
    padding-left: 20px;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 600;
}

/* Enhanced Key Features Section with Step Indicators */
.key-features {
    padding: 120px 0;
    background: linear-gradient(to bottom, var(--color-beige-tint), #ffffff);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    }

.feature-step {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary-orange), var(--color-primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--color-primary-orange);
    background: linear-gradient(135deg, var(--color-primary-orange), var(--color-primary-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
    font-weight: 600;
}

.feature-card p {
    color: var(--color-dark-gray-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Architecture Comparison Section */
.architecture-comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Interactive Architecture Comparison */
.interactive-comparison {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
}

.toggle-container {
    text-align: center;
    margin-bottom: 40px;
}

.toggle-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.architecture-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.architecture-wrapper-mobile {
    position: relative;
    height: 1600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.architecture-wrapper-mobile-trad {
    position: relative;
    height: 1160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.architecture {
    position: absolute;
    max-width: 1000px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    width: 100%;
}

.architecture.active {
    opacity: 1;
}

.flow-diagram {
    position: relative;
    width: 100%;
    height: 600px;
}

.architecture-title {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    font-weight: bold;
    color: var(--color-dark-gray);
}

.traditional .architecture-title {
    color: #666;
}

.with-optivery .architecture-title {
    color: #ff6b35;
}

.architecture-subtitle {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #666;
    text-align: center;
    width: 100%;
}

.node {
    position: absolute;
    background: #c8d8e8;
    border: 2px solid #4a6fa5;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 5;
}

.node:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.node.connected {
    background: #dcfce7;
    border-color: #10b981;
    color: #047857;
}

.node.web {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node.checkout {
    top: 40%;
    left: 15%;
}

.node.warehouse {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.node.delivery {
    bottom: 20%;
    right: 5%;
    background: #e8e8e8;
    border-style: dashed;
}

.node.optivery-service {
    top: 37%;
    right: 15%;
    background: #ff6b35;
    color: white;
    font-weight: bold;
    font-size: 24px;
    padding: 25px 40px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.flow-svg {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.arrow {
    stroke: #4a6fa5;
    stroke-width: 3;
    fill: none;
    transition: all 0.5s ease;
}

.arrow.optivery-arrow {
    stroke: #ff6b35;
    stroke-width: 4;
}

.arrow.feedback {
    stroke-dasharray: 5,5;
    animation: dash 1s linear infinite;
}

.arrow.dead-end {
    stroke: #999;
    stroke-width: 2;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

.flow-label {
    position: absolute;
    font-size: 13px;
    color: #666;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 15;
    max-width: 180px;
}

.incomplete-indicator {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: #ddd;
    font-weight: 200;
    opacity: 0.6;
    pointer-events: none;
    text-align: center;
}

.problem-list, .benefit-list {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    padding: 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-item, .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
    padding: 8px;
}

.problem-icon {
    color: #dc2626;
    font-size: 1rem;
    margin-top: 2px;
}

.benefit-icon {
    color: #059669;
    font-size: 1rem;
    margin-top: 2px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.architecture-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.architecture-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.architecture-card.traditional {
    border: 2px solid #dc2626;
}

.architecture-card.optivery {
    border: 2px solid #ff6b35;
}

.architecture-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.architecture-card.traditional h3 {
    color: #dc2626;
}

.architecture-card.optivery h3 {
    color: #ff6b35;
}

.architecture-visual {
    margin: 24px 0;
}

.diagram-placeholder {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 2px dashed #d1d5db;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagram-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.element {
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.element.disconnected {
    border: 2px solid #dc2626;
    color: #dc2626;
}

.element.connected {
    border: 2px solid #059669;
    color: #059669;
}

.element.central {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    font-weight: 600;
}

.gap-indicator, .feedback-loop {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.gap-indicator {
    background: #fee2e2;
    color: #dc2626;
}

.feedback-loop {
    background: #dcfce7;
    color: #059669;
}

.missing-feedback {
    position: absolute;
    background: rgba(220, 38, 38, 0.1);
    border: 2px dashed #dc2626;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(5px);
    z-index: 20;
}

/* Flow Step Elements for mobile/desktop consistency */
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 16px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
}

.flow-step.connected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f3 0%, #fef7f6 100%);
}

.flow-step.dead-end {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    opacity: 0.8;
}

.step-icon {
    font-size: 2rem;
    min-width: 48px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    min-width: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--color-dark-gray);
}

.step-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

/* Tablet Breakpoint (768px - 1024px) */
@media (max-width: 1024px) {
    .architecture-wrapper-mobile {
        position: relative;
        height: 1600px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .architecture-wrapper-mobile-trad {
        position: relative;
        height: 1160px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {
    /* Base Mobile Styles for Architecture */
    .architecture-comparison {
        padding: 40px 0;
    }

    .interactive-comparison {
        margin-top: 32px;
    }

    .toggle-container {
        margin-bottom: 32px;
        text-align: center;
    }

    .toggle-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        background: #ff6b35;
        color: white;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
        min-height: 54px;
    }

    .toggle-btn:hover {
        background: #e55a2b;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    }

    /* Desktop/Mobile Display Control */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    /* Mobile Flow Design */
    .mobile-flow {
        padding: 24px 16px;
        height: 1300px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .architecture.active .mobile-flow {
        opacity: 1;
        transform: translateY(0);
    }

    .architecture-title {
        font-size: 1.375rem;
        font-weight: 700;
        margin-bottom: 8px;
        text-align: center;
        color: var(--color-dark-gray);
        margin-top: 20px;
        width: 100%;
        position: static;
        transform: none;
        left: auto;
    }

    .architecture-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        text-align: center;
        color: #6b7280;
        line-height: 1.5;
        margin-top: 10px;
        position: static;
        transform: none;
        left: auto;
    }

    /* Flow Indicator */
    .flow-indicator {
        text-align: center;
        margin-bottom: 32px;
        margin-top: 40px;
    }

    .flow-indicator.traditional .indicator-text {
        background: #f3f4f6;
        color: #6b7280;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        border: 2px solid #e5e7eb;
    }

    .flow-indicator.optivery .indicator-text {
        background: linear-gradient(135deg, #ff6b35, #f7931e);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    }

    /* Mobile Flow Steps */
    .mobile-flow-steps {
        margin: 32px 0;
        padding: 0 8px;
    }

    /* Flow Arrows - Centered and Better Spaced */
    .flow-arrow {
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        color: #4a6fa5;
        margin: 12px auto;
        padding: 8px 0;
        position: relative;
        display: block;
        width: 100%;
        max-width: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    .flow-arrow.connected {
        color: #ff6b35;
    }

    .mobile-only .flow-arrow.connected {
        color: white;
        background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
        border-radius: 50px;
        padding: 12px 16px;
    }

    .flow-arrow.dead-end {
        color: #dc2626;
    }

    /* Feedback Indicators */
    .feedback-indicator {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 11px;
        color: #ff6b35;
        background: rgba(255, 255, 255, 0.95);
        padding: 3px 6px;
        border-radius: 8px;
        border: 1px solid #ff6b35;
        font-weight: 500;
        white-space: nowrap;
        z-index: 1;
    }

    /* Optivery Service Mobile */
    .optivery-service-mobile {
        margin: 20px 8px;
        padding: 24px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
        position: relative;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 12px;
        animation: spin 3s linear infinite;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .service-content h4 {
        font-size: 1.25rem;
        font-weight: 700;
        margin: 0 0 8px 0;
    }

    .service-content p {
        font-size: 0.875rem;
        margin: 0 0 16px 0;
        opacity: 0.9;
    }

    .feedback-arrows {
        display: flex;
        justify-content: space-around;
        margin-top: 16px;
    }

    .feedback-arrow {
        font-size: 12px;
        font-weight: 600;
        opacity: 0.9;
    }

    .feedback-arrow.up {
        animation: bounce-up 2s ease-in-out infinite;
    }

    .feedback-arrow.down {
        animation: bounce-down 2s ease-in-out infinite;
    }

    @keyframes bounce-up {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
    }

    @keyframes bounce-down {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(4px); }
    }

    /* Problem/Benefit Lists Mobile */
    .problem-list.mobile,
    .benefit-list.mobile {
     margin-top: 24px;
        padding: 8px 8px;
        bottom: -280px;
        position: static;
    }

    .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin: 0 0 12px 0;
        padding: 16px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 2px solid #f1f5f9;
        font-size: 14px;
        line-height: 1.5;
        position: relative;
        border-color: #34a853;
        background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    }

    .problem-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin: 0 0 12px 0;
        padding: 16px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 2px solid #f1f5f9;
        font-size: 14px;
        line-height: 1.5;
        position: relative;
        border-color: #dc2626;
        background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    }

    .problem-icon,
    .benefit-icon {
        font-size: 1.25rem;
        min-width: 24px;
        flex-shrink: 0;
        text-align: center;
        margin-top: 2px;
    }

    /* Grid layout mobile optimization */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Small Mobile Breakpoint (max-width: 480px) */
@media (max-width: 480px) {
    .architecture-title {
        font-size: 1.125rem;
        margin-top: 20px;
        width: 100%;
    }

    .toggle-btn {
        padding: 14px 20px;
        font-size: 15px;
        max-width: 280px;
    }

    /* Small screen mobile flow adjustments */
    .mobile-flow {
        padding: 20px 8px;
    }

    .mobile-flow-steps {
        padding: 0 4px;
    }

    .flow-step {
        padding: 16px;
        gap: 12px;
        margin: 0 0 12px 0;
    }

    .step-icon {
        font-size: 1.75rem;
        min-width: 42px;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .flow-arrow {
        margin: 8px auto;
        font-size: 1.25rem;
    }

    .optivery-service-mobile {
        padding: 20px;
        margin: 16px 4px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .feedback-indicator {
        font-size: 10px;
        padding: 2px 4px;
        top: 8px;
        right: 8px;
    }
}

/* Desktop Architecture Display (min-width: 769px) */
@media (min-width: 769px) {
    /* Show desktop version, hide mobile version */
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }

    /* Reset toggle button for desktop */
    .toggle-btn {
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: white;
        padding: 12px 32px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
        max-width: none;
        width: auto;
        min-height: auto;
    }

    .toggle-btn:hover {
        background: linear-gradient(135deg, #e55a2b 0%, #e0831a 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    }
}
