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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f0f9f0 0%, #ffffff 50%, #e8f5e8 100%);
}

.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);
    border-bottom: 2px solid #e8f5e8;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #2d5a27;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #4a7c59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

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

.hero-content {
    space-y: 30px;
}

.limited-offer {
    background: #fef2f2;
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #4a7c59;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.original-price {
    text-align: center;
}

.original-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #dc2626;
    text-decoration: line-through;
}

.original-price .label {
    font-size: 0.9rem;
    color: #666;
}

.current-price {
    font-size: 4rem;
    font-weight: bold;
    color: #4a7c59;
}

.save-badge {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
}

.cta-button {
    background: #4a7c59;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #3d6b47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

.guarantee-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.species-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark {
    color: #4a7c59;
    font-size: 1.5rem;
}

/* Video Demonstrations Section */
.video-demos {
    background: #f9fafb;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2d5a27;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 60px;
}

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

.video-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2d5a27;
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-description {
    color: #666;
    text-align: center;
    margin-bottom: 15px;
}

.main-video-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.main-video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

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

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

.feature-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.green-gradient {
    background: linear-gradient(135deg, #4a7c59, #2d5a27);
}

.teal-gradient {
    background: linear-gradient(135deg, #10b981, #059669);
}

.orange-gradient {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.purple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.blue-gradient {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2d5a27;
}

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

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

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

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a7c59;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.step-card .step-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2d5a27;
}

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

.cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Comparison Table */
.comparison-section {
    background: white;
    padding: 80px 0;
}

.comparison-table-wrapper {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
}

.comparison-table-wrapper h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f3f4f6;
    font-weight: bold;
}

.comparison-table th:nth-child(2) {
    background: #dcfce7;
    color: #166534;
}

.comparison-table td:nth-child(2) {
    background: #f0fdf4;
    font-weight: bold;
    color: #166534;
}

/* Earning Potential Section */
.earning-potential {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
    color: white;
    padding: 80px 0;
}

.white-text {
    color: white;
}

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

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.stat-description {
    color: rgba(255,255,255,0.9);
}

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

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.ps-text {
    margin-top: 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 5px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .main-video-placeholder {
        height: 300px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}


