/* QuickBooks Support Hub - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-primary: #2E7D32;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --green-accent: #00C853;
  --grey-dark: #37474F;
  --grey-mid: #607D8B;
  --grey-light: #ECEFF1;
  --grey-border: #CFD8DC;
  --white: #FFFFFF;
  --cream: #FAFDF7;
  --yellow-light: #FFFDE7;
  --yellow-accent: #FFF9C4;
  --text-primary: #1A2E1A;
  --text-secondary: #455A64;
  --text-muted: #78909C;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

a { color: var(--green-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-light); }

img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-sm { padding: 40px 0; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--green-pale);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--green-primary);
  color: var(--white);
  text-align: center;
  padding: 7px 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.header-top a { color: var(--green-accent); font-weight: 700; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
}

.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-primary);
  line-height: 1.1;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.main-nav a:hover, .main-nav a.active {
  background: var(--green-pale);
  color: var(--green-primary);
}

.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
}
.main-nav .has-dropdown:hover .dropdown { display: block; }
.main-nav .dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  border-radius: 6px;
  color: var(--text-secondary);
}
.main-nav .dropdown a:hover { background: var(--green-pale); color: var(--green-primary); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: var(--green-primary);
  color: white;
}
.btn-primary:hover { background: var(--green-light); color: white; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
}
.btn-outline:hover { background: var(--green-pale); }

.btn-phone {
  background: var(--yellow-accent);
  color: var(--grey-dark);
  border: 2px solid #F9A825;
  font-size: 0.85rem;
}
.btn-phone:hover { background: #FFF176; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--grey-dark); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--green-pale) 0%, var(--cream) 50%, var(--yellow-light) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-light);
  color: var(--green-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 { color: var(--text-primary); margin-bottom: 18px; }
.hero h1 span { color: var(--green-primary); }

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--yellow-light);
  border-left: 3px solid #F9A825;
  border-radius: 4px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 1.8rem; color: var(--green-primary); font-family: 'Playfair Display', serif; }
.stat span { font-size: 0.78rem; color: var(--text-muted); }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-border);
}

.hero-card h3 { color: var(--green-primary); margin-bottom: 18px; font-size: 1.2rem; }

.issue-list { list-style: none; }
.issue-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.issue-list li:last-child { border-bottom: none; }
.issue-list li:hover { color: var(--green-primary); padding-left: 5px; }
.issue-list li .dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== PROBLEMS SECTION ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green-light);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.problem-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); transform: translateY(-3px); }
.problem-card:hover::before { transform: scaleY(1); }

.problem-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.problem-card h4 { margin-bottom: 8px; color: var(--text-primary); }
.problem-card p { font-size: 0.85rem; color: var(--text-muted); }
.problem-card .count { font-size: 0.75rem; color: var(--green-primary); font-weight: 600; margin-top: 10px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ===== FAQ SECTION ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 40px;
}

.faq-sidebar { position: sticky; top: 100px; height: fit-content; }

.faq-categories {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px;
}

.faq-categories h4 { margin-bottom: 14px; color: var(--green-primary); }

.faq-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.faq-cat-btn:hover, .faq-cat-btn.active {
  background: var(--green-pale);
  color: var(--green-primary);
  font-weight: 600;
}

.faq-search {
  margin-bottom: 20px;
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid var(--grey-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  transition: var(--transition);
}
.faq-search input:focus { outline: none; border-color: var(--green-light); }
.faq-search .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--green-light); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q .arrow {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 0.75rem;
  transition: var(--transition);
}

.faq-item.open .faq-q .arrow { transform: rotate(180deg); background: var(--green-primary); color: white; }

.faq-a {
  display: none;
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
}

.faq-item.open .faq-a { display: block; }

.faq-a ol, .faq-a ul { padding-left: 20px; margin: 10px 0; }
.faq-a li { margin-bottom: 6px; }
.faq-a strong { color: var(--text-primary); }

/* ===== FORUM ===== */
.forum-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-top: 40px;
}

.forum-post {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.forum-post:hover { border-color: var(--green-light); box-shadow: var(--shadow-sm); }

.forum-post-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.forum-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.forum-meta { flex: 1; }
.forum-meta strong { display: block; font-size: 0.9rem; color: var(--text-primary); }
.forum-meta span { font-size: 0.78rem; color: var(--text-muted); }

.forum-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.forum-tag.solved { background: var(--green-pale); color: var(--green-primary); }
.forum-tag.open { background: var(--yellow-accent); color: #795548; }
.forum-tag.hot { background: #FFEBEE; color: #C62828; }

.forum-post h4 { margin-bottom: 8px; font-size: 1rem; color: var(--text-primary); }
.forum-post p { font-size: 0.88rem; color: var(--text-secondary); }

.forum-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.forum-footer span { display: flex; align-items: center; gap: 5px; }

.forum-sidebar .widget {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.forum-sidebar .widget h4 { margin-bottom: 14px; color: var(--green-primary); font-size: 1rem; }

/* ===== PROADVISORS ===== */
.proadvisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.advisor-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.advisor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-light); }

.advisor-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green-primary);
  color: white;
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 50px;
  font-weight: 700;
}

.advisor-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid var(--green-pale);
  margin: 0 auto 14px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-pale), var(--grey-light));
  font-size: 1.8rem;
}

.advisor-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.advisor-card .location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.advisor-card .specializations { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 12px 0; }
.advisor-card .spec-tag {
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 50px;
  font-weight: 500;
}

.advisor-rating { color: #F9A825; font-size: 0.85rem; margin-bottom: 14px; }
.advisor-rating span { color: var(--text-muted); margin-left: 4px; }

.advisor-contact { display: flex; gap: 8px; justify-content: center; }
.advisor-contact a {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--grey-border);
  color: var(--text-secondary);
  transition: var(--transition);
}
.advisor-contact a:hover { background: var(--green-pale); color: var(--green-primary); border-color: var(--green-light); }

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-primary) 0%, #1B5E20 100%);
  color: white;
  text-align: center;
  padding: 70px 0;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-section .btn-white {
  background: white;
  color: var(--green-primary);
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 50px;
}
.cta-section .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.cta-section .disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 18px; }

/* ===== STICKY CONTACT BAR ===== */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--green-primary);
  color: white;
  padding: 12px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  max-width: 42px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.sticky-btn:hover { max-width: 200px; color: white; background: var(--green-light); }
.sticky-btn .sticky-icon { flex-shrink: 0; font-size: 1.1rem; margin-right: 8px; }
.sticky-btn.phone { background: #1976D2; }
.sticky-btn.phone:hover { background: #1565C0; }
.sticky-btn.chat { background: var(--green-primary); }
.sticky-btn.email { background: var(--grey-dark); }

/* ===== POP-UP ===== */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.popup-overlay.show { display: flex; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
}
.popup-close:hover { color: var(--text-primary); }

.popup-badge {
  background: var(--green-pale);
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
}

.popup-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-primary);
  font-family: 'Playfair Display', serif;
  display: block;
  margin: 14px 0;
  letter-spacing: 1px;
}

.popup-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 14px 0; line-height: 1.7; }

.footer-col h4 { color: white; margin-bottom: 16px; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-col ul li a:hover { color: var(--green-accent); }

.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--green-accent); }

/* ===== UTILS ===== */
.bg-pale { background: var(--green-pale); }
.bg-yellow { background: var(--yellow-light); }
.bg-white { background: var(--white); }

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tag {
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(76,175,80,0.3);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--grey-border);
  background: var(--white);
}
.breadcrumb a { color: var(--green-primary); }
.breadcrumb span { margin: 0 6px; }

/* ===== INFO BOXES ===== */
.info-box {
  padding: 18px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 0.9rem;
}
.info-box.tip { background: var(--green-pale); border-left: 4px solid var(--green-primary); color: var(--text-secondary); }
.info-box.warning { background: var(--yellow-light); border-left: 4px solid #F9A825; }
.info-box.note { background: #EDE7F6; border-left: 4px solid #7E57C2; }

/* ===== STEPS DIAGRAM ===== */
.steps-diagram {
  counter-reset: step;
  margin: 20px 0;
}
.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  align-items: flex-start;
}
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 5px; font-size: 0.95rem; }
.step-content p { font-size: 0.88rem; color: var(--text-secondary); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream) 100%);
  padding: 50px 0;
  border-bottom: 1px solid var(--grey-border);
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { color: var(--text-secondary); max-width: 650px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .forum-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .proadvisors-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .sticky-contact { display: none; }
}

@media (max-width: 480px) {
  .problems-grid, .proadvisors-grid { grid-template-columns: 1fr; }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 5000;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.mobile-nav.show { display: flex; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 5px; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--grey-light); font-size: 1.05rem; color: var(--text-primary); font-weight: 500; }
