/* CSS Custom Properties (Root Variables) for Colors */
:root {
    /* Primary Brand Colors */
    --color-primary: #b1dd00;
    --color-primary-dark: #b0d300;
    --color-primary-light: #eeff33;
    --color-primary-darker: #a6b800;
    
    /* Neutral Colors */
    --color-black: #000000;
    --color-black-light: #333333;
    --color-white: #ffffff;
    --color-white-off: #fafafa;
    
    /* Gray Scale */
    --color-gray-100: #f8f9fa;
    --color-gray-200: #f0f0f0;
    --color-gray-300: #e9ecef;
    --color-gray-400: #dee2e6;
    --color-gray-500: #adb5bd;
    --color-gray-600: #6c757d;
    --color-gray-700: #666666;
    --color-gray-800: #495057;
    --color-gray-900: #343a40;
    --color-gray-light: #cccccc;
    --color-gray-lighter: #999999;
    
    --color-success-light: #d4edda;
    --color-success-dark: #1e7e34;
    --color-error: #dc3545;
    --color-error-light: #f8d7da;
    --color-error-dark: #c82333;
    --color-warning: #ffc107;
    --color-warning-light: #fff3cd;
    --color-warning-dark: #e0a800;
    --color-info: #17a2b8;
    --color-info-light: #d1ecf1;
    --color-info-dark: #138496;
    
    /* Background Colors */
    --color-bg-primary: var(--color-white);
    --color-bg-secondary: var(--color-gray-100);
    --color-bg-tertiary: var(--color-gray-200);
    --color-bg-dark: var(--color-black);
    --color-bg-hero: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    
    /* Text Colors */
    --color-text-primary: var(--color-black);
    --color-text-secondary: var(--color-gray-700);
    --color-text-tertiary: var(--color-gray-600);
    --color-text-muted: var(--color-gray-lighter);
    --color-text-white: var(--color-white);
    --color-text-light: var(--color-gray-light);
    
    /* Border Colors */
    --color-border-light: var(--color-gray-300);
    --color-border-medium: var(--color-gray-400);
    --color-border-dark: var(--color-gray-500);
    --color-border-primary: var(--color-primary);
    --color-border-focus: var(--color-primary);
    
    /* Shadow Colors */
    --color-shadow-light: rgba(0, 0, 0, 0.1);
    --color-shadow-medium: rgba(0, 0, 0, 0.15);
    --color-shadow-dark: rgba(0, 0, 0, 0.2);
    --color-shadow-primary: rgba(160, 255, 0, 0.2);
    --color-shadow-primary-light: rgba(160, 255, 0, 0.1);
    
    /* Interactive Colors */
    --color-hover-primary: var(--color-primary-dark);
    --color-hover-dark: var(--color-black-light);
    --color-hover-light: var(--color-gray-100);
    --color-active-primary: var(--color-primary-darker);
    --color-active-dark: var(--color-black);
    
    /* Overlay Colors */
    --color-overlay-dark: rgba(0, 0, 0, 0.3);
    --color-overlay-light: rgba(255, 255, 255, 0.9);
    --color-overlay-primary: rgba(160, 255, 0, 0.1);
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--color-black) 0%, var(--color-black-light) 100%);
    --gradient-light: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-100) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-text-secondary);
    overflow-x: hidden;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/static/Inter_18pt-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/static/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/static/Inter_18pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/static/Inter_18pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/static/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/static/Inter_18pt-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  
/* Header Styles */
.header {
    background: var(--color-bg-dark);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 80px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.cta-button {
    background: transparent;
    border: 1px solid var(--color-text-white);
    color: var(--color-text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--color-text-white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    background: var(--color-bg-dark);
    color: var(--color-text-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.hero-cta:hover {
    background: var(--color-hover-dark);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatars {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #a0ff00;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-weight: 500;
    font-size: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hero Video Styles */
.hero-video {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.hero-video:hover .hero-video-overlay {
    opacity: 0.8;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Statistics Section */
.stats {
    background: #fff;
    padding: 4rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    background: #fff;
    padding: 4rem 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.benefits-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.benefits-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: #fff;
    padding: 4rem 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-section.reverse {
    direction: rtl;
}

.feature-section.reverse > * {
    direction: ltr;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.feature-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #a0ff00;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #a0ff00;
}

.feature-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Growth Engine Section */
.growth-engine {
    background: #fff;
    padding: 4rem 0;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.growth-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.growth-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.growth-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #a0ff00;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.card-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #a0ff00;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #a0ff00;
}

/* E-commerce Simple Section */
.ecommerce-simple {
    background: #fff;
    padding: 4rem 0;
}

.ecommerce-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.ecommerce-label {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ecommerce-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.ecommerce-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #a0ff00;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

.try-free-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.try-free-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 4rem 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

/* FAQs Section */
.faqs {
    background: #fff;
    padding: 4rem 0;
}

.faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faqs-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question-wrapper:hover {
    background: #e9ecef;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #666;
    transition: transform 0.3s ease;
    font-weight: bold;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question-wrapper {
    background: #e9ecef;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #a0ff00 0%, #7dd300 100%);
    padding: 4rem 0;
    text-align: center;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.final-cta-description {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #a0ff00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-video {
        height: 300px;
        margin-top: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .growth-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-video {
        height: 250px;
    }
    
    .benefits-title,
    .ecommerce-title,
    .testimonials-title,
    .faqs-title,
    .final-cta-title {
        font-size: 2rem;
    }
    
    .growth-cards {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-video {
        height: 200px;
    }
    
    .hero-cta,
    .try-free-btn,
    .final-cta-btn {
        width: 100%;
    }
    
    .stat-card,
    .step-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}
