/* RESET */
body {
  margin:0;
  font-family:'Inter',sans-serif;
  background:#fff6d6;
  color:#1a1a1a;
}

/* CONTAINER */
.container {
  width:92%;
  max-width:1150px;
  margin:auto;
}

/* HEADER */
.header-wrap {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 0;
}

.logo {
  font-weight:700;
  font-size:22px;
}

/* BUTTON */
.cta-btn {
  background:linear-gradient(135deg,#ff7a00,#ffae00);
  color:#fff;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  box-shadow:0 10px 25px rgba(255,122,0,0.4);
  transition:0.2s;
}

.cta-btn:hover {
  transform:translateY(-2px);
  box-shadow:0 15px 30px rgba(255,122,0,0.5);
}

/* HERO */
.hero {
  background:linear-gradient(135deg,#ffe600,#ff7a00);
  border-radius:0 0 70px 70px;
  padding:100px 0;
}

.hero-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* HERO TEXT */
.hero-text {
  max-width:520px;
}

.hero-text h1 {
  font-size:44px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-text p {
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
}

/* HERO RIGHT */
.hero-right {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}

.hero-right img {
  width:280px;
}

/* BADGES */
.hero-badges {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  max-width:300px;
}

.hero-badges span {
  background:#fff;
  padding:10px 14px;
  border-radius:20px;
  font-size:14px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* SECTION */
.section {
  padding:90px 0;
}

/* GLASS */
.glass {
  background:rgba(255,255,255,0.9);
  border-radius:30px;
  padding:50px;
  box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

/* FLEX */
.flex {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  justify-content:center;
}

/* CARD */
.card {
  flex:1;
  min-width:260px;
  max-width:320px;
  background:#fff;
  padding:35px;
  border-radius:25px;
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
  transition:0.2s;
  text-align:center;
}

.card:hover {
  transform:translateY(-6px);
}

/* OFFGRID SECTION */
.offgrid {
  background:linear-gradient(135deg,#ff7a00,#ff3c00);
  color:#fff;
  padding:60px;
  border-radius:35px;
  text-align:center;
  box-shadow:0 30px 60px rgba(0,0,0,0.15);
}

.offgrid h2 {
  font-size:34px;
  margin-bottom:10px;
}

.offgrid-intro {
  font-size:18px;
  margin-bottom:40px;
}

/* COMPARE */
.offgrid-compare {
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  justify-content:center;
}

.bad, .good {
  flex:1;
  min-width:260px;
  max-width:420px;
  padding:30px;
  border-radius:25px;
}

.bad {
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
}

.good {
  background:#fff;
  color:#1a1a1a;
}

.highlight {
  margin-top:15px;
  font-weight:700;
  font-size:18px;
}

/* OFFGRID CTA */
.offgrid-bottom {
  margin-top:40px;
  font-size:18px;
}

.offgrid-bottom .cta-btn {
  margin-top:20px;
  background:#fff;
  color:#ff3c00;
}

/* TAG */
.tag {
  display:inline-block;
  background:#00a86b;
  color:#fff;
  padding:10px 15px;
  margin:6px;
  border-radius:25px;
  font-size:14px;
}

/* FOOTER */
.footer {
  background:#111;
  color:#fff;
  text-align:center;
  padding:30px;
}

/* MOBILE */
@media(max-width:768px){

  .hero-inner {
    flex-direction:column;
    text-align:center;
  }

  .hero-text h1 {
    font-size:30px;
  }

  .hero-right img {
    width:200px;
  }

  .flex {
    flex-direction:column;
  }

  .offgrid-compare {
    flex-direction:column;
  }

}