*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mustard:      #C8920A;
  --mustard-bg:   #D4980C;
  --mustard-dk:   #B07D08;
  --mustard-light:#FDF3DC;
  --mustard-pale: #FEFAF0;
  --mustard-lt:   #FDF3DC;

  --bg:      #C8920A;
  --dark:    #1C1400;
  --dark2:   #1A1400;
  --surface: #FFFFFF;
  --border:  #E5E3DC;

  --ink:     #111111;
  --ink-2:   #444240;
  --ink-3:   #888480;

  --wa:      #22C55E;
  --wa-dark: #16A34A;
  --red:     #DC2626;
  --teal:    #0D7377;

  --border-dark: rgba(255,255,255,.10);
  --border-lt:   rgba(255,255,255,.18);

  --sh-sm: 0 1px 4px rgba(0,0,0,.06);
  --sh-md: 0 4px 20px rgba(0,0,0,.09);
  --sh-lg: 0 16px 48px rgba(0,0,0,.13);

  --r:  10px;
  --rl: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* HEADER */
header {
  background: var(--mustard-dk);
  border-bottom: 1px solid rgba(0,0,0,.12);
  position: sticky; top: 0; z-index: 100;
}
.hdr { max-width: 1120px; margin: 0 auto; padding: 0 24px; height: 62px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.logo-name { font-size: 19px; font-weight: 800; letter-spacing: -.4px; color: #fff; }
.logo-name b { color: var(--ink); font-weight: 800; }

.btn-wa {
  display: flex; align-items: center; gap: 7px;
  background: #fff; color: var(--ink);
  font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 8px;
  text-decoration: none;
  transition: background .18s, transform .15s;
}
.btn-wa:hover { background: #F0F0F0; transform: translateY(-1px); }
.btn-wa svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-wa span { display: block; }

/* STATS */
.stats {
  display: flex; max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--rl); overflow: hidden;
}
.stat { flex: 1; padding: 16px 8px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.stat:last-child { border-right: none; }
.stat-n { font-size: 32px; font-weight: 800; color: #fff; display: block; line-height: 1; margin-bottom: 5px; letter-spacing: -1px; }
.stat-l { font-size: 10.5px; color: rgba(255,255,255,.7); font-weight: 500; }

/* FAQ */
.faq-wrap { border-top: 1px solid rgba(0,0,0,.12); padding: 64px 24px 72px; }
.faq-inner { max-width: 680px; margin: 0 auto; }
.faq-hdr { text-align: center; margin-bottom: 36px; }
.faq-pill {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.55); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.faq-title { font-size: clamp(20px,3vw,30px); font-weight: 800; letter-spacing: -.6px; color: #fff; margin-bottom: 6px; }
.faq-list { border-radius: var(--rl); overflow: hidden; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 17px 22px; border: none; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600; color: #fff;
  text-align: left; transition: background .14s; -webkit-tap-highlight-color: transparent;
}
.faq-ql { display: flex; align-items: center; gap: 10px; flex: 1; }
.faq-ql svg { width: 15px; height: 15px; flex-shrink: 0; color: rgba(255,255,255,.5); }
.faq-arr { width: 17px; height: 17px; flex-shrink: 0; color: rgba(255,255,255,.4); transition: transform .25s; }
.faq-item.open .faq-arr { transform: rotate(180deg); color: #fff; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .32s ease; }
.faq-item.open .faq-a { max-height: 360px; }
.faq-a p { padding: 0 22px 18px; font-size: 14px; line-height: 1.7; }
.faq-a p strong { color: #fff; font-weight: 700; }
.faq-foot { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.faq-foot p { font-size: 14px; font-weight: 500; }
.faq-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: var(--ink);
  font-size: 13.5px; font-weight: 700;
  padding: 11px 20px; border-radius: 8px;
  text-decoration: none; transition: background .18s, transform .15s; font-family: inherit;
}
.faq-btn:hover { background: #F0F0F0; transform: translateY(-1px); }
.faq-btn svg { width: 15px; height: 15px; }

/* FOOTER */
footer { text-align: center; padding: 28px 24px; font-size: 12.5px; line-height: 1.7; }
footer strong { font-weight: 700; }

/* ANIMATION */
@keyframes up { to { opacity: 1; transform: translateY(0); } }
