/* ═══════════════════════════════════════════════════
   EXTRA SECTIONS  —  Fyberlink #444 / #ffcc00 / #fff
═══════════════════════════════════════════════════ */

/* ── STATS BAR ─────────────────────────────────── */
.stats-bar {
  background: #ffcc00;
  padding: 18px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}
.stats-bar::before {
  content:'';
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(-55deg,rgba(68,68,68,.05) 0,rgba(68,68,68,.05) 1px,transparent 1px,transparent 28px);
  pointer-events:none;
}
.stat-item {
  text-align: center;
  padding: 10px 30px;
  position: relative;
  z-index: 1;
}
.stat-item:not(:last-child)::after {
  content:'';
  position: absolute; right:0; top:20%; bottom:20%;
  width: 1px; background: rgba(68,68,68,.22);
}
.stat-number {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #444;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: .76rem;
  font-weight: 700;
  color: rgba(68,68,68,.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── HOW IT WORKS ──────────────────────────────── */
.how-section {
  background: #fff;
  padding: 64px 20px 60px;
  text-align: center;
}
.how-section .sec-pill  { display:inline-block; background:#444; color:#ffcc00; border-radius:50px; padding:5px 18px; font-size:.7rem; font-weight:700; letter-spacing:1.4px; text-transform:uppercase; margin-bottom:12px; }
.how-section .sec-title { font-size:clamp(1.45rem,4vw,2.1rem); font-weight:700; color:#444; letter-spacing:-.4px; margin-bottom:8px; }
.how-section .sec-sub   { color:#888; font-size:.9rem; max-width:420px; margin:0 auto 48px; }

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: #fafafa;
  border: 1px solid rgba(68,68,68,.1);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all .28s ease;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.1); border-color: rgba(255,204,0,.35); }
.step-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:#ffcc00; border-radius:4px 0 0 4px; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: #444; color: #ffcc00;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}
.step-body h3 { font-size:1rem; font-weight:700; color:#444; margin-bottom:5px; }
.step-body p  { font-size:.84rem; color:#888; line-height:1.6; }

@media (min-width:640px) {
  .steps-grid { flex-direction:row; flex-wrap:wrap; }
  .step-card  { flex:1 1 calc(50% - 8px); }
}
@media (min-width:900px) {
  .step-card { flex:1 1 calc(25% - 12px); flex-direction:column; }
  .step-num  { margin-bottom:4px; }
}

/* connector dots desktop */
@media (min-width:900px) {
  .steps-grid { position:relative; gap:12px; }
}

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  background: #444;
  padding: 64px 20px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.testimonials-section::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:repeating-linear-gradient(-55deg,rgba(255,204,0,.035) 0,rgba(255,204,0,.035) 1px,transparent 1px,transparent 28px);
}
.testimonials-section .sec-pill  { background:rgba(255,204,0,.15); color:#ffcc00; border:1px solid rgba(255,204,0,.28); }
.testimonials-section .sec-title { color:#fff; }
.testimonials-section .sec-sub   { color:rgba(255,255,255,.5); margin-bottom:40px; }

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,204,0,.14);
  border-radius: 18px;
  padding: 24px 22px;
  text-align: left;
  transition: all .26s ease;
}
.review-card:hover { background:rgba(255,204,0,.08); border-color:rgba(255,204,0,.3); transform:translateY(-2px); }
.review-stars { color:#ffcc00; font-size:.9rem; margin-bottom:10px; letter-spacing:2px; }
.review-text  { font-size:.88rem; color:rgba(255,255,255,.75); line-height:1.7; margin-bottom:16px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:10px; }
.review-avatar {
  width:38px; height:38px; border-radius:50%;
  background:#ffcc00; color:#444;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem; flex-shrink:0;
}
.review-name   { font-size:.85rem; font-weight:700; color:#fff; }
.review-detail { font-size:.72rem; color:rgba(255,255,255,.38); }

@media (min-width:640px) {
  .reviews-grid { flex-direction:row; flex-wrap:wrap; }
  .review-card  { flex:1 1 calc(50% - 7px); }
}
@media (min-width:900px) {
  .review-card { flex:1 1 calc(33.33% - 10px); }
}

/* ── JOIN COMMUNITY ────────────────────────────── */
.community-section {
  background: #fff;
  padding: 64px 20px 60px;
  text-align: center;
}
.community-section .sec-pill  { background:#444; color:#ffcc00; }
.community-section .sec-title { color:#444; margin-bottom:10px; }
.community-section .sec-sub   { margin-bottom:36px; }

.community-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.community-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fafafa;
  border: 1px solid rgba(68,68,68,.1);
  border-radius: 16px;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
  transition: all .25s ease;
}
.community-card:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,.1); }
.community-card.wa  { border-left:4px solid #25D366; }
.community-card.tg  { border-left:4px solid #0088CC; }
.community-card.wa:hover { background:rgba(37,211,102,.06); border-color:#25D366; }
.community-card.tg:hover { background:rgba(0,136,204,.06); border-color:#0088CC; }
.comm-icon {
  width:50px; height:50px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
}
.comm-icon.wa { background:rgba(37,211,102,.1); }
.comm-icon.tg { background:rgba(0,136,204,.1); }
.comm-icon img { width:28px; height:28px; }
.comm-body h3   { font-size:.95rem; font-weight:700; color:#444; margin-bottom:3px; }
.comm-body p    { font-size:.8rem; color:#888; }
.comm-arrow     { margin-left:auto; font-size:1rem; color:#aaa; flex-shrink:0; }

/* stats row inside community */
.comm-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.comm-stat-item { text-align:center; }
.comm-stat-num  { font-size:1.6rem; font-weight:700; color:#444; letter-spacing:-1px; line-height:1; }
.comm-stat-num span { color:#ffcc00; }
.comm-stat-lbl  { font-size:.72rem; color:#888; font-weight:700; text-transform:uppercase; letter-spacing:.8px; margin-top:4px; }

/* ── FAQ ───────────────────────────────────────── */
.faq-section {
  background: #fafafa;
  padding: 64px 20px 60px;
}
.faq-section .sec-pill  { background:#444; color:#ffcc00; }
.faq-section .sec-title { text-align:center; color:#444; }
.faq-section .sec-sub   { text-align:center; margin-bottom:40px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(68,68,68,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(255,204,0,.4); }
.faq-question {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 20px; text-align:left;
  font-family:"Nunito",sans-serif; font-size:.92rem; font-weight:700; color:#444;
  transition:background .2s;
}
.faq-question:hover { background:rgba(255,204,0,.05); }
.faq-item.open .faq-question { background:rgba(255,204,0,.07); color:#444; }
.faq-icon {
  width:26px; height:26px; border-radius:50%;
  background:#444; color:#ffcc00;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; flex-shrink:0; margin-left:12px;
  transition:transform .3s ease, background .2s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); background:#ffcc00; color:#444; }
.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height .36s cubic-bezier(.4,0,.2,1), padding .3s;
  padding:0 20px;
}
.faq-answer p { font-size:.85rem; color:#888; line-height:1.75; padding:0 0 18px; }
.faq-item.open .faq-answer { max-height:300px; padding:0 20px; }

/* ── CTA BANNER ────────────────────────────────── */
.cta-banner {
  background: #444;
  padding: 64px 24px;
  text-align: center;
  position: relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:repeating-linear-gradient(-55deg,rgba(255,204,0,.04) 0,rgba(255,204,0,.04) 1px,transparent 1px,transparent 28px);
}
.cta-banner::after {
  content:''; position:absolute; top:-80px; left:50%; transform:translateX(-50%);
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle,rgba(255,204,0,.1) 0%,transparent 70%);
  pointer-events:none;
}
.cta-banner h2 { position:relative; z-index:1; font-size:clamp(1.5rem,4vw,2.4rem); font-weight:700; color:#fff; letter-spacing:-.5px; margin-bottom:12px; }
.cta-banner h2 span { color:#ffcc00; }
.cta-banner p  { position:relative; z-index:1; color:rgba(255,255,255,.58); font-size:.92rem; max-width:460px; margin:0 auto 32px; line-height:1.7; }
.cta-btn-group { position:relative; z-index:1; display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-btn-primary {
  background:#ffcc00; color:#444; border:none;
  border-radius:50px; padding:14px 32px; font-size:.92rem; font-weight:700;
  font-family:"Nunito",sans-serif; cursor:pointer;
  box-shadow:0 6px 22px rgba(255,204,0,.42);
  transition:all .25s ease;
}
.cta-btn-primary:hover { background:#e6b800; transform:translateY(-2px); box-shadow:0 10px 28px rgba(255,204,0,.55); }
.cta-btn-outline {
  background:transparent; color:#fff;
  border:1.5px solid rgba(255,255,255,.3);
  border-radius:50px; padding:14px 32px; font-size:.92rem; font-weight:700;
  font-family:"Nunito",sans-serif; cursor:pointer;
  transition:all .25s ease;
}
.cta-btn-outline:hover { background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.6); transform:translateY(-2px); }

/* ── TRUST BADGES ──────────────────────────────── */
.trust-section {
  background:#fff;
  padding:32px 20px;
  display:flex; justify-content:center; align-items:center;
  flex-wrap:wrap; gap:24px;
  border-top:1px solid rgba(68,68,68,.08);
  border-bottom:1px solid rgba(68,68,68,.08);
}
.trust-badge {
  display:flex; align-items:center; gap:8px;
  font-size:.8rem; font-weight:700; color:#888;
}
.trust-dot { width:8px; height:8px; border-radius:50%; background:#ffcc00; flex-shrink:0; }
