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

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

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


.cta-button {
    background-color: #00ff00;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #8fcf8f;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00ff00 0%, #00ff00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.demo-button {
    background-color: #00ff00;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

.explore-button {
    background-color: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.explore-button:hover {
    background-color: #00ff00;
    color: #000000;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual {
    width: 400px;
    height: 400px;
 /* background: radial-gradient(circle, #00ff00 0%, #004400 70%); */
    background: radial-gradient(circle, #00ff00 0%, #93ffae 70%);
    border-radius: 50%;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.ai-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #000000;
    border-radius: 50%;
    border: 3px solid #00ff00;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #00ff00;
}

/* AI Benefits Section */
.ai-benefits {
    padding: 100px 0;
    background-color: #111111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #00ff00;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: #000000;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.stat-icon {
    color: #ff4444;
    font-size: 1.5rem;
    font-weight: bold;
}

.stat-text {
    color: #ffffff;
    font-size: 1.1rem;
}

.calculator-button {
    background-color: #ff4444;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 40px auto 0;
}

.calculator-button:hover {
    background-color: #cc3333;
    transform: translateY(-2px);
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    display: none;
}

.calculator-section.active {
    display: block;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #666;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
}

.calculator-results {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-label {
    font-weight: 500;
    color: #ffffff;
}

.result-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #00ff00;
}

.highlight-result {
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #ff4444;
}

.highlight-result .result-value {
    color: #ff4444;
    font-size: 1.5rem;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background-color: #111111;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-card {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

.quote-section {
    text-align: center;
    margin-top: 60px;
}

.quote-section blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #00ff00;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #00ff00;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background-color: #111111;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #00ff00;
    transform: translateY(-5px);
}

.check-icon {
    color: #00ff00;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.benefit-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
    background-color: #000000;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.compliance-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
}

.compliance-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.compliance-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.compliance-item p {
    color: #cccccc;
    line-height: 1.6;
}

.compliance-cta {
    text-align: center;
    margin-top: 60px;
}

.compliance-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.pricing-button {
    background-color: #00ff00;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.guarantee-content p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guarantee-button {
    background-color: #00ff00;
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.guarantee-button:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: #000000;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.cta-step {
    text-align: center;
    padding: 40px 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.cta-step:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
}

.cta-step .step-number {
    width: 50px;
    height: 50px;
    background-color: #00ff00;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.cta-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-step p {
    color: #cccccc;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    margin-top: 80px;
}

.main-cta-button {
    background-color: #00ff00;
    color: #000000;
    border: none;
    padding: 20px 40px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.main-cta-button:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

.legacy-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 10px;
}

.future-text {
    font-size: 1.1rem;
    color: #00ff00;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #cccccc;
    margin-top: 20px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 10px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        background-color: #333;
        border-radius: 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .dropdown-link {
        padding: 10px 15px;
        border-bottom: 1px solid #555;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .calculator {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .demo-button,
    .explore-button {
        width: 100%;
    }
}



@media (min-width: 768px) {
  .cursor-dot,
  .cursor-dot-outline {
    z-index: 1100;
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50% /* rtl:ignore */;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff00;
  }
  .cursor-dot-outline {
    width: 30px;
    height: 30px;
    background-color: #00ff00;
    opacity: 0.7 !important;
  }
}
