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

body { font-family: Arial, sans-serif; color: #222; background: #f4f6f8; }

/* HERO */
.swepac-hero {
    height: 70vh;
    min-height: 480px;
    background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.2)), url("img/swepac/swepac0.jpg") center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.swepac-logo {
    position: absolute;
    top: 50px;
    left: 50px;
    max-width: 250px;
}


.swepac-hero-text h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
}

.swepac-hero-text p {
    color: #e6e6e6;
    font-size: 1.2rem;
}

/* INTRO */
.swepac-intro {
    padding: 80px 20px;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.swepac-intro h2 {
    color: #c40018;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* PRODUCTS */
.swepac-products {
    padding: 90px 20px;
    background: #111;
}

.swepac-products h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.swepac-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.swepac-tile {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.swepac-tile:hover { transform: translateY(-6px); }

.swepac-tile img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #111;
    padding: 10px;
    cursor: pointer;
}


.swepac-tile span {
    display: block;
    padding: 18px;
     text-decoration: none;
    color: #fff;
    pointer-events: none;
    font-weight: 600;
    border-top: 3px solid #c40018;
}

/* CONTENT */
.swepac-content {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.swepac-content h2 {
    color: #c40018;
    font-size: 2rem;
    margin-bottom: 25px;
}

.swepac-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.swepac-dark {
    background: #111;
    color: #eee;
}

.swepac-dark h2 { color: #ff2a2a; }
@media (max-width: 1200px) {
    .swepac-hero { height: 60vh; min-height: 420px; padding: 40px; }
    .swepac-logo { top: 30px; left: 30px; max-width: 200px; }
}

@media (max-width: 992px) {
    .swepac-hero { height: 55vh; min-height: 380px; padding: 30px; }
    .swepac-hero-text h1 { font-size: 2.4rem; }
    .swepac-hero-text p { font-size: 1.1rem; }
    .swepac-logo { max-width: 180px; }
}

@media (max-width: 768px) {
    .swepac-hero {
        height: 50vh;
        min-height: 340px;
        padding: 25px;
        align-items: center;
    }

    .swepac-logo {
        top: 35px;
        left: 35px;
        max-width: 150px;
    }

    .swepac-hero-text h1 { font-size: 2rem; }
    .swepac-hero-text p { font-size: 1rem; }

    .swepac-intro { padding: 60px 18px; }
    .swepac-intro h2 { font-size: 1.9rem; }

    .swepac-products { padding: 70px 18px; }
    .swepac-products h2 { font-size: 2rem; }

    .swepac-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 22px;
    }

    .swepac-tile img { height: 220px; }
}

@media (max-width: 576px) {
    .swepac-hero {
        height: 45vh;
        min-height: 300px;
        padding: 20px;
    }

    .swepac-logo {
        top: 30px;
        left: 30px;
        max-width: 130px;
    }

    .swepac-hero-text h1 { font-size: 1.7rem; }
    .swepac-hero-text p { font-size: 0.95rem; }

    .swepac-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .swepac-tile img { height: 200px; }

    .swepac-content { padding: 60px 16px; }
    .swepac-content h2 { font-size: 1.7rem; }
    .swepac-content p { font-size: 0.95rem; }
}