/* 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: #2D2D2D;
    background-color: #FEFDFB;
}

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

/* Header */
.header {
    background: #FEFDFB;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(45, 45, 45, 0.05);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #2D2D2D;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2D2D2D;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: #666;
    max-width: 500px;
}

.cta-button {
    background: #7BA05B;
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #6A8F4A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 160, 91, 0.3);
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(45, 45, 45, 0.15);
}

.features-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(45, 45, 45, 0.12);
}

.image-placeholder {
    background: #F8F6F2;
    border: 2px dashed #D4A574;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.image-placeholder span {
    font-weight: 500;
    color: #7BA05B;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #FEFDFB;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2D2D2D;
}

.about p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.08);
}

.stat-icon {
    flex-shrink: 0;
}

.stat-text strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2D2D2D;
}

.stat-text span {
    color: #666;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #F8F6F2;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.08);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2D2D2D;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #FEFDFB;
    text-align: center;
}

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

.features-text {
    text-align: left;
}

.features-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2D2D2D;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item span {
    font-size: 16px;
    color: #2D2D2D;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #F8F6F2;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.product-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.08);
    position: relative;
}

.product-card.featured {
    border: 2px solid #7BA05B;
    transform: scale(1.05);
}

.product-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #7BA05B;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-icon {
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2D2D2D;
}

.product-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #7BA05B;
    margin-bottom: 20px;
}

.product-button {
    background: #7BA05B;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.product-button:hover {
    background: #6A8F4A;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #FEFDFB;
    text-align: center;
}

.benefits h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.benefit-item {
    padding: 24px;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2D2D2D;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #F8F6F2;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.08);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #2D2D2D;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    color: #2D2D2D;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #FEFDFB;
    text-align: center;
}

.how-it-works h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.step {
    padding: 24px;
}

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

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2D2D2D;
}

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

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background: #F8F6F2;
    text-align: center;
}

.contacts h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2D2D2D;
}

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

.contact-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.08);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2D2D2D;
}

.contact-content a {
    color: #7BA05B;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-content address {
    font-style: normal;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2D2D2D;
    color: white;
    padding: 60px 0 30px 0;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-brand .header-brand {
    margin-bottom: 16px;
}

.footer-brand p {
    margin-top: 16px;
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #7BA05B;
}

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

.footer-bottom p {
    color: #ccc;
    font-size: 15px;
}

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

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #666;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

.close:hover {
    color: #2D2D2D;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #2D2D2D;
    font-size: 24px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-button {
    background: #7BA05B;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.submit-button:hover {
    background: #6A8F4A;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-text {
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .features-image img {
        height: 280px;
    }
}