*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:"Poppins", system-ui, Arial, sans-serif;
  background:#fff8f5;
  color:#222;
}

a{
  color:#C41E3A;
  text-decoration:none;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* HEADER */
.site-header{
  background:#ffffff;
  text-align:center;
  padding:12px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.logo{
  width:380px;
  max-width:85vw;
  margin:0 auto 8px;
  display:block;
}

.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.nav-list a{
  color:#000;
  font-weight:700;
  padding:8px 12px;
  border-radius:999px;
}

.nav-list a:hover,
.nav-list a.active{
  background:rgba(0,0,0,.08);
}

/* HERO */
.hero{
  background:linear-gradient(rgba(196,30,58,.92), rgba(196,30,58,.92));
  padding:100px 20px;
  text-align:center;
}

.hero-inner{
  color:white;
  max-width:800px;
  margin:0 auto;
}

.hero h1{
  font-size:44px;
  font-weight:800;
  margin-bottom:14px;
}

.hero p{
  font-size:18px;
  margin-bottom:28px;
}

.btn{
  background:white;
  color:#C41E3A;
  padding:14px 26px;
  border-radius:999px;
  font-weight:800;
  display:inline-block;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.btn:hover{
  transform:scale(1.05);
}

/* SECTIONS */
.section{
  padding:64px 0;
}

.section-soft{
  background:white;
}

/* MARKEN */
.marken-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:20px;
}

.brand-card{
  background:white;
  border:1px solid rgba(0,0,0,.10);
  border-radius:14px;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s ease, box-shadow .25s ease;
}

.brand-card img{
  max-width:150px;
  height:40px;
  object-fit:contain;
}

.brand-card:hover{
  transform:scale(1.06);
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  z-index:2;
}

/* RESPONSIVE */
@media(max-width:900px){
  .marken-grid{ grid-template-columns:repeat(3,1fr); }
}

@media(max-width:600px){
  .marken-grid{ grid-template-columns:repeat(2,1fr); }
}

/* FOOTER */
.footer{
  background:black;
  color:white;
  text-align:center;
  padding:18px;
}

/* JS EFFECTS */
.site-header.is-scrolled{
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:.6s;
}

.reveal.reveal-in{
  opacity:1;
  transform:none;
}

.to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#C41E3A;
  color:white;
  font-size:20px;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.to-top.show{
  opacity:1;
  pointer-events:auto;
}
