/* ============================================
   GLOBAL DESIGN SYSTEM — v2
   Antigravity Digital
   Fonts: Playfair Display + Plus Jakarta Sans
   Palette: Deep Navy + Gold (Trust & Power)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── CSS CUSTOM PROPERTIES ──────────────────── */
:root {
  /* ── BACKGROUNDS ── */
  --bg-root: #060D18;
  --bg-surface: #0A1828;
  --bg-card: #0F2035;
  --bg-card-hover: #152A45;
  --bg-overlay: rgba(6, 13, 24, 0.95);

  /* ── BORDERS ── */
  --border: rgba(200, 168, 75, 0.1);
  --border-hover: rgba(200, 168, 75, 0.28);
  --border-subtle: rgba(255, 255, 255, 0.05);

  /* ── TEXT ── */
  --text-primary: #EEF3FF;
  --text-secondary: #8B9DC3;
  --text-muted: #3E5070;

  /* ── GOLD (Power & Premium) ── */
  --gold: #C8A84B;
  --gold-light: #E4C97A;
  --gold-dark: #A88A2E;
  --gold-dim: rgba(200, 168, 75, 0.10);
  --gold-glow: rgba(200, 168, 75, 0.30);

  /* ── BLUE (Trust & Technology) ── */
  --blue: #3B7BED;
  --blue-light: #5B9BFF;
  --blue-dim: rgba(59, 123, 237, 0.12);

  /* ── GRADIENTS ── */
  --gradient-gold: linear-gradient(135deg, #C8A84B 0%, #E4C97A 50%, #C8A84B 100%);
  --gradient-power: linear-gradient(135deg, #1A3A60 0%, #0F2035 100%);
  --gradient-card: linear-gradient(180deg, rgba(200, 168, 75, 0.04) 0%, transparent 100%);

  /* ── TYPOGRAPHY ── */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* ── SPACING ── */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --gap: 24px;

  /* ── RADIUS ── */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* ── TRANSITIONS ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-root);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── GRAIN OVERLAY ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ── TYPOGRAPHY ──────────────────────────────── */
.display-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
}

.serif {
  font-family: var(--font-serif);
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient {
  /* alias */
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

/* ── GOLD RULE ───────────────────────────────── */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.gold-rule span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BADGE ───────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(200, 168, 75, 0.22);
}

.badge-blue {
  background: var(--blue-dim);
  color: var(--blue-light);
  border-color: rgba(59, 123, 237, 0.22);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: all 0.28s var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0A1828;
  font-weight: 700;
  box-shadow: 0 0 0 0 var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(200, 168, 75, 0.05);
  border-color: rgba(200, 168, 75, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ── SECTION HEADER ──────────────────────────── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.section-header .badge {
  margin-bottom: 20px;
}

.section-header p {
  margin-top: 16px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── DIVIDER GOLD ────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 20px auto;
  border-radius: 2px;
  opacity: 0.6;
}

/* ── NAVIGATION ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.35s ease;
}

.nav.scrolled {
  background: rgba(6, 13, 24, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nav-logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.active {
  color: var(--gold-light);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: var(--bg-surface);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── BACK BUTTON ─────────────────────────────── */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 10px 0;
  transition: all 0.2s;
  margin-bottom: 32px;
}

.back-btn:hover {
  color: var(--gold-light);
  gap: 12px;
}

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── GOLD LINE SEPARATOR ─────────────────────── */
.section-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
  margin: 0;
}

/* ── SCROLL PROGRESS BAR ─────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-gold);
  z-index: 1100;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── FLOATING WHATSAPP BUTTON ─────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  z-index: 990;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.wa-float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
}

/* ── BACK TO TOP ─────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 989;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, border-color 0.2s;
  color: var(--text-secondary);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: var(--gold);
  border-color: var(--gold);
}

/* ── LGPD BANNER ─────────────────────────────── */
.lgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.lgpd-banner.visible {
  transform: translateY(0);
}

.lgpd-banner p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.6;
}

.lgpd-banner a {
  color: var(--gold);
  text-decoration: underline;
}

/* ── MOBILE NAV ──────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(200, 168, 75, 0.07);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--bg-root);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── PRICING ─────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: rgba(200, 168, 75, 0.4);
  background: linear-gradient(180deg, rgba(200, 168, 75, 0.06) 0%, var(--bg-card) 50%);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--bg-root);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-plan {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-from {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-value sup {
  font-size: 1rem;
  font-family: var(--font-sans);
  vertical-align: super;
  color: var(--text-secondary);
}

.pricing-period {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-overlay);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 8px 0 20px;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 15px 24px;
    font-size: 1rem;
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 84px;
    right: 22px;
  }

  .tools-strip-track {
    animation-play-state: paused;
  }

  .tools-strip-wrapper {
    overflow: hidden;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .faq-index-grid {
    grid-template-columns: 1fr;
  }
}

/* ── TOOLS / SOCIAL PROOF STRIP ─────────────────── */
.tools-strip-section {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(200, 168, 75, 0.02);
  overflow: hidden;
}

.tools-strip-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.tools-strip-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  position: relative;
}

.tools-strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tools-scroll 32s linear infinite;
}

.tools-strip-track:hover {
  animation-play-state: paused;
}

@keyframes tools-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 22px;
  margin: 0 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}

.tool-badge:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.tool-badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.tool-badge.certified .tool-badge-icon {
  background: var(--gold-dim);
}

.tool-badge .tool-cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── FAQ INDEX (home page) ───────────────────────── */
.faq-index-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.faq-index-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}

.faq-index-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-index-item.open {
  border-color: rgba(200, 168, 75, 0.3);
}

.faq-index-item:hover {
  border-color: var(--border-hover);
}

.faq-index-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-index-question:hover {
  color: var(--gold-light);
}

.faq-index-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.2s, border-color 0.2s;
  background: var(--bg-surface);
}

.faq-index-item.open .faq-index-icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
  border-color: var(--gold);
}

.faq-index-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.faq-index-answer p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.faq-index-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(200, 168, 75, 0.25);
  background: rgba(200, 168, 75, 0.03);
}

.faq-index-cta p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin: 0;
}

/* ── OWNERSHIP GUARANTEE ──────────────────────── */
.ownership-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 40px;
  padding: 32px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.07), rgba(200, 168, 75, 0.02));
  border: 1px solid rgba(200, 168, 75, 0.25);
  flex-wrap: wrap;
}

.ownership-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(200, 168, 75, 0.1);
  border: 1px solid rgba(200, 168, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ownership-body {
  flex: 1;
  min-width: 260px;
}

.ownership-body h4 {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.ownership-body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.ownership-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.ownership-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.ownership-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ownership-guarantee {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
  }

  .ownership-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ── METRICS / KPI SECTION ────────────────────── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.kpi-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.kpi-card:hover {
  border-color: rgba(200, 168, 75, 0.3);
  transform: translateY(-4px);
}

.kpi-card-featured {
  border-color: rgba(200, 168, 75, 0.25);
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.07), var(--bg-card));
}

.kpi-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.kpi-value {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  background: linear-gradient(135deg, #C8A84B, #E4C97A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1.1;
}

.kpi-label {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.kpi-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LEADS BAR CHART ──────────────────────────── */
.chart-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px 24px;
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.chart-header h4 {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 4px;
}

.chart-header p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
  align-self: flex-end;
}

.chart-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(to top, #C8A84B, #E4C97A);
  flex-shrink: 0;
}

.chart-wrap {
  display: flex;
  gap: 12px;
  align-items: stretch;
  height: 200px;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  width: 28px;
  flex-shrink: 0;
}

.chart-bars-area {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chart-grid-lines {
  position: absolute;
  inset: 0;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.chart-grid-lines div {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: calc(100% - 20px);
  position: relative;
  z-index: 1;
}

.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar-fill {
  width: 100%;
  height: 0;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, #C8A84B 0%, rgba(228, 201, 122, 0.6) 100%);
  transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  cursor: default;
}

.chart-bar-fill:hover {
  filter: brightness(1.15);
}

.chart-bar-tip {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}

.chart-bar-fill:hover .chart-bar-tip {
  opacity: 1;
}

.reveal.visible .chart-bar-fill {
  height: var(--bar-h);
}

.chart-month {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

.chart-disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── PORTFOLIO OWNERSHIP BAR ──────────────────── */
.portfolio-ownership-bar {
  text-align: center;
  padding: 12px 24px;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(200, 168, 75, 0.09), rgba(200, 168, 75, 0.03));
  border: 1px solid rgba(200, 168, 75, 0.2);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.portfolio-ownership-bar strong {
  color: var(--gold-light);
}