:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1e40af;
    --dark-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --navy: #0f172a;
    --slate: #1e293b;
    --light-slate: #334155;
    --gray: #64748b;
    --light-gray: #94a3b8;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--slate);
    overflow-x: hidden;
    font-feature-settings: 'liga' 1, 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main{
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-xl);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    background: var(--gradient-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    transform: translateX(0);
}

.login-btn {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 0.25rem 2rem !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0.025em !important;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    transform: translateX(96%);
}

.login-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-xl) !important;
}

/* Advanced Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-secondary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(30, 64, 175, 0.2) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 400;
}

.cta-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary::before {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateX(-100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover::before {
    transform: translateX(96%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* Advanced Features Section */
.features {
    padding: 8rem 0;
    background: var(--off-white);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.025em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

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

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-accent);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
}

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

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--off-white) 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

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

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

.stat-card .stat-label {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Client Success Stories Section */
        .client-stories {
            padding: 8rem 0;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        .client-stories::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: var(--gradient-accent);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.025em;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.2;
            color: var(--navy);
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray);
            line-height: 1.7;
            font-weight: 400;
        }

        /* Business Type Filters */
        .business-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .filter-btn {
            padding: 0.75rem 2rem;
            border: 2px solid var(--light-gray);
            background: var(--white);
            color: var(--gray);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.025em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .filter-btn:hover, .filter-btn.active {
            border-color: var(--primary-blue);
            background: var(--primary-blue);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Client Stories Grid */
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .story-card {
            max-width: 600px;
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(226, 232, 240, 0.6);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .story-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .story-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .story-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(30, 64, 175, 0.6) 100%);
            opacity: 0.9;
        }

        .story-overlay {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-blue);
            letter-spacing: 0.025em;
        }

        .story-icon {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }

        .story-content {
            padding: 2.5rem;
        }

        .business-type {
            display: inline-block;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary-blue);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .story-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.75rem;
            letter-spacing: -0.025em;
            line-height: 1.3;
        }

        .story-location {
            font-size: 0.875rem;
            color: var(--gray);
            margin-bottom: 1.25rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .story-description {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .story-results {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .result-item {
            text-align: center;
            padding: 1.25rem;
            background: linear-gradient(135deg, var(--off-white) 0%, #ffffff 100%);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.6);
        }

        .result-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.25rem;
        }

        .result-label {
            font-size: 0.75rem;
            color: var(--gray);
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .story-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .services-used {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .service-badge {
            padding: 0.25rem 0.75rem;
            background: var(--off-white);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray);
            letter-spacing: 0.025em;
        }

        .learn-more {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            letter-spacing: 0.025em;
        }

        .learn-more:hover {
            color: var(--dark-blue);
            transform: translateX(4px);
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

.story-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-badge {
    padding: 0.25rem 0.75rem;
    background: var(--light-gray);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

.service-badge.more {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.count {
    opacity: 0.7;
    font-size: 0.8em;
}

.no-projects-message h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.error-message {
    grid-column: 1 / -1;
}

.section-footer .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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



/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--navy);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
}

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: var(--light-gray);
}

.services .section-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.5);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.7;
    font-weight: 400;
}




/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
}

.cta-section .btn-primary:hover {
    background: var(--off-white);
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p, .footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    line-height: 1.8;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-slate);
    color: var(--gray);
    font-size: 0.875rem;
}

/* Enhanced Mobile Responsive CSS */

/* Base mobile adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Header Mobile */
    nav {
        padding: 6rem 0;
        position: relative;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        border-radius: 0 0 20px 20px;
        box-shadow: var(--shadow-xl);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        font-size: 1rem;
    }

    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-badge {

        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }

    /* Features Mobile */
    .features {
        padding: 4rem 0;
    }

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

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

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

    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    /* About Mobile */
    .about {
        padding: 4rem 0;
    }

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

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .stat-card {
        padding: 1.5rem 1rem;
    }

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

    .about-image {
        height: 300px;
        font-size: 1rem;
        padding: 2rem 1rem;
    }

    /* Client Stories Mobile */
    .client-stories {
        padding: 4rem 0;
    }

    .business-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .story-card {
        border-radius: 20px;
    }

    .story-image {
        height: 220px;
    }

    .story-overlay {
        top: 1rem;
        left: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .story-icon {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .story-location {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .story-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .story-results {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .result-item {
        padding: 1rem;
    }

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

    .story-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .services-used {
        gap: 0.5rem;
        width: 100%;
    }

    .service-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    /* MSP Callout Mobile */
    .msp-callout {
        padding: 3rem 0;
    }

    .msp-callout > .container > div {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .msp-callout h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .msp-callout p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Services Mobile */
    .services {
        padding: 4rem 0;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .cta-section h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-section .btn-primary {
        font-size: 1rem;
        padding: 1.25rem 2rem;
        width: 100%;
        max-width: 300px;
    }

    /* Footer Mobile */
    footer {
        padding: 3rem 0 1.5rem;
    }

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

    .footer-section h3 {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

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

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2rem);
    }

    .feature-card,
    .service-card {
        padding: 1.5rem 1rem;
    }

    .story-content {
        padding: 1.5rem 1rem;
    }

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

    .stat-card {
        padding: 1.25rem 1rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1.25rem;
    }

    .business-filters {
        gap: 0.5rem;
    }

    .story-title {
        font-size: 1.125rem;
    }

    .story-location {
        font-size: 0.75rem;
    }

    .story-description {
        font-size: 0.85rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4rem);
    }

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

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

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

    .about-content {
        gap: 4rem;
    }

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

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .filter-btn,
    .learn-more {
        min-height: 44px;
        min-width: 44px;
    }

    .feature-card:hover,
    .service-card:hover,
    .story-card:hover {
        transform: none;
    }

    .feature-card:active,
    .service-card:active,
    .story-card:active {
        transform: translateY(-4px);
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding: 1rem 0;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        margin-top: 2rem;
    }

    .sections {
        padding: 3rem 0;
    }
}

/* Additional utility classes for mobile */
.mobile-hidden {
    display: none;
}

@media (min-width: 769px) {
    .mobile-hidden {
        display: block;
    }
    
    .desktop-hidden {
        display: none;
    }
}

/* Mobile menu toggle (add to HTML) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}