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

:root {
  --gold:        #C9A96E;
  --gold-dark:   #B8975A;
  --gold-light:  #E2C98A;
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --dark:        #1A1714;
  --dark-2:      #211E1B;
  --cream:       #F8F5F0;
  --cream-2:     #F0EBE3;
  --white:       #FFFFFF;
  --text-dark:   #2A2520;
  --text-mid:    #6B6058;
  --text-light:  #C4B9AF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       680px;
  --transition:  0.35s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ════════════════════════════════════════════════
   TYPOGRAPHY SCALE
════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: 0em;
  font-weight: 500;
}

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

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

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(201, 169, 110, 0.18);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo-img {
  height: 30px;
  width: auto;
  /* Logo tem fundo branco — invertemos para funcionar no dark */
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.navbar__logo:hover .navbar__logo-img {
  opacity: 1;
}

.btn--nav {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px 18px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 3px;
  background: transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--nav:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Logo Eric Furtado Global na navbar */
.navbar__logo-efg {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.navbar__logo-efg:hover {
  opacity: 0.8;
}

.navbar__efg-img {
  height: 38px;
  width: auto;
  /* Logo tem fundo transparente com dourado, não precisa de filtro */
  object-fit: contain;
}

/* ════════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--light  { background: var(--cream); }
.section--cream  { background: var(--cream-2); }
.section--dark   { background: var(--dark); }
.section--cta    { background: var(--black); }

/* ════════════════════════════════════════════════
   DIVIDERS
════════════════════════════════════════════════ */
.divider {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 20px 0;
}

.divider--center { margin-left: auto; margin-right: auto; }
.divider--left   { margin-left: 0; }

/* ════════════════════════════════════════════════
   BADGES
════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.07);
  margin-bottom: 28px;
}

.badge--light {
  color: var(--gold);
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(201, 169, 110, 0.06);
}

.badge__star {
  color: var(--gold);
  font-size: 11px;
}

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  padding: 18px 40px;
  min-height: 56px;
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.25);
}

.btn--large {
  font-size: 15px;
  padding: 20px 52px;
  min-height: 64px;
  border-radius: 6px;
}

.btn--hero {
  margin-top: 40px;
}

/* Botão "Veja Também — Furtado Produções" */
.btn--see-also {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 32px 18px 28px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn--see-also::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn--see-also:hover {
  background: rgba(201, 169, 110, 0.09);
  border-color: rgba(201, 169, 110, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201, 169, 110, 0.14);
}

.btn--see-also:hover::before {
  opacity: 1;
}

/* Separador vertical */
.btn--see-also::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* Texto interno */
.btn-see__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.55);
  display: block;
  margin-bottom: 4px;
  line-height: 1;
}

.btn-see__brand {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--gold-light) 0%, var(--gold) 50%, #d4a843 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
  transition: letter-spacing 0.35s ease;
}

.btn--see-also:hover .btn-see__brand {
  letter-spacing: 0.09em;
}

.btn-see__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-see__arrow {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.btn--see-also:hover .btn-see__arrow {
  transform: translateX(5px);
  opacity: 1;
}

.btn__sep {
  opacity: 0.35;
}

.btn__arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-sans);
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(34px, 8vw, 46px);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.18;
}

.section-title--light { color: var(--cream); }

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 420px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.section-desc--light { color: var(--text-light); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 100px; /* 140px = navbar 64px + respiro */
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Fine grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.1) 0%,
    rgba(10,10,10,0) 40%,
    rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* Logo no hero */
.hero__logo-wrap {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero__logo {
  height: 96px;
  width: auto;
  max-width: 80%;
  display: block;
  margin: 0 auto;
  /* Fundo branco → invertido para hero escuro */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.hero__title {
  font-size: clamp(36px, 9.5vw, 56px);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.1;
}

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

.hero__name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero__specialty {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-light);
  margin-top: 8px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 22px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  background: rgba(201, 169, 110, 0.06);
}

.hero__tag i {
  color: var(--gold);
  font-size: 12px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  gap: 4px;
}

.hero__stat-number {
  font-family: var(--font-serif);
  font-size: clamp(44px, 11vw, 68px);
  font-weight: 400;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero__scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════════
   CARDS (VISÃO ESTRATÉGICA)
════════════════════════════════════════════════ */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  margin-bottom: 8px;
}

.card__icon i {
  font-size: 20px;
  color: var(--gold);
}

.card__number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.1);
  line-height: 1;
  letter-spacing: -0.03em;
}

.card__title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 12px;
  line-height: 1.25;
}

.card__text {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-top: 12px;
}

/* ════════════════════════════════════════════════
   PHASES
════════════════════════════════════════════════ */
.phases {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.phase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.phase__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phase__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
}

.phase__title {
  font-size: 21px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

.phase__body {
  padding: 24px 28px 28px;
}

.phase__items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.phase__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.phase__dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

.phase__item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 3px;
}

.phase__item p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.65;
}

.phase__deliverables {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.deliverable {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--cream);
}

.deliverable i {
  font-size: 16px;
  color: var(--gold);
  width: 20px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   TIMELINE
════════════════════════════════════════════════ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}

.tl-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.tl-item:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tl-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(201,169,110,0.25);
}

.tl-content {
  padding-top: 10px;
}

.tl-content h4 {
  font-size: 19px;
  font-weight: 500;
  font-family: var(--font-serif);
  color: var(--text-dark);
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   PHILOSOPHY GRID
════════════════════════════════════════════════ */
.philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.philosophy-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.philosophy-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 10px;
}

.philosophy-card__icon i {
  font-size: 18px;
  color: var(--gold);
}

.philosophy-card h3 {
  font-size: 21px;
  font-weight: 500;
  color: var(--text-dark);
  font-family: var(--font-serif);
}

.philosophy-card p {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.72;
}

/* ════════════════════════════════════════════════
   STEPS (PRÓXIMOS PASSOS)
════════════════════════════════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.step:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}

.step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
}

.step__content h4 {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 6px;
}

.step__content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════
   CTA BLOCK
════════════════════════════════════════════════ */
.cta-block {
  text-align: center;
  padding: 20px 0;
}

.cta-title {
  font-size: clamp(36px, 9.5vw, 54px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 8px;
}

.cta-title em {
  color: var(--gold);
}

.cta-desc {
  font-size: 16.5px;
  color: var(--text-light);
  max-width: 400px;
  margin: 20px auto 40px;
  line-height: 1.75;
}

.cta-note {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

/* ════════════════════════════════════════════════
   & ESTILIZADO — fonte mais limpa e elegante
════════════════════════════════════════════════ */
.amp {
  font-family: 'Satisfy', cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.01em;
  opacity: 0.9;
  vertical-align: baseline;
}

/* ════════════════════════════════════════════════
   SEÇÃO INVESTIMENTO
════════════════════════════════════════════════ */
.invest-block {
  text-align: center;
  padding: 20px 0;
}

.invest-title {
  font-size: clamp(34px, 8vw, 46px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.18;
  margin-top: 12px;
  margin-bottom: 0;
}

.invest-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 400px;
  margin: 16px auto 0;
  line-height: 1.75;
}

.invest-value-wrap {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  margin: 40px auto 0;
  position: relative;
}

.invest-currency {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.invest-value {
  font-family: var(--font-serif);
  font-size: clamp(64px, 16vw, 96px);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #b8882a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.invest-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 12px;
}

.invest-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 36px auto 0;
  text-align: left;
}

.invest-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}

.invest-item i {
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(201,169,110,0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--black-soft);
  padding: 48px 0;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Logo no footer */
.footer__logo {
  height: 84px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.25s ease;
  margin-bottom: 4px;
}

.footer__logo:hover {
  opacity: 0.85;
}

.footer__divider {
  width: 32px;
  height: 1px;
  background: rgba(201, 169, 110, 0.25);
  margin: 8px auto 4px;
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer__method {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
}

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

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for cards and items */
.cards-grid .card:nth-child(1) { transition-delay: 0.05s; }
.cards-grid .card:nth-child(2) { transition-delay: 0.15s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.25s; }

.phases .phase:nth-child(1) { transition-delay: 0.05s; }
.phases .phase:nth-child(2) { transition-delay: 0.12s; }
.phases .phase:nth-child(3) { transition-delay: 0.2s; }

.timeline .tl-item:nth-child(1) { transition-delay: 0.04s; }
.timeline .tl-item:nth-child(2) { transition-delay: 0.1s; }
.timeline .tl-item:nth-child(3) { transition-delay: 0.16s; }
.timeline .tl-item:nth-child(4) { transition-delay: 0.22s; }
.timeline .tl-item:nth-child(5) { transition-delay: 0.28s; }

.philosophy-grid .philosophy-card:nth-child(1) { transition-delay: 0.04s; }
.philosophy-grid .philosophy-card:nth-child(2) { transition-delay: 0.12s; }
.philosophy-grid .philosophy-card:nth-child(3) { transition-delay: 0.2s; }

.steps .step:nth-child(1) { transition-delay: 0.05s; }
.steps .step:nth-child(2) { transition-delay: 0.12s; }
.steps .step:nth-child(3) { transition-delay: 0.19s; }
.steps .step:nth-child(4) { transition-delay: 0.26s; }

/* ════════════════════════════════════════════════
   DESKTOP ADJUSTMENTS (≥ 640px)
════════════════════════════════════════════════ */
@media (min-width: 640px) {
  body { font-size: 18px; }

  .section { padding: 100px 0; }

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

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

  .hero { padding: 140px 0 120px; }
}

/* ════════════════════════════════════════════════
   LARGE SCREENS (≥ 1024px)
════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --max-w: 800px; }

  .section { padding: 120px 0; }
}

/* ════════════════════════════════════════════════
   PULSE ANIMATION (CTA button after delay)
════════════════════════════════════════════════ */
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.35); }
  60%  { box-shadow: 0 0 0 16px rgba(201, 169, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
}

.btn--primary.pulse {
  animation: ctaPulse 2s ease-out 3;
}

/* Timeline active state */
.tl-item.tl-active .tl-num {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* ════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll-hint { animation: none; }
  .btn:hover { transform: none; }
}
