* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --accent-color: #34d399;
    --text-dark: #e5e7eb;
    --text-light: #9ca3af;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --white: #ffffff;
    --green-neon: #00ff88;
    --gradient-1: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-2: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --gradient-3: linear-gradient(135deg, #00ff88 0%, #10b981 100%);
    --glass-bg: rgba(16, 185, 129, 0.1);
    --glass-border: rgba(16, 185, 129, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0a0a0a 0%, #0f1419 50%, #000000 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(0, 255, 136, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 80px rgba(16, 185, 129, 0.3);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-50px) translateX(30px); }
    50% { transform: translateY(-100px) translateX(-30px); }
    75% { transform: translateY(-50px) translateX(30px); }
}

/* Glass Effect */
.glass {
    background: rgba(16, 185, 129, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    border-radius: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.logo-image {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.4));
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(16, 185, 129, 0.15);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--bg-darker);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5), 0 0 30px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

.btn-secondary {
    background: rgba(16, 185, 129, 0.15);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.btn-secondary:hover {
    background: rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Code Preview */
.code-preview {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
}

.code-header {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.code-dot:nth-child(1) { background: #ff5f56; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #10b981; }

.code-title {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 14px;
}

.code-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    overflow-x: auto;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.code-content code {
    color: var(--white);
}

.comment { color: #6ee7b7; }
.keyword { color: #10b981; }
.variable { color: #34d399; }
.property { color: #d1d5db; }
.string { color: #6ee7b7; }
.function { color: #00ff88; }

.code-results {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    border-radius: 12px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 15px;
}

.result-icon {
    font-size: 20px;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 15px;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.project-card:hover {
    transform: translateY(-10px);
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.project-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-emoji {
    font-size: 64px;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.project-card h3 {
    padding: 20px 25px 10px;
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
}

.project-card p {
    padding: 0 25px 25px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.projects-footer {
    text-align: center;
    margin-top: 40px;
}

.highlight-text {
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
}

.benefits-content {
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.benefits-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
}

.benefits-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.author-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(16, 185, 129, 0.15);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.pricing-card.featured {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--bg-darker);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 25px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
    color: var(--white);
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    margin: 0 5px;
}

.price-period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.feature-icon {
    color: #10b981;
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.pricing-footer p {
    margin: 5px 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.15);
}

.faq-question h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    color: var(--white);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 25px 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.faq-cta {
    margin-top: 40px;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.faq-cta h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-features {
    margin-bottom: 35px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.contact-feature .feature-icon {
    color: #10b981;
    font-weight: 700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.method-icon {
    font-size: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    border-radius: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
    cursor: pointer;
}

.contact-form option {
    background: #1e293b;
    color: var(--white);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    color: rgba(229, 231, 235, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .navbar {
        width: 100%;
        padding: 8px 0;
    }
    
    .nav-content {
        padding: 0 20px;
    }
    
    .nav-links a:not(.btn-primary) {
        display: none;
    }
    
    .benefits-content,
    .contact-content,
    .faq-cta {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .code-content {
        font-size: 12px;
        padding: 20px;
    }
}
