/* styles.css */
* {
    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: #333;
    background-color: #fff;
}

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

/* Fixed Header */
.fixed-header {
    position: relative;
    top: 0;
    width: 100%;
    background-color: #00C851;
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.header-text {
    font-size: 14px;
    font-weight: 500;
}

.header-btn {
    background: white;
    color: #00C851;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.header-btn:hover {
    background-color: #f0f0f0;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 100%);
    text-align: center;
}

.logo-container {
    margin-top: -32px;
    margin-bottom: 32px;
}

.logo {
    height: 64px;
    width: auto;
}

.badge {
    display: inline-block;
    background-color: #e8f5e8;
    color: #00C851;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.text-green {
    color: #00C851;
}

.hero-subtitle {
    font-size: 2rem;
    color: #666;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.alert-box {
    background-color: #fef2f2;
    border-left: 4px solid #f87171;
    padding: 16px;
    margin: 32px auto;
    max-width: 500px;
    border-radius: 4px;
}

.alert-box p {
    color: #b91c1c;
    font-weight: 600;
}

/* Video Container 
.video-container {
    margin: 32px auto;
    max-width: 800px;
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,200,81,0.2) 0%, rgba(59,130,246,0.2) 100%);
}

.video-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.video-play-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 16px;
    opacity: 0.8;
}

.video-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-subtitle {
    color: #ccc;
    font-size: 0.875rem;
}

#videoIframe {
    width: 100%;
    height: 100%;
}
*/




.video-container {
  position: relative;
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  margin: 32px 0;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


.cta-button {
    background: #00C851;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0,200,81,0.3);
    margin-top: 32px;
}

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

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.benefit-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    font-size: 2rem;
    color: #00C851;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 600px;
    overflow: hidden;
}

.comparison-table thead {
    background: #00C851;
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tbody tr:nth-child(odd) {
    background: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    font-style: italic;
    color: #374151;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.875rem;
}

.author-role {
    color: #666;
    font-size: 0.75rem;
}

/* How it Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #f0f9f0;
}

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

.step-card {
    text-align: center;
}

.step-number {
    background: white;
    color: #00C851;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 2rem;
    color: #00C851;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-card p {
    color: #666;
    font-size: 0.875rem;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: white;
}

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

.result-card {
    background: #f0f9f0;
    border: 2px solid #c6f6d5;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.result-icon {
    font-size: 2rem;
    color: #00C851;
    margin-bottom: 16px;
}

.result-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #047857;
    margin-bottom: 8px;
}

.result-card p {
    color: #374151;
    font-size: 0.875rem;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.security-section .section-title {
    color: white;
}

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

.security-item {
    text-align: center;
}

.security-icon {
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 16px;
}

.security-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.security-item p {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #00C851;
    color: white;
    text-align: center;
}

.pricing-section .section-title {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    color: #1a1a1a;
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

.pricing-card.featured {
    border: 4px solid #fbbf24;
}

.best-offer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1a1a1a;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.pricing-header {
    margin-bottom: 24px;
}

.plan-type {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00C851;
    margin-bottom: 8px;
}

.price-description {
    color: #666;
    font-size: 0.875rem;
}

.installment {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.savings {
    color: #047857;
    font-weight: 600;
    font-size: 0.875rem;
}

.license-selector {
    margin-bottom: 24px;
}

.license-selector label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.license-buttons {
    display: flex;
    gap: 8px;
}

.license-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #374151;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.license-btn.active,
.license-btn:hover {
    background: #00C851;
    color: white;
    border-color: #00C851;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.features-list i {
    color: #00C851;
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    background: #00C851;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-btn:hover {
    background: #00A844;
}

.pricing-disclaimer {
    margin-top: 24px;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-icon.rotated {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: #666;
    font-size: 0.875rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.final-cta-section .section-title {
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #d1d5db;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 32px;
}

.final-cta-box {
    background: #00C851;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 32px;
}

.final-cta-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.final-cta-box p {
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.final-cta-btn {
    background: white;
    color: #00C851;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

/* Footer */
.footer {
    background: #374151;
    color: white;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .steps-grid,
    .results-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .header-btn {
        width: 100%;
    }
    
    .license-buttons {
        flex-direction: column;
    }
    
    .comparison-table {
        font-size: 0.75rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .pricing-card,
    .benefit-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 32px;
    }
}