/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #1c1c1c;
  line-height: 1.6;
}

:root {
  --accent: #b89b5e;
  --dark: #1c1c1c;
  --light: #ffffff;
  --section-alt: #ecebe7;
  --text-muted: #666;
  --max-width: 1200px;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */

body {
  font-size: 1.05rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 1.5rem 0;
}

.section {
  padding: 110px 0;
}


.section:not(.alt)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80%;
  height: 1px;
  background: #e5e3df;
  transform: translateX(-50%);
}

.section-odd {
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #f6f4ef 60%,
    #f1eee7 100%
  );
}

.section-even {
  background: linear-gradient(
    to left,
    #ffffff 0%,
    #f6f4ef 60%,
    #f1eee7 100%
  );
}

.section-odd,
.section-even {
  padding: 120px 0;
}


/* ===============================
   HERO — PREMIUM STRUCTURE
=================================*/

.hero {
  position: relative;
  padding: 140px 0 130px 0;
  background: linear-gradient(
    180deg,
    #f3ece2
  );
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,155,94,0.15), transparent 70%);
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  max-width: 650px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.accent-text {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--accent);
  color: #111;
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.btn-ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-ghost:hover {
  background: var(--accent);
  color: #111;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #666;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.book-wrapper {
  position: relative;
  transition: 0.4s ease;
}

.book-wrapper img {
  max-width: 450px;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,0.5));
  transition: 0.4s ease;
}

.book-wrapper:hover img {
  transform: translateY(-10px);
}

/* ===============================
   HERO RESPONSIVE
=================================*/

@media (max-width: 1000px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .hero-right {
    margin-top: 3rem;
  }
}


/* ===== BUTTONS ===== */

.primary {
  background: var(--accent);
  color: #111;
}

.primary:hover {
  opacity: 0.85;
}

.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.secondary:hover {
  background: var(--accent);
  color: #111;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 2rem 0;
  text-align: center;
  color: #ddd;
}

/* ===============================
   RESPONSIVE IMPROVEMENTS
=================================*/
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .price {
    font-size: 2rem;
  }
}

.result-card {
  background: var(--light);
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-radius: 12px;
  border: 1px solid #e5e3df;
  font-weight: 600;
  font-size: 1.15rem;
  transition: 0.3s ease;

}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}


/* ===============================
   SECTION VARIATIONS
=================================*/

.narrow {
  max-width: 800px;
  margin: 0 auto;
}



/* ===============================
   BULLET LIST
=================================*/

.problem-item {
  font-size: 18px;
  padding: 18px 24px;
  margin-bottom: 18px;
  background: #f3efe6;
  border-radius: 8px;
  font-weight: 500;
}


/* ===============================
   OFFER BOX
=================================*/

.offer-box {
  background: #FBFAF7;
  padding: 60px 50px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  text-align: center;
}

.offer-section {
  background: #f7f4ee;
  padding: 140px 0;
}


.offer-section .section-title {
  color: white;
}

.price {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}


/* ===============================
   FAQ SECTION
=================================*/

.faq-item {
  margin-bottom: 2rem;
  cursor: pointer;
}

.faq-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===============================
   FINAL CTA SECTION
=================================*/

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split > div {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid #e4e2dc;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.split > div:first-child {
  border-left: 4px solid var(--accent);
}

.split > div:last-child {
  border-left: 4px solid #999;
}

/* ============================
RESULTS NEW
==============================*/

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

.result-box {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 14px;
  border: 1px solid #e5e3df;
  position: relative;
  transition: 0.3s ease;
}

.result-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
}

.result-label {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.result-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.result-box p {
  color: var(--text-muted);
}


/* ===============================
        SCROLL ANTIMATIONS
  ================================*/

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background: #f6f3ec;
}


/* OVERHAUL ====================/*

/* =========================
   PROBLEM SECTION
========================= */

.problem-section {
  padding: 120px 0;
  background: #ffffff;
);

  position: relative;
  overflow: hidden;
}

.problem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
}

.problem-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.problem-sub {
  font-size: 18px;
  max-width: 800px;
  color: #a0a0a8;
  line-height: 1.6;
}

/* GRID */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* CARD */

.problem-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
  position: relative;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ICON */

.problem-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6a7a8c 0%, #7b8a99 100%);
  border-radius: 14px;
  font-size: 22px;
  color: white;
  box-shadow: 0 8px 20px rgba(122, 92, 255, 0.2);
}

.problem-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.problem-card p {
  font-size: 15px;
  color: #b5b5c0;
  line-height: 1.6;
}

/* SUBTLE FADE IN ANIMATION */

.problem-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   CAUSE SECTION
========================= */

.cause-section {
  padding: 130px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f3ec 100%
  );
}

.cause-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px auto;
}

.cause-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.cause-sub {
  font-size: 18px;
  max-width: 800px;
  color: #5c5c5c;
  line-height: 1.7;
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.cause-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  padding: 45px 35px;
  border-radius: 18px;
  border: 1px solid #e0d8c8;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 0 18px 35px rgba(0,0,0,0.015);
}

.cause-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.cause-number {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 18px;
}

.cause-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.cause-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}



/* =========================
   SYSTEM SECTION
========================= */

.system-section {
  padding: 120px 0 100px 0;
  background: linear-gradient(
    180deg,
    #f6f3ec 0%,
    #efe7dc 100%
  );
}

.system-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 100px auto;
}

.system-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.system-sub {
  font-size: 18px;
  color: #5e5e5e;
  line-height: 1.7;
  max-width: 890px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.system-card:nth-child(4) {
  grid-column: 2;
}

@media (max-width: 800px) {
  .system-grid {
    grid-template-columns: 1fr;
  }

  .system-card:nth-child(4) {
    grid-column: auto;
  }
}



.system-card {
background: linear-gradient(180deg, #ffffff 0%, #fdfbf7 40%, #f6f2ea 100%);
  padding: 50px 35px;
  border-radius: 20px;
  border: 1px solid #e6dfd2;
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
}

.system-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.system-icon {
  font-size: 34px;
  margin-bottom: 20px;
}

.system-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.system-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}


/* =========================
   RESULTS SECTION
========================= */

.results-section {
  padding: 130px 0;
  background: linear-gradient(
    180deg,
    #efe7dc 0%,
    #f8f5ef 100%
  );
}

.results-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 110px auto;
}

.results-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.results-sub {
  font-size: 18px;
  color: #6b6b6b;
}

.results-grid-new {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.result-item {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  padding: 35px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border-radius: 18px;
  border: 1px solid #e6dfd2;
  transition: all 0.35s ease;
}

.result-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}

.result-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent); /* white-background gold */
}

.result-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.result-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 700px) {
  .result-item {
    flex-direction: column;
  }

  .result-number {
    margin-bottom: 10px;
  }
}



/* =========================
   FIT SECTION
========================= */

.fit-section {
  padding: 150px 0;
  background: linear-gradient(
    180deg,
    #f8f5ef 0%,
    #f6f2ea 100%
  );
}

.fit-header {
  text-align: center;
  margin-bottom: 90px;
}

.fit-title {
  font-size: 42px;
  font-weight: 700;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 170px;
  max-width: 1000px;
  margin: 0 auto;
}

.fit-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-column li {
  padding: 18px 0;
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid #e6dfd2;
}

.fit-yes li::before {
  content: "✓";
  color: #2d7a3e;
  font-weight: 700;
  margin-right: 12px;
}

.fit-no h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #9c3c3c;
}

.fit-no li::before {
  content: "×";
  color: #b44343;
  font-weight: 700;
  margin-right: 12px;
}

/* Responsive */

@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .fit-no {
    margin-top: 30px;
  }
}


/* =========================
   AUTHOR SECTION
========================= */

.author-section {
  padding: 140px 0;
  background: linear-gradient(
    180deg,
    #f6f2ea 0%,
    #efe7dc 100%
  );
}

.author-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.author-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.author-story {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

.author-mission {
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}

.author-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  padding: 50px 40px;
  border-radius: 22px;
  border: 1px solid #e6dfd2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.author-highlight {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee5d9;
}

.author-highlight:last-child {
  border-bottom: none;
}

/* Responsive */

@media (max-width: 900px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


/* =========================
   OFFER SECTION
========================= */

.offer-section {
  padding: 150px 0;
  background: linear-gradient(
    180deg,
    #efe7dc 0%,
    #f6f2ea 100%
  );
}

.offer-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.offer-intro {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.offer-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.offer-subtitle {
  font-size: 18px;
  max-width: 790px;
  color: #666;
  margin-bottom: 70px;
}

.offer-card {
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border-radius: 26px;
  padding: 70px 50px;
  border: 1px solid #e6dfd2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.05);
  position: relative;
}

.offer-book {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 50px;
  color: #444;
}

.offer-price {
  margin-bottom: 40px;
}

.price-value {
  font-size: 64px;
  font-weight: 700;
}

.price-currency {
  font-size: 20px;
  margin-left: 6px;
  opacity: 0.7;
}

.offer-button {
  display: inline-block;
  padding: 18px 55px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  background: var(--accent);
  color: #ffffff;
  transition: all 0.3s ease;
}

.offer-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.offer-note {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.6;
}


/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 150px 0;
  background: linear-gradient(
    180deg,
    #f6f2ea 0%,
    #efe7dc 100%
  );
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-title {
  font-size: 42px;
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e6dfd2;
  padding: 25px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.active .faq-question::after {
  content: "–";
}



/* =========================
   FINAL DECISION REFINED
========================= */

.decision-section {
  padding: 140px 0;
  background: linear-gradient(
    180deg,
    #efe7dc 0%,
    #f3ece2 100%
);

}

.decision-card {
  background: #1e1e1e;
  color: #ffffff;
  padding: 100px 80px;
  border-radius: 28px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
  position: relative;
}

.decision-accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

.decision-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
}

.decision-text {
  font-size: 19px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 50px;
}

.decision-divider {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 50px auto;
}

.decision-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.decision-price {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
}

.decision-button {
  padding: 20px 70px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  background: var(--accent);
  color: #ffffff;
  transition: all 0.3s ease;
}

.decision-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.decision-footnote {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.5;
}

/* Responsive */

@media (max-width: 768px) {
  .decision-card {
    padding: 70px 40px;
  }

  .decision-title {
    font-size: 36px;
  }

  .decision-bottom {
    flex-direction: column;
    gap: 25px;
  }
}


/* Premium Button Enhancement */

.offer-button,
.btn-primary,
.decision-button,
.final-cta-button {
  position: relative;
  overflow: hidden;
}

.offer-button::before,
.btn-primary::before,
.decision-button::before,
.final-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: all 0.6s ease;
}

.offer-button:hover::before,
.btn-primary:hover::before,
.decision-button:hover::before,
.final-cta-button:hover::before {
  left: 100%;
}


h1, h2, h3 {
  letter-spacing: -0.5px;
}


p {
  max-width: 65ch;
}


.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
  margin: 0;
}


.fit-column-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.yes-title {
  color: #2d7a3e;
}

.no-title {
  color: #b44343;
}

.section-intro {
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-intro {
  font-size: 1.1rem;
}

.cause-header .section-intro {
  margin-bottom: 1rem;
}


.faq-item {
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(200,170,80,0.4);
  background: rgba(255,255,255,0.04);
}

.faq-item.active {
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.faq-item.active {
  border-left: 3px solid #d4af37;
}

.footer p {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  width: 100%;
}

.creeper-btn {
  position: fixed;
  bottom: 15px;
  right: 60px;
  background: var(--accent);
  color: #111;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
  overflow: hidden; /* THIS fixes the shimmer leak */
  opacity: 0.9;
  animation: creepFloat 4s ease-in-out infinite;
}

/* Hover motion */
.creeper-btn:hover {
  transform: translateY(-6px) scale(1.04);
  opacity: 1;
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

/* Shimmer effect — now properly clipped */
.creeper-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transition: all 0.6s ease;
}

.creeper-btn:hover::before {
  left: 100%;
}

/* Idle creep animation */
@keyframes creepFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
