:root {
    --red: #FF0000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --text-gray: #666;
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: var(--dark-gray);
    min-height: 100vh;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
}

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

.logo {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.tagline {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--text-gray);
    font-weight: 400;
}

/* Section Styles */
.products,
.services {
    padding: 5rem 0;
}

.services {
    background-color: var(--light-gray);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}


.product-card {
    background: white;
    border: 2px solid var(--border-gray);
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 16px rgba(34,34,34,0.04);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--red);
    box-shadow: 0 16px 48px rgba(255, 0, 0, 0.18);
    z-index: 2;
}


.product-icon {
    font-size: 1.75rem;
    margin-right: 0.5rem;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.product-description {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-link {
    color: var(--red);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--red);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--dark-gray);
    color: white;
}

footer p {
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 2rem 0 1.5rem;
    }

    .products,
    .services {
        padding: 3rem 0;
    }

    .product-grid,
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card,
    .service-card {
        padding: 2rem;
    }
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    color: #FF0000;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: #FF0000;
}
