@charset "utf-8";
/* FAQ PAGE WOW (pair with your existing style.css) */
.faq-hero{
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(1200px 420px at 50% 0%, rgba(255,255,255,.75), rgba(255,255,255,0) 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.03), rgba(0,0,0,0));
}

.faq-hero__eyebrow{
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .75;
  margin: 0 0 .75rem;
}

.faq-hero__titleRow{
  display:flex;
  align-items:center;
  gap: 1rem;
  margin-bottom: .5rem;
}

.faq-hero__title{
  margin:0;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height:1.05;
}

.faq-hero__sub{
  margin:0;
  max-width: 52ch;
  opacity:.85;
}

.sparkle-divider{
  height: 1px;
  flex: 1;
  position: relative;
  background: linear-gradient(to right, rgba(0,0,0,0.10), rgba(0,0,0,0));
}
.sparkle-divider::after{
  content:"✦";
  position:absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  font-size: .9rem;
  opacity:.55;
}

/* Chapter layout */
.faq-wrap{
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 clamp(4rem, 6vw, 5rem);
}

.faq-chapter{
  margin: 0 auto 2.4rem;
  max-width: 900px;
}

.faq-chapter__title{
  margin: 0 0 .25rem;
  font-size: 1.35rem;
}

.faq-chapter__sub{
  margin: 0 0 1rem;
  opacity: .75;
  font-size: .95rem;
}

/* Premium pill */
.faq-pill{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.75));
  box-shadow:
    0 12px 28px rgba(0,0,0,0.05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  text-align:left;
}

.faq-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.07);
  border-color: rgba(0,0,0,0.10);
}

.faq-pill__q{
  font-size: 1rem;
  line-height: 1.2;
}

/* + icon that turns into x */
.faq-pill__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  position: relative;
  background: rgba(184,62,70,0.08);
  border: 1px solid rgba(184,62,70,0.18);
  flex: 0 0 auto;
}
.faq-pill__icon::before,
.faq-pill__icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 14px;
  height: 2px;
  background: rgba(0,0,0,0.55);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease;
}
.faq-pill__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Open state */
.faq-pill[aria-expanded="true"]{
  border-color: rgba(184,62,70,0.25);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}

.faq-pill[aria-expanded="true"] .faq-pill__icon{
  background: rgba(184,62,70,0.12);
}

.faq-pill[aria-expanded="true"] .faq-pill__icon::after{
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-panel{
  margin: .75rem 0 1.1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

/* Optional: subtle left accent when open */
.faq-panel{
  position: relative;
}
.faq-panel::before{
  content:"";
  position:absolute;
  left: 10px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 99px;
  background: rgba(184,62,70,0.35);
  opacity: .6;
}
.faq-panel p{
  margin:0;
  padding-left: 14px;
  opacity: .9;
}

/* ===== FAQ — Final Chapter Form (Clean + Correct) ===== */

.faq-formCard{
  margin-top: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* Form stacks naturally */
.faq-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

/* Row for Name + Email */
.faq-row{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 16px;
  width: 100%;
}

/* Labels always stack text above input */
.faq-label{
  display: grid;
  gap: 6px;
  width: 100%;
}

.faq-input,
.faq-textarea{
  width: 100%;
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.95);
  font: inherit;
}

.faq-input{
  min-height: 46px; /* makes fields feel premium */
}

.faq-textarea{
  min-height: 160px;
  resize: vertical;
}

/* Button stays left and full-size */
.faq-form .btn{
  justify-self: start;
  margin-top: 6px;
}

/* Notes */
.faq-note{
  margin: 6px 0 0;
  font-size: 0.92rem;
  opacity: 0.75;
}

/* Mobile: stack the row fields */
@media (max-width: 640px){
  .faq-row{
    grid-template-columns: 1fr;
  }
}


/* NEW  */
.wd {
  background: transparent;
}

/* Hero */
.wd-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
}

.wd-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .75;
  margin: 0 0 .9rem;
}

.wd-kicker__line {
  width: 38px;
  height: 1px;
  background: rgba(0,0,0,.18);
}

.wd-title {
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1.05;
  margin: 0 0 .6rem;
}