/* old working default / light mode colours and design */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Compact Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-text {
    font-size: 18px;
    font-weight: 900;
    color: #fcfcfc !important;
    text-decoration: none;
    letter-spacing: -0.03em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-cta-button.primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    font-weight: 700;
}

.nav-cta-button.secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.nav-cta-button:hover {
    transform: translateY(-1px);
}

.nav-cta-button.primary:hover {
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
}

.nav-cta-button.secondary:hover {
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.nav-cta-button:active {
    transform: translateY(0);
}

/* Optimized Hero Section */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    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: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-title-main {
    display: block;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-description strong {
    color: #1a1a1a;
    font-weight: 600;
}



.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(10px);
}

.glow-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
        transform: scale(1);
    }
}

.live-text {
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
}

.kpi-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.kpi-item {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.kpi-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    transition: width 0.3s ease;
}

.kpi-item:hover::after {
    width: 100%;
}

.kpi-number {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.kpi-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e2e8f0;
}

.cta-button.secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-visual {
    position: relative;
}

.visual-container {
    position: relative;
    overflow: hidden;
}

.live-data-header {
        text-align: center;
    margin-bottom: 24px;
}

.kpi-data-footer {
    padding: 0;
    background: none;
    border: none;
}

.hero-visual .video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    margin-bottom: 32px;
    position: relative;
}

.hero-visual .video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

/* Social Proof Under Video */
.social-proof-under-video {
    padding: 40px 0;
    background: white;
}

.proof-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 0;
    background: none;
    border: none;
    box-shadow: none;
    position: relative;
}

.proof-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.proof-stat {
    text-align: center;
        padding: 0 8px;
    min-width: 140px;
}

.proof-number {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    display: block;
    margin-bottom: 6px;
}

.proof-label {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 4px;
}

.proof-subtitle {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    line-height: 1.3;
}

.proof-benchmark {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.proof-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
}

/* Comparison Container Styles */
.comparison-container {
    padding: 60px 0;
    text-align: center;
}

.comparison-headline {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-column {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comparison-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.comparison-column:hover::after {
    opacity: 1;
}

.winner-column {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    transform: scale(1.02);
}

.winner-column:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.loser-column {
    border-color: #e5e7eb;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    opacity: 0.85;
    transform: scale(0.98);
}

.loser-column:hover {
    transform: scale(0.99);
    opacity: 0.9;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.column-header {
    text-align: center;
    margin-bottom: 32px;
}

.winner-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 16px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.loser-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 16px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.column-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    transition: all 0.3s ease;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.stat-item:hover::before {
    left: 100%;
}

.winner-column .stat-item {
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.15);
}

.winner-column .stat-item:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
}

.loser-column .stat-item {
    background: rgba(107, 114, 128, 0.08);
    border: 2px solid rgba(107, 114, 128, 0.15);
}

.loser-column .stat-item:hover {
    background: rgba(107, 114, 128, 0.15);
    border-color: rgba(107, 114, 128, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #000000 !important;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
}

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

.winner-column .stat-number {
    color: #000000;
}

.loser-column .stat-number {
    color: #000000;
}

.stat-label {
    font-size: 14px;
    color: #000000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
}

.stat-detail {
    font-size: 12px;
    color: #000000 !important;
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

.stat-advantage {
    font-size: 11px;
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.stat-disadvantage {
    font-size: 11px;
    color: #ef4444;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
}

.comparison-summary {
    text-align: center;
    margin-top: 40px;
}

.summary-text {
    font-size: 20px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

.summary-text strong {
    color: #10b981;
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Ensure cost comparison fits on small screens */
    .cost-comparison {
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .cost-arrow {
        width: 100%;
        min-height: 24px;
        height: 24px;
        border-radius: 6px;
    }
    .comparison-container {
        padding: 40px 0;
    }
    
    .comparison-headline {
        font-size: 24px;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .comparison-divider {
        display: none;
    }
    
    .comparison-column {
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .winner-column,
    .loser-column {
        transform: none;
        opacity: 1;
    }
    
    .winner-column:hover,
    .loser-column:hover {
        transform: translateY(-2px);
    }
    
    .column-title {
        font-size: 18px;
    }
    
    .comparison-stats {
        gap: 16px;
    }
    
    .stat-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .stat-item:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    .stat-number {
        font-size: 26px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .stat-detail {
        font-size: 11px;
    }
    
    .stat-advantage,
    .stat-disadvantage {
        font-size: 10px;
    }
    
    .summary-text {
        font-size: 18px;
        padding: 0 16px;
    }
    
    .winner-badge,
    .loser-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .comparison-headline {
        font-size: 22px;
    }
    
    .comparison-column {
        padding: 24px 16px;
    }
    
    .stat-item {
        padding: 14px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .column-title {
        font-size: 16px;
    }
}

/* Quick Results Preview Section */
.quick-results-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
}

.quick-results-header {
    text-align: center;
    margin-bottom: 48px;
}

.quick-results-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.quick-results-subtitle {
    font-size: 18px;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.quick-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.quick-result-card {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 32px 24px;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.quick-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-result-card:hover::before {
    opacity: 1;
}

.quick-result-card:hover {
    transform: translateY(-2px);
}

.quick-result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.quick-result-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.quick-result-icon i {
    font-size: 28px;
    color: white;
}

.quick-result-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.quick-result-label {
    font-size: 16px;
    font-weight: 600;
    color: #d1d5db;
        margin-bottom: 8px;
}

.quick-result-detail {
    font-size: 14px;
    color: #9ca3af;
}

.quick-result-benchmark {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.quick-results-cta {
    text-align: center;
}

.quick-results-cta .cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.3);
}

.quick-results-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1);
}

.video-container wistia-player {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    display: block !important;
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background: white;
}

/* Client Logos Section */
.client-logos-section {
    margin-bottom: 10px;
    text-align: center;
}

.logos-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.logos-carousel, .messages-carousel, .endorsements-carousel {
    position: relative;
    overflow: hidden;
    padding: 5px 0;
    /* Make containers full width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Prevent horizontal scroll */
    max-width: 100vw;
    box-sizing: border-box;
}

.logos-track {
    position: relative;
    width: 100%;
    height: 100px;
    /* Remove fallback animation to prevent conflicts */
}

.logo-item {
    position: absolute;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 160px;
    max-width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* Ensure logos don't overflow their containers */
    overflow: hidden;
}

.company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* LinkedIn Messages Section */
.linkedin-messages-section {
    margin-bottom: 10px;
}

.messages-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.messages-track {
    position: relative;
    width: 100%;
    height: 200px;
    /* Remove fallback animation to prevent conflicts */
}

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

 

.message-card {
    position: absolute;
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    min-width: 280px;
    max-width: 400px;
    box-sizing: border-box;
}



.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sender-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sender-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.sender-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.sender-title {
    font-size: 13px;
    color: #64748b;
}



.message-content {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.message-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Email Endorsements Section */
.email-endorsements-section {
    margin-bottom: 10px;
}

.endorsements-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.endorsements-track {
    position: relative;
    width: 100%;
    height: 240px;
    /* Remove fallback animation to prevent conflicts */
}

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

 

.endorsement-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 360px;
    max-width: 480px;
    box-sizing: border-box;
}



.endorsement-header {
        display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.endorser-info {
        display: flex;
        align-items: center;
    gap: 12px;
}

.endorser-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    color: white;
    font-weight: 700;
        font-size: 16px;
}

.endorser-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
        margin-bottom: 2px;
    }
    
.endorser-title {
    font-size: 14px;
    color: #64748b;
}

.endorsement-rating {
        display: flex;
    gap: 2px;
}

.endorsement-rating i {
    color: #fbbf24;
        font-size: 16px;
    }
    
.endorsement-content {
        font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.endorsement-results {
    display: flex;
    gap: 32px;
    justify-content: space-between;
}

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

.result-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 4px;
}

.result-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats Section */
.quick-stats-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 48px;
    margin-top: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.stats-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.stats-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stats-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.5;
}

/* Infrastructure Section */
.infrastructure-section {
    margin-bottom: 40px;
}

.infrastructure-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.infrastructure-category {
    margin-bottom: 32px;
}

.category-title {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 1px;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.infrastructure-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.infrastructure-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.infrastructure-item:hover::before {
    left: 100%;
}

.infrastructure-item:hover {
    background: white;
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.infrastructure-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-width: 100%;
}

.infrastructure-item:hover .infrastructure-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.infrastructure-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.infrastructure-type {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::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.6s ease;
    pointer-events: none;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
}



.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(5, 150, 105, 0.1);
}

.stat-label {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.stat-detail {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Results Partners Section */
.results-partners {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.results-partners-title {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 24px;
}

.results-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.results-partner-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.results-partner-item:hover {
    background: white;
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.results-partner-logo {
    width: 100%;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-width: 100px;
}

.results-partner-item:hover .results-partner-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Trust Indicators */


/* Strategic Consultation Workshop Section */
.consultation-workshop-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.workshop-header {
    text-align: center;
    margin-bottom: 60px;
}

.workshop-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.badge-icon {
    font-size: 16px;
}

.workshop-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.workshop-subtitle {
    font-size: 20px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.workshop-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop-overview {
    margin-bottom: 60px;
}

.overview-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.overview-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.overview-subtitle {
    font-size: 16px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.overview-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.category-section:hover {
    background: white;
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.category-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 12px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 2px;
}

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

.overview-item {
    text-align: center;
    padding: 28px 24px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.overview-item::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.6s ease;
    pointer-events: none;
}

.overview-item:hover::before {
    left: 100%;
}

.overview-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.2);
}

.overview-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.overview-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.overview-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.conversion-journey {
    margin-bottom: 80px;
}

.journey-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.journey-subtitle {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-stage {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.journey-stage:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stage-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.stage-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    flex: 1;
}

.stage-duration {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stage-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.stage-icon {
    font-size: 48px;
    flex-shrink: 0;
    margin-top: 8px;
}

.stage-description {
    flex: 1;
}

.stage-description p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 16px;
}

.stage-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-benefits li {
    font-size: 14px;
    color: #6b7280;
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.stage-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.journey-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 32px;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    border-radius: 1px;
}

.connector-arrow {
    font-size: 24px;
    color: #10b981;
    font-weight: 700;
    margin: 0 16px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.result-item {
    text-align: center;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.result-number {
    font-size: 20px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 4px;
}

.result-label {
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.highlight-text {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.service-options {
    margin-bottom: 60px;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.options-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.options-subtitle {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    width: 100%;
    justify-content: center;
    margin-bottom: 60px;
}

.option-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-card.diy-path {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.option-card.full-service {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.option-card.infrastructure {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.option-header {
    margin-bottom: 24px;
}

.option-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.option-price {
    font-size: 20px;
    font-weight: 800;
    color: #10b981;
    background: white;
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.option-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.option-benefits {
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.option-cta {
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    width: 100%;
    text-align: center;
}

.cta-text {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-section {
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    width: 100%;
    margin: 0 auto;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.comparison-cell {
    padding: 20px 16px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.comparison-row:not(.header) .comparison-cell {
    background: rgba(255, 255, 255, 0.8);
    color: #374151;
}

.comparison-row:not(.header) .comparison-cell:nth-child(1) {
    background: rgba(16, 185, 129, 0.05);
    font-weight: 700;
    color: #111827;
}

.workshop-cta {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.workshop-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-header {
    margin-bottom: 40px;
}

.cta-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.highlight-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.cta-guarantee {
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: 2px solid rgba(16, 185, 129, 0.4);
    position: relative;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.guarantee-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3), 0 0 20px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 1;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3), 0 0 20px rgba(16, 185, 129, 0.4);
    }
    to {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3), 0 0 30px rgba(16, 185, 129, 0.6);
    }
}

.guarantee-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.guarantee-icon {
    font-size: 24px;
}

.guarantee-title {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    text-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.guarantee-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 16px;
}

.guarantee-content p:last-child {
    margin-bottom: 0;
}

.guarantee-content strong {
    color: #10b981;
    font-weight: 700;
}

.pricing-filter {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    backdrop-filter: blur(10px);
}

.filter-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 4px;
}

.filter-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.filter-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}



.cta-action {
    margin-top: 32px;
}

.price-highlight {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.original-price {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 600;
}

.current-price {
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
    text-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workshop-title {
        font-size: 28px;
    }
    
    .workshop-subtitle {
        font-size: 18px;
    }
    
    .overview-card {
        padding: 32px 24px;
    }
    
    .overview-categories {
        gap: 32px;
    }
    
    .category-section {
        padding: 24px 20px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .overview-item {
        padding: 24px 20px;
    }
    
    .journey-title {
        font-size: 28px;
    }
    
    .journey-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .journey-stage {
        padding: 24px 20px;
        margin: 0 16px;
    }
    
    .stage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .stage-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .stage-icon {
        font-size: 36px;
        align-self: center;
    }
    
    .journey-connector {
        margin: 0 16px;
    }
    
    .connector-arrow {
        transform: rotate(90deg);
    }
    
    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .result-item {
        padding: 12px;
    }
    
    .result-number {
        font-size: 18px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-cell {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .option-card {
        padding: 24px 20px;
    }
    
    .service-options {
        gap: 24px;
        margin: 30px 16px;
    }
    
    .comparison-table {
        font-size: 11px;
    }
    
    .comparison-cell {
        padding: 8px 4px;
        font-size: 11px;
        min-height: 40px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .comparison-section {
        padding: 24px 16px;
        margin: 16px !important;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .workshop-cta {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .cta-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlight-item {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .workshop-title {
        font-size: 24px;
    }
    
    .journey-title {
        font-size: 24px;
    }
    
    .stage-title {
        font-size: 20px;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .options-title {
        font-size: 24px;
    }
    
    .option-title {
        font-size: 20px;
    }
    
    .option-price {
        font-size: 18px;
        padding: 6px 12px;
    }
    
    .option-description {
        font-size: 14px;
    }
    
    .benefit-item {
        font-size: 13px;
    }
    
    .comparison-title {
        font-size: 18px;
    }
    
    .comparison-cell {
        font-size: 10px;
        padding: 6px 2px;
    }
    
    /* Mobile Footer Disclaimer */
    .footer-disclaimer {
        margin-top: 24px;
        padding: 16px;
    }
    
    .footer-disclaimer h4 {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .disclaimer-section h5 {
        font-size: 13px;
    }
    
    .disclaimer-section p {
        font-size: 11px;
    }
    
    .disclaimer-contact h5 {
        font-size: 13px;
    }
    
    .disclaimer-contact p {
        font-size: 11px;
    }
}

.value-content {
    max-width: 800px;
    margin: 0 auto;
}

.value-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 40px;
}

.value-subtitle:first-child {
    margin-top: 0;
}

.value-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 32px 0;
}

.tier {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.tier-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.tier-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Strategy Section */
.strategy-section {
    padding: 10px 0;
   
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.option-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.option-card.done-for-you::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.option-card.infrastructure::before {
    background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.option-header {
    text-align: center;
    margin-bottom: 32px;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.option-card.infrastructure .option-icon {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.option-icon i {
    font-size: 32px;
    color: white;
}

.option-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.option-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.option-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.benefit-item i {
    color: #16a34a;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-section {
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Our Service Pricing */
.our-service-pricing {
    text-align: center;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #16a34a;
}

.price-period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.price-description {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* DIY Comparison */
.diy-comparison {
    margin-bottom: 32px;
}

.comparison-header {
    text-align: center;
    margin-bottom: 24px;
}

.comparison-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}

.comparison-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cost-breakdown {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cost-category {
    margin-bottom: 32px;
}

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

.cost-category h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.cost-item.total {
    font-weight: 700;
    font-size: 16px;
    color: #dc2626;
    border-top: 2px solid rgba(220, 38, 38, 0.2);
    border-bottom: none;
    padding-top: 12px;
    margin-top: 8px;
}

.item-name {
    color: #444;
    flex: 1;
}

.item-cost {
    font-weight: 600;
    color: #dc2626;
    text-align: right;
    min-width: 120px;
}

.cost-item.total .item-cost {
    color: #dc2626;
    font-size: 18px;
}

.cost-note {
    margin-top: 16px;
    padding: 12px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.cost-note em {
    font-size: 13px;
    color: #92400e;
    font-style: italic;
}

.value-proposition {
    margin: 20px 0;
    padding: 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.value-header i {
    color: #f59e0b;
    font-size: 16px;
}

.value-header span {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-proposition p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.industry-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.comparison-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.comparison-value {
    font-size: 16px;
    font-weight: 700;
}

.comparison-item:first-child .comparison-value {
    color: #dc2626;
}

.comparison-item:last-child .comparison-value {
    color: #16a34a;
}

.savings-highlight {
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 8px;
    margin-top: 8px;
}

.savings-text {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Desktop optimization for 3-column layout */
@media (min-width: 1200px) {
    .strategy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Tablet optimization for 2-column layout */
@media (min-width: 768px) and (max-width: 1199px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .strategy-card {
        min-height: 540px;
    }
    
    .cost-advantage {
        min-height: 150px;
    }
    
    .cost-item {
        min-width: 130px;
    }
}

.strategy-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

/* Desktop card optimization */
@media (min-width: 1200px) {
    .strategy-card {
        padding: 36px;
        min-height: 560px;
    }
    
    .strategy-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .strategy-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .benefit-highlight {
        margin: 32px 0;
        padding: 28px;
    }
    
    .benefit-metric .metric-value {
        font-size: 25px;
    }
    
    .benefit-metric .metric-label {
        font-size: 12px;
    }
    
    .cost-advantage {
        margin-top: 24px;
        padding: 20px;
        min-height: 140px;
    }
    
    .cost-item {
        min-width: 120px;
    }
    
    .cost-label {
        font-size: 11px;
    }
    
    .cost-value {
        font-size: 18px;
    }
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.strategy-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.strategy-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.strategy-icon i {
    font-size: 24px;
    color: white;
}

.card-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.strategy-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.strategy-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.strategy-features {
    list-style: none;
}

.strategy-features li {
    display: flex;
    align-items: center;
    gap: 12px;
        margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.strategy-features i {
    color: #10b981;
    font-size: 16px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 28px 0;
    padding: 24px;
    
    border-radius: 16px;
    border: 1px solid rgba(34, 197, 94, 0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.benefit-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    
}

.benefit-metric {
    text-align: center;
    position: relative;
    z-index: 1;
}

.benefit-metric .metric-value {
    font-size: 25px;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 6px;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(34, 197, 94, 0.1);
}

.benefit-metric .metric-label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.2) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.cost-advantage {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(29, 78, 216, 0.06) 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    position: relative;
    overflow: visible;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 120px;
}

.cost-advantage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    
}

.cost-header {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-bottom: 12px;
}

.cost-header i {
    color: #1d4ed8;
    font-size: 14px;
}

.cost-header span {
    font-size: 12px;
    font-weight: 700;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-comparison {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    align-items: stretch;
    width: 100%;
    margin-bottom: 12px;
    gap: 8px;
}

.cost-item {
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 100px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cost-item.market {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cost-item.ours {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.08) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.cost-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cost-label {
    display: block;
    font-size: 10px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cost-value {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cost-item.market .cost-value {
    color: #dc2626;
}

.cost-item.ours .cost-value {
    color: #16a34a;
}

.cost-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 100%;
    min-height: 28px;
   
    border-radius: 8px;
    
    font-size: 12px;
    font-weight: 600;
    
}

.savings-badge {
    text-align: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 3px 8px rgba(22, 163, 74, 0.3);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.savings-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.savings-badge i {
    font-size: 11px;
    color: white;
}

.savings-text {
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* Consultation Section */
.consultation-section {
    padding: 10px 0;
    background: white;
}

.consultation-card {
    max-width: 800px;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    padding: 48px 0;
    box-shadow: none;
    border: none;
    position: relative;
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.consultation-header {
    text-align: center;
    margin-bottom: 40px;
}

.consultation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.consultation-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.consultation-subtitle {
    font-size: 18px;
    color: #666;
}

.consultation-overview {
    margin-bottom: 48px;
}

.overview-highlight {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

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

.highlight-stat .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #1d4ed8;
        margin-bottom: 8px;
    }
    
.highlight-stat .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.consultation-description {
    margin-bottom: 32px;
}

.description-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.description-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.consultation-features {
    margin-bottom: 48px;
}

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    text-align: center;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #3b82f6;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.consultation-outcomes {
    margin-bottom: 48px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(29, 78, 216, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.outcomes-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.outcomes-description {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: center;
}

.outcomes-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.outcome-option {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.outcome-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.outcome-option i {
    color: #3b82f6;
    font-size: 32px;
    margin-bottom: 16px;
}

.outcome-option h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.outcome-option p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.consultation-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding: 32px 0;
    background: none;
    border-radius: 0;
    border: none;
    position: relative;
}

.consultation-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(29, 78, 216, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
}

.price-container {
    text-align: center;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
}

.price-note {
    font-size: 14px;
    color: #666;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    font-weight: 600;
}

.consultation-cta {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.consultation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
}

.consultation-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #10b981;
    font-weight: 600;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: #f8fafc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.result-header {
    padding: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.result-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.result-metrics {
    display: flex;
    gap: 32px;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 32px;
    font-weight: 800;
    color: #3b82f6;
    display: block;
}

.metric-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-image .social-links {
    margin-top: 20px;
    justify-content: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 4px solid white;
}

.about-text {
    padding-top: 20px;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.about-text .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.about-title {
    font-size: 16px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.about-description:last-child {
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    color: white;
}

.social-link i {
    font-size: 16px;
}

.social-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-image {
        width: 240px;
        height: 240px;
    }
    
    .about-text .section-title {
        font-size: 28px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    color: white;
        text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
        gap: 8px;
    color: #f59e0b;
    font-weight: 600;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #111827 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.contact-item i {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
   
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    align-items: center;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: white;
}

/* Footer Disclaimer Styling */
.footer-disclaimer {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-section {
    margin-bottom: 20px;
}

.disclaimer-section h5 {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.disclaimer-section p {
    color: #d1d5db;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.disclaimer-contact {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer-contact h5 {
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.disclaimer-contact p {
    color: #d1d5db;
    font-size: 12px;
    margin-bottom: 0;
}

.disclaimer-contact a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.disclaimer-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }
    
    .nav-cta {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-logo .logo-text {
        font-size: 16px;
        font-weight: 900;
        color: #1a1a1a;
        letter-spacing: -0.03em;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .nav-cta-button {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        padding: 8px 12px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
        letter-spacing: -0.01em;
        white-space: nowrap;
    }
    
    .nav-cta-button.primary {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
        font-weight: 700;
    }
    
    .nav-cta-button.secondary {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    }
    
    .nav-cta-button:hover {
        transform: translateY(-1px);
    }
    
    .nav-cta-button.primary:hover {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    }
    
    .nav-cta-button.secondary:hover {
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    }
    
    .nav-cta-button:active {
        transform: translateY(0);
    }
    
    /* Mobile Hero Section Optimization */
    .hero {
        padding: 80px 0 20px; /* Account for fixed navbar */
        min-height: 100vh;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-height: calc(100vh - 80px); /* Subtract navbar height */
    }
    
    /* Mobile hero content reordering */
    .hero-content {
        order: 1; /* Content is now FIRST since video is inside it */
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 2; /* Visual is now SECOND */
    }
    
    /* Mobile badge replacement */
    .hero-badge {
        display: none; /* Hide blue badge on mobile */
    }
    
    /* Hide desktop elements on mobile */
    .hero-visual .live-data-header.desktop-only {
        display: none; /* Hide desktop green bubble on mobile */
    }
    
    .hero-visual .video-container.desktop-only {
        display: none; /* Hide desktop video on mobile */
    }
    
    /* Hide KPI data footer on mobile */
    .kpi-data-footer {
        display: none; /* Hide KPI data on mobile */
    }
    
    /* Show mobile elements */
    .hero-content .live-data-header.mobile-only {
        display: block; /* Show mobile green bubble */
        order: 1; /* First item in content */
        margin-bottom: 0;
    }
    
    .hero-content .video-container.mobile-only {
        display: block; /* Show mobile video in content */
        order: 3; /* Third item - after title, before description */
        margin-bottom: 0;
    }
    
    .hero-title {
        order: 2; /* Second item in content */
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .hero-title-main {
        font-size: 26px;
        margin-bottom: 4px;
    }
    
    .hero-title-highlight {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .hero-description {
        display: block; /* Show description on mobile */
        order: 4; /* Fourth item in content - after video */
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 0;
        color: #666;
    }
    
    .hero-cta {
        order: 5; /* Fifth item in content */
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .cta-button.large {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    /* Mobile Video Container - now in hero-visual */
    .hero-visual .video-container.mobile-only {
        display: block; /* Show mobile video in hero-visual */
        order: 1; /* First item in hero-visual */
        margin-bottom: 16px;
    }
    
    /* Mobile Live Data Header */
    .live-data-header {
        margin-bottom: 12px;
        font-size: 14px;
    }
    
    /* Mobile KPI Data Footer */
    .kpi-data-footer {
        padding: 12px 0;
    }
    
    /* Mobile Proof Stats */
    .proof-highlight {
        gap: 16px;
        padding: 20px 0;
        flex-wrap: wrap;
    }
    
    .proof-stat {
        min-width: 100px;
        padding: 0 4px;
    }
    
    .proof-number {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .proof-label {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .proof-subtitle {
        font-size: 10px;
    }
    
    .proof-benchmark {
        font-size: 9px;
    }
    
    .proof-divider {
        display: none;
    }
    
    /* Mobile Navigation Optimization */
    .navbar {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }
    
    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }
    
    .nav-logo .logo-text {
        font-size: 16px;
        font-weight: 900;
        color: #1a1a1a;
        letter-spacing: -0.03em;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .nav-cta-button {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        color: white;
        padding: 8px 12px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
        letter-spacing: -0.01em;
        white-space: nowrap;
    }
    
    .nav-cta-button.primary {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
        font-weight: 700;
    }
    
    .nav-cta-button.secondary {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    }
    
    .nav-cta-button:hover {
        transform: translateY(-1px);
    }
    
    .nav-cta-button.primary:hover {
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    }
    
    .nav-cta-button.secondary:hover {
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
    }
    
    .nav-cta-button:active {
        transform: translateY(0);
    }
    
    /* Mobile container adjustments */
    .container {
        padding: 0 12px;
    }
    
    /* Mobile text adjustments */
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Mobile strategy grid */
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }
    
    .strategy-card {
        padding: 24px 20px;
        border-radius: 20px;
        min-height: auto;
        flex-direction: column;
        overflow: visible;
    }
    
    .cost-advantage {
        margin-top: 16px;
        padding: 12px;
        min-height: 100px;
    }
    
    .cost-comparison {
        margin-bottom: 10px;
        gap: 6px;
    }
    
    .cost-item {
        padding: 8px 10px;
        min-width: 90px;
    }
    
    .cost-label {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .cost-value {
        font-size: 10px;
    }
    
    .cost-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .savings-badge {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .card-header {
        margin-bottom: 20px;
    }
    
    .strategy-icon {
        width: 48px;
        height: 48px;
    }
    
    .strategy-icon i {
        font-size: 20px;
    }
    
    .card-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .strategy-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .strategy-description {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .benefit-highlight {
        margin: 24px 0;
        padding: 20px;
    }
    
    .benefit-metric .metric-value {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .benefit-metric .metric-label {
        font-size: 10px;
    }
    
    .benefit-divider {
        height: 40px;
    }
    
    .cost-advantage {
        margin-top: 16px;
        padding: 16px;
    }
    
    .cost-header {
        margin-bottom: 12px;
    }
    
    .cost-header i {
        font-size: 14px;
    }
    
    .cost-header span {
        font-size: 13px;
    }
    
    .cost-comparison {
        margin-bottom: 12px;
        gap: 8px;
    }
    
    .cost-item {
        padding: 10px 12px;
    }
    
    .cost-label {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .cost-value {
        font-size: 16px;
    }
    
    .cost-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .savings-badge {
        padding: 8px 12px;
    }
    
    .savings-badge i {
        font-size: 11px;
    }
    
    .savings-text {
        font-size: 11px;
    }
    
    /* Mobile consultation card */
    .consultation-card {
        padding: 24px 16px;
    }
    
    /* Mobile consultation features */
    .consultation-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Mobile consultation pricing */
    .consultation-pricing {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Mobile carousel optimizations */
    .logos-carousel {
        padding: 5px 0;
    }
    
    .logo-item {
        min-width: 100px;
        height: 50px;
        padding: 10px 15px;
    }
    
    .messages-carousel {
        padding: 5px 0;
    }
    
    .message-card {
        min-width: 280px;
        padding: 16px;
    }
    
    .endorsements-carousel {
        padding: 5px 0;
    }
    
    .endorsement-card {
        min-width: 280px;
        padding: 16px;
    }
    
    /* Mobile horizontal scroll prevention */
    .logos-carousel, .messages-carousel, .endorsements-carousel {
        width: 100%;
        margin-left: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .logos-track, .messages-track, .endorsements-track {
        overflow: hidden;
    }
    
    /* Mobile strategy highlight fix */
    .strategy-highlight {
        margin: 20px 16px;
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .highlight-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-item {
        padding: 8px 0;
    }
    
    .metric-item .metric-number {
        font-size: 28px;
    }
    
    .metric-item .metric-label {
        font-size: 12px;
    }
    
    /* Mobile service options optimization */
    .service-options {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0;
    }
    
    .option-card {
        padding: 24px 16px;
        border-radius: 16px;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px 0 !important;
    }
    
    /* Override inline styles for mobile */
    .strategy-section .service-options {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    
    .strategy-section .service-options .option-card.done-for-you,
    .strategy-section .service-options .option-card.infrastructure {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px 0 !important;
        flex: none !important;
    }
    
    .strategy-section .service-options .option-card {
        padding: 24px 16px !important;
        height: auto !important;
    }
    
    .strategy-section .service-options .option-card .option-header {
        margin-bottom: 20px !important;
    }
    
    .strategy-section .service-options .option-card .option-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
        margin-bottom: 16px !important;
    }
    
    .strategy-section .service-options .option-card .option-title {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    
    .strategy-section .service-options .option-card .option-subtitle {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile optimization for options-row section */
    .options-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
    }
    
    .options-row .option-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px 0 !important;
    }
    
    .options-row .option-card.full-service,
    .options-row .option-card.infrastructure {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 24px 0 !important;
    }
    
    /* Mobile styles for option cards in options-row */
    .options-row .option-card {
        padding: 24px 16px !important;
    }
    
    .options-row .option-card .option-header {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .options-row .option-card .option-title {
        font-size: 18px !important;
        margin-bottom: 8px !important;
    }
    
    .options-row .option-card .option-price {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .options-row .option-card .option-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .options-row .option-card .option-benefits {
        margin-bottom: 20px !important;
    }
    
    .options-row .option-card .benefit-item {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }
    
    .options-row .option-card .option-cta {
        text-align: center !important;
        padding: 12px !important;
    }
    
    .options-row .option-card .cta-text {
        font-size: 12px !important;
    }
    
    /* Mobile optimization for overview highlight */
    .overview-highlight {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 24px 16px !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        margin: 20px 0 !important;
    }
    
    .highlight-stat {
        text-align: center !important;
        padding: 16px 12px !important;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(59, 130, 246, 0.1) !important;
    }
    
    .highlight-stat .stat-number {
        font-size: 32px !important;
        font-weight: 800 !important;
        color: #1d4ed8 !important;
        margin-bottom: 8px !important;
        line-height: 1.1 !important;
    }
    
    .highlight-stat .stat-label {
        font-size: 14px !important;
        color: #666 !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Mobile optimization for footer */
    .footer-bottom {
        text-align: center !important;
        padding: 20px 16px !important;
    }
    
    .footer-copyright {
        text-align: center !important;
        margin-bottom: 20px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    
    .footer-legal {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        margin-bottom: 24px !important;
    }
    
    .footer-legal .legal-link {
        font-size: 12px !important;
        padding: 8px 12px !important;
        text-align: center !important;
    }
    
    .footer-disclaimer {
        text-align: center !important;
        padding: 20px 16px !important;
    }
    
    .footer-disclaimer h4 {
        font-size: 16px !important;
        margin-bottom: 16px !important;
        text-align: center !important;
    }
    
    .disclaimer-section {
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .disclaimer-section h5 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }
    
    .disclaimer-section p {
        font-size: 11px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        margin-bottom: 8px !important;
    }
    
    .disclaimer-contact {
        text-align: center !important;
        margin-top: 20px !important;
    }
    
    .disclaimer-contact h5 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    
    .disclaimer-contact p {
        font-size: 12px !important;
    }
    
    /* Mobile footer center alignment */
    .footer {
        text-align: center !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 30px !important;
    }
    
    .footer-section {
        text-align: center !important;
        width: 100% !important;
        max-width: 400px !important;
    }
    
    .footer-title {
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    
    .footer-description {
        text-align: center !important;
        margin-bottom: 16px !important;
    }
    
    .company-address {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .address-item {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        text-align: center !important;
    }
    
    .footer-subtitle {
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    
    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .footer-links li {
        text-align: center !important;
    }
    
    .footer-links a {
        text-align: center !important;
        padding: 4px 8px !important;
    }
    
    .contact-info {
        align-items: center !important;
        text-align: center !important;
    }
    
    .contact-item {
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
    }
    
    /* Mobile footer-legal center alignment */
    .footer-legal {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-legal .legal-link {
        text-align: center !important;
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
    
    /* Mobile optimization for comparison section */
    .comparison-section {
        margin-top: 32px;
        padding: 16px 16px;
    }
    
    .comparison-title {
        font-size: 18px !important;
        margin-bottom: 20px !important;
        text-align: center;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .option-header {
        margin-bottom: 24px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .option-icon i {
        font-size: 24px;
    }
    
    .option-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .option-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .option-benefits {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .benefit-item {
        font-size: 14px;
        gap: 8px;
    }
    
    /* Mobile pricing section */
    .pricing-section {
        margin-top: 16px;
        padding: 12px;
    }
    
    .our-service-pricing {
        margin-bottom: 16px;
        padding: 12px;
    }
    
    .pricing-header h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .main-price {
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .price-amount {
        font-size: 22px;
    }
    
    .price-period {
        font-size: 11px;
    }
    
    .price-description {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .price-note {
        font-size: 10px;
    }
    
    /* Mobile DIY comparison */
    .diy-comparison {
        margin-bottom: 16px;
    }
    
    .comparison-header {
        margin-bottom: 12px;
    }
    
    .comparison-header h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .comparison-subtitle {
        text-align: center;
        font-size: 10px;
    }
    
    .cost-breakdown {
        padding: 12px;
    }
    
    .cost-category {
        margin-bottom: 16px;
    }
    
    .cost-category h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .cost-items {
        gap: 4px;
    }
    
    .cost-item {
        padding: 4px 0;
        font-size: 10px;
    }
    
    .cost-item.total {
        font-size: 12px;
        padding-top: 6px;
        margin-top: 4px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .item-name {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .item-cost {
        font-size: 9px;
        min-width: 60px;
        font-weight: 600;
    }
    
    .cost-item.total .item-cost {
        font-size: 11px;
        font-weight: 700;
    }
    
    .cost-note {
        margin-top: 8px;
        padding: 6px;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 4px;
    }
    
    .cost-note em {
        font-size: 9px;
    }
    
    /* Mobile value proposition */
    .value-proposition {
        margin: 12px 0;
        padding: 10px;
    }
    
    .value-header {
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .value-header i {
        font-size: 12px;
    }
    
    .value-header span {
        font-size: 10px;
    }
    
    .value-proposition p {
        font-size: 10px;
        line-height: 1.3;
    }
    
    /* Mobile savings highlight */
    .savings-highlight {
        padding: 6px 10px;
        margin-top: 10px;
    }
    
    .savings-text {
        font-size: 9px;
    }
    
    /* Mobile strategy cards */
    .strategy-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .strategy-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .strategy-icon i {
        font-size: 20px;
    }
    
    .strategy-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .strategy-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    /* Mobile benefit highlight */
    .benefit-highlight {
        margin: 16px 0;
        padding: 16px;
        border-radius: 8px;
        flex-direction: column;
        gap: 12px;
    }
    
    .benefit-metric .metric-value {
        font-size: 20px;
        margin-bottom: 2px;
    }
    
    .benefit-metric .metric-label {
        font-size: 11px;
    }
    
    .benefit-divider {
        display: none;
    }
    
    /* Mobile cost advantage */
    .cost-advantage {
        margin-top: 16px;
        padding: 12px;
    }
    
    .cost-comparison {
        margin-bottom: 8px;
    }
    
    .cost-item {
        padding: 6px 8px;
    }
    
    .cost-label {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .cost-value {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .cost-arrow {
        font-size: 14px;
        margin: 0 6px;
    }
    
    .savings-badge {
        padding: 4px 8px;
    }
    
    .savings-text {
        font-size: 10px;
    }
    
    /* Mobile container overflow prevention */
    .container {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Mobile body overflow prevention */
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Mobile service tiers optimization */
    .service-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 24px 0;
    }
    
    .tier {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .tier-title {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .tier-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mobile value proposition section */
    .value-proposition-section {
        padding: 40px 0;
    }
    
    .value-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .value-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}









/* Desktop styles for live-data-header visibility */
@media (min-width: 769px) {
    .live-data-header.desktop-only {
        display: block;
    }
    
    .live-data-header.mobile-only {
        display: none;
    }
    
    .video-container.desktop-only {
        display: block;
    }
    
    .video-container.mobile-only {
        display: none;
    }
    
    .hero-content .live-data-header.mobile-only {
        display: none; /* Hide mobile green bubble on desktop */
    }
    
    .hero-visual .live-data-header.desktop-only {
        display: block; /* Show desktop green bubble on desktop */
    }
    
    .hero-content .video-container.mobile-only {
        display: none; /* Hide mobile video on desktop */
    }
    
    .hero-visual .video-container.desktop-only {
        display: block; /* Show desktop video on desktop */
    }
}

.comparison-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.comparison-badge span:first-child {
    font-size: 14px;
}

.comparison-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.comparison-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Capabilities Section - Unified Design System */
.capabilities-section {
    padding: 20px 0;
    
    position: relative;
    overflow: hidden;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

.capabilities-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    
    pointer-events: none;
}



.capabilities-intro {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.capabilities-title {
    font-size: 36px;
    font-weight: 800;
    color: #fcfcfc;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.capabilities-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Enhanced Strategy Summary */
.strategy-summary {
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 32px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.summary-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.summary-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.summary-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.summary-item:hover .summary-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.summary-icon i {
    font-size: 28px;
    color: white;
}

.summary-content {
    flex: 1;
}

.summary-number {
    font-size: 32px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    line-height: 1.4;
}

/* Enhanced Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin: 80px 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Desktop optimization for 3-column layout */
@media (min-width: 1200px) {
    .strategy-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

/* Tablet optimization for 2-column layout */
@media (min-width: 768px) and (max-width: 1199px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.strategy-card {
    background: white;
    padding: 40px 16px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 580px;
    display: flex;
    flex-direction: column;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.strategy-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 56px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.strategy-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.strategy-icon i {
    font-size: 28px;
    color: white;
}

.card-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(29, 78, 216, 0.1) 100%);
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.strategy-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.strategy-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
    flex-grow: 1;
}

.benefit-highlight {
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 100%);
    padding: 24px;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.benefit-metric {
    text-align: center;
    flex: 1;
}

.benefit-metric .metric-value {
    font-size: 28px;
    font-weight: 900;
    color: #1d4ed8;
    margin-bottom: 4px;
    line-height: 1.1;
}

.benefit-metric .metric-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    margin: 0 16px;
}

.cost-advantage {
    background: white;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    margin-top: auto;
    overflow: hidden;
}

.cost-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.cost-header i {
    color: #3b82f6;
    flex-shrink: 0;
}

.cost-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 8px;
    min-width: 0;
}

.cost-item {
    text-align: center;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.cost-item.market {
    opacity: 0.7;
}

.cost-item.ours {
    font-weight: 700;
}

.cost-label {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cost-value {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.cost-item.ours .cost-value {
    color: #10b981;
}

.cost-arrow {
    margin: 0 8px;
    color: #3b82f6;
    font-size: 14px;
    flex-shrink: 0;
}

.savings-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Enhanced Cost Comparison Summary */
.cost-comparison-summary {
    margin: 10px 0;
    padding: 20px 40px;
   
    
   
    
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.cost-comparison-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

.cost-comparison-summary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
 
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comparison-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop optimization */
@media (min-width: 1200px) {
    .comparison-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Tablet optimization */
@media (min-width: 768px) and (max-width: 1199px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(29, 78, 216, 0.02) 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    width: 100%;
    box-sizing: border-box;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.comparison-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.comparison-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.comparison-item:hover .comparison-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.comparison-icon i {
    color: white;
    font-size: 20px;
}

.comparison-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.comparison-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Price Comparison Layout */
.price-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    margin-bottom: 20px;
    align-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

.market-price, .our-price {
    text-align: center;
    padding: 16px 12px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    min-width: 100px;
    max-width: 100%;
    box-sizing: border-box;
}

.market-price {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.our-price {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.comparison-arrow {
    color: #3b82f6;
    font-size: 18px;
    font-weight: 700;
}

.price-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.market-price .price-value {
    color: #dc2626;
}

.our-price .price-value {
    color: #10b981;
}

.price-source {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.savings-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.savings-percentage {
    font-size: 18px;
    font-weight: 900;
}

.savings-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.source-link, .source-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
}

.source-link a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    font-size: 11px;
    font-weight: 400;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.source-link a:hover {
    color: #3b82f6;
    text-decoration-color: #3b82f6;
    text-decoration-thickness: 2px;
}

.source-link i {
    font-size: 10px;
    opacity: 0.7;
}

/* Enhanced Strategy Highlight - Full Width Banner */
.strategy-highlight {
    margin: 80px 0;
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
}

.strategy-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23334155" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.strategy-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.highlight-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-metrics {
    display: flex;
    justify-content: space-around;
    gap: 60px;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-item .metric-number {
    font-size: 48px;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.metric-item .metric-label {
    font-size: 16px;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive Enhancements */
@media (max-width: 767px) {
    /* Force mobile layout for cost comparison */
    .cost-comparison-summary {
        margin: 40px auto !important;
        padding: 0 16px !important;
        max-width: 1100px !important;
        box-sizing: border-box !important;
      }
      
      /* grid stacks items vertically by default */
      .cost-comparison-summary .comparison-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
      }
      
      /* each item is a full-width card, centered */
      .cost-comparison-summary .comparison-item {
        padding: 20px 16px !important;
        border-radius: 16px !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        background: #ffffff !important;
        width: 100% !important;
        max-width: 600px !important; /* keeps cards narrow and centered */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
      }
      
      /* icon centered above content */
      .cost-comparison-summary .comparison-icon {
        font-size: 28px !important;
        margin-bottom: 12px !important;
        color: #2563eb !important; /* blue accent */
      }
      
      /* content is stacked */
      .cost-comparison-summary .comparison-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
      }
      
      /* label centered */
      .comparison-label {
        font-weight: 600 !important;
        font-size: 18px !important;
        text-align: center !important;
        margin-bottom: 8px !important;
      }
      
      /* price comparison row */
      .price-comparison {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        flex-wrap: wrap !important; /* allows stacking on small screens */
      }
      
      /* each column in price comparison */
      .market-price,
      .our-price {
        flex: 1 1 140px !important;
        min-width: 120px !important;
      }
      
      /* center arrow */
      .comparison-arrow {
        font-size: 20px !important;
        color: #6b7280 !important;
      }
      
      /* savings section */
      .savings-highlight {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 12px !important;
      }
      .savings-percentage {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #16a34a !important;
      }
      .savings-label {
        font-size: 12px !important;
        font-weight: 600 !important;
        letter-spacing: 1px !important;
        color: #16a34a !important;
      }
      
      /* source links */
      .source-link,
      .source-links {
        margin-top: 8px !important;
        text-align: center !important;
      }
      .source-link a {
        font-size: 14px !important;
        color: #2563eb !important;
        text-decoration: none !important;
      }
      .source-link a:hover {
        text-decoration: underline !important;
      }
      
      /* responsive adjustments */
      @media (min-width: 768px) {
        .cost-comparison-summary .comparison-grid {
          flex-direction: row !important;
          flex-wrap: wrap !important;
          justify-content: center !important;
          gap: 32px !important;
        }
        .cost-comparison-summary .comparison-item {
          flex: 1 1 300px !important;
          max-width: 350px !important;
        }
      }
      
    .capabilities-section {
        padding: 20px 0;
    }
    
    .capabilities-title {
        font-size: 28px;
    }
    
    .capabilities-subtitle {
        font-size: 18px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .summary-item {
        padding: 32px 24px;
    }
    
    .summary-icon {
        width: 60px;
        height: 60px;
    }
    
    .summary-icon i {
        font-size: 24px;
    }
    
    .summary-number {
        font-size: 28px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 60px 0;
    }
    
    .strategy-card {
        padding: 32px 24px;
        min-height: auto;
    }
    
    /* Mobile overview grid optimizations */
    .overview-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .overview-item {
        padding: 24px 20px !important;
        text-align: center !important;
    }
    
    .overview-icon {
        display: none !important;
    }
    
    .overview-item h5 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .overview-item p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile cost-advantage optimizations */
    .cost-advantage {
        padding: 16px;
    }
    
    .cost-header {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .cost-comparison {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .cost-label {
        font-size: 10px;
    }
    
    .cost-value {
        font-size: 16px;
    }
    
    .cost-arrow {
        margin: 0 6px;
        font-size: 12px;
    }
    
    .savings-badge {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    /* Mobile source link optimizations */
    .source-link, .source-links {
        gap: 8px;
        margin-top: 10px;
    }
    
    .source-link a {
        font-size: 10px;
        gap: 3px;
    }
    
    .source-link i {
        font-size: 9px;
    }
    
    .cost-comparison-summary {
        margin: 40px 16px !important;
        padding: 24px 20px !important;
        max-width: calc(100% - 32px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: auto !important;
    }
    
    .comparison-header {
        margin-bottom: 32px;
    }
    
    .comparison-badge {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .comparison-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .comparison-subtitle {
        font-size: 14px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;

    }
    
    .comparison-item {
        padding: 20px 16px !important;
        min-height: auto !important;
        border-radius: 16px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .comparison-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    
    .comparison-icon i {
        font-size: 18px;
    }
    
    .comparison-label {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .price-comparison {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .market-price, .our-price {
        padding: 12px 8px;
        min-width: 80px;
    }
    
    .price-label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .price-value {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .price-source {
        font-size: 9px;
    }
    
    .comparison-arrow {
        font-size: 14px;
    }
    
    .savings-highlight {
        padding: 10px 16px;
        margin-bottom: 12px;
    }
    
    .savings-percentage {
        font-size: 16px;
    }
    
    .savings-label {
        font-size: 10px;
    }
    
    .source-link, .source-links {
        gap: 6px;
        margin-top: 8px;
    }
    
    .source-link a {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .strategy-highlight {
        margin: 60px 0;
        padding: 60px 24px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .highlight-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .highlight-metrics {
        flex-direction: column;
        gap: 32px;
    }
    
    .metric-item .metric-number {
        font-size: 36px;
    }
}

/* Tablet optimizations for cost-advantage */
@media (min-width: 768px) and (max-width: 1199px) {
    .cost-advantage {
        padding: 18px;
    }
    
    .cost-header {
        font-size: 12px;
    }
    
    .cost-label {
        font-size: 10px;
    }
    
    .cost-value {
        font-size: 17px;
    }
    
    .cost-arrow {
        margin: 0 10px;
        font-size: 13px;
    }
    
    .savings-badge {
        padding: 7px 14px;
        font-size: 10px;
    }
}

/* Desktop optimizations for cost-advantage */
@media (min-width: 1200px) {
    .cost-advantage {
        padding: 24px;
    }
    
    .cost-header {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .cost-comparison {
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .cost-label {
        font-size: 12px;
    }
    
    .cost-value {
        font-size: 16px;
    }
    
    .cost-arrow {
        margin: 0 12px;
        font-size: 16px;
    }
    
    .savings-badge {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* =========================================
   Contrast guardrails (light mode only)
   Ensures readable text over all backgrounds without changing layout
========================================= */

/* Navigation CTA buttons must be white text over blue/green gradients */
.nav-cta-button,
.nav-cta-button * {
    color: #ffffff !important;
}

/* Generic CTA buttons in hero and sections */
.cta-button.primary,
.cta-button.primary * {
    color: #ffffff !important;
}

/* Headings and titles default to near-black on light backgrounds */
.section-title,
.capabilities-title,
.comparison-title,
.messages-title,
.endorsements-title,
.comparison-headline {
    color: #111827 !important;
}

/* Secondary text on light backgrounds */
.section-subtitle,
.hero-description,
.option-description,
.sender-title,
.endorser-title,
.message-content,
.endorsement-content {
    color: #374151 !important;
}

/* Dark banner section: force light text */
.strategy-highlight,
.strategy-highlight .highlight-title,
.strategy-highlight .metric-label {
    color: #ffffff !important;
}
.strategy-highlight .metric-number {
    color: #3b82f6 !important;
}

/* Badges text must stay readable */
.winner-badge,
.loser-badge,
.vs-badge {
    color: #ffffff !important;
}

/* Footer readability */
.footer .footer-title,
.footer .company-name,
.footer h4,
.footer h5,
.footer h6 {
    color: #10b981 !important;
}

.footer .footer-subtitle {
    color: #10b981 !important;
}
.footer a {
    color: #111827 !important;
}

.footer .footer-links a {
    color: #9ca3af !important;
}
.footer a:hover {
    color: #1d4ed8 !important;
}

/* Ensure logo text gradient stays dark enough on light bg */
.nav-logo .logo-text {
    color: #10b981 !important;
    background: none !important;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

/* Comparison header readability */
.comparison-header .comparison-title,
.comparison-header .comparison-subtitle {
    color: #111827 !important;
}
.comparison-header .comparison-badge {
    color: #111827 !important;
    background: rgba(59,130,246,0.1) !important;
    border: 1px solid rgba(59,130,246,0.2) !important;
}


/* =========================================================
   Compact "comparison cards" (Email Infra / Lead Gen / 1K Leads)
   - Centered, tidy column on mobile
   - Doesn't affect your other .comparison-grid (winner/loser) layout
   - Works even without adding a wrapper (uses :has)
   - If you DO wrap with .cost-comparison-summary, it also applies
   ========================================================= */

/* Container: center the whole list */
.cost-comparison-summary .comparison-grid,
.comparison-grid:has(> .comparison-item .price-comparison) {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

/* Card */
.cost-comparison-summary .comparison-item,
.comparison-grid:has(> .comparison-item .price-comparison) .comparison-item {
  width: 100% !important;
  max-width: 640px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  background: #ffffff !important;
  padding: 20px 16px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,.06) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  min-height: 100% !important;
}

/* Icon */
.cost-comparison-summary .comparison-icon,
.comparison-grid:has(> .comparison-item .price-comparison) .comparison-icon {
  font-size: 28px !important;
  line-height: 1 !important;
  color: #2563eb !important;
  margin-bottom: 10px !important;
}

/* Stack content neatly */
.cost-comparison-summary .comparison-content,
.comparison-grid:has(> .comparison-item .price-comparison) .comparison-content {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* Title */
.cost-comparison-summary .comparison-label,
.comparison-grid:has(> .comparison-item .price-comparison) .comparison-label {
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #111827 !important;
  margin-bottom: 4px !important;
}

/* Prices row: grid that collapses on small screens */
.cost-comparison-summary .price-comparison,
.comparison-grid:has(> .comparison-item .price-comparison) .price-comparison {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  justify-items: center !important;
  width: 100% !important;
}

.cost-comparison-summary .market-price,
.cost-comparison-summary .our-price,
.comparison-grid:has(> .comparison-item .price-comparison) .market-price,
.comparison-grid:has(> .comparison-item .price-comparison) .our-price {
  min-width: 140px !important;
}

.cost-comparison-summary .comparison-arrow,
.comparison-grid:has(> .comparison-item .price-comparison) .comparison-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #6b7280 !important;
  font-size: 18px !important;
}

/* Price typography */
.cost-comparison-summary .price-label,
.comparison-grid:has(> .comparison-item .price-comparison) .price-label {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
}

.cost-comparison-summary .price-value,
.comparison-grid:has(> .comparison-item .price-comparison) .price-value {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111827 !important;
}

.cost-comparison-summary .price-source,
.comparison-grid:has(> .comparison-item .price-comparison) .price-source {
  font-size: 12px !important;
  color: #6b7280 !important;
}

/* Savings */
.cost-comparison-summary .savings-highlight,
.comparison-grid:has(> .comparison-item .price-comparison) .savings-highlight {
  display: grid !important;
  grid-auto-flow: row !important;
  justify-items: center !important;
  gap: 4px !important;
  margin-top: 8px !important;
}

.cost-comparison-summary .savings-percentage,
.comparison-grid:has(> .comparison-item .price-comparison) .savings-percentage {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #16a34a !important;
}

.cost-comparison-summary .savings-label,
.comparison-grid:has(> .comparison-item .price-comparison) .savings-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: #16a34a !important;
}

/* Links */
.cost-comparison-summary .source-link,
.cost-comparison-summary .source-links,
.comparison-grid:has(> .comparison-item .price-comparison) .source-link,
.comparison-grid:has(> .comparison-item .price-comparison) .source-links {
  margin-top: 8px !important;
  text-align: center !important;
}

.cost-comparison-summary .source-link a,
.comparison-grid:has(> .comparison-item .price-comparison) .source-link a {
  color: #2563eb !important;
  font-size: 14px !important;
  text-decoration: none !important;
}
.cost-comparison-summary .source-link a:hover,
.comparison-grid:has(> .comparison-item .price-comparison) .source-link a:hover {
  text-decoration: underline !important;
}

/* Responsive: stack the price boxes vertically on small screens */
@media (max-width: 560px) {
  .cost-comparison-summary .price-comparison,
  .comparison-grid:has(> .comparison-item .price-comparison) .price-comparison {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .cost-comparison-summary .comparison-arrow i,
  .comparison-grid:has(> .comparison-item .price-comparison) .comparison-arrow i {
    transform: rotate(90deg) !important; /* arrow points down when stacked */
  }
}

/* Default: row layout for larger screens */
.price-comparison {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* Mobile override: stack in a column */
  @media (max-width: 768px) {
    .price-comparison {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .comparison-arrow {
      transform: rotate(90deg); /* make the arrow point downwards */
      margin: 8px 0;
    }
  
    .market-price,
    .our-price {
      width: 100%;
    }
  }
  /* Mobile stacking for whole comparison content */
@media (max-width: 768px) {
    .comparison-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }
  
    .price-comparison {
      width: 100%;
    }
  
    .savings-highlight {
      margin-top: 10px;
    }
  
    .source-link, 
    .source-links {
      margin-top: 6px;
    }
  }
  /* --- Force vertical stacking of price-comparison on mobile --- */
@media (max-width: 768px) {
    /* Make the whole content column + centered */
    .comparison-grid .comparison-item .comparison-content {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      text-align: center !important;
      gap: 12px !important;
      width: 100% !important;
    }
  
    /* The price row becomes a vertical column */
    .comparison-grid .comparison-item .comparison-content .price-comparison {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      width: 100% !important;
      gap: 10px !important;
    }
  
    /* Make both price boxes full width so they stack nicely */
    .comparison-grid .comparison-item .comparison-content .price-comparison .market-price,
    .comparison-grid .comparison-item .comparison-content .price-comparison .our-price {
      width: 100% !important;
    }
  
    /* Rotate the arrow to indicate downward flow and give it spacing */
    .comparison-grid .comparison-item .comparison-content .price-comparison .comparison-arrow i {
      display: inline-block !important;
      transform: rotate(90deg) !important;
      margin: 6px 0 !important;
    }
  
    /* Keep savings + source links visually grouped below */
    .comparison-grid .comparison-item .savings-highlight {
      margin-top: 8px !important;
    }
    .comparison-grid .comparison-item .source-link,
    .comparison-grid .comparison-item .source-links {
      margin-top: 6px !important;
      text-align: center !important;
    }
  }
  /* ===== Price Comparison (collision-safe) ===== */
.pc-section { padding: 0; }
.pc-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 16px;
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.pc-card {
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 16px;
  padding: 20px 16px; text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}
.pc-icon { font-size: 28px; color: #2563eb; margin-bottom: 8px; line-height: 1; }
.pc-label { font: 700 18px/1.2 'Inter',system-ui,sans-serif; color:#111827; margin: 4px 0 10px; }

.pc-prices {
  display: flex; flex-direction: row; align-items:center; justify-content:center;
  gap: 12px; flex-wrap: wrap; width: 100%;
}
.pc-price { min-width: 160px; }
.pc-price-label { font: 600 12px/1 'Inter',system-ui,sans-serif; color:#6b7280; text-transform:uppercase; letter-spacing:.5px; }
.pc-price-value { font: 800 24px/1.2 'Inter',system-ui,sans-serif; color:#111827; }
.pc-price-source { font: 12px/1.4 'Inter',system-ui,sans-serif; color:#6b7280; }
.pc-arrow { color:#6b7280; font-size:18px; display:flex; align-items:center; justify-content:center; }

.pc-savings { display:grid; gap:4px; justify-items:center; margin-top: 10px; }
.pc-savings-perc { font: 800 22px/1 'Inter',system-ui,sans-serif; color:#16a34a; }
.pc-savings-label { font: 700 11px/1 'Inter',system-ui,sans-serif; letter-spacing:1px; color:#16a34a; }

.pc-link { margin-top: 8px; }
.pc-link a, .pc-links a { color:#2563eb; text-decoration:none; font-size:14px; }
.pc-link a:hover, .pc-links a:hover { text-decoration:underline; }
.pc-links { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:8px; }

/* Tablet/desktop grid */
@media (min-width: 768px) {
  .pc-wrap { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Mobile stacking — this is the key ask */
@media (max-width: 768px) {
  .pc-prices { flex-direction: column; }
  .pc-arrow i { transform: rotate(90deg); }
  .pc-price { width: 100%; }
}
