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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a14;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle background */
.particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 200, 150, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 168, 121, 0.05) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

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

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

/* Header */
header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 200, 150, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00C896, #00A879);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

nav a:hover {
    color: #00C896;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00C896;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #00C896, #00A879);
    color: #0a0a14;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 0.95rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.3);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 121, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #00C896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, #00C896, #00A879);
    color: #0a0a14;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 150, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #00C896;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #00C896;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: rgba(0, 200, 150, 0.1);
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 200, 150, 0.2);
}

.badge {
    text-align: center;
    padding: 1rem;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge p {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: 500;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00C896, #00A879);
}

.stat-card:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.1);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C896;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #a0a0a0;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 200, 150, 0.02));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 20px 50px rgba(0, 200, 150, 0.15);
    transform: translateY(-10px);
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.1), rgba(0, 168, 121, 0.05));
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    margin: 4rem 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

/* Content Sections */
.content-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.content-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #00C896;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 10px 30px rgba(0, 200, 150, 0.1);
}

.detail-card h4 {
    color: #00C896;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.detail-card p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.detail-card ul {
    list-style: none;
    margin-left: 1rem;
}

.detail-card li {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00C896;
    font-weight: bold;
}

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

.framework-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.framework-card:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 20px 50px rgba(0, 200, 150, 0.15);
    transform: translateY(-5px);
}

.framework-card h4 {
    color: #00C896;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.framework-card p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Case Studies */
.case-study {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    transition: all 0.3s;
}

.case-study:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 20px 50px rgba(0, 200, 150, 0.15);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.case-study-title {
    flex: 1;
}

.case-study-title h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: #00C896;
    margin-bottom: 0.5rem;
}

.case-study-industry {
    display: inline-block;
    background: rgba(0, 200, 150, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #00C896;
    font-weight: 600;
}

.case-study-content {
    margin-bottom: 2rem;
}

.case-study-content p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 200, 150, 0.05);
    border-radius: 8px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    color: #00C896;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-desc {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-top: 0.5rem;
}

/* Blog Posts */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: rgba(0, 200, 150, 0.5);
    box-shadow: 0 20px 50px rgba(0, 200, 150, 0.15);
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(0, 168, 121, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #00C896;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #a0a0a0;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.blog-card-link {
    color: #00C896;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.blog-card-link:hover {
    color: #ffffff;
}

/* FAQ Section */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 200, 150, 0.05);
}

.faq-question h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #00C896;
    font-size: 1.1rem;
    flex-grow: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #00C896;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #a0a0a0;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 200, 150, 0.1);
    padding: 4rem 2rem;
    margin-top: 6rem;
}

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

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

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00C896;
}

.footer-section a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #00C896;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 200, 150, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #808080;
    font-size: 0.9rem;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #00C896;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-desc {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    max-width: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        gap: 1rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

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

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

    header {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}
