/*
Theme Name: Método Basic T
Theme URI: https://metodobasict.com
Author: Você Fit
Author URI: https://metodobasict.com
Description: Tema WordPress para a landing page do Método Basic T - Consultoria Online de Treino Feminino
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: basict
*/

/* ========================================
   RESET & BASE
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: hsl(0, 0%, 7%);
  --fg: hsl(0, 0%, 96%);
  --card: hsl(0, 0%, 10%);
  --card-fg: hsl(0, 0%, 96%);
  --secondary: hsl(0, 0%, 14%);
  --muted: hsl(0, 0%, 16%);
  --muted-fg: hsl(0, 0%, 55%);
  --gold: hsl(43, 30%, 58%);
  --border: hsl(0, 0%, 18%);
  --destructive: hsl(0, 70%, 50%);
  --radius: 0.5rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ========================================
   UTILITIES
   ======================================== */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 768px;
}

.container--wide {
  max-width: 1024px;
}

.section-padding {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 7rem 5rem;
  }
}

.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); }
.bg-card { background-color: var(--card); }
.bg-bg { background-color: var(--bg); }
.text-muted { color: var(--muted-fg); }
.text-fg { color: var(--fg); }

.gold-accent {
  width: 2.5rem;
  height: 2px;
  background-color: var(--gold);
}

.gold-accent--center {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }

.font-body { font-family: 'Inter', sans-serif; }
.font-heading { font-family: 'Montserrat', sans-serif; }

.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

.rounded { border-radius: var(--radius); }
.border { border: 1px solid var(--border); }
.border-gold { border-color: var(--gold); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--gold);
  color: var(--bg);
}

.btn--hero {
  padding: 1rem 3rem;
  font-size: 0.875rem;
}

.btn--gold {
  background-color: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn--gold:hover {
  background-color: hsl(43, 30%, 50%);
  border-color: hsl(43, 30%, 50%);
}

.btn--full {
  width: 100%;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: hsla(0, 0%, 7%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  height: 5rem;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .site-header__logo {
    height: 6rem;
  }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 7%, 0.8);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), hsla(0, 0%, 7%, 0.5), hsla(0, 0%, 7%, 0.3));
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
}

.hero__label {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.hero__subtitle {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 672px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero__vsl {
  max-width: 672px;
  margin: 0 auto 2.5rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: hsla(0, 0%, 10%, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.5s;
}

.hero__vsl:hover {
  border-color: hsla(43, 30%, 58%, 0.4);
}

.hero__vsl-play {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(0, 0%, 96%, 0.1);
  border: 1px solid hsla(0, 0%, 96%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

.hero__vsl:hover .hero__vsl-play {
  background: hsla(43, 30%, 58%, 0.2);
  border-color: hsla(43, 30%, 58%, 0.4);
}

.hero__vsl-play svg {
  width: 2rem;
  height: 2rem;
  color: var(--fg);
  margin-left: 0.25rem;
  transition: color 0.3s;
}

.hero__vsl:hover .hero__vsl-play svg {
  color: var(--gold);
}

.hero__proof {
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .hero__title { font-size: 3.75rem; }
  .hero__subtitle { font-size: 2.25rem; }
  .hero__label { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 4.5rem; }
  .hero__subtitle { font-size: 3rem; }
}

/* ========================================
   AUTHORITY
   ======================================== */
.authority {
  text-align: center;
}

.authority__logo {
  height: 10rem;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .authority__logo {
    height: 14rem;
  }
}

.authority__title {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .authority__title {
    font-size: 1.875rem;
  }
}

.authority__subtitle {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ========================================
   SECTION HEADERS (shared)
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header__label {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.section-header__title {
  font-size: 1.875rem;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-header__title {
    font-size: 3rem;
  }
}

.section-header__desc {
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  max-width: 672px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========================================
   FOR WHO SECTION
   ======================================== */
.forwho__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .forwho__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.forwho__card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.forwho__card--desires {
  border-color: hsla(43, 30%, 58%, 0.2);
}

.forwho__card-title {
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.forwho__list {
  list-style: none;
  padding: 0;
}

.forwho__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.forwho__list li:last-child { margin-bottom: 0; }

.forwho__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.forwho__icon--pain { color: var(--destructive); }
.forwho__icon--desire { color: var(--gold); }

.forwho__footer {
  text-align: center;
  margin-top: 3rem;
  color: var(--muted-fg);
  font-size: 0.875rem;
}

.forwho__footer span {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .story__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
}

.story__image-wrap {
  position: relative;
}

.story__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__image-deco {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 6rem;
  height: 6rem;
  border-radius: var(--radius);
  border: 1px solid hsla(43, 30%, 58%, 0.2);
  z-index: -1;
}

.story__text {
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
}

.story__text p {
  margin-bottom: 1rem;
}

.story__text .highlight {
  color: var(--fg);
  font-weight: 500;
}

.story__text .gold {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   METHOD SECTION (3 Pillars)
   ======================================== */
.method__card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s;
}

.method__card:hover {
  border-color: hsla(43, 30%, 58%, 0.3);
}

.method__card-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.method__card-image img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.method__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.75rem;
  color: hsla(43, 30%, 58%, 0.2);
  line-height: 1;
  font-weight: 800;
}

.method__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s;
}

.method__card:hover .method__icon-wrap {
  background: hsla(43, 30%, 58%, 0.1);
}

.method__icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.method__card-title {
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.method__card-desc {
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========================================
   RESULTS / TESTIMONIALS
   ======================================== */
.testimonial__card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s;
}

.testimonial__card:hover {
  border-color: hsla(43, 30%, 58%, 0.2);
}

.testimonial__image {
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial__image img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.testimonial__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
}

.testimonial__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
}

.testimonial__result {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial__text {
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
}

/* ========================================
   HOW IT WORKS (7 Steps)
   ======================================== */
.steps__timeline {
  position: relative;
}

.steps__line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .steps__line { display: block; }
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .steps__list { gap: 4rem; }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .step {
    flex-direction: row;
    gap: 3rem;
  }
  .step--reverse { flex-direction: row-reverse; }
}

.step__image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .step__image { width: 50%; }
}

.step__image img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

@media (min-width: 768px) {
  .step__image img { height: 16rem; }
}

.step__content {
  width: 100%;
}

@media (min-width: 768px) {
  .step__content { width: 50%; }
  .step--reverse .step__content { text-align: right; }
}

.step__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .step--reverse .step__header { justify-content: flex-end; }
}

.step__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.step__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: hsla(43, 30%, 58%, 0.15);
  line-height: 1;
  font-weight: 800;
}

@media (min-width: 768px) {
  .step__number { font-size: 4.5rem; }
}

.step__title {
  font-size: 1.25rem;
  color: var(--fg);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.step__desc {
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 28rem;
  display: inline-block;
}

/* ========================================
   PLANS SECTION
   ======================================== */
.plans__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .plans__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s;
}

.plan:hover {
  border-color: hsla(43, 30%, 58%, 0.2);
}

.plan--highlighted {
  border-color: var(--gold);
  background: var(--bg);
  box-shadow: 0 0 40px hsla(43, 30%, 58%, 0.15);
  transform: scale(1.03);
  z-index: 2;
}

.plan--highlighted .plan__ring {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  border: 1px solid hsla(43, 30%, 58%, 0.3);
  pointer-events: none;
}

.plan__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  padding: 0.25rem 1.25rem;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  color: var(--bg);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
}

.plan__badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.plan__type {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan--highlighted .plan__type {
  color: var(--gold);
}

.plan__type svg {
  width: 1rem;
  height: 1rem;
}

.plan__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  font-weight: 800;
  text-transform: uppercase;
}

.plan__desc {
  color: var(--muted-fg);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.plan__price-label {
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
}

.plan__price-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
}

.plan--highlighted .plan__price-value {
  color: var(--gold);
}

.plan__price-period {
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
}

.plan__installment {
  color: hsla(0, 0%, 55%, 0.6);
  font-size: 0.625rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.25rem;
}

.plan__highlight-box {
  background: hsla(43, 30%, 58%, 0.1);
  border: 1px solid hsla(43, 30%, 58%, 0.2);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.plan__highlight-box p:first-child {
  color: var(--gold);
  font-size: 0.6875rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.plan__highlight-box p:last-child {
  color: hsla(43, 30%, 58%, 0.7);
  font-size: 0.625rem;
  font-family: 'Inter', sans-serif;
  margin-top: 0.125rem;
}

.plan__features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.plan__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.plan__features li:last-child { margin-bottom: 0; }

.plan__features li svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: hsla(43, 30%, 58%, 0.6);
}

.plan--highlighted .plan__features li svg {
  color: var(--gold);
}

.plan__footer {
  margin-top: auto;
}

.plan__microcopy {
  font-size: 0.625rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 0.75rem;
  font-style: italic;
  color: hsla(0, 0%, 55%, 0.5);
}

.plan--highlighted .plan__microcopy {
  color: hsla(43, 30%, 58%, 0.7);
}

.plan__footnote {
  color: hsla(0, 0%, 55%, 0.4);
  font-size: 0.5625rem;
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-top: 0.5rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 0 1.5rem;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}

.faq__question:hover {
  color: var(--gold);
}

.faq__question svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.open .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  padding-bottom: 1rem;
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq__item.open .faq__answer {
  display: block;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  position: relative;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: hsla(43, 30%, 58%, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.cta__content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-size: 1.875rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.cta__title--gold {
  color: var(--gold);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta__title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .cta__title { font-size: 3.75rem; }
}

.cta__text {
  color: var(--muted-fg);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  max-width: 576px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.cta__highlight {
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  max-width: 576px;
  margin: 0 auto 2.5rem;
}

.cta__note {
  color: var(--muted-fg);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__logo {
  height: 2.5rem;
  filter: brightness(0) invert(1);
}

.site-footer__copy {
  color: var(--muted-fg);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

/* ========================================
   WORDPRESS ADMIN EDITABLE IMAGES
   All images use standard <img> tags with
   WordPress-friendly classes for easy
   replacement via the admin panel
   ======================================== */
.wp-editable-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
