/* =========================
   BASE (LIGHT)
========================= */
body{
    margin:0;
    font-family:Segoe UI,Roboto,sans-serif;
    background:#f6f8fb;
    color:#1f2937;
}
a{text-decoration:none;color:inherit}

/* =========================
   SECTIONS
========================= */
.section{
    max-width:1300px;
    margin:auto;
    padding:70px 20px;
}
.section h2{
    font-size:28px;
    margin-bottom:30px;
    color:#111827;
}

/* =========================
   HERO
========================= */
.hero-feature{
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:40px;
    margin-bottom:60px;
}
.hero-media{
    border-radius:12px;
    overflow:hidden;
}
.hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.hero-content h1{
    font-size:44px;
    line-height:1.1;
    margin-bottom:18px;
    color:#0f172a;
}
.hero-content p{
    font-size:18px;
    line-height:1.6;
    color:#6b7280;
    margin-bottom:26px;
}
.hero-btn{
    background:#2563eb;
    color:#fff;
    padding:14px 28px;
    border-radius:30px;
    font-weight:700;
    align-self:flex-start;
    box-shadow:0 8px 20px rgba(37,99,235,0.25);
}
.hero-btn:hover{
    background:#1d4ed8;
}

/* =========================
   IMAGE WALL
========================= */
.image-wall{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.wall-card{
    position:relative;
    border-radius:12px;
    overflow:hidden;
    background:#ffffff;
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
}
.wall-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}
.wall-card:hover img{transform:scale(1.05)}
.wall-title{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:14px;
    background:linear-gradient(to top,rgba(0,0,0,.55),transparent);
    color:#fff;
}

/* =========================
   GRIDS & CARDS
========================= */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:24px;
}
.card{
    background:#ffffff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    transition:.25s;
}
.card:hover{
    transform:translateY(-4px);
}
.card img{width:100%;display:block}
.card-body{
    padding:18px;
    color:#374151;
}

/* =========================
   TOP BRANDS
========================= */
.top-brands{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}
.brand-pill{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    background:#ffffff;
    border-radius:999px;
    font-weight:700;
    border:1px solid #e5e7eb;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
    transition:.2s;
}
.brand-pill:hover{
    background:#f1f5f9;
    transform:translateY(-2px);
}
.brand-count{
    background:#2563eb;
    color:#fff;
    font-size:12px;
    font-weight:800;
    padding:4px 10px;
    border-radius:999px;
}

/* =========================
   FOOTER
========================= */
.site-footer{
    background:#f1f5f9;
    border-top:1px solid #e5e7eb;
    margin-top:90px;
}
.footer-wrap{
    max-width:1300px;
    margin:auto;
    padding:60px 20px;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:50px;
}
.footer-bottom{
    border-top:1px solid #e5e7eb;
    padding:22px 20px;
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#6b7280;
}

/* =========================
   MOBILE LAYOUT
========================= */
@media (max-width:768px){
    .section{padding:40px 14px}
    .hero-feature{grid-template-columns:1fr}
    .image-wall{grid-template-columns:repeat(2,1fr)}
    .grid{grid-template-columns:1fr}
    .footer-wrap{grid-template-columns:1fr}
}


.hero-btn {
    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#ef4444;
    color:#fff;
    padding:12px 22px;

    border-radius:8px;
    font-weight:600;
    font-size:14px;

    text-decoration:none;
    transition:all .25s ease;
}

/* arrow */
.hero-btn span{
    transition:transform .25s ease;
}

/* hover */
.hero-btn:hover{
    background:#dc2626;
    transform:translateY(-2px);
}

/* arrow move */
.hero-btn:hover span{
    transform:translateX(4px);
}