/* RESET */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}
body{
  font-family:Poppins,system-ui,sans-serif;
  background:#fff;
  color:#111;
  line-height:1.6;
}
a{
  text-decoration:none;
  color:inherit;
}
.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}
main{
  padding-top:90px;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;left:0;right:0;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:1000;
}
.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:64px;
}
.logo img{
  height:40px;
}
.nav-links{
  display:flex;
  gap:24px;
}
.nav-links a{
  font-weight:500;
}
.nav-cta{
  background:#d32f2f;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  font-weight:600;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:26px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:1200;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:280px;
  height:100vh;
  background:#fff;
  box-shadow:-4px 0 20px rgba(0,0,0,.1);
  padding:80px 24px;
  transition:.3s;
  z-index:1100;
}
.mobile-menu.active{
  right:0;
}
.mobile-menu a{
  display:block;
  margin-bottom:18px;
  font-weight:600;
  font-size:16px;
}
.mobile-menu .mm-main{
  background:#d32f2f;
  color:#fff;
  padding:14px 16px;
  border-radius:8px;
  margin-bottom:24px;
  text-align:center;
}
.mobile-menu .mm-divider{
  height:1px;
  background:#eee;
  margin:20px 0;
}
.mobile-menu .mm-legal{
  font-size:14px;
  color:#666;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  display:none;
  z-index:1050;
}
.overlay.active{
  display:block;
}

/* HERO (HOMEPAGE ONLY) */
.hero{
  padding-top:120px;
  padding-bottom:80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.hero h1{
  font-size:2.7rem;
  line-height:1.2;
  margin-bottom:14px;
}
.hero p{
  color:#444;
  margin-bottom:24px;
  max-width:520px;
}
.hero .cta{
  display:inline-block;
  background:#d32f2f;
  color:#fff;
  padding:15px 28px;
  border-radius:8px;
  font-weight:700;
}

/* TRUST MINI */
.trust{
  margin-top:18px;
  font-size:14px;
  color:#555;
}
.trust span{
  display:inline-block;
  margin-right:14px;
}

/* SQUARE BANNER */
.square-banner{
  background:#f5f5f5;
  border-radius:16px;
  aspect-ratio:1/1;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.square-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* SECTIONS */
.section{
  padding:70px 0;
  border-top:1px solid #eee;
}
.section h1{
  font-size:2.2rem;
  margin-bottom:16px;
}
.section h2{
  font-size:1.8rem;
  margin-bottom:14px;
}
.section h3{
  font-size:1.2rem;
  margin:18px 0 8px;
}
.section p{
  color:#444;
  margin-bottom:12px;
}
.section ul{
  margin-top:12px;
  padding-left:18px;
}
.section li{
  margin-bottom:8px;
  color:#444;
}

/* CTA */
.cta{
  display:inline-block;
  background:#d32f2f;
  color:#fff;
  padding:15px 28px;
  border-radius:8px;
  font-weight:700;
  margin-top:20px;
}

/* CTA SECONDARY */
.cta-secondary{
  display:inline-block;
  border:2px solid #d32f2f;
  color:#d32f2f;
  padding:14px 26px;
  border-radius:8px;
  font-weight:700;
  margin-top:20px;
}

/* FOOTER */
footer{
  background:#111;
  color:#ccc;
  padding:50px 0;
  margin-top:80px;
}
footer a{
  color:#ccc;
  font-size:14px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}
.footer-bottom{
  margin-top:30px;
  font-size:13px;
  color:#777;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .nav-links{
    display:none;
  }
  .hamburger{
    display:block;
  }
}
