/* ============================================================
   GUIDA FINANCIER — home.css
   ============================================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #C8A96E 0%, transparent 70%);
  top: -200px; left: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #4040A0 0%, transparent 70%);
  bottom: 0; right: 10%;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}
.proof-avatars {
  display: flex;
}
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  first-child { margin-left: 0; }
}
.proof-avatars .avatar:first-child { margin-left: 0; }
.hero-social-proof p {
  font-size: 13px;
  color: var(--text-subtle);
}
.hero-social-proof span { color: var(--gold); }

/* ── Chat Mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
}
.chat-mockup {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,169,110,0.08);
}
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF80;
  box-shadow: 0 0 8px rgba(76,175,128,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.chat-messages {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.chat-msg.user {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}
.chat-msg.ai {
  background: rgba(200,169,110,0.07);
  border: 1px solid rgba(200,169,110,0.15);
  color: var(--text);
  align-self: flex-start;
  border-radius: 12px 12px 12px 2px;
}
.chat-ai-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.typing-dots {
  display: flex;
  gap: 4px;
  padding: 4px 0;
}
.typing-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-dim);
  animation: typing 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ── Trust Bar ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.trust-inner > p {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
}
.trust-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
  flex: 1;
}
.trust-stat strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.trust-stat span {
  font-size: 12px;
  color: var(--text-subtle);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Features ── */
.section-intro {
  max-width: 640px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── How it Works ── */
.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 60px auto 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.step-line {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin-left: 40px;
}

/* ── Quote ── */
.quote-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}
blockquote {
  max-width: 680px;
  margin: 0 auto 48px;
}
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
}
blockquote cite {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-style: normal;
}
.quote-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.quote-cta .lead {
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  max-width: none;
}

/* ── FCA Notice ── */
.fca-notice {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fca-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 840px;
  margin: 0 auto;
}
.fca-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 2px;
}
.fca-inner h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.fca-inner p {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.7;
}
.fca-inner a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fca-inner a:hover { color: var(--gold); }

/* ── CTA Section ── */
.cta-section { padding-bottom: 160px; }
.cta-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-card .section-label { position: relative; }
.cta-card .display-md { position: relative; }
.cta-card .lead { position: relative; text-align: center; }
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .trust-stats { flex-direction: column; gap: 24px; }
  .trust-divider { width: 40px; height: 1px; }
  .trust-stat { padding: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 32px; }
}
