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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(26, 31, 62, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(123, 237, 159, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7bed9f;
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(123, 237, 159, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: contents;
}

/* Section Content Centering */
.section-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-content h2 {
    text-align: center;
}

.section-content .section-description {
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(123, 237, 159, 0.1);
    border: 1px solid rgba(123, 237, 159, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #7bed9f;
}

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

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(123, 237, 159, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    color: #1a1f3e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 237, 159, 0.3);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #f8fafc;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background: rgba(26, 31, 62, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 45, 45, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(123, 237, 159, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #7bed9f;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 1rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(45, 45, 45, 0.3);
    border: 1px solid rgba(123, 237, 159, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(123, 237, 159, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* How It Works */
.how-it-works {
    background: rgba(26, 31, 62, 0.3);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    color: #1a1f3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.step p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Products Section */
.products {
    background: rgba(45, 45, 45, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: rgba(26, 31, 62, 0.6);
    border: 2px solid rgba(123, 237, 159, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
}

.product-card.featured {
    border-color: #7bed9f;
    transform: scale(1.05);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(123, 237, 159, 0.3);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    color: #1a1f3e;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #7bed9f;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(123, 237, 159, 0.1);
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: '✓';
    color: #7bed9f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-button {
    background: transparent;
    color: #7bed9f;
    border: 2px solid #7bed9f;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.product-button:hover {
    background: #7bed9f;
    color: #1a1f3e;
}

.featured .product-button {
    background: #7bed9f;
    color: #1a1f3e;
    border-color: #7bed9f;
}

.featured .product-button:hover {
    background: transparent;
    color: #7bed9f;
}

/* Why Choose Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.benefit p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Testimonials */
.testimonials {
    background: rgba(26, 31, 62, 0.4);
}

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

.testimonial {
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(123, 237, 159, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #7bed9f;
}

/* CTA Section */
.cta {
    background: rgba(123, 237, 159, 0.05);
    text-align: center;
}

.cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: rgba(26, 31, 62, 0.6);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(123, 237, 159, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(26, 31, 62, 0.8);
    border: 1px solid rgba(123, 237, 159, 0.2);
    border-radius: 8px;
    color: #f8fafc;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7bed9f;
}

.contact-form button {
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    color: #1a1f3e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(123, 237, 159, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.brand-section {
    max-width: 400px;
}

.links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: #7bed9f;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: #7bed9f;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 237, 159, 0.1);
    color: #94a3b8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 31, 62, 0.95) 0%, rgba(45, 45, 45, 0.95) 100%);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(123, 237, 159, 0.2);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #94a3b8;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #7bed9f;
}

.modal-content h3 {
    color: #f8fafc;
    margin-bottom: 2rem;
    text-align: center;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(26, 31, 62, 0.8);
    border: 1px solid rgba(123, 237, 159, 0.2);
    border-radius: 8px;
    color: #f8fafc;
    font-family: inherit;
}

.modal-content button {
    background: linear-gradient(135deg, #7bed9f 0%, #70a1ff 100%);
    color: #1a1f3e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-wrapper {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .links-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .feature-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-photo {
        height: 250px;
    }
}