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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    background: #008600;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.logo h1 {
    font-size: 24px;
    color: #333;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #008600;
}

.cta-button {
    background: #008600 !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #006b00 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

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

.primary-button {
    background: #008600;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

.primary-button:hover {
    background: #006b00;
}

.secondary-button {
    background: transparent;
    color: #008600;
    padding: 15px 30px;
    border: 2px solid #008600;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.secondary-button:hover {
    background: #008600;
    color: white;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.browser-header {
    background: #f1f3f4;
    padding: 15px 20px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca3f; }

.browser-content {
    padding: 30px;
    text-align: center;
}

.status-badge {
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    display: inline-block;
}

.analysis-preview {
    text-align: left;
}

.card-item {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.card-item small {
    color: #28a745;
    font-weight: normal;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

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

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 16px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.step {
    text-align: center;
    padding: 30px;
}

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

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
}

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

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.benefit {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.benefit h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.benefit p {
    color: #666;
}

/* Security */
.security {
    padding: 80px 0;
    background: #f8f9fa;
}

.security h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.security-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.security-item p {
    color: #666;
}

/* Install Section */
.install {
    padding: 80px 0;
    background: linear-gradient(135deg, #008600, #006b00);
    color: white;
    text-align: center;
}

.install h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.install p {
    font-size: 18px;
    margin-bottom: 40px;
}

.install-buttons {
    margin-bottom: 20px;
}

.primary-button.large {
    padding: 20px 40px;
    font-size: 18px;
    background: white;
    color: #008600;
}

.primary-button.large:hover {
    background: #f8f9fa;
}

.install-note {
    font-size: 14px;
    opacity: 0.8;
}

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

.referral-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.referral-section > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.referral-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.card-logo {
    font-size: 48px;
    margin-bottom: 20px;
}

.referral-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.referral-card p {
    color: #666;
    margin-bottom: 20px;
}

.referral-button {
    background: #008600;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
    display: inline-block;
}

.referral-button:hover {
    background: #006b00;
}

.referral-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.referral-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.referral-note strong {
    color: #533c02;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-main {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #555;
    margin-bottom: 30px;
}

.footer-disclaimer {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 15px;
    font-style: italic;
}

.legal-disclaimers-footer h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ccc;
    text-align: center;
}

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

.disclaimer-item {
    font-size: 11px;
    line-height: 1.4;
    color: #bbb;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}

.disclaimer-item strong {
    color: #ddd;
    display: block;
    margin-bottom: 5px;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.close:hover {
    color: #ccc;
}

.modal-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    color: white;
}

.modal-nav button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

#image-counter {
    font-size: 14px;
    color: #ccc;
    min-width: 60px;
    text-align: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Coming Soon Modal Styles */
.coming-soon-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.coming-soon-content h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.coming-soon-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.coming-soon-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.coming-soon-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.coming-soon-buttons .primary-button {
    background: #008600;
    color: white;
}

.coming-soon-buttons .primary-button:hover {
    background: #006b00;
}

.coming-soon-buttons .secondary-button {
    background: transparent;
    color: #008600;
    border: 2px solid #008600;
}

.coming-soon-buttons .secondary-button:hover {
    background: #008600;
    color: white;
}

@media (max-width: 480px) {
    .coming-soon-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .coming-soon-content {
        padding: 30px 15px;
    }
    
    .coming-soon-icon {
        font-size: 48px;
    }
    
    .coming-soon-content h2 {
        font-size: 24px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid,
    .steps,
    .benefits-grid,
    .security-features {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-button,
    .secondary-button {
        text-align: center;
    }
}