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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #1e293b;
    background-color: #fffaf0;
}

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

.header {
    background-color: #1e293b;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #f97316;
}

.main {
    padding: 2rem 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    text-align: center;
    background: linear-gradient(135deg, #fffaf0, #fed7aa);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(to right, #f97316, #ea580c);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.mission-grid, .testimonials-grid, .products-grid, .blog-grid, .cart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.mission-card, .testimonial-card, .product-card, .blog-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #f97316;
    transition: transform 0.3s;
}

.mission-card:hover, .product-card:hover, .blog-card:hover {
    transform: translateY(-5px);
}

.product-card button {
    width: 100%;
    padding: 10px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.product-card button:hover {
    background: #ea580c;
}

.cart-grid .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 2px dashed #f97316;
    margin-bottom: 10px;
}

.cart-grid .cart-item button {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
}

.lead-form {
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #f97316;
}

.lead-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.lead-form button {
    width: 100%;
    padding: 12px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}

.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer ul li a {
    color: #e2e8f0;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #f97316;
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav { display: none; }
    .nav.active { display: block; position: absolute; top: 60px; left: 0; right: 0; background: #1e293b; padding: 1rem; }
    .nav ul { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 2rem; }
}