@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --teal: #14b8a6;
  --teal-dark: #0f9488;
  --teal-light: #ccfbf1;
  --teal-bg: #f0fdfa;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --green: #22c55e;
  --green-bg: #dcfce7;
  --green-text: #16a34a;
  --yellow-bg: #fef9c3;
  --yellow-text: #ca8a04;
  --red-bg: #fee2e2;
  --red-text: #dc2626;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--slate-900);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.2; }
a { color: inherit; }
img { max-width: 100%; }

/* ---- NAV ---- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem;
  text-decoration: none; color: var(--slate-900);
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--slate-500);
  font-weight: 500; font-size: 0.9rem; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: white !important;
  padding: 8px 18px; border-radius: 8px;
  font-weight: 600; font-size: 0.875rem;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-mobile-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--slate-700);
}
.nav-mobile-menu {
  display: none; position: absolute; top: 64px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--slate-100);
  padding: 16px 24px; flex-direction: column; gap: 16px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  text-decoration: none; color: var(--slate-700); font-weight: 500;
  font-size: 1rem; padding: 8px 0; border-bottom: 1px solid var(--slate-100);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: all 0.18s; text-align: center;
}
.btn-primary {
  background: var(--teal); color: white;
  box-shadow: 0 4px 16px rgba(20,184,166,0.25);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,184,166,0.35); }
.btn-outline {
  background: white; color: var(--slate-700);
  border: 2px solid var(--slate-200);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--slate-900); padding: 14px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item { color: var(--slate-400); font-size: 0.82rem; display: flex; align-items: center; gap: 6px; }
.trust-item strong { color: white; }

/* ---- BADGES ---- */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600;
}
.badge-easy { background: var(--green-bg); color: var(--green-text); }
.badge-moderate { background: var(--yellow-bg); color: var(--yellow-text); }
.badge-hard { background: var(--red-bg); color: var(--red-text); }
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }

/* ---- CARDS ---- */
.card {
  background: white; border: 1.5px solid var(--slate-100);
  border-radius: 16px; padding: 24px; transition: all 0.2s;
}
.card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(20,184,166,0.1); transform: translateY(-2px); }

/* ---- HUSTLE CARD ---- */
.hustle-card {
  background: white; border: 1.5px solid var(--slate-100);
  border-radius: 16px; padding: 22px; transition: all 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.hustle-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(20,184,166,0.1); transform: translateY(-2px); }
.hustle-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.hustle-icon { font-size: 1.8rem; }
.hustle-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.hustle-card p { color: var(--slate-500); font-size: 0.875rem; line-height: 1.5; margin-bottom: 14px; }
.hustle-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.hustle-stat { font-size: 0.78rem; }
.hustle-stat strong { color: var(--slate-900); display: block; font-size: 0.82rem; }
.hustle-stat span { color: var(--slate-500); }

/* ---- MATCH BADGE ---- */
.match-badge {
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Syne', sans-serif;
}
.match-badge .pct { font-size: 1.25rem; font-weight: 800; line-height: 1; }
.match-badge .lbl { font-size: 0.58rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 1px; }
.match-90 { background: var(--green-bg); color: var(--green-text); }
.match-75 { background: var(--teal-light); color: var(--teal-dark); }
.match-60 { background: var(--yellow-bg); color: var(--yellow-text); }
.match-low { background: var(--slate-100); color: var(--slate-500); }

/* ---- TOOL CARD ---- */
.tool-card {
  background: white; border: 1.5px solid var(--slate-100);
  border-radius: 14px; padding: 20px; transition: all 0.2s;
}
.tool-card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(20,184,166,0.1); }
.tool-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.tool-name { font-weight: 700; font-size: 0.95rem; }
.tool-top-badge { background: var(--teal); color: white; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.tool-tagline { color: var(--slate-500); font-size: 0.82rem; margin-bottom: 10px; }
.tool-why { background: var(--teal-bg); border-radius: 8px; padding: 10px 12px; font-size: 0.8rem; color: var(--slate-700); line-height: 1.55; margin-bottom: 12px; }
.tool-why strong { color: var(--teal-dark); }
.tool-price { font-size: 0.8rem; color: var(--slate-500); margin-bottom: 12px; }
.tool-cta {
  display: block; text-align: center; background: var(--teal); color: white;
  padding: 9px; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 0.84rem; transition: background 0.15s;
}
.tool-cta:hover { background: var(--teal-dark); }

/* ---- SECTIONS ---- */
.section { padding: 64px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  color: var(--teal); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--slate-500); font-size: 1rem; margin-bottom: 40px; max-width: 560px; }

/* ---- GRIDS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.grid-tools { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }

/* ---- FOOTER ---- */
footer {
  background: var(--slate-900); color: var(--slate-400);
  padding: 52px 24px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: white; margin-bottom: 10px; }
.footer-logo span { color: var(--teal); }
.footer-desc { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { color: white; font-weight: 700; font-size: 0.875rem; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--slate-400); text-decoration: none; font-size: 0.85rem; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 20px; font-size: 0.78rem; color: var(--slate-500); }

/* ---- HERO ---- */
.hero {
  padding: 72px 24px 56px; text-align: center;
  background: linear-gradient(135deg, var(--teal-bg) 0%, white 55%, var(--slate-50) 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(20,184,166,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); color: var(--teal-dark);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.9rem); font-weight: 800;
  color: var(--slate-900); margin-bottom: 18px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero p {
  font-size: 1.05rem; color: var(--slate-500);
  max-width: 500px; margin: 0 auto 32px; line-height: 1.65;
}
.hero-sub { margin-top: 14px; font-size: 0.82rem; color: var(--slate-400); }

/* ---- STORY CARDS ---- */
.story-card {
  background: linear-gradient(135deg, var(--teal-bg), var(--slate-50));
  border: 1.5px solid var(--teal-light); border-radius: 16px; padding: 26px;
}
.story-quote { font-size: 0.95rem; color: var(--slate-700); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.story-quote::before { content: '\201C'; color: var(--teal); font-size: 1.8rem; font-family: 'Syne', sans-serif; line-height: 0; vertical-align: -10px; margin-right: 3px; }
.story-person { display: flex; align-items: center; gap: 10px; }
.story-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--teal);
  color: white; font-family: 'Syne', sans-serif; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0;
}
.story-name { font-weight: 700; font-size: 0.875rem; }
.story-meta { color: var(--teal-dark); font-size: 0.78rem; font-weight: 600; }

/* ---- STEPS ---- */
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.steps-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: white; border: 1.5px solid var(--slate-100);
  border-radius: 12px; padding: 18px;
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal);
  color: white; font-family: 'Syne', sans-serif; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem;
}
.step-content h4 { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.step-content p { color: var(--slate-500); font-size: 0.875rem; line-height: 1.55; }

/* ---- TIPS ---- */
.tips-list { list-style: none; }
.tips-list li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--slate-100);
  color: var(--slate-600); font-size: 0.9rem; line-height: 1.55;
}
.tips-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ---- INCOME TIMELINE ---- */
.timeline-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.timeline-card { background: white; border: 1.5px solid var(--slate-100); border-radius: 12px; padding: 18px; text-align: center; }
.t-period { font-size: 0.75rem; color: var(--slate-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.t-income { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--teal-dark); }

/* ---- DETAIL HERO ---- */
.detail-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  padding: 52px 24px; color: white;
}
.detail-hero-inner { max-width: 900px; margin: 0 auto; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--slate-400); font-size: 0.875rem; text-decoration: none;
  margin-bottom: 28px; transition: color 0.15s;
}
.back-link:hover { color: white; }
.detail-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 12px; margin-top: 28px; }
.detail-stat { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 14px; }
.detail-stat .ds-label { color: var(--slate-400); font-size: 0.75rem; margin-bottom: 3px; }
.detail-stat .ds-val { color: white; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; }
.detail-body { max-width: 900px; margin: 0 auto; padding: 48px 24px; }
.detail-section { margin-bottom: 44px; }
.detail-section h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--slate-100); }
.detail-section p { color: var(--slate-600); line-height: 1.7; margin-bottom: 12px; font-size: 0.95rem; }

/* ---- QUIZ ---- */
.quiz-wrap { min-height: calc(100vh - 64px); background: var(--slate-100); padding: 36px 24px 60px; }
.quiz-box { max-width: 660px; margin: 0 auto; }
.progress-track { background: var(--slate-200); border-radius: 100px; height: 5px; margin-bottom: 36px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 100px; transition: width 0.4s ease; }
.q-label { color: var(--teal); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.q-text { font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 800; margin-bottom: 6px; line-height: 1.3; }
.q-hint { color: var(--slate-500); font-size: 0.875rem; margin-bottom: 28px; }
.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.opts.one-col { grid-template-columns: 1fr; }
.opt {
  background: white; border: 2px solid var(--slate-200);
  border-radius: 10px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; transition: all 0.14s; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  font-weight: 500; color: var(--slate-700);
}
.opt:hover { border-color: var(--teal); background: var(--teal-bg); }
.opt.sel { border-color: var(--teal); background: var(--teal-bg); color: var(--slate-900); }
.opt.sel .opt-check { opacity: 1; }
.opt-icon { font-size: 1.3rem; flex-shrink: 0; }
.opt-label { flex: 1; }
.opt-check { margin-left: auto; color: var(--teal); font-weight: 700; opacity: 0; transition: opacity 0.14s; font-size: 0.9rem; }
.q-count { font-size: 0.78rem; color: var(--slate-400); margin-top: 6px; }
.quiz-actions { display: flex; gap: 10px; }
.btn-back-q {
  background: white; border: 2px solid var(--slate-200);
  color: var(--slate-500); padding: 12px 20px; border-radius: 10px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.9rem;
  transition: all 0.14s;
}
.btn-back-q:hover { border-color: var(--slate-400); color: var(--slate-700); }
.btn-next-q {
  flex: 1; background: var(--teal); color: white; border: none;
  padding: 12px 20px; border-radius: 10px; cursor: pointer;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem;
  transition: all 0.14s;
}
.btn-next-q:hover { background: var(--teal-dark); }
.btn-next-q:disabled { background: var(--slate-300); cursor: not-allowed; }

/* ---- RESULTS ---- */
.results-wrap { min-height: calc(100vh - 64px); background: var(--slate-100); padding: 44px 24px 64px; }
.results-box { max-width: 860px; margin: 0 auto; }
.results-head { text-align: center; margin-bottom: 40px; }
.results-head h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 10px; }
.results-head p { color: var(--slate-500); font-size: 0.95rem; }
.result-card {
  background: white; border-radius: 18px; border: 1.5px solid var(--slate-100);
  padding: 24px; margin-bottom: 18px; transition: box-shadow 0.2s;
}
.result-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.result-card.top { border-color: var(--teal); }
.top-label { display: inline-flex; align-items: center; gap: 5px; background: var(--teal); color: white; padding: 3px 11px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; margin-bottom: 14px; }
.result-top { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 18px; }
.result-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.result-reason { color: var(--slate-500); font-size: 0.875rem; line-height: 1.55; margin-bottom: 12px; }
.result-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.meta-i { font-size: 0.8rem; }
.meta-i strong { display: block; color: var(--slate-900); font-size: 0.84rem; }
.meta-i span { color: var(--slate-500); }
.result-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- EXPLORE ---- */
.explore-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.explore-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; align-items: center; }
.filter-btn {
  background: white; border: 1.5px solid var(--slate-200);
  padding: 7px 16px; border-radius: 100px; cursor: pointer;
  font-size: 0.85rem; font-weight: 500; color: var(--slate-600);
  transition: all 0.15s; font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }
.search-bar {
  flex: 1; min-width: 200px; padding: 8px 16px;
  border: 1.5px solid var(--slate-200); border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.15s;
}
.search-bar:focus { border-color: var(--teal); }
.trending-label { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.875rem; color: var(--slate-700); margin-bottom: 14px; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--slate-900); padding: 64px 24px; text-align: center; }
.cta-section h2 { color: white; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 14px; }
.cta-section p { color: var(--slate-400); margin-bottom: 32px; font-size: 0.95rem; }

/* ---- HOW IT WORKS ---- */
.steps-how { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 20px; }
.step-how { background: white; border: 1.5px solid var(--slate-100); border-radius: 14px; padding: 28px 22px; transition: all 0.2s; }
.step-how:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(20,184,166,0.1); transform: translateY(-2px); }
.step-how-num { width: 40px; height: 40px; border-radius: 10px; background: var(--teal); color: white; font-family: 'Syne', sans-serif; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-how h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step-how p { color: var(--slate-500); font-size: 0.875rem; line-height: 1.6; }

/* ---- ABOUT ---- */
.about-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.about-section { margin-bottom: 48px; }
.about-section h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--slate-100); }
.about-section p { color: var(--slate-600); line-height: 1.75; margin-bottom: 14px; font-size: 0.95rem; }

/* ---- FADE ANIM ---- */
.fade-up { animation: fadeUp 0.32s ease forwards; }
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-btn { display: flex; }
  .opts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .result-top { flex-direction: column; }
  .trust-bar { gap: 18px; }
  .detail-stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- DROPDOWN RESULTS ---- */
.result-dropdown {
  border-top: 1px solid var(--slate-100);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.result-dropdown.open { max-height: 800px; }
.result-dropdown-inner { padding: 20px 0 4px; }
.result-why {
  background: var(--teal-bg); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 16px;
  font-size: 0.875rem; color: var(--slate-700); line-height: 1.6;
}
.result-why strong { color: var(--teal-dark); display: block; margin-bottom: 4px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.result-quick-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px,1fr)); gap: 10px; margin-bottom: 16px; }
.rqs-item { background: white; border: 1.5px solid var(--slate-100); border-radius: 10px; padding: 12px; text-align: center; }
.rqs-val { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--slate-900); }
.rqs-label { font-size: 0.72rem; color: var(--slate-500); margin-top: 2px; }
.toggle-btn {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  color: var(--teal); font-weight: 600; font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif; padding: 0; margin-top: 10px;
  transition: color 0.15s;
}
.toggle-btn:hover { color: var(--teal-dark); }
.toggle-icon { transition: transform 0.3s; display: inline-block; }
.toggle-icon.flipped { transform: rotate(180deg); }

/* ---- EMAIL CAPTURE ---- */
.email-capture {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  border-radius: 20px; padding: 32px 28px; margin: 32px 0;
  text-align: center;
}
.email-capture h3 { color: white; font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.email-capture p { color: var(--slate-400); font-size: 0.875rem; margin-bottom: 20px; line-height: 1.6; }
.email-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.email-input {
  flex: 1; min-width: 200px; padding: 12px 16px;
  border: 1.5px solid var(--slate-700); border-radius: 10px;
  background: var(--slate-800); color: white;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.15s;
}
.email-input::placeholder { color: var(--slate-500); }
.email-input:focus { border-color: var(--teal); }
.email-submit {
  background: var(--teal); color: white; border: none;
  padding: 12px 20px; border-radius: 10px; cursor: pointer;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem;
  transition: background 0.15s; white-space: nowrap;
}
.email-submit:hover { background: var(--teal-dark); }
.email-success { color: var(--teal); font-weight: 600; font-size: 0.9rem; margin-top: 10px; display: none; }

/* ---- AD SLOTS ---- */
.ad-slot {
  background: var(--slate-50); border: 1.5px dashed var(--slate-200);
  border-radius: 12px; padding: 16px; text-align: center;
  color: var(--slate-400); font-size: 0.75rem; margin: 24px 0;
  min-height: 90px; display: flex; align-items: center; justify-content: center;
}

/* ---- PERSONALIZED TOOL HIGHLIGHT ---- */
.tool-card.recommended {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
}
.tool-card.recommended .tool-card-top::after {
  content: '⭐ Best for your budget';
  font-size: 0.7rem; color: var(--teal-dark); font-weight: 600;
  background: var(--teal-light); padding: 2px 8px; border-radius: 100px;
  margin-left: auto;
}
.tool-fit-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 2px 8px; border-radius: 100px; margin-bottom: 8px;
}
.tool-fit-free { background: var(--green-bg); color: var(--green-text); }
.tool-fit-budget { background: var(--yellow-bg); color: var(--yellow-text); }
.tool-fit-pro { background: var(--slate-100); color: var(--slate-600); }

/* ── HUSTLE DETAIL PAGE ── */
.detail-hero { background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%); padding: 56px 0 40px; }
.detail-hero .container { max-width: 900px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; margin-bottom: 24px; }
.back-link:hover { color: white; }
.detail-hero-top { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
.detail-icon { font-size: 3rem; flex-shrink: 0; }
.detail-hero-top h1 { color: white; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; margin-bottom: 8px; }
.detail-tagline { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 12px; }
.detail-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.passive-badge, .trending-badge { background: rgba(255,255,255,0.15); color: white; font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.trending-badge { background: rgba(251,146,60,0.25); }
.risk-badge { font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.risk-badge.risk-low { background: #dcfce7; color: #16a34a; }
.risk-badge.risk-medium { background: #fef9c3; color: #a16207; }
.risk-badge.risk-high { background: #fee2e2; color: #dc2626; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-box { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; text-align: center; }
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 6px; }
.stat-val { color: white; font-size: 1rem; font-weight: 700; }
.detail-body { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding: 40px 0 60px; max-width: 900px; }
.detail-section { margin-bottom: 40px; }
.detail-section h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.section-note { color: var(--slate-500); font-size: 0.9rem; margin-bottom: 16px; }
.income-timeline { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.income-col { background: var(--teal-50); border: 1.5px solid var(--teal-100); border-radius: 12px; padding: 20px; text-align: center; }
.income-label { color: var(--slate-500); font-size: 0.85rem; margin-bottom: 8px; }
.income-range { font-size: 1.05rem; font-weight: 700; color: var(--teal-700); }
.income-range span { font-size: 0.8rem; font-weight: 400; color: var(--slate-500); }
.steps-list { list-style: none; padding: 0; margin: 0; }
.step-item { display: flex; gap: 16px; margin-bottom: 20px; }
.step-num { background: var(--teal-500); color: white; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.step-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.step-content p { font-size: 0.88rem; color: var(--slate-500); margin: 0; }
.tips-list { list-style: none; padding: 0; margin: 0; }
.tips-list li { padding: 10px 0 10px 20px; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; color: var(--slate-600); position: relative; }
.tips-list li:before { content: '→'; position: absolute; left: 0; color: var(--teal-500); font-weight: 700; }
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.tool-card { background: white; border: 1.5px solid var(--slate-200); border-radius: 14px; padding: 20px; }
.tool-card-top { border-color: var(--teal-300); background: var(--teal-50); }
.tool-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.tool-name { font-weight: 700; font-size: 1rem; }
.tool-badge { background: var(--teal-100); color: var(--teal-700); font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.tool-scale { font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.scale-beginner { background: #dcfce7; color: #16a34a; }
.scale-growth { background: #fef9c3; color: #a16207; }
.scale-pro { background: #fee2e2; color: #dc2626; }
.tool-tagline { color: var(--slate-500); font-size: 0.85rem; margin-bottom: 8px; }
.tool-why { font-size: 0.88rem; color: var(--slate-600); margin-bottom: 12px; line-height: 1.5; }
.tool-footer { display: flex; justify-content: space-between; align-items: center; }
.tool-price { font-size: 0.85rem; font-weight: 600; color: var(--slate-500); }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; border-radius: 8px; background: var(--teal-500); color: white; text-decoration: none; font-weight: 600; }
.tool-budget-match { border-color: #16a34a; }
.tool-budget-warn { opacity: 0.6; }
.hustle-warning { background: #fff7ed; border: 1.5px solid #fed7aa; border-radius: 12px; padding: 16px 20px; display: flex; gap: 14px; margin-bottom: 28px; font-size: 0.9rem; color: #92400e; }
.warning-icon { font-size: 1.3rem; flex-shrink: 0; }
.sidebar-card { background: white; border: 1.5px solid var(--slate-200); border-radius: 16px; padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.sidebar-stats .sidebar-stat { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--slate-100); font-size: 0.88rem; }
.sidebar-stat:last-child { border-bottom: none; }
.ad-slot { background: var(--slate-100); border-radius: 8px; padding: 24px; text-align: center; color: var(--slate-400); font-size: 0.8rem; margin: 24px 0; }
.cta-section { background: linear-gradient(135deg, #0f9488, #14b8a6); padding: 60px 0; text-align: center; }
.cta-inner h2 { color: white; font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .detail-sidebar { order: -1; }
  .income-timeline { grid-template-columns: 1fr; }
}
