/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f49834;
  --cream: #fff7ea;
  --blue: #2c92bf;
  --blue-dark: #1a6a8f;
  --green: #3d9a6e;
  --text: #2a2a2a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--blue);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p + p {
  margin-top: 1rem;
}

/* ── Layout ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: transparent;
  color: var(--orange);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-blue:hover {
  background: transparent;
  color: var(--blue);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}


/* ── Hero ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  background:
    linear-gradient(160deg, rgba(20,60,80,0.45) 0%, rgba(20,60,80,0.55) 100%),
    url('../content/brand/cover-1211*683px-1.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23fff7ea' d='M0,40 C360,80 720,0 1080,40 C1260,60 1360,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 2rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero .btn {
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
}

/* wave decoration in hero */
.hero-wave {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  z-index: 0;
}

/* ── Story ───────────────────────────────────── */
.story {
  background: var(--cream);
}

.story-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
}

.story-text p {
  margin-bottom: 1.25rem;
}

.story-highlight {
  border-right: 4px solid var(--orange);
  padding-right: 1.25rem;
  margin: 2rem 0;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--blue-dark);
}

.story-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.story-expandable.open {
  max-height: 1200px;
}

.story-toggle {
  background: none;
  border: none;
  color: var(--blue);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  transition: color 0.2s;
}

.story-toggle:hover {
  color: var(--orange);
}

/* ── Audience ────────────────────────────────── */
.audience {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.audience-card {
  padding: 2.5rem 2.75rem;
  background-image: url('../content/brand/icons-28.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 150px;
  display: flex;
  align-items: center;
}

.audience-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Packages ────────────────────────────────── */
.packages {
  background: var(--cream);
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.package-card {
  background: var(--white);
  border: 2px solid var(--pkg-color, var(--blue));
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pkg-theme-blue  { --pkg-color: var(--blue); }
.pkg-theme-green { --pkg-color: var(--green); }
.pkg-theme-gold  { --pkg-color: var(--orange); }

.pkg-top {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pkg-participants {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.pkg-badge {
  display: inline-block;
  background: var(--pkg-color, var(--blue));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius);
  margin-bottom: 0.4rem;
}

.pkg-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--pkg-color, var(--blue));
  margin-bottom: 0.2rem;
}

.pkg-tier {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
}

.pkg-tagline {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.pkg-items {
  list-style: none;
  padding: 0.75rem 1.5rem;
  flex: 1;
}

.pkg-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pkg-item:last-child {
  border-bottom: none;
}

.pkg-mark {
  flex-shrink: 0;
  font-weight: 900;
  font-size: 0.85rem;
  width: 1.4rem;
  text-align: center;
}

.pkg-yes .pkg-mark { color: var(--pkg-color, var(--blue)); }
.pkg-yes { color: var(--text); }

.pkg-no .pkg-mark { color: #bbb; }
.pkg-no { color: #bbb; }

.pkg-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.pkg-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
}

.pkg-price-unit {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.pkg-btn {
  width: 100%;
  background: var(--pkg-color, var(--blue));
  color: var(--white);
  border-color: var(--pkg-color, var(--blue));
}

.pkg-btn:hover {
  background: transparent;
  color: var(--pkg-color, var(--blue));
}

/* ── Incentives ──────────────────────────────── */
.incentives {
  background: var(--blue);
  color: var(--white);
}

.incentives h2 {
  color: var(--white);
}

.incentives .progress-wrapper {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

.incentives .progress-bar-bg {
  background: rgba(255, 255, 255, 0.2);
}

.incentives .progress-bar-fill {
  background: linear-gradient(90deg, var(--orange), #f7c97c);
}

.incentives .progress-label {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

.incentives .progress-milestone {
  color: rgba(255, 255, 255, 0.7);
}

.incentives-intro {
  font-size: 1.1rem;
  max-width: 780px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  text-align: center;
}

.incentives-list {
  max-width: 700px;
  margin: 0 auto;
  counter-reset: incentive;
}

.incentive-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.incentive-item:last-child {
  border-bottom: none;
}

.incentive-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.incentive-text strong {
  color: var(--orange);
}

/* ── Progress (standalone — shared classes) ──── */
.progress-wrapper {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.progress-bar-bg {
  width: 100%;
  height: 20px;
  background: rgba(44, 146, 191, 0.15);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 10px;
  width: 0%;
  transition: width 0.6s ease;
}

.progress-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}

.progress-milestone {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ── Live Feed ───────────────────────────────── */
.incentives .feed-title {
  color: rgba(255, 255, 255, 0.75);
}

.feed-wrapper {
  max-width: 600px;
  margin: 2rem auto 0;
}

.feed-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.purchase-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.purchase-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.purchase-name {
  font-weight: 700;
  color: var(--blue);
}

.feed-empty {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── Impact ──────────────────────────────────── */
.impact {
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.impact-card {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-right: 4px solid var(--orange);
}

.impact-card p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Policy ──────────────────────────────────── */
.policy {
  background: var(--cream);
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.policy-item {
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
}

.policy-item strong {
  color: var(--blue);
  display: block;
  margin-bottom: 0.25rem;
}

.policy-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ── Sticky WhatsApp button ──────────────────── */
.whatsapp-sticky {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: #1a2a36;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.85rem;
}

.footer-logo {
  height: 48px;
  margin: 0 auto 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-tagline {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

/* ── Wave Divider (SVG in HTML, styled here) ── */
.wave-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
}

/* ── Responsive ──────────────────────────────── */
@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    min-height: 90vh;
  }

  .hero-logo {
    width: 200px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}
