/* apple.css - The new architectural layout styles */
body.apple-theme {
  background: #000;
  color: #fff;
  overflow-x: hidden;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAV — Sticky glass nav with dropdown + mobile drawer
   ============================================================ */

/* Base nav — transparent over hero (D-07) */
.apple-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* Glass activated on scroll past 80px (D-07) */
.apple-nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Nav inner layout */
.apple-nav .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nav links container — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Nav link base */
.nav-link {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

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

.nav-link:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.3);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Desktop dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  background: rgba(20, 20, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.nav-dropdown-item:hover {
  color: var(--color-gold);
}

.nav-dropdown-item:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.3);
  outline-offset: -2px;
}

/* Nav CTA button — hidden on mobile (shown in mobile drawer instead) */
.nav-cta {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 8px 24px;
  border-radius: 999px;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Mobile hamburger toggle — visible only on mobile */
.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  padding: 0;
}

.nav-mobile-toggle:hover {
  color: var(--color-gold);
}

.nav-mobile-toggle:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.3);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .nav-mobile-toggle {
    display: none;
  }
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 24px 20px;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-mobile a,
.nav-mobile-link {
  display: flex;
  align-items: center;
  padding: 14px 0;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--font-sans);
  min-height: 48px;
}

.nav-mobile a:hover,
.nav-mobile-link:hover {
  color: var(--color-gold);
}

/* Mobile Serviços accordion trigger */
.nav-mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1rem;
  font-family: var(--font-sans);
  cursor: pointer;
  min-height: 48px;
}

.nav-mobile-dropdown-trigger:hover {
  color: var(--color-gold);
}

.nav-mobile-dropdown-trigger i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-mobile-dropdown-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Mobile dropdown items */
.nav-mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
}

.nav-mobile-dropdown-trigger[aria-expanded="true"] + .nav-mobile-dropdown-menu {
  display: flex;
}

.nav-mobile-dropdown-menu a {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  min-height: 44px;
}

.nav-mobile-dropdown-menu a:hover {
  color: var(--color-gold);
}

/* Mobile CTA */
.nav-mobile-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
}

/* When menu is open, add glass to nav (for continuity) */
.apple-nav.menu-open {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Layout */
.apple-section {
  position: relative;
  width: 100%;
  background: var(--color-section-bg, var(--color-bg-base));
}

/* Hero Reveal */
.hero-reveal {
  height: 200vh; /* reduced from 250vh to minimize black dead zone after hero fade-out */
  background: #000;
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh; /* iOS Safari dynamic viewport — overrides 100vh where supported */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-core-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transform: scale(1.35);
  filter: blur(3px);
}
/* Dark radial vignette behind hero text */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(0,0,0,0.55) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -50px;
}
.hero-title-main {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(to bottom, #ffffff 20%, #d0d0d0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.7)) drop-shadow(0 0 60px rgba(0,0,0,0.4));
}
.hero-subtitle-main {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: #c8c8cd;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 5;
}
.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 168, 83, 0.3);
}


/* Intro Scroll */
.intro-scroll {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  padding: 100px 0;
}
.intro-container {
  max-width: 900px;
  margin: 0 auto;
}
.intro-heading {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  opacity: 1; /* SplitText mask handles reveal — no opacity needed */
  font-family: var(--font-serif);
  font-weight: 700;
}
.intro-p {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: #888;
  opacity: 0.15; /* Activated by GSAP */
}

/* Bento Services */
/* === HORIZONTAL SCROLL SERVICES === */

.services-horizontal {
  height: 650vh; /* scroll distance: extra room for last service hold + exit */
  position: relative;
}
.services-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.services-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  z-index: 0;
}
.services-track {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
  will-change: transform;
}
.services-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8vw;
  box-sizing: border-box;
}

/* Intro slide */
.services-intro-slide {
  flex-direction: column;
  text-align: center;
  gap: 20px;
}
.services-intro-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.services-intro-sub {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #a0a0a5;
  font-weight: 300;
  max-width: 500px;
}

/* Service slides layout: icon left, text right, centered as group */
.services-slide[data-service] {
  justify-content: center;
  gap: 50px;
}
.service-text {
  max-width: 420px;
}
.service-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-gold);
}
.service-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
}
.service-desc {
  color: #bbb;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}
.service-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--color-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.service-demo-link:hover {
  gap: 12px;
}
.service-demo-link svg {
  width: 16px;
  height: 16px;
}

/* Icon */
.service-icon-wrap {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon {
  width: clamp(220px, 25vw, 360px);
  height: auto;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
.service-icon-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Mobile adjustments for horizontal scroll */
@media (max-width: 768px) {
  .services-slide {
    padding: 0 6vw;
  }
  .services-slide[data-service] {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .service-text {
    max-width: 100%;
  }
  .service-icon {
    width: 180px;
  }
  .services-intro-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

/* ============================================================
   VANTAGENS — Benefit cards
   ============================================================ */
.vantagens-section {
  padding: 100px 0;
}

.vantagens-header {
  text-align: center;
  margin-bottom: 60px;
}

.vantagens-header .section-title {
  margin-top: 16px;
}

.vantagens-header .section-desc {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--color-text-muted, #a0a0a5);
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .vantagens-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.vantagem-card {
  background: var(--color-bg-card, #141416);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.vantagem-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.08);
}

.vantagem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 168, 83, 0.08);
  margin-bottom: 24px;
}

.vantagem-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold, #d4a853);
}

.vantagem-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.vantagem-desc {
  color: var(--color-text-muted, #a0a0a5);
  font-size: 1rem;
  line-height: 1.6;
}

/* Light Mode Reveal */
.light-mode-reveal {
  padding: 20rem 20px 15rem;
  /* Colors controlled by GSAP, start dark, end light */
  background: #000; 
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 10;
}
.light-container {
  max-width: 800px;
  margin: 0 auto;
}
.light-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.cta-playfair {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.light-desc {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: currentColor;
  opacity: 0.6;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.apple-btn {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #000;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}
.apple-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}
.light-mode-reveal .apple-btn {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gold glow — Final CTA (high intensity, D-02 third moment) */
.light-mode-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.apple-rich-footer {
  background: var(--color-section-bg, var(--color-bg-base)); color: #a0a0a5; padding: 100px 0 40px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 60px; margin-bottom: 80px; }
.footer-logo-text { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.footer-tagline { color: #888; font-size: 1.1rem; margin-top: 15px; }
.footer-heading { font-size: 1.2rem; margin-bottom: 25px; font-weight: 600; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: #888; text-decoration: none; font-size: 1.1rem; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: #888; text-decoration: none; font-size: 1.1rem; margin-bottom: 15px; transition: color 0.3s; }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item i { width: 20px; height: 20px; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; color: #666; font-size: 1rem; }
.footer-privacy { color: #666; text-decoration: none; }
.footer-privacy:hover { color: #fff; }
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Process Sequence */
.process-sequence {
  padding: 150px 0;
  background: #000;
}
.process-layout {
  display: flex;
  gap: 100px;
}
.process-left {
  flex: 1;
}
.process-sticky {
  position: sticky;
  top: 150px;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.2rem;
  color: #888;
  max-width: 400px;
}
.process-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 15vh;
  padding-bottom: 20vh;
}
.process-step {
  background: #0a0a0b;
  border: 1px solid rgba(255,255,255,0.05);
  border-left: 3px solid var(--color-gold, #d4a853);
  border-radius: 20px;
  padding: 36px 40px;
  opacity: 1;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.08);
}
.step-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold, #d4a853);
}
.step-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold, #d4a853);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.process-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 0.01em;
}
.process-step p {
  font-family: 'Outfit', sans-serif;
  color: #999;
  font-size: 0.95rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 300;
}

/* ============================================================
   CASO DE SUCESSO — Two-panel before/after
   ============================================================ */
.caso-sucesso {
  padding: 100px 0 150px;
  position: relative;
}

.caso-sucesso::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(212, 168, 83, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.caso-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.caso-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
  perspective: 800px;
}

.caso-panel {
  padding: 48px 40px;
  border-radius: 24px;
}

.caso-before {
  background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.caso-after {
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.25);
  transform-origin: left center;
}

.caso-panel-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.caso-before .caso-panel-label {
  color: #ccc;
}

.caso-after .caso-panel-label {
  color: var(--color-gold, #d4a853);
}

.caso-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.caso-list li {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.caso-before .caso-list li {
  color: #bbb;
}

.caso-before .caso-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #888;
}

.caso-after .caso-list li {
  color: #e8e8e8;
}

.caso-after .caso-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-gold, #d4a853);
  font-weight: 700;
}

.caso-cta {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.caso-demo-link {
  font-size: 1.1rem;
}

.text-center { text-align: center; margin-bottom: 60px; }

@media (max-width: 900px) {
  .process-layout { display: block; }
  .process-left { display: contents; } /* unwrap so sticky works within full layout height */
  .process-sticky {
    position: sticky;
    top: 70px;
    z-index: 10;
    background: #000;
    padding-bottom: 40px;
  }
  .process-right { display: flex; flex-direction: column; gap: 30px; padding-bottom: 0; }
}

@media (max-width: 768px) {
  .caso-panels {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .caso-panel {
    padding: 36px 28px;
  }
  .caso-after {
    transform-origin: center top;
  }
}

/* FAQ Premium */
.faq-premium { padding: 150px 0; background: #000; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-trigger { width: 100%; text-align: left; background: none; border: none; color: #fff; font-size: 1.3rem; padding: 30px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: #a0a0a5; font-size: 1.1rem; line-height: 1.6; }
.faq-content p { padding-bottom: 30px; margin: 0; }
.faq-item.active .faq-content { max-height: 500px; }
.faq-item.active .faq-trigger i { transform: rotate(180deg); }
.faq-trigger i { transition: transform 0.4s ease; color: #d4a853; }
.faq-content[aria-hidden="true"] { max-height: 0; }
.faq-content[aria-hidden="false"] { max-height: 500px; }
.faq-chevron { transition: transform 0.4s ease; color: #d4a853; width: 20px; height: 20px; flex-shrink: 0; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }

/* FAQ icons */
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold, #d4a853);
  vertical-align: -3px;
  margin-right: 10px;
  opacity: 0.7;
}
.faq-item.active .faq-icon { opacity: 1; }

/* FAQ active gold accent */
.faq-item.active {
  border-bottom-color: rgba(212, 168, 83, 0.3);
}
.faq-item.active .faq-trigger {
  color: var(--color-gold, #d4a853);
}
.faq-content {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  padding: 120px 0;
  background: #000;
}
.founder-layout {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
}
.founder-image-wrap {
  flex: 0 0 auto;
  position: relative;
}
.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid rgba(212, 168, 83, 0.3);
  position: relative;
  z-index: 1;
}
.founder-photo-glow {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  filter: blur(15px);
  z-index: 0;
}
.founder-role {
  color: var(--color-gold, #d4a853);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.founder-bio {
  color: #999;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 30px;
}
.founder-cta {
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .founder-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .founder-photo { width: 160px; height: 160px; }
  .founder-text .section-desc { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   FINAL CTA — Gold glow orb
   ============================================================ */
.cta-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.03) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: cta-glow-pulse 4s ease-in-out infinite;
}
@keyframes cta-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.light-container {
  position: relative;
  z-index: 1;
}

/* Footer separator gradient */
.apple-rich-footer {
  border-top: 1px solid rgba(212, 168, 83, 0.1) !important;
}
.apple-rich-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

/* === FLOATING WHATSAPP BUTTON (PERF-01) === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 168, 83, 0.6);
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
