/* ─────────────────────────────────────────────
   FinTech AI – Shared Stylesheet
   RTL · Hebrew · Mobile-first
   ───────────────────────────────────────────── */

/* ── AI Hero ── */
.ai-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1e293b 50%, #0f2746 100%);
  min-height: 56vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,210,133,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(0,200,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ai-hero .container { position: relative; z-index: 2; }

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,210,133,0.15);
  border: 1px solid rgba(0,210,133,0.3);
  color: #00d285;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ai-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.ai-hero h1 span { color: #00d285; }

.ai-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.ai-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.ai-hero-btns .btn-ai-primary {
  background: #00d285;
  color: #0a1628;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ai-hero-btns .btn-ai-primary:hover { background: #00e691; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,210,133,0.35); }

.ai-hero-btns .btn-ai-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ai-hero-btns .btn-ai-outline:hover { border-color: #00d285; color: #00d285; }

/* ── Stats Bar ── */
.ai-stats-bar {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 28px 20px;
  width: 100%;
}

.ai-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.ai-stat-item h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #00d285;
  margin-bottom: 4px;
}
.ai-stat-item p { font-size: 0.85rem; color: #64748b; font-weight: 500; margin: 0; }

/* ── Section Layout ── */
.ai-section {
  padding: 80px 20px;
  width: 100%;
}

.ai-section.bg-light { background: #f8fafc; }
.ai-section.bg-navy  { background: #1e293b; }
.ai-section.bg-white { background: #fff; }

.ai-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.ai-section-header .section-label {
  display: inline-block;
  color: #00d285;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ai-section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.15;
}

.ai-section.bg-navy .ai-section-header h2 { color: #fff; }

.ai-section-header p { color: #64748b; font-size: 1.05rem; margin: 0; }
.ai-section.bg-navy .ai-section-header p { color: rgba(255,255,255,0.7); }

/* ── Tool Cards Grid ── */
.ai-tools-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.ai-tool-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid #f1f5f9;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ai-tool-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d285, #00b8ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.ai-tool-card:hover { border-color: #00d285; box-shadow: 0 12px 40px rgba(0,210,133,0.12); transform: translateY(-4px); }
.ai-tool-card:hover::after { transform: scaleX(1); }

.ai-tool-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f0fdf8, #e0fdf4);
  color: #00d285;
  flex-shrink: 0;
}

.ai-tool-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.ai-tool-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.ai-tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf8;
  color: #00a86b;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.ai-tool-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00d285;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
}
.ai-tool-link i { font-size: 0.8rem; transition: transform 0.2s; }
.ai-tool-card:hover .ai-tool-link i { transform: translateX(-4px); }

/* ── Advisor Form ── */
.advisor-container {
  max-width: 780px;
  margin: 0 auto;
}

.advisor-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.progress-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.progress-dot.active { background: #00d285; color: #fff; border-color: #00d285; }
.progress-dot.done   { background: #0a1628; color: #00d285; border-color: #0a1628; }

.progress-label { font-size: 0.75rem; font-weight: 600; color: #94a3b8; }
.progress-step.active .progress-label { color: #00d285; }
.progress-step.done .progress-label   { color: #1e293b; }

.progress-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 -2px;
  position: relative;
  top: -14px;
  max-width: 80px;
}
.progress-line.done { background: #00d285; }

.advisor-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 10px 40px rgba(15,23,42,0.06);
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-step-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 6px;
}

.form-step-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label i { color: #00d285; font-size: 0.85rem; }

.form-select, .form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: 'Heebo', sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.2s ease;
  direction: rtl;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
}

.form-select:focus, .form-input:focus {
  outline: none;
  border-color: #00d285;
  background: #fff;
}

/* Benefits multi-select */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.benefit-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  background: #f8fafc;
  user-select: none;
}

.benefit-option i { font-size: 1.4rem; color: #94a3b8; }
.benefit-option span { font-size: 0.8rem; font-weight: 700; color: #64748b; }
.benefit-option input[type="checkbox"] { display: none; }

.benefit-option:hover { border-color: #00d285; background: #f0fdf8; }
.benefit-option:hover i, .benefit-option:hover span { color: #00a86b; }

.benefit-option.selected {
  border-color: #00d285;
  background: linear-gradient(135deg, #f0fdf8, #e0fdf4);
}
.benefit-option.selected i { color: #00d285; }
.benefit-option.selected span { color: #00a86b; }

/* Military toggle */
.toggle-group {
  display: flex;
  gap: 12px;
}

.toggle-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: #64748b;
  background: #f8fafc;
  transition: all 0.2s ease;
  user-select: none;
}
.toggle-option input { display: none; }
.toggle-option:hover { border-color: #00d285; }
.toggle-option.selected { border-color: #00d285; background: #f0fdf8; color: #00a86b; }

/* Form nav buttons */
.form-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

.btn-form-next {
  background: #00d285;
  color: #0a1628;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Heebo', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-form-next:hover { background: #00e691; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,210,133,0.3); }
.btn-form-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-form-back {
  background: transparent;
  color: #64748b;
  border: 1.5px solid #e2e8f0;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Heebo', sans-serif;
}
.btn-form-back:hover { border-color: #94a3b8; color: #1e293b; }

/* ── Loading State ── */
.advisor-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  gap: 20px;
}
.advisor-loading.show { display: flex; }

.ai-spinner {
  width: 50px; height: 50px;
  border: 3px solid #f1f5f9;
  border-top-color: #00d285;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.advisor-loading p { color: #64748b; font-weight: 600; font-size: 1rem; }

/* ── Results Section ── */
.advisor-results { display: none; }
.advisor-results.show { display: block; }

.results-header {
  text-align: center;
  margin-bottom: 36px;
}

.results-header h2 { font-size: 1.8rem; font-weight: 900; color: #1e293b; margin-bottom: 8px; }
.results-header p  { color: #64748b; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.result-card {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #f1f5f9;
  overflow: hidden;
  transition: all 0.3s ease;
}
.result-card:hover { box-shadow: 0 12px 40px rgba(15,23,42,0.1); transform: translateY(-3px); }

.result-card.top-pick { border-color: #00d285; }

.result-card-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #1e293b, #2d3f55);
  color: #fff;
  position: relative;
}

.result-rank {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.result-rank.gold { background: rgba(251,191,36,0.25); color: #fbbf24; }

.result-provider {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.result-card-name { font-size: 1.2rem; font-weight: 900; margin-bottom: 2px; }
.result-network   { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.top-pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #00d285;
  color: #0a1628;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.result-card-body { padding: 24px; }

.savings-amount {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0fdf8, #e0fdf4);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.savings-amount i { color: #00d285; font-size: 1.2rem; }
.savings-text { flex: 1; }
.savings-label { font-size: 0.75rem; color: #64748b; font-weight: 600; }
.savings-value { font-size: 1.5rem; font-weight: 900; color: #00a86b; }

.result-reason {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.result-pros-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.result-pros-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #475569;
}
.result-pros-list li i { color: #00d285; font-size: 0.75rem; margin-top: 3px; flex-shrink: 0; }

.result-warnings {
  background: #fff8ed;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.result-warnings-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.result-warnings ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-warnings li {
  font-size: 0.8rem;
  color: #78350f;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.result-warnings li::before { content: '•'; color: #f59e0b; flex-shrink: 0; }

.btn-apply {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  background: #1e293b;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-apply:hover { background: #00d285; color: #0a1628; }

.results-actions {
  text-align: center;
  padding: 20px 0;
}

.btn-restart {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #64748b;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.2s ease;
}
.btn-restart:hover { border-color: #1e293b; color: #1e293b; }

/* ── Prompts Library ── */
.prompts-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.prompt-filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #64748b;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.2s ease;
}
.prompt-filter-btn:hover { border-color: #00d285; color: #00a86b; }
.prompt-filter-btn.active {
  background: #00d285;
  border-color: #00d285;
  color: #0a1628;
}

.prompts-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.prompt-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1.5px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
}
.prompt-card:hover { border-color: #cbd5e1; box-shadow: 0 8px 24px rgba(15,23,42,0.06); }

.prompt-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.tag-budget    { background: #eff6ff; color: #3b82f6; }
.tag-savings   { background: #f0fdf8; color: #00a86b; }
.tag-credit    { background: #fdf4ff; color: #a855f7; }
.tag-pension   { background: #fff7ed; color: #ea580c; }
.tag-insurance { background: #fef2f2; color: #ef4444; }
.tag-habits    { background: #f0fdf4; color: #16a34a; }

.prompt-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.prompt-text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px;
  border: 1px solid #f1f5f9;
  margin-bottom: 14px;
  direction: rtl;
  text-align: right;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  color: #475569;
  transition: all 0.2s ease;
}
.copy-btn:hover { background: #00d285; color: #0a1628; }
.copy-btn.copied { background: #f0fdf8; color: #00a86b; }

/* ── Mini Tools (ai-tools.html) ── */
.mini-tool {
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #f1f5f9;
  margin-top: 16px;
}

.mini-tool .form-group { margin-bottom: 12px; }

.mini-tool-result {
  background: linear-gradient(135deg, #f0fdf8, #e0fdf4);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  display: none;
}
.mini-tool-result.show { display: block; }
.mini-tool-result h4 { font-size: 1.6rem; font-weight: 900; color: #00a86b; margin-bottom: 4px; }
.mini-tool-result p  { font-size: 0.8rem; color: #64748b; margin: 0; }

.btn-mini {
  background: #1e293b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 4px;
}
.btn-mini:hover { background: #00d285; color: #0a1628; }

/* ── AI Disclaimer ── */
.ai-disclaimer {
  background: #fff8ed;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  direction: rtl;
  text-align: right;
}

.ai-disclaimer i { color: #f59e0b; font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.ai-disclaimer h4 { font-size: 0.9rem; font-weight: 800; color: #92400e; margin-bottom: 5px; }
.ai-disclaimer p  { font-size: 0.82rem; color: #78350f; line-height: 1.6; margin: 0; }

/* ── Breadcrumbs ── */
.ai-breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
  direction: rtl;
  flex-wrap: wrap;
}

.ai-breadcrumb a { color: #64748b; text-decoration: none; font-weight: 600; }
.ai-breadcrumb a:hover { color: #00d285; }
.ai-breadcrumb i { font-size: 0.7rem; color: #cbd5e1; }

/* ── Hub Feature Cards ── */
.hub-features {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.hub-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hub-feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(0,210,133,0.4);
  transform: translateY(-4px);
}

.hub-feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0,210,133,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #00d285;
  margin: 0 auto 18px;
}

.hub-feature-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; font-weight: 800; }
.hub-feature-card p  { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin: 0; }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ai-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row        { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ai-hero { padding: 90px 20px 50px; }
  .ai-hero h1 { font-size: 2.2rem; }
  .ai-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ai-section { padding: 56px 20px; }
  .advisor-form-card { padding: 24px 18px; }
  .hub-features { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
