/* ============================================================
   RAFAEL FRANÇA ADVOGADO — PREMIUM DARK MODE CSS
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --dark-1: #242527;
  --dark-2: #272B34;
  --dark-3: #1E2028;
  --gold: #C3A166;
  --gold-light: #D4B47A;
  --gold-dim: rgba(195, 161, 102, 0.15);
  --gold-glow: rgba(195, 161, 102, 0.4);
  --light: #F0F1F0;
  --light-muted: rgba(240, 241, 240, 0.6);
  --light-dim: rgba(240, 241, 240, 0.08);
  --white: #ffffff;
  --border: rgba(195, 161, 102, 0.2);
  --border-card: rgba(195, 161, 102, 0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-gold: 0 0 20px rgba(195, 161, 102, 0.35);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--easing);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--dark-1);
  color: var(--light);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.65;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 600;
}

em {
  font-style: italic;
}

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

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

/* ── Section commons ───────────────────────────────────────── */
.section {
  padding: clamp(80px, 10vh, 140px) 0;
  position: relative;
  overflow: hidden;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  background: var(--gold-dim);
}

.section__tag--dark {
  background: rgba(195, 161, 102, 0.08);
  border-color: rgba(195, 161, 102, 0.25);
  color: var(--gold);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--light);
  margin-bottom: 20px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--light-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 14px 30px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Bacenjud card CTA — wraps on mobile, single line on desktop */
.btn--bacenjud {
  padding-left: 36px;
  padding-right: 36px;
}

@media (max-width: 600px) {
  .btn--bacenjud {
    white-space: normal;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
    padding: 16px 20px;
  }
}

.btn--primary {
  background: var(--gold);
  color: var(--dark-3);
  border: 1px solid var(--gold);
  isolation: isolate;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #e8c87a;
  transform: translateX(-101%);
  transition: transform 0.4s var(--easing);
  z-index: 0;
}

.btn--primary:hover::before {
  transform: translateX(0);
}

.btn--primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: var(--dark-3);
}

.btn--primary>*,
.btn--primary span {
  position: relative;
  z-index: 1;
  color: inherit;
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--dark-3);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--light);
  border: none;
  padding-left: 0;
  padding-right: 0;
}

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

.btn--ghost:hover .btn__arrow {
  transform: translateX(6px);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--transition);
  font-style: normal;
}

.btn--large {
  font-size: 0.9rem;
  padding: 18px 40px;
}

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

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(28, 30, 36, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border-card);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: var(--header-h);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo-icon {
  height: 44px;
  width: auto;
  display: block;
}

.header__logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.header__logo-text em {
  color: var(--gold);
  font-style: normal;
  display: block;
  font-size: 0.75em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  gap: 36px;
}

.header__nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.header__nav-link:hover::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
  padding: 10px 20px !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on header CTA */
.header__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: btn-shimmer 3.5s ease-in-out infinite;
}

@keyframes btn-shimmer {
  0% {
    left: -100%;
  }

  40% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

/* ── Admin Gear Button ───────────────────────────────────── */
.header__admin-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(195, 161, 102, 0.25);
  background: rgba(195, 161, 102, 0.06);
  color: rgba(195, 161, 102, 0.55);
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.header__admin-btn svg {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__admin-btn:hover {
  border-color: rgba(195, 161, 102, 0.6);
  background: rgba(195, 161, 102, 0.12);
  color: var(--gold);
}

.header__admin-btn:hover svg {
  transform: rotate(90deg);
}


@media (max-width: 768px) {
  .header__admin-btn {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Scroll Progress Bar */
.header__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.header__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(195, 161, 102, 0.5);
}

/* ── Mobile Menu — Premium Redesign ──────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Slide in from right */
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  pointer-events: none;

  /* Premium layered bg */
  background:
    radial-gradient(ellipse at 10% 80%, rgba(195, 161, 102, 0.07) 0%, transparent 55%),
    linear-gradient(160deg, #15171c 0%, #1e2028 60%, #12141a 100%);
}

.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

/* Stagger entrance for menu items */
.mobile-menu.open .mobile-menu__item {
  animation: mmItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-menu.open .mobile-menu__item:nth-child(1) {
  animation-delay: 0.15s;
}

.mobile-menu.open .mobile-menu__item:nth-child(2) {
  animation-delay: 0.22s;
}

.mobile-menu.open .mobile-menu__item:nth-child(3) {
  animation-delay: 0.29s;
}

.mobile-menu.open .mobile-menu__item:nth-child(4) {
  animation-delay: 0.36s;
}

.mobile-menu.open .mobile-menu__item:nth-child(5) {
  animation-delay: 0.43s;
}

.mobile-menu.open .mobile-menu__bottom {
  animation: mmItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

@keyframes mmItemIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── TOP BAR ── */
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  flex-shrink: 0;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mobile-menu__logo-icon {
  height: 38px;
  width: auto;
  display: block;
}

.mobile-menu__logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--light);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.mobile-menu__logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(195, 161, 102, 0.25);
  background: rgba(195, 161, 102, 0.07);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu__close:hover {
  background: rgba(195, 161, 102, 0.15);
  border-color: rgba(195, 161, 102, 0.5);
  transform: rotate(90deg);
}

/* ── DIVIDER ── */
.mobile-menu__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 161, 102, 0.25), transparent);
  margin: 0 28px;
  flex-shrink: 0;
}

/* ── NAV LIST ── */
.mobile-menu__nav {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 12px 0;
  overflow: hidden;
}

.mobile-menu__list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__item {
  border-bottom: 1px solid rgba(195, 161, 102, 0.08);
}

.mobile-menu__item:first-child {
  border-top: 1px solid rgba(195, 161, 102, 0.08);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  text-decoration: none;
  transition: background 0.3s ease, padding-left 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.3s var(--easing);
  transform-origin: bottom;
}

.mobile-menu__link:hover {
  background: rgba(195, 161, 102, 0.05);
  padding-left: 34px;
}

.mobile-menu__link:hover::before {
  transform: scaleY(1);
}

.mobile-menu__item-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 24px;
  letter-spacing: 0.05em;
}

.mobile-menu__item-label {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  font-weight: 600;
  color: var(--light);
  flex: 1;
  transition: color 0.3s ease;
}

.mobile-menu__link:hover .mobile-menu__item-label {
  color: var(--gold);
}

.mobile-menu__item-arrow {
  color: rgba(195, 161, 102, 0.4);
  flex-shrink: 0;
  transform: translateX(-6px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.mobile-menu__link:hover .mobile-menu__item-arrow {
  transform: translateX(0);
  opacity: 1;
  color: var(--gold);
}

/* ── BOTTOM CTA ── */
.mobile-menu__bottom {
  padding: 24px 28px 36px;
  flex-shrink: 0;
  border-top: 1px solid rgba(195, 161, 102, 0.1);
}

.mobile-menu__cta {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.mobile-menu__tagline {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(195, 161, 102, 0.45);
  letter-spacing: 0.1em;
  margin-top: 12px;
  font-family: var(--font-sans);
}

/* ── WATERMARK ── */
.mobile-menu__watermark {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(-15deg);
}

.mobile-menu__watermark img {
  width: 100%;
}

/* Hide hamburger behind the mobile menu overlay */
.mobile-menu.open~* #hamburger,
.mobile-menu.open+* .hamburger {
  opacity: 0;
  pointer-events: none;
}


/* ============================================================
   HERO — Split-Screen
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-3);
}

.hero__bg-parallax {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(195, 161, 102, 0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 75%, rgba(195, 161, 102, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #111316 0%, #1c1e24 40%, #22262f 100%);
  background-size: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(17, 19, 22, 0.55) 0%,
      rgba(17, 19, 22, 0.0) 60%);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__mouse-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(195, 161, 102, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Decorative background watermark */
.hero__watermark {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 90vw, 900px);
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}

.hero__watermark img {
  width: 100%;
  animation: slow-spin 50s linear infinite;
}

@keyframes slow-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ── Inner grid ─────────────────────────────────────────── */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 80px) clamp(20px, 5vw, 60px) 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

.hero__photo-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 480px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4/5;
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) saturate(0.95);
  box-shadow:
    0 0 0 1px rgba(195, 161, 102, 0.35),
    0 0 0 8px rgba(195, 161, 102, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.6);
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(to top, var(--dark-3) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Text column ─────────────────────────────────────────── */
.hero__text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  background: var(--gold-dim);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero__title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.06;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero__title--accent {
  font-style: italic;
  color: var(--gold);
}

/* Animated golden rule */
.hero__rule {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(195, 161, 102, 0.2));
  border-radius: 2px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.hero__rule::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer-rule 3s ease infinite;
}

@keyframes shimmer-rule {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: var(--light-muted);
  margin-bottom: 44px;
  line-height: 1.85;
  width: 100%;
  max-width: 600px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-number {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__trust-suffix {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
}

.hero__trust-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-muted);
  margin-top: 4px;
  white-space: nowrap;
}

.hero__trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    flex-direction: column;
    gap: 40px;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 48px;
    padding-left: 24px;
    padding-right: 24px;
    align-items: center;
    text-align: center;
  }

  .hero__photo-col {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
    animation: fadeUp 1s ease forwards;
    transform: translateY(20px);
    opacity: 0;
  }

  .hero__text-col {
    order: 1;
    align-items: center;
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .hero__ctas {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  /* User requested to hide the primary button on mobile */
  .hero__ctas .btn--primary {
    display: none !important;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__watermark {
    width: min(85vw, 340px);
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.04;
  }

  .hero__trust {
    display: none;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 20px;
  }
}

/* ── Hero fade-up animations ── */
.fade-up-init {
  opacity: 0;
  transform: translateY(30px);
}

.fade-up-done {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

/* ============================================================
   PROBLEMS / BENTO GRID
   ============================================================ */
.problems {
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-2) 60%, var(--dark-3) 100%);
}

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

/* Desktop: alternating [2col+1col] / [1col+2col] / [1col+2col] */
.bento-card--large {
  grid-column: span 2;
}

@media (max-width: 960px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .bento-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 580px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bento-card--large {
    grid-column: span 1;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials__marquee-content {
  display: flex;
  gap: 20px;
  animation: scroll-marquee 40s linear infinite;
  padding: 20px 0;
  width: max-content;
}

.testimonials__marquee:hover .testimonials__marquee-content {
  animation-play-state: paused;
}

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

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

/* Card base */
.tcard {
  position: relative;
  /* Added for consistency with bento-card and potential glow */
  background: var(--dark-2);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  width: 400px;
  flex-shrink: 0;
  overflow: hidden;
  /* For the glow */
}

.bento-card {
  position: relative;
  background: linear-gradient(160deg, rgba(39, 43, 52, 0.9) 0%, rgba(28, 30, 36, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  /* Left accent bar — hidden by default */
  border-left: 3px solid transparent;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(195, 161, 102, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(195, 161, 102, 0.3);
  border-left-color: var(--gold);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card>* {
  position: relative;
  z-index: 1;
}

.bento-card:hover .bento-card__icon-wrap {
  background: rgba(195, 161, 102, 0.15);
  border-color: rgba(195, 161, 102, 0.4);
}

.bento-card:hover .bento-card__icon svg {
  transform: translateY(-3px) scale(1.05);
  color: var(--gold);
}

.bento-card--accent {
  background: linear-gradient(145deg, rgba(45, 50, 64, 0.95), rgba(30, 34, 44, 0.98));
  border-color: rgba(195, 161, 102, 0.2);
  border-left-color: rgba(195, 161, 102, 0.5);
}

/* Icon wrap */
.bento-card__icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}

.bento-card__icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s var(--easing), color 0.3s ease;
}

/* On large cards, icon is slightly bigger */
.bento-card--large .bento-card__icon {
  width: 56px;
  height: 56px;
}

.bento-card__title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.25;
}

.bento-card--large .bento-card__title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.bento-card__text {
  font-size: 0.93rem;
  color: var(--light-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.bento-card--large .bento-card__text {
  font-size: 0.97rem;
  max-width: 520px;
}

.bento-card__tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(195, 161, 102, 0.25);
  border-radius: 100px;
  padding: 5px 16px;
}

.bento-card__glow {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(195, 161, 102, 0.1) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover .bento-card__glow {
  opacity: 1;
}

/* ============================================================
   COMO FUNCIONA — PROCESS SECTION
   ============================================================ */
.process {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: clamp(48px, 6vw, 80px);
  position: relative;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(12px, 2vw, 24px);
  position: relative;
}

.process__step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid rgba(195, 161, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
}

.process__step:hover .process__step-num {
  background: rgba(195, 161, 102, 0.15);
  box-shadow: 0 0 24px rgba(195, 161, 102, 0.3);
  transform: scale(1.08);
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process__step-text {
  font-size: 0.88rem;
  color: var(--light-muted);
  line-height: 1.8;
  max-width: 240px;
  margin: 0 auto;
}

/* Connector line between steps */
.process__connector {
  flex-shrink: 0;
  width: clamp(24px, 4vw, 60px);
  height: 1.5px;
  background: linear-gradient(90deg, rgba(195, 161, 102, 0.4), rgba(195, 161, 102, 0.15));
  align-self: center;
  margin-bottom: 88px;
  /* aligns with center of num badge */
  position: relative;
  top: -44px;
}

@media (max-width: 860px) {
  .process__steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0 0 32px;
    gap: 20px;
  }

  .process__step-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process__step-content {
    padding-top: 8px;
  }

  .process__step-text {
    max-width: none;
    margin: 0;
  }

  .process__connector {
    width: 1.5px;
    height: 24px;
    background: linear-gradient(180deg, rgba(195, 161, 102, 0.4), rgba(195, 161, 102, 0.15));
    margin-left: 31px;
    top: 0;
    margin-bottom: 0;
  }
}

/* ============================================================
   SPECIALIST SECTION
   ============================================================ */

.specialist {
  background: linear-gradient(160deg, var(--dark-1) 0%, var(--dark-3) 50%, var(--dark-2) 100%);
  color: var(--light);
  overflow: hidden;
  position: relative;
}

/* Subtle diagonal grid lines in bg */
.specialist__bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(195, 161, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 161, 102, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.specialist__watermark {
  position: absolute;
  top: 50%;
  left: -12%;
  transform: translateY(-50%);
  width: clamp(200px, 80vw, 680px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.specialist__watermark-img {
  width: 100%;
  animation: slow-spin 50s linear infinite;
}

.specialist__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .specialist__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    overflow: hidden;
    width: 100%;
  }

  /* Show content BEFORE the photo on mobile */
  .specialist__image-col {
    order: 2;
    width: 100%;
    max-width: min(340px, calc(100vw - 48px));
    margin: 0 auto;
    overflow: hidden;
  }

  .specialist__content-col {
    order: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .specialist__watermark {
    width: min(80vw, 320px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ── Photo frame ─────────────────────────────────────────── */
.specialist__photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4/5;
}

.specialist__photo-real {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Gold border + deep shadow */
  box-shadow:
    0 0 0 1px rgba(195, 161, 102, 0.35),
    0 0 0 8px rgba(195, 161, 102, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Stat bubbles floating over photo */
.specialist__stat-bubble {
  position: absolute;
  background: rgba(15, 16, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(195, 161, 102, 0.3);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.specialist__stat-bubble--top {
  top: -16px;
  right: -24px;
}

.specialist__stat-bubble--bottom {
  bottom: 40px;
  left: -24px;
}

.specialist__stat-n {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.specialist__stat-n em {
  font-style: normal;
  font-size: 1rem;
}

.specialist__stat-l {
  font-size: 0.7rem;
  color: var(--light-muted);
  letter-spacing: 0.04em;
}

/* Corner accent lines */
.specialist__frame-corner {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.specialist__frame-corner::before,
.specialist__frame-corner::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
}

.specialist__frame-corner--tl {
  top: -8px;
  left: -8px;
}

.specialist__frame-corner--tl::before {
  width: 2px;
  height: 40px;
  top: 0;
  left: 0;
}

.specialist__frame-corner--tl::after {
  width: 40px;
  height: 2px;
  top: 0;
  left: 0;
}

.specialist__frame-corner--br {
  bottom: -8px;
  right: -8px;
}

.specialist__frame-corner--br::before {
  width: 2px;
  height: 40px;
  bottom: 0;
  right: 0;
}

.specialist__frame-corner--br::after {
  width: 40px;
  height: 2px;
  bottom: 0;
  right: 0;
}

/* ── Content column ──────────────────────────────────────── */
.specialist__content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.specialist__title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--light);
  line-height: 1.15;
  margin-bottom: 20px;
}

.specialist__title em {
  font-style: italic;
  color: var(--gold);
}

.specialist__divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(195, 161, 102, 0.15));
  border-radius: 2px;
  margin-bottom: 28px;
}

.specialist__text {
  font-size: 1rem;
  color: var(--light-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* Pull quote */
.specialist__quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 0 0 32px 0;
  background: rgba(195, 161, 102, 0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* Credential cards */
.specialist__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  width: 100%;
}

.credential-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(195, 161, 102, 0.12);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.credential-card:hover {
  border-color: rgba(195, 161, 102, 0.32);
  background: rgba(195, 161, 102, 0.05);
}

.credential-card__num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
  line-height: 1.3;
  min-width: 28px;
}

.credential-card__body strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 4px;
}

.credential-card__body span {
  font-size: 0.8rem;
  color: var(--light-muted);
  line-height: 1.5;
}


/* ============================================================
   TESTIMONIALS / CASES GRID
   ============================================================ */
.testimonials {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-3) 60%, var(--dark-2) 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 960px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 580px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Individual testimonial card ─────────────────────────── */
.tcard {
  position: relative;
  background: rgba(26, 28, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

/* Left accent bar that fills on hover */
.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(195, 161, 102, 0.3) 100%);
  border-radius: 3px 0 0 3px;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle quote watermark */
.tcard::after {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 9rem;
  color: var(--gold);
  opacity: 0.04;
  position: absolute;
  top: -16px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
}

.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(195, 161, 102, 0.12);
  border-color: rgba(195, 161, 102, 0.2);
}

.tcard:hover::before {
  height: 100%;
}

/* Result pill — top of card */
.tcard__result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(195, 161, 102, 0.08);
  border: 1px solid rgba(195, 161, 102, 0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.tcard__result::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Quote body */
.tcard__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  font-style: normal;
  flex: 1;
  margin-bottom: 28px;
}

/* Author row */
.tcard__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: auto;
}

.tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(195, 161, 102, 0.35);
  flex-shrink: 0;
  object-fit: cover;
}

.tcard__author-info {
  flex: 1;
  min-width: 0;
}

.tcard__author-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--light);
  font-family: var(--font-sans);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard__author-info span {
  font-size: 0.73rem;
  color: var(--light-muted);
  display: block;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard__stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-left: auto;
}


/* ============================================================
   CTA BANNER — CINEMATIC CENTRED
   ============================================================ */
.cta-banner {
  position: relative;
  background: linear-gradient(160deg, #12141b 0%, #1a1c26 50%, #0f1117 100%);
  border-top: 1px solid rgba(195, 161, 102, 0.15);
  border-bottom: 1px solid rgba(195, 161, 102, 0.15);
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
  text-align: center;
}

/* Ambient glow orbs */
.cta-banner__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__glow--l {
  background: radial-gradient(circle, rgba(195, 161, 102, 0.1) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.cta-banner__glow--r {
  background: radial-gradient(circle, rgba(195, 161, 102, 0.08) 0%, transparent 70%);
  bottom: -200px;
  right: -200px;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-banner__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 20px;
}

.cta-banner__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--light);
  line-height: 1.12;
  margin-bottom: 24px;
}

.cta-banner__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--light-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* Trust checkmarks */
.cta-banner__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.cta-banner__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-banner__trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-banner__small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
}

/* ============================================================
   FAQ — TWO-COLUMN EDITORIAL
   ============================================================ */
.faq {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
}

.faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

/* Left panel */
.faq__left {
  position: sticky;
  top: 120px;
}

@media (max-width: 900px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq__left {
    position: static;
  }

  .faq__heading {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .faq__lead {
    margin-bottom: 16px;
  }

  .faq__badge {
    display: none;
  }
}


.faq__heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--light);
  line-height: 1.15;
  margin-bottom: 20px;
}

.faq__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

.faq__lead {
  font-size: 0.95rem;
  color: var(--light-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.faq__cta {
  margin-bottom: 48px;
  display: inline-flex;
}

/* Stat badge */
.faq__badge {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  background: rgba(195, 161, 102, 0.04);
  border: 1px solid rgba(195, 161, 102, 0.15);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
}

.faq__badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.faq__badge-num em {
  font-style: normal;
  font-size: 2rem;
}

.faq__badge-label {
  font-size: 0.82rem;
  color: var(--light-muted);
  line-height: 1.5;
}

/* Right panel: accordion list */
.faq__right {
  padding-top: 4px;
}

/* Stagger-in for each FAQ item */
@keyframes faq-item-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__item {
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: linear-gradient(150deg, rgba(39, 43, 52, 0.7), rgba(24, 26, 32, 0.9));
  transform-origin: center top;
  animation: faq-item-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.faq__item:nth-child(1) {
  animation-delay: 0.05s;
}

.faq__item:nth-child(2) {
  animation-delay: 0.12s;
}

.faq__item:nth-child(3) {
  animation-delay: 0.19s;
}

.faq__item:nth-child(4) {
  animation-delay: 0.26s;
}

.faq__item:nth-child(5) {
  animation-delay: 0.33s;
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: rgba(195, 161, 102, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 24px;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  color: var(--light);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
  background: rgba(195, 161, 102, 0.03);
}

.faq__question[aria-expanded="true"] {
  color: var(--gold);
}

.faq__icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(195, 161, 102, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  line-height: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
  border-color: var(--gold);
}

.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-10px);
}

.faq__answer.open {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 24px;
  transform: translateY(0);
}

.faq__answer p {
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--light-muted);
  line-height: 1.85;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* Footer reveal animation */
@keyframes footer-reveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer__top-inner>* {
  animation: footer-reveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-play-state: paused;
}

.footer--visible .footer__top-inner>*:nth-child(1) {
  animation-delay: 0.05s;
  animation-play-state: running;
}

.footer--visible .footer__top-inner>*:nth-child(2) {
  animation-delay: 0.15s;
  animation-play-state: running;
}

.footer--visible .footer__top-inner>*:nth-child(3) {
  animation-delay: 0.25s;
  animation-play-state: running;
}

.footer--visible .footer__top-inner>*:nth-child(4) {
  animation-delay: 0.35s;
  animation-play-state: running;
}

.footer {
  background: var(--dark-3);
  border-top: 1px solid var(--border-card);
}

.footer__top {
  padding: clamp(60px, 8vw, 100px) 0 60px;
}

.footer__top-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

@media (max-width: 960px) {
  .footer__top-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 540px) {
  .footer__top-inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: 1;
  }
}

.footer__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  object-fit: cover;
  margin-bottom: 20px;
  filter: brightness(1.05);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: var(--light-muted);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-muted);
  transition: var(--transition);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(195, 161, 102, 0.1);
  box-shadow: 0 0 15px rgba(195, 161, 102, 0.4);
  transform: translateY(-3px);
}

.footer__links-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--light-muted);
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: color var(--transition), transform var(--transition);
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer__links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__links a:hover::after {
  width: 100%;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light-muted);
  margin-bottom: 12px;
}

.footer__contact-item svg {
  flex-shrink: 0;
  stroke: var(--gold);
}

.footer__contact-item a {
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__cta-btn {
  margin-top: 20px;
}

.footer__bottom {
  border-top: 1px solid var(--border-card);
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(240, 241, 240, 0.35);
}

.footer__oab {
  font-size: 0.72rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark-2);
  color: var(--light);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark-2);
  border-right: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PARTICLES (hero dot particles)
   ============================================================ */
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particle-float linear infinite;
  pointer-events: none;
}

@keyframes particle-float {
  0% {
    opacity: 0;
    transform: translateY(100%) translateX(0);
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: translateY(-300%) translateX(20px);
  }
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__stat-divider {
    height: 36px;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__inner .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 68px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .btn--large {
    width: 100%;
    justify-content: center;
  }

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

  .hero__stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero__stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* AOS custom easing */
[data-aos] {
  transition-timing-function: var(--easing) !important;
}

/* ============================================================
   FEATURE 1 — STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(15, 16, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(195, 161, 102, 0.25);
  padding: 14px 20px;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  /* Only visible on mobile */
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-cta__text strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light);
  white-space: nowrap;
}

.sticky-cta__text span {
  font-size: 0.68rem;
  color: var(--light-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Show only on mobile, hidden on desktop */
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  /* Push whatsapp float above the sticky bar */
  .whatsapp-float {
    bottom: 88px !important;
  }
}

/* ============================================================
   FEATURE 3 — TESTIMONIALS MASONRY / FEATURED CARD
   ============================================================ */
/* Featured card spans row on larger screens & gets elevated styling */
@media (min-width: 961px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }

  .tcard--featured {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(160deg, rgba(50, 55, 68, 0.95) 0%, rgba(30, 33, 42, 0.98) 100%);
    border-top-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(195, 161, 102, 0.15), 0 24px 60px rgba(0, 0, 0, 0.4);
  }

  .tcard--featured .tcard__text {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .tcard--featured .tcard__result {
    font-size: 0.88rem;
    padding: 6px 18px;
  }

  .tcard--featured::before {
    font-size: 10rem;
    opacity: 0.1;
  }
}

/* ============================================================
   FEATURE 4 — BUTTON IDLE SHIMMER PULSE
   ============================================================ */
@keyframes btn-idle-shimmer {

  0%,
  85%,
  100% {
    opacity: 0;
    transform: translateX(-100%) skewX(-15deg);
  }

  88% {
    opacity: 1;
    transform: translateX(0%) skewX(-15deg);
  }

  92% {
    opacity: 0;
    transform: translateX(100%) skewX(-15deg);
  }
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
  width: 50%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: btn-idle-shimmer 4s ease-in-out infinite;
  animation-delay: var(--shimmer-delay, 0s);
}

/* Disable shimmer on hover (the slide-fill effect takes over) */
.btn--primary:hover::after {
  animation: none;
  opacity: 0;
}