/* =========================
   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:5px;
    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;
}

/* =========================
   IMAGE WALL
========================= */
.image-wall{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}
.wall-card{
    position:relative;
    border-radius:5px;
    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:5px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    transition:.25s;
}
.card:hover{
   box-shadow:0 6px 20px rgba(0,0,0,0.20);
}
.card img{width:100%;display:block}
.card-body{
    padding:18px;
    color:#374151;
}
.card h3{
font-size: 22px;
    font-weight: 900;
}
/* =========================
   TOP BRANDS
========================= */



/* =========================
   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}
}

/* arrow */

/* hover */

/* arrow move */


.top-banner-wrap{
    background:#1a1d26;

    margin-bottom:20px;
}

.banner-container{
    text-align:center;
padding: 15px;
}

/* base */

/* variations */



















.compare-cta2{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:16px 20px;
  gap:15px;
}

.cta-title{
  font-size:18px;
  font-weight:700;
  color:#111827;
}

.cta-sub{
  font-size:13px;
  color:#6b7280;
  margin-top:2px;
}

.cta-btn2{
  background:#111827;
  color:#fff;
  padding:10px 18px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:0.2s;
}

.cta-btn2:hover{
  background:#000;
}
.image-wall{
    display:grid;
    grid-template-columns:repeat(6,1fr); /* important */
    gap:22px;
}

/* FIRST ROW (2 items) */
.image-wall a:nth-child(1),
.image-wall a:nth-child(2){
    grid-column: span 3;
}

/* REST (3 per row) */
.image-wall a:nth-child(n+3){
    grid-column: span 2;
}
/* =========================
   BRAND SECTION REDESIGN
========================= */

.brand-section h2{
    margin-bottom:25px;
}

/* GRID */
.brand-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

/* CARD */
.brand-card{
    display:flex;
    align-items:center;
    gap:14px;

    background:#ffffff;
    border-radius:12px;
    padding:16px 18px;

    border:1px solid #e5e7eb;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);

    transition:all .25s ease;
}

/* HOVER */
.brand-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,0.10);
}

/* ICON */
.brand-icon{
    width:44px;
    height:44px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:800;
    font-size:16px;

    background:#111827;
    color:#fff;
}

/* TEXT */
.brand-title{
    font-weight:700;
    font-size:15px;
    color:#111827;
}

.brand-meta{
    font-size:12px;
    color:#6b7280;
}

/* RIGHT ARROW */
.brand-arrow{
    margin-left:auto;
    font-size:16px;
    color:#9ca3af;
    transition:.2s;
}

.brand-card:hover .brand-arrow{
    transform:translateX(4px);
    color:#111827;
}

/* =========================
   HERO SPECS (NEW)
========================= */

.hero-specs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:14px 0 18px;
}

/* EACH ITEM */
.spec{
    display:flex;
    align-items:center;
    gap:8px;

    background:#ffffff;
    border:1px solid #e5e7eb;

    padding:8px 12px;
    border-radius:8px;

    font-size:13px;
    font-weight:600;
    color:#374151;

    box-shadow:0 2px 6px rgba(0,0,0,0.04);
    transition:.2s;
}

/* HOVER */
.spec:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

/* ICON */
.spec-icon{
    font-size:14px;
}

/* TEXT */
.spec-text{
    white-space:nowrap;
}
/* =========================
   HERO CTA (NEW)
========================= */

.hero-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(135deg,#111827,#374151);
    color:#fff;

    padding:14px 24px;
    border-radius:10px;

    font-size:14px;
    font-weight:700;
    letter-spacing:.2px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    transition:all .25s ease;
}

/* hover */
.hero-cta:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 35px rgba(0,0,0,0.25);
}

/* arrow */
.cta-icon{
    transition:transform .25s ease;
}

/* arrow move */
.hero-cta:hover .cta-icon{
    transform:translateX(5px);
}
