/* HERO */
.hero {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    text-align: center;
    padding: 60px 20px;
    color: white;
}

.hero-logo {
    width: 130px;
    border-radius: 20px;
    background: white;
    padding: 10px;
    margin-bottom: 15px;
}
.hero p{
    font-size: 1.2rem;
}

/* GLASS CARD */
.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    margin: -40px auto 40px;
    max-width: 1000px;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.glass h2, .section h2 {
    font-size: 1.5rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 15px;
    margin: 30px 0;
    font-size: 1.2rem;
}

.info-cards div {
    background: #f2fffb;
    padding: 15px;
    border-radius: 15px;
    font-weight: 500;
}

.about p{
    font-size: 1.1rem;
    text-align: justify;
}
/* SECTIONS */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 30px 20px;
}

.section h2 {
    color: #0f9d58;
    margin-bottom: 20px;
}

/* TIMELINE */
.timeline div {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.timeline span {
    background: #1abc9c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
}

/* FOUNDERS */
.founder-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
}

.founder-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.founder-card h3{
    font-size: 1.2rem;
    margin-top: 15px;
}

.founder-card:hover {
    transform: translateY(-8px);
}

.founder-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid #1abc9c;
}

/* PRODUCTS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 30px;
    align-items: start;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 10px;
    height: 280px;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.product-preview {
    cursor: zoom-in;
}

.product-grid h4{
    font-size: 1.1rem;
    text-align: center;
    margin: 15px 0 ;
}

.product-image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 9999;
}

.product-image-modal.active {
    display: flex;
}

.product-image-modal-content {
    max-width: min(92vw, 920px);
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-image-close {
    position: absolute;
    top: 16px;
    right: 24px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

/* CTA */
.cta {
    text-align: center;
    margin: 40px 0;
}

.cta button {
    background: #16a085;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
}

.cta button:hover {
    background: #138d75;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 640px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image-modal {
        padding: 16px;
    }

    .product-image-close {
        font-size: 38px;
        right: 12px;
    }
}