/* CSS Variables */
:root {
    --primary: #B5FF3B;
    --powered-by-color: #a6bd56;
    --black: #111111;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-muted: #666666;
    --lime: #B5FF3B;
    --black: #111111;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #666666;
    --button-color: white;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);

    & span {
        color: var(--primary);
        text-shadow: #111111 2px 2px 4px;
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin-top: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 1000px;
}

.logo {
    flex: 1 1 auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;   
    gap: 40px;
}

section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 20px 34px;
    background-color: var(--primary);
    color: var(--black);
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(181, 255, 59, 0.4);
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

#lottie{
    width: 300px;
    height: 300px;
    margin: 0 auto;
    margin-top: 20px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 50px;
}

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--black) 100%);
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(181, 255, 59, 0.2) 0%, rgba(17, 17, 17, 0.8) 100%);
    animation: gradientPulse 12s ease infinite alternate;
}

/* Problem section image */
.section-image {
    margin-bottom: 40px;
}

/* How It Works */
.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-p {
    color: rgba(255, 255, 255);
    max-width: 600px;
    font-size: 1rem;
}

@keyframes gradientPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 9vw, 6rem);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Problem Solution Section */
.problem-solution {
    background-color: var(--black);
    color: var(--white);
    margin-bottom: 2rem;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.solution-card {
    background-color: var(--lime);
    color: var(--black);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.solution-card h3 {
    margin-bottom: 15px;
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Features */
.features {
    text-align: center;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;  
    justify-content: center;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 250px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    padding: 5px;
}

/* Offer Section */
.offer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    margin-top: 2rem;
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;

    & p{
        font-size: 1.1rem;
    }
}


/* How it works */
.how-it-works {
    background-color: var(--gray-light);
    text-align: center;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    position: relative;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Section */
.cta {
    padding: 20px 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray-muted);
}

.modal h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.success-message {
    display: none;
    text-align: center;
    padding: 20px;
}

.success-message svg {
    width: 60px;
    height: 60px;
    fill: var(--primary);
    margin-bottom: 20px;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
    border-top: 1px solid var(--primary);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 200px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mobile Sticky CTA */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 50;
    transform: translateY(100px);
    transition: all 0.3s ease;
    display: none;
}

.mobile-cta.active {
    transform: translateY(0);
    max-height: 90vh;
}

.mobile-cta svg {
    width: 24px;
    height: 24px;
    fill: var(--black);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 768px) {
    .problem, .solution {
        flex: 1 1 100%;
    }

    .mobile-cta {
        display: flex;
    }

    .logo-container {
        width: 90vw;
        height: 100px;
    }

    .logo {
        flex: 1 1 auto;
    }

    .hero {
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 10px;
    }

    .step {
        justify-self: center;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}