* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #000;
  background: #fff;
}

/* COUPON BAR */
.top-offer {
  display: block;
  background: linear-gradient(90deg, #ffa94d, #f36b21);
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
}

/* MARQUEE */
.top-marquee {
  display: block;
  background: #111;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  padding: 8px 0;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 14s linear infinite;
}

.marquee-content span {
  margin: 0 24px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* HEADER */
.site-header {
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 36px;
}

.header-cta {
  background: #f36b21;
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 4px;
}

/* HERO */
.hero {
  background: #fff7ef;
  padding: 32px 16px;
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  gap: 32px;
}

.hero-image img {
  max-width: 420px;
  margin: auto;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content ul {
  padding-left: 18px;
  margin-bottom: 24px;
}

.hero-content li {
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-cta {
  display: inline-block;
  background: #f36b21;
  color: #fff;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 6px;
}

/* FOOTER */
.site-footer {
  background: #0f0f0f;
  color: #ccc;
  padding: 56px 16px;
}

.footer-inner {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.footer-logo {
  height: 44px;
  margin-bottom: 24px;
}

footer p {
  font-size: 14px;
  line-height: 1.7;
}

footer strong {
  color: #fff;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
