/* =====================================================
   FAQ V1 STYLES
   ===================================================== */

/* ── Root Variables ── */
:root {
  --color-ember: #eba726;
  --color-blue: #0285bc;
  --color-sand: #ede8ae;
  --color-ink: #2f2d30;
  --color-chalk: #f4f5f1;
  --color-steel: #6b6966;
  --color-line: rgba(47, 45, 48, 0.08);
  --wa: #25D366;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #2f2d30;
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

.display,
h1,
h2,
h3,
.logo {
  font-family: 'Caprasimo', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ── CURSOR LIGHT ── */
.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(2, 133, 188, 0.12) 0%, rgba(235, 167, 38, 0.08) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  will-change: transform;
  mix-blend-mode: multiply;
}

.cursor-light.on {
  opacity: 1;
}

@media (max-width: 1024px),
(hover: none) {
  .cursor-light {
    display: none;
  }
}

/* ── REVEAL ANIMATIONS ── */
@keyframes rvIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rv.in {
  animation: rvIn 0.8s var(--ease) both;
}

.rv-1.in {
  animation-delay: 0.05s;
}

.rv-2.in {
  animation-delay: 0.15s;
}

.rv-3.in {
  animation-delay: 0.25s;
}

.rv-4.in {
  animation-delay: 0.35s;
}

/* ── KICKER ── */
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6966;
  margin-bottom: 10px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 56px 40px 56px;
  text-align: center;
  background: var(--color-chalk);
  border-bottom: 1px solid var(--color-line);
}

.page-hero .kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  color: var(--color-ink);
  line-height: 1.04;
}

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

.page-hero p {
  font-size: 16.5px;
  color: var(--color-steel);
  max-width: 560px;
  margin: 22px auto 0;
  line-height: 1.75;
  font-weight: 400;
}

/* ── SEARCH ── */
.faq-search {
  max-width: 560px;
  margin: 28px auto 0;
  padding: 0 40px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  color: var(--color-ink);
  background: #ffffff;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-search input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(2, 133, 188, 0.10);
}

.faq-search svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--color-steel);
  pointer-events: none;
}

/* ── FILTER TABS ── */
.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 28px 40px 0;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid var(--color-line);
  background: #ffffff;
  color: var(--color-ink);
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: 0.3s var(--ease);
}

.filter-btn.active {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: #fff;
}

.filter-btn:not(.active):hover {
  border-color: var(--color-ink);
  transform: translateY(-2px);
}

/* ── ACCORDION ── */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 44px 40px 100px;
}

.faq-group {
  margin-bottom: 40px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 16px;
  padding-left: 4px;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.3s var(--ease);
}

.faq-item.open {
  border-color: var(--color-ink);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q span.text {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--color-ink);
  line-height: 1.5;
}

.faq-q .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s var(--ease);
}

.faq-item.open .plus {
  background: var(--color-ink);
  border-color: var(--color-ink);
  transform: rotate(45deg);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--color-ink);
  transition: background 0.3s var(--ease);
}

.faq-q .plus::before {
  width: 10px;
  height: 1.4px;
}

.faq-q .plus::after {
  width: 1.4px;
  height: 10px;
}

.faq-item.open .plus::before,
.faq-item.open .plus::after {
  background: #ffffff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: #4a4845;
  line-height: 1.7;
}

.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-steel);
  font-size: 14px;
  display: none;
}

/* ── CONTACT BAND ── */
.contact-band {
  background: var(--color-chalk);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 100px 24px;
  text-align: center;
}

.contact-band .kicker {
  color: var(--color-steel);
}

.contact-band h3 {
  font-size: clamp(30px, 4.4vw, 46px);
  color: var(--color-ink);
  margin: 14px 0 28px;
  line-height: 1.02;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn,
.cta-btn,
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn::after,
.cta-btn::after,
.wa-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.20) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}

.btn:hover::after,
.cta-btn:hover::after,
.wa-btn:hover::after {
  transform: translateX(110%);
}

.btn:hover,
.cta-btn:hover,
.wa-btn:hover {
  transform: translateY(-3px);
}

.cta-btn {
  background: var(--color-ink);
  color: #fff;
}

.cta-btn:hover {
  background: var(--color-blue);
  color: #fff;
  box-shadow: 0 16px 36px -12px rgba(2, 133, 188, 0.40);
}

.wa-btn {
  background: var(--wa);
  color: #08210f;
  padding: 10px 18px;
}

.wa-btn:hover {
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.45);
}

.wa-btn svg {
  width: 14px;
  height: 14px;
  fill: #08210f;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .page-hero {
    padding: 44px 20px 44px;
  }
  .page-hero .kicker {
    font-size: 10.5px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .faq-search {
    padding: 0 20px;
    margin-top: 24px;
  }
  .filters {
    padding: 24px 20px 0;
    gap: 8px;
  }
  .filter-btn {
    font-size: 10.5px;
    padding: 7px 14px;
  }
  .faq-wrap {
    padding: 32px 20px 64px;
  }
  .faq-q {
    padding: 16px 18px;
  }
  .faq-q span.text {
    font-size: 14px;
  }
  .faq-a-inner {
    padding: 0 18px 18px;
    font-size: 13.5px;
  }
  .contact-band {
    padding: 64px 20px;
  }
  .contact-band h3 {
    font-size: 28px;
  }
  .btn,
  .cta-btn,
  .wa-btn {
    padding: 8px 16px;
    font-size: 10px;
    gap: 6px;
  }
  .cta-btn {
    padding: 10px 18px;
  }
  .wa-btn {
    padding: 8px 14px;
  }
  .wa-btn svg {
    width: 12px;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .cursor-light {
    display: none !important;
  }
}

::selection {
  background: var(--color-ember);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f3ef;
}

::-webkit-scrollbar-thumb {
  background: var(--color-blue);
  border-radius: 10px;
  border: 2px solid #f5f3ef;
}

::-webkit-scrollbar-thumb:hover {
  background: #026a98;
}