:root {
  --bg: #fffffa;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #fff;
  --hero-bg: #f5f2ec;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;

  --accent: #a38c6b;
  --accent-hover: #d9c5a9;

  --border: #e5e7eb;
}

/* ================= BASE ================= */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 40px 20px;
}

/* ================= TYPOGRAPHY ================= */
h1 {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
    margin-top: 0;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
    margin-top: 16px;
}
h3 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
    margin-top: 16px;
}h4 {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
    margin-top: 16px;
}
.cms-highlight {
  outline: 3px solid #ff3b3b;
  animation: pulse 0.6s ease-in-out 2;
}

@keyframes pulse {
  0% { outline-color: red; }
  50% { outline-color: yellow; }
  100% { outline-color: red; }
}
.left {text-align: left;}

fixed
/* ================= HEADER ================= */
.site-header {
  max-height: 220px;
  overflow: hidden;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  width: 200px;
  height: auto;
  filter: brightness(0);
}

.tagline {
  font-size: 13px;
  color: #000;
  text-align: center;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 16px 26px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s;

    width: 300px;
    text-align: center;
    border: 1px solid #6e542f;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn.secondary {
  background: white;
  color: var(--text);
  border: 1px solid #6e542f;
}
.btn.secondary:hover {background:var(--accent-hover)}
.container.banner {
  border-radius: 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 20px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 1240px;
}
.banner {
  position: relative;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0));
  z-index: 1;
}

.banner-text {
  position: relative;
  z-index: 2;
}
/* ================= HERO ================= */
.hero {
  padding: 80px 0;
  background: var(--hero-bg);
}

.hero-grid {
    display: flex;
    gap: 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    padding: 0px 20px;
    min-height: 600px;
}

.hero-text p {
  font-size: 18px;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  display: block;
}

/* ================= CAMPAIGN STRIP ================= */
.campaign-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
}

.badge {
  background: rgba(255,255,255,0.15);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

/* ================= TIMER ================= */
.timer {
  margin-top: 20px;
  font-weight: 600;
    margin-bottom: 40px;
}

/* ================= BENEFITS ================= */
.benefitslist {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}.benefits {
     display: flex;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  width: 240px;
}

.benefit .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
    .benefit {
      width: 300px;
    }
}
/* ================= STEPS ================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* ================= PRODUCTS ================= */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product img {
  width: 100%;
  border-radius: 12px;max-width: 500px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
    align-items: center;
}

/* ================= SOCIAL ================= */
.social-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.social-hero-bg {
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  z-index: 0;
}

.social-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.social-hero-content {
  position: relative;
  z-index: 2;
}

/* ================= URGENCY ================= */
.urgency {
  background: linear-gradient(135deg, #1e293b, #111827);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* ================= TRUST ================= */
.trust ul {
  list-style: none;
  padding: 0;
}

/* ================= SEO ================= */
.seo {
  padding: 60px 20px;
}

/* ================= STICKY CTA ================= */
.sticky-cta {
  position: sticky;
  bottom: 0;
  left: 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px;
  text-align: center;
  z-index: 1000;
}
.sticky-cta .btn {background: #C89911}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  .hero-grid {
      display: block;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .social-hero {
    height: 320px;
  }
}