* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #e2e8f0;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

nav {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #334155;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0f172a;
    font-size: 14px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    padding: 10px 24px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 1px solid #475569;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1e293b;
}

.hero {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%, rgba(6, 182, 212, 0.1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #6ee7b7;
}

h1 {
    font-size: 72px;
    font-weight: bold;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero p {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stats {
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.stat-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-value {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    color: #94a3b8;
}

.case-studies {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #94a3b8;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    color: #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #475569;
}

.filter-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border: none;
    color: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    transform: translateY(-4px);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f172a 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
}

.growth-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    z-index: 1;
}

.card-content {
    padding: 24px;
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 12px;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.industry-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #1e293b;
    color: #34d399;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.card-btn {
    width: 100%;
    padding: 12px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.card:hover .card-btn {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.toolkit {
    padding: 80px 0;
}

.toolkit-container {
    background: linear-gradient(135deg, #1e293b 0%, rgba(15, 23, 42, 0.5) 100%);
    border: 1px solid #334155;
    border-radius: 24px;
    padding: 64px;
}

.toolkit-header {
    text-align: center;
    margin-bottom: 48px;
}

.toolkit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #67e8f9;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.toolkit-card {
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.toolkit-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
}

.toolkit-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.toolkit-card h3 {
    font-size: 20px;
    color: white;
    margin-bottom: 8px;
}

.toolkit-card p {
    color: #94a3b8;
    margin-bottom: 16px;
}

.toolkit-link {
    color: #22d3ee;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.toolkit-card:hover .toolkit-link {
    gap: 12px;
}

.toolkit-cta {
    text-align: center;
}

.cta {
    padding: 80px 0;
}

.cta-container {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
}

.cta h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    padding: 16px 40px;
    background: white;
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

footer {
    border-top: 1px solid #334155;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
}

footer .container {
    padding: 48px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    .hero {
        padding: 64px 0;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-large {
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .toolkit-container {
        padding: 32px 24px;
    }

    .toolkit-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        padding: 32px 24px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    nav .container {
        padding: 12px 16px;
    }

    h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .stat-value {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .card-content {
        padding: 16px;
    }

    .toolkit-card {
        padding: 24px;
    }
}

