﻿:root {
    --mustard:      #D4A017;
    --mustard-light:#E8C066;
    --mustard-pale: #F9EFC7;
    --green:        #4A7C59;
    --green-dark:   #3A6347;
    --green-light:  #E8F2EC;
    --beige:        #F5F1E6;
    --beige-dark:   #EDE7D5;
    --white:        #FDFCF9;
    --text-dark:    #2C2A25;
    --text-mid:     #5A5550;
    --text-light:   #8A8480;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'DM Sans', system-ui, sans-serif;
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0,0,0,.08);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--sans); background: var(--white); color: var(--text-dark); overflow-x: hidden; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--beige); }
  ::-webkit-scrollbar-thumb { background: var(--mustard); border-radius: 10px; }

  #page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--beige);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 18px;
    transition: opacity .5s ease, visibility .5s;
  }
  #page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader-ring { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--beige-dark); border-top-color: var(--green); animation: spin .75s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .loader-brand { font-family: var(--serif); font-size: 1.4rem; color: var(--text-dark); }
  .loader-brand span { color: var(--mustard); }

  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .fade-up.visible { opacity: 1; transform: none; }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .section    { padding: 96px 0; }

  /* NAV */
  #navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 22px 0; transition: background .4s, padding .4s, box-shadow .4s; }
  #navbar.scrolled { background: rgba(253,252,249,.96); backdrop-filter: blur(12px); padding: 14px 0; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .nav-logo { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; color: var(--text-dark); text-decoration: none; letter-spacing: .02em; }
  .nav-logo span { color: var(--mustard); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--mustard); }
  .nav-links a.active { color: var(--green); }
  .nav-cta { background: var(--green) !important; color: #fff !important; padding: 10px 22px; border-radius: 100px; }
  .nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }
  .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }
  .mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--text-dark); text-decoration: none; }
  .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--text-dark); }

  .breadcrumb { position: static; inset: auto; z-index: auto; padding: 0; font-size: .78rem; color: var(--text-light); margin-bottom: 20px; }
  .breadcrumb a { color: var(--green); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }
  .breadcrumb span { margin: 0 6px; opacity: .5; }

  /* HERO */
  .faq-hero { background: var(--beige); padding: 160px 0 96px; position: relative; overflow: hidden; }
  .faq-hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
  .faq-hero-blob-1 { width: 420px; height: 420px; background: rgba(212,160,23,.10); top: -80px; right: -80px; }
  .faq-hero-blob-2 { width: 340px; height: 340px; background: rgba(74,124,89,.09); bottom: -60px; left: 10%; }
  .faq-hero-inner { position: relative; z-index: 2; max-width: 780px; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--green-light); border: 1px solid rgba(74,124,89,.2); border-radius: 100px; padding: 6px 16px; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-weight: 500; margin-bottom: 24px; }
  .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
  .faq-hero h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.15; color: var(--text-dark); margin-bottom: 24px; }
  .faq-hero h1 em { font-style: italic; color: var(--green); }
  .faq-hero-lead { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; max-width: 640px; margin-bottom: 16px; }
  .topic-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
  .topic-tag { background: var(--white); border: 1.5px solid var(--beige-dark); border-radius: 100px; padding: 8px 20px; font-size: .8rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all .25s; text-decoration: none; }
  .topic-tag:hover { background: var(--green); border-color: var(--green); color: #fff; }

  /* STATS */
  .stats-bar { background: var(--white); border-top: 1px solid var(--beige-dark); border-bottom: 1px solid var(--beige-dark); padding: 28px 0; }
  .stats-inner { display: flex; gap: 0; justify-content: center; }
  .stat-item { flex: 1; max-width: 220px; text-align: center; padding: 0 32px; border-right: 1px solid var(--beige-dark); }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: var(--text-dark); line-height: 1; margin-bottom: 4px; }
  .stat-num span { color: var(--mustard); }
  .stat-label { font-size: .78rem; color: var(--text-light); font-weight: 300; }

  /* LAYOUT */
  .faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }

  /* SIDEBAR */
  .faq-sidebar { position: sticky; top: 100px; }
  .sidebar-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--text-light); font-weight: 500; margin-bottom: 16px; }
  .sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .sidebar-nav a { display: block; padding: 9px 14px; border-radius: 10px; font-size: .88rem; color: var(--text-mid); text-decoration: none; font-weight: 300; transition: all .2s; border-left: 2px solid transparent; line-height: 1.4; }
  .sidebar-nav a:hover, .sidebar-nav a.current { color: var(--green); background: var(--green-light); border-left-color: var(--green); }
  .sidebar-nav a.current { font-weight: 500; }
  .sidebar-cta-box { background: var(--beige); border-radius: 20px; padding: 28px 24px; margin-top: 32px; }
  .sidebar-cta-box p { font-size: .88rem; color: var(--text-mid); font-weight: 300; line-height: 1.65; margin-bottom: 16px; }

  /* FAQ GROUPS */
  .faq-group { margin-bottom: 64px; }
  .faq-group:last-child { margin-bottom: 0; }
  .group-header { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--beige-dark); }
  .group-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--beige); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
  .group-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--text-dark); }
  .group-count { font-size: .72rem; color: var(--text-light); font-weight: 300; margin-top: 2px; }

  /* ACCORDION */
  .faq-item { border: 1px solid var(--beige-dark); border-radius: 16px; margin-bottom: 12px; background: var(--white); transition: box-shadow .3s, border-color .3s; overflow: hidden; }
  .faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); border-color: rgba(74,124,89,.25); }
  .faq-item.open { box-shadow: 0 8px 32px rgba(74,124,89,.12); border-color: var(--green); }
  .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; cursor: pointer; user-select: none; }
  .faq-q-text { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; color: var(--text-dark); line-height: 1.35; flex: 1; }
  .faq-item.open .faq-q-text { color: var(--green); }
  .faq-chevron { width: 32px; height: 32px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s, transform .35s; }
  .faq-chevron svg { width: 14px; height: 14px; stroke: var(--text-mid); transition: stroke .25s; }
  .faq-item.open .faq-chevron { background: var(--green-light); transform: rotate(180deg); }
  .faq-item.open .faq-chevron svg { stroke: var(--green); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); padding: 0 24px; }
  .faq-item.open .faq-a { max-height: 900px; padding: 0 24px 24px; }
  .faq-a-inner { border-top: 1px solid var(--beige-dark); padding-top: 16px; }
  .faq-a p { font-size: .95rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 12px; }
  .faq-a p:last-child { margin-bottom: 0; }
  .faq-a strong { color: var(--text-dark); font-weight: 500; }
  .faq-a em { color: var(--green); font-style: italic; }
  .faq-a .internal-link { color: var(--green); text-decoration: underline; text-decoration-color: rgba(74,124,89,.35); text-underline-offset: 3px; font-weight: 400; transition: color .2s, text-decoration-color .2s; }
  .faq-a .internal-link:hover { color: var(--green-dark); text-decoration-color: var(--green-dark); }
  .faq-tag { display: inline-block; background: var(--mustard-pale); color: #8A6B2A; border-radius: 100px; padding: 3px 12px; font-size: .72rem; font-weight: 500; margin: 8px 4px 0 0; }
  .highlight-box { background: var(--green-light); border: 1.5px solid rgba(74,124,89,.25); border-radius: 14px; padding: 18px 20px; margin-top: 12px; }
  .highlight-box p { font-size: .88rem; color: var(--green-dark); font-weight: 400; margin: 0; line-height: 1.7; }
  .answer-progress { display: flex; gap: 6px; margin: 12px 0 4px; }
  .prog-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--beige-dark); }
  .prog-dot.filled { background: var(--green); }

  /* SEARCH */
  .faq-search-wrap { position: relative; margin-bottom: 48px; }
  .faq-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }
  .faq-search { width: 100%; background: var(--white); border: 1.5px solid var(--beige-dark); border-radius: 100px; padding: 16px 20px 16px 50px; font-family: var(--sans); font-size: .95rem; color: var(--text-dark); outline: none; transition: border-color .25s, box-shadow .25s; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
  .faq-search:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,124,89,.1); }
  .faq-search::placeholder { color: var(--text-light); }
  #search-count { font-size: .82rem; color: var(--text-light); text-align: center; margin-top: 12px; min-height: 20px; }
  .no-results { display: none; text-align: center; padding: 60px 20px; color: var(--text-light); }
  .no-results.show { display: block; }
  .no-results-icon { font-size: 3rem; margin-bottom: 16px; }

  /* RELATED */
  .related-wrap { background: var(--beige); border-radius: 20px; padding: 36px; margin-top: 40px; }
  .related-title { font-family: var(--serif); font-size: 1.3rem; color: var(--text-dark); margin-bottom: 20px; }
  .related-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .related-list li { display: flex; align-items: center; gap: 10px; }
  .related-list li::before { content: '→'; color: var(--mustard); font-weight: 500; flex-shrink: 0; }
  .related-list a { font-size: .92rem; color: var(--text-mid); text-decoration: none; font-weight: 300; transition: color .2s; }
  .related-list a:hover { color: var(--green); }

  /* BUTTONS */
  .btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 16px 34px; border-radius: 100px; border: none; font-family: var(--sans); font-size: .9rem; font-weight: 500; letter-spacing: .04em; text-decoration: none; cursor: pointer; transition: all .3s; }
  .btn-wa:hover { background: #1fad56; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
  .btn-wa-sm { padding: 12px 22px; font-size: .82rem; width: 100%; justify-content: center; }
  .btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 16px 34px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.4); font-family: var(--sans); font-size: .9rem; font-weight: 500; text-decoration: none; transition: all .3s; }
  .btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.12); transform: translateY(-2px); }

  /* CTA */
  .cta-box { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 24px; padding: 72px 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
  .cta-box::before { content: '"'; position: absolute; top: -40px; left: 40px; font-family: var(--serif); font-size: 20rem; color: rgba(255,255,255,.05); line-height: 1; pointer-events: none; }
  .cta-box .section-label { color: rgba(255,255,255,.55); }
  .cta-box h2 { font-family: var(--serif); font-size: clamp(2rem,3.5vw,2.8rem); color: #fff; margin-bottom: 16px; font-weight: 400; position: relative; z-index: 1; }
  .cta-box h2 em { color: var(--mustard-light); font-style: italic; }
  .cta-box > p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 36px; font-size: 1rem; line-height: 1.75; position: relative; z-index: 1; }
  .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
  .section-label { font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--mustard); font-weight: 500; margin-bottom: 12px; display: block; }
  .trust-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 40px; position: relative; z-index: 1; }
  .trust-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 8px 18px; font-size: .78rem; color: rgba(255,255,255,.9); font-weight: 400; }
  .trust-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mustard-light); }

  /* WA FLOAT */
  .wa-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 30px rgba(37,211,102,.4); z-index: 997; text-decoration: none; transition: transform .3s; }
  .wa-float:hover { transform: scale(1.1); }

  @media (max-width: 960px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { display: none; }
    .stats-inner { flex-wrap: wrap; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--beige-dark); max-width: 100%; padding: 16px 24px; }
    .stat-item:last-child { border-bottom: none; }
  }
  @media (max-width: 768px) {
    .faq-hero { padding: 120px 0 72px; }
    .cta-box { padding: 48px 28px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 72px 0; }
  }
