/* 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: #333;
    background-color: #F5F3F0;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Logo and Branding */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4F46E5;
    margin: 0;
}

.brand-name a {
    color: inherit;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.btn-primary:hover {
    background-color: #3730A3;
    border-color: #3730A3;
}

.btn-secondary {
    background-color: #DC2626;
    color: white;
    border-color: #DC2626;
}

.btn-secondary:hover {
    background-color: #B91C1C;
    border-color: #B91C1C;
}

.btn-outline {
    background-color: transparent;
    color: #4F46E5;
    border-color: #4F46E5;
}

.btn-outline:hover {
    background-color: #4F46E5;
    color: white;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #E8E4E0 0%, #D1CCC7 100%);
    border: 2px dashed #A8A29E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #6B7280;
    min-height: 200px;
    text-align: center;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F3F0 0%, #E8E4E0 100%);
    padding: 80px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, #4F46E510 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, #DC262610 0%, transparent 50%);
}

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

.hero-content {
    max-width: 600px;
}

.logo-section {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3rem;
    color: #1F2937;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6B7280;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 80px 0;
}

.centered-section {
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.intro {
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    color: #1F2937;
    margin-bottom: 24px;
}

.intro p {
    font-size: 1.1rem;
    color: #6B7280;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #F9F7F4 0%, #F5F3F0 100%);
}

.how-it-works h2 {
    margin-bottom: 60px;
    color: #1F2937;
}

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

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0F4FF;
    border-radius: 50%;
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step h3 {
    color: #1F2937;
    margin-bottom: 16px;
}

.step p {
    color: #6B7280;
}

/* Products */
.products {
    background-color: white;
}

.products h2 {
    margin-bottom: 60px;
    color: #1F2937;
}

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

.product-card {
    background: #F9F7F4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-image .image-placeholder {
    min-height: 200px;
    border-radius: 0;
    border: none;
    margin-bottom: 0;
}

.product-card h3 {
    color: #1F2937;
    padding: 20px 20px 10px;
}

.product-card p {
    color: #6B7280;
    padding: 0 20px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4F46E5;
    padding: 0 20px;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.seasonal-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
}

.product-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    padding: 10px 16px;
}

/* Customization */
.customization {
    background: linear-gradient(135deg, #F9F7F4 0%, #F5F3F0 100%);
}

.customization h2 {
    margin-bottom: 60px;
    color: #1F2937;
}

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

.service {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service h3 {
    color: #4F46E5;
    margin-bottom: 16px;
}

.service p {
    color: #6B7280;
}

/* Seasonal */
.seasonal {
    background-color: white;
}

.seasonal h2 {
    margin-bottom: 20px;
    color: #1F2937;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto 60px;
}

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

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

.seasonal-image .image-placeholder {
    min-height: 250px;
    margin-bottom: 24px;
}

.seasonal-card h3 {
    color: #1F2937;
    margin-bottom: 16px;
}

.seasonal-card p {
    color: #6B7280;
}

/* Corporate */
.corporate {
    background: linear-gradient(135deg, #F0F4FF 0%, #E0E7FF 100%);
}

.corporate-content {
    max-width: 800px;
    margin: 0 auto;
}

.corporate h2 {
    color: #1F2937;
    margin-bottom: 24px;
}

.corporate > div > p {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 50px;
}

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

.corporate .feature {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.corporate .feature h3 {
    color: #4F46E5;
    margin-bottom: 12px;
}

.corporate .feature p {
    color: #6B7280;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonials h2 {
    margin-bottom: 60px;
    color: #1F2937;
}

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

.testimonial {
    background: #F9F7F4;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #4F46E5;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial blockquote {
    font-size: 1.1rem;
    color: #1F2937;
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial cite {
    color: #6B7280;
    font-weight: 500;
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(135deg, #F9F7F4 0%, #F5F3F0 100%);
}

.why-choose h2 {
    margin-bottom: 60px;
    color: #1F2937;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    color: #4F46E5;
    margin-bottom: 16px;
}

.feature-card p {
    color: #6B7280;
}

/* Contact */
.contact {
    background-color: white;
}

.contact h2 {
    margin-bottom: 60px;
    color: #1F2937;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-item h3 {
    color: #4F46E5;
    margin-bottom: 16px;
}

.contact-item a {
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #4F46E5;
}

.contact-item p {
    color: #6B7280;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section .brand-name {
    color: white;
}

.footer-section p {
    color: #9CA3AF;
    margin-bottom: 0;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #9CA3AF;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .seasonal-grid {
        grid-template-columns: 1fr;
    }
    
    .corporate-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}