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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* MOBILE FIXES - High specificity overrides 
   
   CRITICAL SPACING STRATEGY FOR MOBILE:
   The large bottom paddings and margins in this section are NOT excessive - 
   they prevent a mobile scroll issue where the next section slides up and 
   covers the CTA buttons during scrolling.
   
   DO NOT REMOVE these spacing rules without testing mobile scroll behavior!
   
   Total spacing breakdown:
   - Hero bottom padding: 6rem (prevents immediate overlap)
   - Hero bottom margin: 2rem (section separation) 
   - CTA bottom margin: 4rem (safe zone for buttons)
   - CTA bottom padding: 3rem (additional button protection)
   - Next section top margin: 4rem (final separation layer)
   
   Total: ~19rem of protective spacing to ensure smooth mobile UX
*/
@media (max-width: 640px) {
    /* Reset problematic constraints */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Container fixes */
    .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: visible !important;
    }
    
    /* Hero section fixes - CRITICAL: Large bottom spacing prevents section overlap */
    .hero {
        padding: 1.5rem 0 6rem 0 !important; /* 6rem bottom padding prevents next section from covering CTAs during scroll */
        margin-top: 70px !important;
        min-height: auto !important;
        margin-bottom: 2rem !important; /* Additional margin for section separation */
    }
    
    .hero-container {
        display: block !important;
        grid-template-columns: none !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.75rem !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }
    
    /* VS Comparison - Ultra compressed mobile layout */
    .time-comparison {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        margin: 0.75rem 0 0.5rem 0 !important;
        padding: 0.25rem !important;
        align-items: center !important;
    }
    
    .comparison-item.old-way {
        order: 1 !important;
        width: 100% !important;
        margin-bottom: -0.5rem !important;
    }
    
    .vs-divider {
        order: 2 !important;
        margin: 0 !important;
        font-size: 0.7rem !important;
        font-weight: bold !important;
        align-self: center !important;
        flex-shrink: 0 !important;
        padding: 0.2rem 0.5rem !important;
        background: rgba(0, 212, 255, 0.15) !important;
        border: 1px solid rgba(0, 212, 255, 0.3) !important;
        border-radius: 3px !important;
        color: #00d4ff !important;
        z-index: 2 !important;
        position: relative !important;
    }
    
    .comparison-item.new-way {
        order: 3 !important;
        width: 100% !important;
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }
    
    /* Stats - Zero spacing */
    .hero-stats {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin: 0 !important;
        padding: 0 0.5rem !important;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem) !important;
        min-width: 140px !important;
        max-width: 180px !important;
        margin-bottom: 0 !important;
        padding: 0.75rem 0.5rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 6px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        text-align: center !important;
    }
    
    .stat-item h3 {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
        margin-bottom: 0.25rem !important;
    }
    
    .stat-item p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }
    
    /* CTAs - CRITICAL: Bottom spacing prevents next section from sliding over buttons */
    .hero-cta {
        flex-direction: column !important;
        gap: 1rem !important;
        margin: 0 0 4rem 0 !important; /* 4rem bottom margin creates safe zone for CTAs */
        padding: 0.5rem 1rem 3rem 1rem !important; /* 3rem bottom padding ensures buttons stay visible during scroll */
    }
    
    .cta-primary, .cta-secondary {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 1.25rem 1.5rem !important;
        font-size: 1rem !important;
        min-height: 56px !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
    }
    
    /* Section fixes - Remove problematic overflow */
    section {
        padding: 3rem 0 !important;
        margin-bottom: 2rem !important;
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    /* Dashboards - Reasonable separation */
    .dashboards {
        margin-top: 5rem !important;
        padding-top: 3rem !important;
        position: relative !important;
        z-index: 1 !important;
        background: #0a0a0a !important;
    }
    
    /* Mobile Dashboard Carousel - High specificity */
    body .dashboards-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1.5rem !important;
        padding: 0 1rem 1rem 1rem !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: none !important;
    }
    
    /* Hide scrollbar but keep functionality */
    .dashboards-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .dashboards-grid {
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }
    
    /* Dashboard carousel cards - High specificity */
    body .dashboard-preview {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 0 0 85% !important;
        width: 85% !important;
        max-width: 320px !important;
        padding: 1.5rem !important;
        margin: 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 16px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        overflow: visible !important;
        min-height: 280px !important;
        height: auto !important;
        max-height: none !important;
        scroll-snap-align: center !important;
    }
    
    .dashboard-preview * {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .dashboard-preview h3 {
        margin-bottom: 1rem !important;
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
    }
    
    .dashboard-preview p {
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }
    
    .dashboard-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    
    /* Add scroll hint for carousel */
    .dashboards-grid::after {
        content: "← Swipe to see more →" !important;
        position: absolute !important;
        bottom: -2rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
        text-align: center !important;
    }
    
    .dashboards {
        position: relative !important;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .service-card {
        padding: 2rem 1.5rem !important;
        margin-bottom: 1rem !important;
        position: relative !important;
    }
    
    /* Disable problematic pseudo-elements */
    .service-card::before,
    .service-card::after,
    .timeline-marker::before,
    .timeline-marker::after {
        display: none !important;
    }
    
    .service-badge {
        position: static !important;
        top: auto !important;
        right: auto !important;
        margin-bottom: 1rem !important;
    }
    
    /* CDO Section */
    .cdo-hero-profile {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .profile-left {
        order: 2 !important;
    }
    
    .profile-right {
        order: 1 !important;
    }
    
    .photo-placeholder {
        width: 180px !important;
        height: 220px !important;
        margin: 0 auto !important;
    }
    
    .profile-photo {
        width: 180px !important;
        height: 220px !important;
        margin: 0 auto !important;
    }
    
    /* Profile Header Mobile */
    .profile-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
        padding: 1rem !important;
    }
    
    .profile-header .profile-photo {
        width: 140px !important;
        height: 170px !important;
    }
    
    .name-title-section h3 {
        font-size: 1.8rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .professional-tagline .tagline-main {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .profile-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .quick-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }
    
    /* Timeline fixes */
    .timeline::before {
        display: none !important;
    }
    
    .timeline-item {
        position: static !important;
        left: auto !important;
        right: auto !important;
        text-align: left !important;
        width: 100% !important;
        margin-bottom: 3rem !important;
        display: block !important;
    }
    
    .timeline-item:nth-child(even) {
        left: auto !important;
        right: auto !important;
        text-align: left !important;
    }
    
    .timeline-content {
        padding: 1.5rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-left: 0 !important;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    
    .footer-brand {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
    
    .footer-links {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }
    
    .footer-section {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem !important;
        font-size: 1.1rem !important;
    }
    
    .footer-section ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        list-style: none !important;
        padding: 0 !important;
    }
    
    .footer-social {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    /* Mobile Footer Optimizations */
    .footer-logo {
        height: 35px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-brand h4 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .footer-brand p {
        font-size: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-links {
        gap: 1.5rem !important;
    }
    
    .footer-section {
        margin-bottom: 1rem !important;
    }
    
    .footer-section h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section ul {
        gap: 0.5rem !important;
    }
    
    .footer-section a {
        font-size: 0.8rem !important;
    }
    
    .footer-bottom {
        padding-top: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.75rem !important;
    }
    
    .social-link {
        font-size: 1rem !important;
    }
    
    /* About Page Mobile Spacing */
    .about-hero {
        padding: 4rem 0 2rem 0 !important;
    }
    
    .hero-header {
        margin-bottom: 2rem !important;
    }
    
    .professional-story,
    .achievement-overview,
    .professional-timeline {
        padding: 2rem 0 !important;
    }
    
    .about-cta {
        padding: 2rem 0 3rem 0 !important;
    }
    
    .story-intro {
        margin-bottom: 2rem !important;
    }
    
    .story-highlight {
        margin-bottom: 1.5rem !important;
    }
    
    .current-highlight {
        margin-bottom: 2rem !important;
        padding: 1.5rem !important;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .differentiator-grid {
        gap: 1rem !important;
    }
    
    .timeline-header {
        margin-bottom: 1.5rem !important;
    }
    
    /* Disable floating elements that cause overlap */
    .floating-cta {
        display: none !important;
    }
    
    /* Navigation adjustments */
    .nav-logo {
        flex: 1 !important;
    }
    
    .nav-logo span {
        display: block !important;
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .ssv-logo {
        height: 35px !important;
        margin-right: 0.5rem !important;
    }
    
    /* Hamburger Menu */
    .nav-menu {
        display: none !important;
    }
    
    .hamburger-menu {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        gap: 4px !important;
    }
    
    .hamburger-line {
        width: 25px !important;
        height: 3px !important;
        background: #fff !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
    }
    
    /* Modern Sidebar Menu */
    .mobile-sidebar {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(0, 0, 20, 0.95)) !important;
        backdrop-filter: blur(30px) !important;
        z-index: 9999 !important;
        transform: translateX(100%) !important;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        visibility: hidden !important;
        border-left: 1px solid rgba(0, 212, 255, 0.2) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3) !important;
    }
    
    .mobile-sidebar.open {
        transform: translateX(0) !important;
        visibility: visible !important;
    }
    
    .sidebar-overlay {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.6) !important;
        z-index: 9998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }
    
    .sidebar-overlay.open {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .sidebar-header {
        padding: 2rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .sidebar-close {
        color: #fff !important;
        font-size: 1.5rem !important;
        cursor: pointer !important;
        padding: 0.5rem !important;
        transition: all 0.3s ease !important;
        border-radius: 8px !important;
        width: fit-content !important;
        margin-left: auto !important;
    }
    
    .sidebar-close:hover {
        color: #00d4ff !important;
        background: rgba(0, 212, 255, 0.1) !important;
        transform: rotate(90deg) !important;
    }
    
    .sidebar-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        height: calc(100vh - 120px) !important;
        padding: 2rem !important;
    }
    
    .sidebar-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .sidebar-item {
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        padding: 1.25rem 1.5rem !important;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        transition: all 0.3s ease !important;
        transform: translateX(20px) !important;
        opacity: 0 !important;
    }
    
    .mobile-sidebar.open .sidebar-item {
        transform: translateX(0) !important;
        opacity: 1 !important;
    }
    
    .mobile-sidebar.open .sidebar-item:nth-child(1) { transition-delay: 0.1s !important; }
    .mobile-sidebar.open .sidebar-item:nth-child(2) { transition-delay: 0.2s !important; }
    .mobile-sidebar.open .sidebar-item:nth-child(3) { transition-delay: 0.3s !important; }
    
    .sidebar-item:hover {
        background: rgba(0, 212, 255, 0.1) !important;
        border-color: rgba(0, 212, 255, 0.3) !important;
        color: #00d4ff !important;
        transform: translateX(5px) !important;
    }
    
    .sidebar-item i {
        font-size: 1.2rem !important;
        color: #00d4ff !important;
        min-width: 24px !important;
    }
    
    .sidebar-cta {
        margin-top: auto !important;
    }
    
    .sidebar-cta-button {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        padding: 1.25rem 2rem !important;
        background: linear-gradient(135deg, #00d4ff, #0077ff) !important;
        color: white !important;
        text-decoration: none !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        border-radius: 25px !important;
        transition: all 0.3s ease !important;
        transform: translateY(20px) !important;
        opacity: 0 !important;
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3) !important;
    }
    
    .mobile-sidebar.open .sidebar-cta-button {
        transform: translateY(0) !important;
        opacity: 1 !important;
        transition-delay: 0.5s !important;
    }
    
    .sidebar-cta-button:hover {
        background: linear-gradient(135deg, #0077ff, #00d4ff) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4) !important;
    }
    
    .sidebar-cta-button i {
        font-size: 1rem !important;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #0a0a0a;
    width: 100%;
    max-width: 100vw;
}

/* Ensure all headings are visible by default */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Ensure paragraphs and general text is visible */
p {
    color: #d1dce6;
}

/* Global section fixes for desktop internal scrolling */
section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Comprehensive fix for all grid and flex containers to prevent internal scrolling */
/* Exclude carousel grids from this fix */
div[class*="grid"]:not(.dashboards-grid):not(.services-grid), 
div[class*="container"]:not(.dashboards-grid):not(.services-grid),
div[class*="profile"],
div[class*="stats"],
div[class*="features"],
div[class*="timeline"],
div[class*="process"],
div[class*="platform"] {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}

/* SSV Logo */
.ssv-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.ssv-logo:hover {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

/* Footer SSV logo variation */
.footer-brand .ssv-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
}

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

/* Hamburger menu - hidden on desktop */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu {
    display: none;
}

/* Hide mobile sidebar on desktop */
.mobile-sidebar {
    display: none;
}

.sidebar-overlay {
    display: none;
}

.nav-link {
    color: #d1dce6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link.cta-button {
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00d4ff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff, #0077ff, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #c8d4e0;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Time Comparison Visual */
.time-comparison {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.comparison-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-content {
    flex: 1;
}

.comparison-title {
    font-size: 0.875rem;
    color: #b3c7d9;
    margin-bottom: 0.25rem;
}

.comparison-time {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.old-way .comparison-time {
    color: #ff6b6b;
}

.new-way .comparison-time {
    color: #00d4ff;
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-desc {
    font-size: 0.75rem;
    color: #d1dce6;
    line-height: 1.3;
}

.vs-divider {
    font-size: 0.875rem;
    font-weight: 700;
    color: #00d4ff;
    padding: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #999;
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.cta-primary, .cta-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary {
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Reset hero-stats for right column */
.hero-visual .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

/* Reset hero-cta for right column */
.hero-visual .hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
}

.floating-dashboard {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff6b6b;
}

.dashboard-dots span:nth-child(2) {
    background: #ffd93d;
}

.dashboard-dots span:nth-child(3) {
    background: #6bcf7f;
}

.dashboard-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
}

.chart-container {
    height: 200px;
    margin-bottom: 1rem;
    position: relative;
}

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

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
}

.metric-label {
    font-size: 0.75rem;
    color: #999;
}

/* AI Value Section */
/* Sample Dashboards Section */
.sample-dashboards {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.98);
    position: relative;
}

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

.dashboard-preview {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.dashboard-preview:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.dashboard-preview .dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.dashboard-title i {
    color: #00d4ff;
}

.live-indicator {
    color: #00d4ff;
    font-size: 0.8rem;
    font-weight: 500;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-large {
    text-align: center;
    padding: 1rem 0;
}

.metric-large .metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.metric-large .metric-label {
    display: block;
    font-size: 0.875rem;
    color: #999;
    margin-top: 0.25rem;
}

.metric-large .metric-change {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.metric-change.positive {
    color: #00d4ff;
}

.metric-change.neutral {
    color: #999;
}

.metrics-row {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.metric-small {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-small .value {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
}

.metric-small .label {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.25rem;
}

/* Chart Bars */
.chart-placeholder {
    height: 60px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 0.5rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 100%;
}

.bar {
    width: 12px;
    background: linear-gradient(180deg, #00d4ff, #0077ff);
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.dashboard-preview:hover .bar {
    background: linear-gradient(180deg, #00d4ff, #ff6b6b);
}

/* Cohort Heatmap */
.cohort-heatmap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: 8px;
}

.cohort-row {
    display: flex;
    gap: 2px;
}

.cohort-cell {
    flex: 1;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 2px;
}

.cohort-cell.high {
    background: rgba(0, 212, 255, 0.8);
    color: #fff;
}

.cohort-cell.med {
    background: rgba(0, 212, 255, 0.5);
    color: #fff;
}

.cohort-cell.low {
    background: rgba(255, 255, 255, 0.1);
    color: #999;
}

/* KPI Summary */
.kpi-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kpi-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.kpi-status.green {
    color: #00d4ff;
}

.kpi-status.yellow {
    color: #ff6b6b;
}

.kpi-text {
    color: #ccc;
}

/* Responsive Design for Dashboards */
@media (max-width: 768px) {
    .dashboards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-preview {
        padding: 1rem;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: visible;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #b3c7d9;
}

/* Hide mobile swipe hint on desktop */
.mobile-swipe-hint {
    display: none;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.25rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0077ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 0.75rem;
}

.service-card p {
    color: #d1dce6;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-results {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.result-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Enhanced Service Cards for GTM */
.service-card.featured {
    border: 2px solid #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 119, 255, 0.05));
}

.path-badge {
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
}

.service-subtitle {
    color: #00d4ff !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deliverables {
    margin: 1.5rem 0;
}

.deliverables h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverables h4 i {
    color: #00d4ff;
}

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

.deliverables li {
    color: #d1dce6;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.deliverables li::before {
    content: '•';
    color: #00d4ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.timeline-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.step-week {
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-desc {
    color: #ccc;
    font-size: 0.875rem;
}

.pricing-preview {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.pricing-preview .price {
    color: #fff;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
}

.pricing-preview .recurring {
    color: #00d4ff;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Equity Option Styling */
.equity-option {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 107, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.equity-option:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 107, 107, 0.15));
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.equity-option i {
    color: #00d4ff;
    font-size: 1rem;
}

.equity-option span {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Equity Partnership Section */
.equity-partnership {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 107, 0.05));
    position: relative;
}

.equity-partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.partnership-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.partnership-header {
    margin-bottom: 4rem;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.partnership-icon i {
    font-size: 2rem;
    color: white;
}

.partnership-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-subtitle {
    font-size: 1.25rem;
    color: #d1dce6;
    font-weight: 500;
}

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

.partnership-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partnership-card:hover::before {
    opacity: 1;
}

.partnership-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.partnership-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 107, 107, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.partnership-card .card-icon i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.partnership-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.partnership-card p {
    color: #d1dce6;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.partnership-cta {
    text-align: center;
}

.partnership-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: #00d4ff;
    font-weight: 500;
    font-size: 0.95rem;
}

.partnership-note i {
    color: #00d4ff;
}



/* Key Features */
.key-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.platform-features {
    margin-top: 4rem;
    text-align: center;
}

.platform-features h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #d1dce6;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Experience Timeline */
.experience {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00d4ff, #0077ff);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row-reverse;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.company-logo.oyo {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.timeline-details h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-period {
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
    font-size: 0.875rem;
}

.achievement i {
    color: #00d4ff;
    width: 16px;
}

/* Results Dashboard */
.results-dashboard {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

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

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.dashboard-card.revenue {
    border-top: 3px solid #00d4ff;
}

.dashboard-card.efficiency {
    border-top: 3px solid #6bcf7f;
}

.dashboard-card.growth {
    border-top: 3px solid #ff6b6b;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.5rem;
}

.revenue .card-header i {
    color: #00d4ff;
}

.efficiency .card-header i {
    color: #6bcf7f;
}

.growth .card-header i {
    color: #ff6b6b;
}

.card-header span {
    color: #fff;
    font-weight: 600;
}

.big-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-detail {
    color: #999;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease-in-out;
}

.revenue .progress {
    background: linear-gradient(90deg, #00d4ff, #0077ff);
}

.efficiency .progress {
    background: linear-gradient(90deg, #6bcf7f, #4caf50);
}

.growth .progress {
    background: linear-gradient(90deg, #ff6b6b, #e74c3c);
}

.sub-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sub-metric {
    text-align: center;
}

.sub-metric span:first-child {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.sub-metric span:last-child {
    font-size: 0.75rem;
    color: #999;
}

/* Consultation Process */
.consultation-process {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step.reverse {
    grid-template-columns: 200px 1fr 80px;
}

.process-step.reverse .step-content {
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.step-content p {
    color: #d1dce6;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-deliverables {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-deliverables span {
    color: #999;
    font-size: 0.875rem;
}

.step-visual {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-chart, .strategy-nodes, .deployment-animation {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    opacity: 0.3;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Meet Your Fractional CDO - Redesigned */
.meet-cdo {
    padding: 6rem 0;
    background: rgba(5, 5, 15, 0.98);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Hero Profile Section */
.cdo-hero-profile {
    margin-bottom: 4rem;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Desktop: Image Left, Content Right */
.profile-hero-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 119, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    margin-bottom: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.profile-hero-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0077ff, #00d4ff);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
    border-radius: 25px 25px 0 0;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Left: Photo Section */
.profile-photo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo-section .photo-container {
    position: relative;
    text-align: center;
}

.profile-photo-section .profile-photo {
    width: 200px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-photo-section .profile-photo:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 20px 45px rgba(0, 212, 255, 0.3);
}

.photo-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
}

/* Right: Content Section */
.profile-content-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.identity-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.tagline-underplayed {
    font-size: 1rem;
    color: #b3c7d9;
    font-style: italic;
    margin-bottom: 0;
    opacity: 0.8;
}


/* CTA Section within Content */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-primary-hero {
    width: 100%;
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.cta-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #0077ff, #00d4ff);
}

.cta-secondary-hero {
    width: 100%;
    background: transparent;
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-secondary-hero:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
    color: #fff;
}

.cta-note {
    text-align: center;
    margin-top: 0.75rem;
}

.cta-note small {
    color: #b3c7d9;
    font-size: 0.75rem;
}

.professional-tagline .tagline-main {
    font-size: 1.125rem;
    font-weight: 500;
    color: #00d4ff;
    font-style: italic;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1.3;
}

/* Profile Content Grid */
.profile-content {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 400px;
}

/* Profile Left Column */
.profile-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.photo-placeholder {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 119, 255, 0.1));
    border: 2px dashed rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #00d4ff;
    font-size: 0.9rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.photo-placeholder:hover {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 119, 255, 0.15));
}

.photo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

/* Profile Photo Styles */
.profile-photo {
    width: 250px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    border-color: #00d4ff;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

/* Quick Stats */
.quick-stats {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
}

.quick-stats h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-stats h4 i {
    color: #00d4ff;
}

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

.quick-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-stat:hover {
    transform: translateY(-2px);
    background: rgba(0, 212, 255, 0.1);
}

.stat-icon {
    font-size: 1.25rem;
    min-width: 30px;
    text-align: center;
}

.stat-info {
    flex: 1;
}

.stat-value {
    display: block;
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-desc {
    display: block;
    color: #b3c7d9;
    font-size: 0.75rem;
    line-height: 1.3;
}

/* Credential Showcase */
.credential-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.credential-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0077ff, #00d4ff);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.credential-showcase h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.credential-showcase h4 i {
    color: #00d4ff;
    font-size: 1.3rem;
}

.credentials-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 119, 255, 0.04));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
}

.credential-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00d4ff, #0077ff);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credential-item:hover {
    transform: translateX(8px) translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 119, 255, 0.08));
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.credential-item:hover::after {
    opacity: 1;
}

.cred-icon {
    font-size: 1.4rem;
    min-width: 35px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.credential-item span {
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Profile Right Column */
.profile-right {
    display: flex;
    flex-direction: column;
}

.intro-content {
    flex: 1;
}

.name-title {
    margin-bottom: 2rem;
}

.name-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.professional-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-main {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 600;
}

.experience-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.exp-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Value Proposition */
.value-proposition {
    margin-bottom: 2rem;
}

.hero-desc {
    color: #d1dce6;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.current-highlight {
    display: flex;
    gap: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.highlight-icon {
    font-size: 1.5rem;
    color: #00d4ff;
    min-width: 30px;
    text-align: center;
}

.highlight-content {
    flex: 1;
}

.highlight-content strong {
    color: #00d4ff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}

/* Key Differentiators */
.key-differentiators h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.diff-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.diff-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

.diff-icon {
    font-size: 1.5rem;
    color: #00d4ff;
    min-width: 30px;
    text-align: center;
}

.diff-content {
    flex: 1;
}

.diff-content strong {
    color: #fff;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.diff-content span {
    color: #b3c7d9;
    font-size: 0.9rem;
}

/* Experience Timeline */
.experience-timeline {
    margin: 4rem 0;
}

.experience-timeline h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experience-timeline h3 i {
    color: #00d4ff;
}

.timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: start;
}

.timeline-marker {
    display: flex;
    justify-content: center;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: rgba(0, 212, 255, 0.3);
}

.timeline-item:last-child .timeline-marker::after {
    display: none;
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    border: 3px solid rgba(0, 212, 255, 0.5);
    z-index: 1;
}

.marker-dot.current {
    background: #00d4ff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-header h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company-period {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.company {
    color: #00d4ff;
    font-weight: 600;
}

.period {
    color: #b3c7d9;
    font-size: 0.9rem;
}

.timeline-content p {
    color: #d1dce6;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.impact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.cdo-cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-content h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #d1dce6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-primary {
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.cta-note {
    margin-top: 1rem;
}

.cta-note small {
    color: #999;
    font-size: 0.9rem;
}


/* Social Proof */
.social-proof {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

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

.award-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.award-card h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1rem;
}

.award-description {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 119, 255, 0.1));
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

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

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: #ccc;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.urgency-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ff6b6b;
    font-weight: 500;
}

.cta-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.cta-form h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-form input::placeholder {
    color: #999;
}

.cta-submit {
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #999;
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.contact-info h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-item i {
    color: #00d4ff;
    width: 20px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00d4ff;
}

.response-badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #00d4ff;
    font-weight: 500;
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 3rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(0, 0, 20, 0.9));
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-header .hero-subtitle {
    font-size: 1.1rem;
    color: #c8d4e0;
    line-height: 1.5;
}

/* Consistent section spacing */
.professional-story {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.achievement-overview {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.professional-timeline {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.about-cta {
    padding: 3rem 0 4rem 0;
    position: relative;
    z-index: 1;
}

.story-intro {
    margin-bottom: 3rem;
}

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.story-highlight {
    margin-bottom: 2.5rem;
}

.story-highlight .lead {
    font-size: 1.2rem;
    color: #d1dce6;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.current-highlight {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.value-proposition {
    margin-top: 2rem;
}

.differentiator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.timeline-header {
    margin-bottom: 2rem;
}

.cred-content .cred-desc {
    color: #b3c7d9;
    font-size: 0.9rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta button {
    background: linear-gradient(135deg, #00d4ff, #0077ff);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-cta button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.floating-cta button i {
    font-size: 1rem;
}

/* Thank You Modal */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.thank-you-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.thank-you-modal .modal-header {
    margin-bottom: 1.5rem;
}

.thank-you-modal .modal-header i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.thank-you-modal .modal-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.thank-you-modal .modal-body p {
    margin: 0.5rem 0;
    color: #b3c7d9;
    line-height: 1.6;
}

.thank-you-modal .modal-body p strong {
    color: #00d4ff;
}

.thank-you-modal .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.thank-you-modal .modal-close:hover {
    color: #00d4ff;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Form Success/Error States */
.cta-submit.success {
    background: linear-gradient(135deg, #00c851, #00a041) !important;
}

.cta-submit.error {
    background: linear-gradient(135deg, #ff4444, #cc0000) !important;
}

/* Footer */
.footer {
    padding: 3rem 0 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand span:first-child {
    font-size: 2rem;
}

.footer-brand span:last-child {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #b3c7d9;
    font-size: 0.875rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    color: #d1dce6;
    font-size: 1.25rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #00d4ff;
}

/* Responsive Design */

/* Tablet and Mobile */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    /* Tablet: Stack Vertically */
    .profile-hero-card {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .profile-photo-section {
        order: 1;
    }

    .profile-content-section {
        order: 2;
        text-align: center;
    }

    .profile-photo-section .profile-photo {
        width: 160px;
        height: 200px;
    }

    .profile-identity .profile-photo {
        width: 140px;
        height: 180px;
    }

    .key-achievements {
        gap: 1.5rem;
    }
    
    .profile-left {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .profile-right {
        order: 1;
    }
    
    .quick-stats, .credential-showcase {
        flex: 1;
        min-width: 280px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Base Layout */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal overflow on container elements only */
    .container, section, .hero-container, .nav-container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure body doesn't overflow */
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Navigation Mobile Fixes */
    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .nav-logo {
        font-size: 0.95rem;
        max-width: 65%;
    }
    
    .nav-logo span {
        display: none; /* Hide text on mobile, show only logo */
    }
    
    .ssv-logo {
        height: 40px;
    }
    
    .nav-menu {
        font-size: 0.9rem;
    }
    
    /* Section Padding */
    section {
        padding: 3rem 0;
    }
    
    .hero, .meet-cdo, .services {
        padding: 2rem 0;
    }
    
    /* Typography */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        word-break: break-word;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-vs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .time-comparison {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .comparison-item {
        width: 100%;
        max-width: 100%;
        gap: 0.75rem;
    }
    
    .comparison-content {
        flex: 1;
        min-width: 0;
    }
    
    .comparison-title, .comparison-time {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .comparison-desc {
        font-size: 0.85rem;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .vs-divider {
        order: 2;
        margin: 0.5rem 0;
        align-self: center;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Mobile: Perfect Vertical Stack */
    .profile-hero-card {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .profile-photo-section {
        order: 1;
    }

    .profile-content-section {
        order: 2;
    }

    .profile-photo-section .profile-photo {
        width: 140px !important;
        height: 180px !important;
    }

    .identity-info h3 {
        font-size: 1.8rem !important;
    }

    .tagline-underplayed {
        font-size: 0.9rem !important;
    }

    .experience-badges {
        justify-content: center !important;
    }


    .cta-primary-hero {
        padding: 1.25rem 2rem !important;
        font-size: 1.1rem !important;
    }

    /* Single Column Stats for Mobile */
    .stats-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .quick-stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid rgba(0, 212, 255, 0.1);
        border-radius: 12px;
        text-align: left;
    }

    /* Enhanced Mobile CTA */
    .cdo-cta-section {
        margin-top: 3rem;
        padding: 2rem 1rem;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 119, 255, 0.04));
        border-radius: 20px;
        text-align: center;
    }

    .cdo-cta-section .cta-primary {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        margin-top: 1.5rem;
    }
    
    .profile-right {
        order: 1;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 250px;
    }
    
    .profile-photo {
        width: 200px;
        height: 250px;
    }
    
    /* Profile Header Tablet */
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .profile-header .profile-photo {
        width: 120px;
        height: 150px;
    }
    
    .name-title-section h3 {
        font-size: 2rem;
    }
    
    .professional-tagline .tagline-main {
        font-size: 1rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .name-title h3 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quick-stat {
        padding: 1rem;
    }
    
    .credentials-stack {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Experience Timeline Mobile */
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        position: static !important;
        left: auto !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .timeline::before {
        left: 25px !important;
        transform: none !important;
    }
    
    .timeline-item:nth-child(even) {
        left: auto !important;
        position: static !important;
    }
    
    /* Fix grid and flexbox overflow */
    .hero-content, .cdo-hero-profile, .services-grid, .dashboards-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    /* Fix image and media overflow */
    img, svg, canvas, video {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix wide elements that cause overflow */
    .floating-dashboard, .dashboard-preview {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .timeline-marker::after {
        height: 50px;
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .company-period {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .impact-tags {
        gap: 0.25rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Services Grid Mobile - Carousel - High specificity */
    body .services-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 1.5rem !important;
        padding: 0 1rem 1rem 1rem !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        grid-template-columns: none !important;
    }
    
    body .service-card {
        padding: 1.5rem 1rem;
        flex: 0 0 85% !important;
        max-width: 320px !important;
        min-width: 280px !important;
        scroll-snap-align: center !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Mobile swipe hint for services */
    .mobile-swipe-hint {
        display: block !important;
        color: #00d4ff !important;
        font-size: 0.875rem !important;
        margin-top: 0.5rem !important;
        font-weight: 500 !important;
        text-align: center !important;
    }
    
    .key-features {
        gap: 0.75rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Dashboard Grid Mobile */
    .dashboards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-preview {
        height: 200px;
    }
    
    /* Process Steps Mobile */
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .process-step.reverse {
        grid-template-columns: 1fr;
    }
    
    .process-step.reverse .step-content {
        text-align: center;
    }
    
    .step-visual {
        order: 1;
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .step-content {
        order: 2;
    }
    
    /* CTA Section Mobile */
    .final-cta {
        padding: 3rem 0 !important;
        overflow-x: hidden !important;
    }
    
    .cta-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 1rem !important;
    }
    
    .cta-text {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    .cta-text h2 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .cta-text p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .urgency-indicator {
        flex-direction: column !important;
        gap: 0.5rem !important;
        font-size: 0.875rem !important;
        text-align: center !important;
    }
    
    .cta-form {
        padding: 1.5rem !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .contact-form input,
    .contact-form select {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1rem !important;
        padding: 0.875rem !important;
        box-sizing: border-box !important;
    }
    
    .cta-submit {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1rem !important;
        padding: 0.875rem 1.5rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Contact Grid Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        display: none;
    }
    
    /* Floating CTA Mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    /* Logo Mobile */
    .logo img {
        height: 35px;
    }
    
    /* Particles Mobile - Reduce for Performance */
    #particles-js {
        opacity: 0.3;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .name-title h3 {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: auto;
        padding: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .photo-placeholder {
        width: 160px;
        height: 200px;
    }
    
    .profile-photo {
        width: 160px;
        height: 200px;
    }
    
    /* Profile Header Small Mobile */
    .profile-header .profile-photo {
        width: 100px;
        height: 130px;
    }
    
    .name-title-section h3 {
        font-size: 1.5rem;
    }
    
    .professional-tagline .tagline-main {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
    }
    
    .timeline-item {
        grid-template-columns: 40px 1fr;
        gap: 0.75rem;
    }
    
    .timeline-content {
        padding: 0.75rem;
    }
    
    .floating-cta {
        bottom: 15px;
        right: 15px;
    }
}