
* { margin: 0; padding: 0; box-sizing: border-box; }
        
html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    --bg-dark: #0A0A1A;
    --accent-orange: #F59E0B;
    --accent-teal: #00D9FF;
    --accent-purple: #A855F7;
    --accent-green: #10B981;
    --accent-red: #EF4444;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animated gradient mesh background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse 800px at 20% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 700px at 80% 70%, rgba(0, 217, 255, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse 600px at 50% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

/* Grid overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Floating orbs */
.floating-orbs {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 20s ease-in-out infinite;
    opacity: 0.25;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-orange), transparent);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-teal), transparent);
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-purple), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 30px) scale(1.05); }
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    min-height: 60px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 217, 255, 0.2);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
   
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00D9FF 0%, #3B82F6 50%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-menu { 
    display: flex; 
    gap: 2.5rem; 
    align-items: center;
    position: relative;
}

.nav-services-wrapper {
    position: relative;
}

.nav-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-services-toggle:hover {
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-services-wrapper:hover .dropdown-arrow,
.nav-services-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 1rem;
    background-color: black;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
    z-index: 1001;
    animation: dropdownFadeIn 0.3s ease;
    backdrop-filter: blur(20px);
    display: none;
}

.services-dropdown.active {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.services-dropdown-item:hover {
    color: #FFFFFF;
    background: rgba(0, 217, 255, 0.1);
    border-left-color: #00D9FF;
    padding-left: 1.75rem;
}
.nav-menu a { 
    color: #FFFFFF; 
    text-decoration: none; 
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.nav-menu a:hover { 
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(90deg, #FF4444 0%, #FF6B35 50%, #FFB347 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    border: none;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), 0 0 40px rgba(168, 85, 247, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: none;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-links .nav-link {
    color: #FFFFFF;
}

.mobile-services-wrapper {
    position: relative;
}

.mobile-services-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.mobile-services-toggle:hover {
    color: #FFFFFF;
}

.mobile-services-dropdown {
    margin-top: 0.75rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    animation: mobileDropdownFadeIn 0.3s ease;
}

@keyframes mobileDropdownFadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.mobile-services-item {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-services-item:hover {
    color: #FFFFFF;
    padding-left: 0.5rem;
}

/* HERO - Completely redesigned */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 10rem 2rem 0rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content { 
    max-width: 1000px; 
    margin: 0 auto; 
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid rgba(245, 158, 11, 0.4);
    color: var(--accent-orange);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.5);
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: rgba(255,255,255,0.75);
    max-width: 800px;
    margin: 0 auto 0rem;
    line-height: 1.7;
}

/* Section */
.section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

        /* Reframe Grid */
        .reframe-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .reframe-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .reframe-content p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .stat-card {
            background: rgba(245, 158, 11, 0.08);
            border: 2px solid rgba(245, 158, 11, 0.25);
            padding: 3rem;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-red));
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-orange);
            box-shadow: 0 20px 60px rgba(245, 158, 11, 0.4);
        }
        
        .stat-number {
            font-size: 5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 1rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }

        /* Case Studies Grid */
        .case-studies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .case-card {
            background: rgba(26, 26, 46, 0.6);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 24px;
            border: 2px solid rgba(16, 185, 129, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-teal));
        }
        
        .case-card:hover {
            border-color: var(--accent-green);
            box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
            transform: translateY(-8px);
        }
        
        .case-label {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }
        
        .case-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        
        .case-subtitle {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 1.75rem;
        }
        
        .case-section-title {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }
        
        .case-section-title.findings {
            color: var(--accent-orange);
        }
        
        .case-section-title.solution {
            color: var(--accent-teal);
        }
        
        .case-section-title.result {
            color: var(--accent-green);
        }
        
        .case-findings {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.75rem;
            line-height: 1.6;
        }
        
        .case-solution {
            margin-bottom: 1.5rem;
        }
        
        .case-solution li {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
            line-height: 1.5;
        }
        
        .case-solution li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--accent-teal);
        }
        
        .case-not-needed {
            background: rgba(0,0,0,0.3);
            border-left: 2px solid rgba(255,255,255,0.2);
            padding: 1rem;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .case-result-box {
            background: rgba(16, 185, 129, 0.08);
            border: 2px solid rgba(16, 185, 129, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
        }
        
        .result-metrics {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.75rem;
        }
        
        .result-metric {
            text-align: center;
        }
        
        .result-metric-label {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.25rem;
        }
        
        .result-metric-value {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent-green);
        }
        
        .result-footer {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            text-align: center;
            margin-top: 0.75rem;
        }

        /* Comparison Cards */
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .comparison-card {
            background: rgba(26, 26, 46, 0.6);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 24px;
            border: 2px solid;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .comparison-card.losing {
            border-color: rgba(239, 68, 68, 0.3);
        }
        
        .comparison-card.losing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
        }
        
        .comparison-card.losing:hover {
            border-color: var(--accent-red);
            box-shadow: 0 20px 60px rgba(239, 68, 68, 0.3);
        }
        
        .comparison-card.winning {
            border-color: rgba(16, 185, 129, 0.4);
        }
        
        .comparison-card.winning::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-teal));
        }
        
        .comparison-card.winning:hover {
            border-color: var(--accent-green);
            box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
            transform: translateY(-8px);
        }
        
        .comparison-label {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }
        
        .comparison-card.losing .comparison-label { color: var(--accent-red); }
        .comparison-card.winning .comparison-label { color: var(--accent-green); }
        
        .comparison-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .detail-row {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .detail-row:last-child { border-bottom: none; }
        
        .detail-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        
        .detail-value {
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        .comparison-card.losing .detail-value { color: var(--accent-red); }
        .comparison-card.winning .detail-value { color: var(--accent-green); }

 /* Case Example */
        .case-example {
            background: rgba(16, 185, 129, 0.08);
            border: 2px solid rgba(16, 185, 129, 0.25);
            padding: 3rem;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .case-example::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-green), var(--accent-teal));
        }
        
        .case-example h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .metric-box {
            text-align: center;
            padding: 2rem 1.5rem;
            background: rgba(0,0,0,0.3);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }
        
        .metric-box:hover {
            transform: translateY(-5px);
            background: rgba(0,0,0,0.5);
            border-color: var(--accent-green);
        }
        
        .metric-value {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.75rem;
        }
        
        .metric-label {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
        }
        
        /* Audit Section */
        .audit-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .audit-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }
        
        .audit-intro {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .audit-list {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .audit-list li {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            padding: 1rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .audit-list li:last-child { border-bottom: none; }
        
        .audit-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: 900;
            font-size: 1.4rem;
        }
        
        .audit-note {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.5);
            font-style: italic;
        }
        
        .audit-card {
            background: rgba(0, 217, 255, 0.08);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 24px;
            border: 2px solid rgba(0, 217, 255, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }
        
        .audit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-purple));
        }
        
        .audit-card:hover {
            border-color: var(--accent-teal);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
            transform: translateY(-8px);
        }
        
        .audit-card-label {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-teal);
            margin-bottom: 1rem;
        }
        
        .audit-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .audit-card p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .audit-cta {
            display: block;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--accent-teal), var(--accent-purple));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1rem;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
            letter-spacing: 0.5px;
        }
        
        .audit-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 217, 255, 0.6);
        }
        
        /* Final CTA */
        .final-cta {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(0, 217, 255, 0.05));
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .final-cta-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .final-cta h2 {
            font-size: clamp(2.25rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }
        
        .final-cta-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255,255,255,0.7);
            margin-bottom: 3rem;
            line-height: 1.7;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.5rem 3.5rem;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.15rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 60px rgba(245, 158, 11, 0.7);
        }
        
        .final-note {
            margin-top: 2rem;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.5);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .reframe-grid,
            .comparison-grid,
            .audit-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            
            .metrics-grid,
            .case-studies-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                min-height: auto;
                padding: 8rem 2rem 0rem;
            }
        }
        
        @media (max-width: 640px) {
            .section {
                padding: 3rem 1.5rem;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
            
            .metric-value {
                font-size: 2.5rem;
            }
        }

/* Responsive */

@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.875rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        position: relative;
    }
    
    .logo-text {
        font-size: 1.25rem;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 20, 16, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .nav-cta {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: calc(100% - 2rem);
        text-align: center;
        border-radius: 8px;
        margin: 0.5rem 1rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 8rem 1.5rem 2rem;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    /* Ensure no horizontal scroll */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}


@media (max-width: 480px) {
    /* Extra Small Screens */
    .nav-container {
        padding: 0.75rem 0.875rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
}

.footer {
    position: relative;
    background: rgba(10, 10, 26,0.85);
    color: white;
    padding: 2rem;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 3rem;

}
.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;

}
.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* Example highlight color */
}
.footer-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #B8B8D1;
}
.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.social-links a {
    z-index: 10;
    color: #14039E;
    text-decoration: none;
    font-size: 1.5rem; /* Adjust for icon size */
    transition: color 0.1s ease-in-out;
    
}
.social-links a:hover {
    color: #0E1B4D; /* Example hover color; customize per icon */
}
.instagram-link:hover {
    color: rgb(244, 62, 96); /* Instagram hover */
}
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
/* Social icon SVGs can be styled similarly */
.social-icon {
    width: 35px;
    height: 35px;
    fill: currentColor; /* Inherits color from parent */
}
/* Hover scale effect */
.footer-social-icons {
    transition: transform 0.3s ease;
}
.footer-social-icons:hover {
    transform: scale(1.1);
    cursor: pointer;
}