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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212;
    color: #fafafa;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}


.neon-glow {
    text-shadow:
        0 0 10px rgba(52, 211, 153, 0.5),
        0 0 20px rgba(52, 211, 153, 0.3),
        0 0 30px rgba(52, 211, 153, 0.2);
}

.card-glow {
    box-shadow:
        0 0 20px rgba(52, 211, 153, 0.1),
        0 0 40px rgba(52, 211, 153, 0.05);
    transition: all 0.3s ease;
}

.card-glow:hover {
    box-shadow:
        0 0 30px rgba(52, 211, 153, 0.2),
        0 0 60px rgba(52, 211, 153, 0.1);
    transform: translateY(-4px);
}


.btn-hero {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background-color: #16a34a;
    border: 2px solid #16a34a;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px rgba(52, 211, 153, 0.3),
        0 0 40px rgba(52, 211, 153, 0.2);
}

.btn-hero:hover {
    background-color: #22c55e;
    border-color: #22c55e;
    transform: translateY(-2px);
    box-shadow:
        0 0 30px rgba(52, 211, 153, 0.4),
        0 0 60px rgba(52, 211, 153, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('assets/ai-hero');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    color: #fafafa;
}

.hero-subtitle {
    font-size: 24px;
    color: #a3a3a3;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Section */
.value-section {
    padding: 80px 24px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.value-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #16a34a;
}

.card-icon {
    width: 48px;
    height: 48px;
    color: #16a34a;
    margin-bottom: 16px;
    stroke-width: 2;
}

.card-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fafafa;
}

.card-text {
    color: #a3a3a3;
    font-size: 16px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 24px;
    background-color: rgba(38, 38, 38, 0.3);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 64px;
    color: #fafafa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    color: #16a34a;
    margin: 0 auto 16px;
    stroke-width: 2;
}

.step-number {
    font-size: 14px;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fafafa;
}

.step-text {
    color: #a3a3a3;
    font-size: 16px;
}

/* AI Visual Section */
.ai-visual-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('assets/ai-visual');
    background-size: cover;
    background-position: center;
}

.ai-visual-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.ai-visual-title {
    position: relative;
    z-index: 10;
    font-size: 48px;
    text-align: center;
    padding: 0 24px;
    color: #fafafa;
}

/* Product Section */
.product-section {
    padding: 80px 24px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: center;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    padding-bottom: 32px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: #fafafa;
}

.feature-text {
    color: #a3a3a3;
    font-size: 16px;
}

.product-visual {
    display: flex;
    justify-content: center;
}

.product-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background-image: url('assets/product-visuals');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow:
        0 0 20px rgba(52, 211, 153, 0.1),
        0 0 40px rgba(52, 211, 153, 0.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #fafafa;
}

/* Footer */
.footer {
    background-color: #fafafa;
    color: #121212;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


.logo-img {
    width: auto;
    max-width: 160px;
    height: auto;
    display: block;
}

.footer-name {
    font-size: 18px;
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f4f4f4;
    color: #16a34a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background-color: #16a34a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(22, 163, 74, 0.4);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.footer-copyright {
    text-align: center;
    font-size: 16px;
    padding: 30px 0;
}

.footer-link {
    color: #16a34a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #727276;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }

    .hero-title {
        font-size: 72px;
    }

    .section-title {
        font-size: 56px;
    }

    .ai-visual-title {
        font-size: 56px;
    }

    .cta-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .ai-visual-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }

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

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

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

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card,
.step,
.feature-item {
    animation: fadeIn 0.6s ease-out;
}