/*
Theme Name: GreatHelpNow
Description: Hand-coded theme for GreatHelpNow — replaces the Elementor + The7 build with plain templates and one shared stylesheet.
Version: 1.0.0
Text Domain: greathelpnow
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --ghn-teal: #567c8d;
  --ghn-teal-dark: #3d5a68;
  --ghn-teal-light: #c8d9e6;
  --ghn-gold: #ffc84f;
  --ghn-gold-light: #f0d080;
  --ghn-slate: #2f4156;
  --ghn-slate-mid: #3d5468;
  --ghn-light: #f5efeb;
  --ghn-white: #ffffff;
  --ghn-gray: #64748b;
  --ghn-dark: #2f4156;
  --ghn-border: #e6ded2;

  --ghn-font: 'Roboto', Helvetica, Arial, Verdana, sans-serif;

  --ghn-container: 1200px;
  --ghn-radius: 14px;
  --ghn-radius-sm: 8px;
  --ghn-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ghn-font);
  color: var(--ghn-dark);
  line-height: 1.65;
  font-size: 16px;
  background: var(--ghn-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--ghn-font);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ghn-dark);
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; letter-spacing: -0.5px; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; }

.container {
  max-width: var(--ghn-container);
  margin: 0 auto;
  padding: 0 30px;
}

section { padding: 80px 0; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 48px 0; }
  .container { padding: 0 20px; }
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--ghn-radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--ghn-teal);
  color: var(--ghn-white);
}
.btn-primary:hover { background: var(--ghn-teal-light); transform: translateY(-1px); color: var(--ghn-white); }
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--ghn-white);
  padding: 11px 26px;
}
.btn-ghost:hover { border-color: var(--ghn-gold-light); color: var(--ghn-gold-light); }
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--ghn-border);
  color: var(--ghn-dark);
  padding: 11px 26px;
}
.btn-outline-dark:hover { border-color: var(--ghn-teal); color: var(--ghn-teal); }
.btn-block { display: block; width: 100%; }

/* ============================================================
   4. BADGES / EYEBROWS / PILLS
   ============================================================ */
.ghn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.35);
  color: var(--ghn-gold);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ghn-eyebrow-text {
  display: block;
  color: var(--ghn-teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ghn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 18px 6px 6px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 600;
}
a.ghn-pill { transition: background 0.2s ease, border-color 0.2s ease; }
a.ghn-pill:hover { background: rgba(255, 255, 255, 0.22); border-color: rgba(255, 255, 255, 0.4); }
.ghn-pill-icon {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--ghn-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-sizing: border-box;
}

/* ============================================================
   5. SECTION BACKGROUNDS
   ============================================================ */
.ghn-bg-slate {
  background: linear-gradient(135deg, var(--ghn-slate) 0%, var(--ghn-slate-mid) 50%, #1d3548 100%);
  color: var(--ghn-white);
}
.ghn-bg-light { background: var(--ghn-light); }
.ghn-bg-teal {
  background: linear-gradient(135deg, var(--ghn-teal-dark), var(--ghn-teal));
  color: var(--ghn-white);
}
.ghn-parallax-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.ghn-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 65, 86, 0.68);
  z-index: 1;
}
.ghn-parallax-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
@media (max-width: 900px) {
  .ghn-parallax-section { background-attachment: scroll; }
}

/* ============================================================
   6. PAGE HERO (Services / Pricing / Get Started / Blog / Single)
   ============================================================ */
.page-hero {
  text-align: center;
  padding: 90px 0 70px;
}
.page-hero h1 { color: var(--ghn-white); font-size: 2.8rem; margin: 14px 0 18px; }
.page-hero p { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.page-hero .ghn-eyebrow-text { justify-content: center; text-align: center; }

/* ============================================================
   7. CARDS
   ============================================================ */
.ghn-card {
  background: var(--ghn-white);
  border: 1px solid var(--ghn-border);
  border-radius: var(--ghn-radius);
  padding: 32px;
  transition: all 0.3s;
}
.ghn-card:hover { box-shadow: var(--ghn-shadow); transform: translateY(-2px); }

/* ============================================================
   8. TRUST / STATS BAR
   ============================================================ */
.ghn-trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 24px;
  background: var(--ghn-light);
}
.ghn-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ghn-dark);
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.stat-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stats-bar.in-view .stat-card { opacity: 1; transform: translateY(0); }
.stats-bar.in-view .stat-card:nth-child(1) { transition-delay: 0s; }
.stats-bar.in-view .stat-card:nth-child(2) { transition-delay: 0.08s; }
.stats-bar.in-view .stat-card:nth-child(3) { transition-delay: 0.16s; }
.stats-bar.in-view .stat-card:nth-child(4) { transition-delay: 0.24s; }
.stats-bar.in-view .stat-card:nth-child(5) { transition-delay: 0.32s; }
.stats-bar .stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ghn-teal);
  color: var(--ghn-white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover .stat-icon { transform: translateY(-4px) scale(1.07); box-shadow: 0 10px 22px rgba(0,0,0,0.18); }
.stats-bar.in-view .stat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid var(--ghn-teal);
  animation: ghn-stat-pulse 2.6s ease-out infinite;
}
.stats-bar.in-view .stat-card:nth-child(2) .stat-icon::after { animation-delay: 0.4s; }
.stats-bar.in-view .stat-card:nth-child(3) .stat-icon::after { animation-delay: 0.8s; }
.stats-bar.in-view .stat-card:nth-child(4) .stat-icon::after { animation-delay: 1.2s; }
.stats-bar.in-view .stat-card:nth-child(5) .stat-icon::after { animation-delay: 1.6s; }
@keyframes ghn-stat-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}
.stats-bar .stat-value { font-size: 1.7rem; font-weight: 800; color: var(--ghn-dark); font-variant-numeric: tabular-nums; }
.stats-bar .stat-label { font-size: 0.85rem; color: var(--ghn-gray); }
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-card { opacity: 1; transform: none; transition: none; }
  .stats-bar .stat-icon::after { animation: none; }
  .stat-card:hover .stat-icon { transform: none; }
}

/* ============================================================
   9. COMPARISON TABLE (shared: Home "How We're Different" / Pricing)
   ============================================================ */
.comparison-table { border-radius: var(--ghn-radius); overflow: hidden; border: 1px solid var(--ghn-border); background: var(--ghn-white); }
.comparison-table table { width: 100%; }
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--ghn-border);
  font-size: 0.95rem;
  white-space: nowrap;
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th {
  background: var(--ghn-slate);
  color: var(--ghn-white);
  font-weight: 700;
}
.th-logo-inner { display: inline-flex; align-items: center; gap: 8px; }
.th-logo-icon { width: 15px; height: 22.5px; flex: none; }
.th-logo-word { font-size: 1rem; font-weight: 700; color: var(--ghn-white); white-space: nowrap; }
.th-logo-word .accent-gold { color: var(--ghn-gold); }
.th-logo-word .accent-teal { color: var(--ghn-teal-light); }
.comparison-table .yes { color: var(--ghn-teal); font-weight: 700; }
.comparison-table .no { color: #c7ccd1; }
@media (max-width: 600px) {
  .comparison-table th, .comparison-table td {
    padding: 10px 6px;
    font-size: 0.78rem;
    white-space: normal;
  }
  .th-logo-inner { gap: 4px; }
  .th-logo-icon { width: 11px; height: 16.5px; }
  .th-logo-word { font-size: 0.8rem; }
}

/* ============================================================
   10. PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--ghn-border);
  border-radius: var(--ghn-radius);
  padding: 36px 28px;
  text-align: center;
  background: var(--ghn-white);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--ghn-teal);
  background: var(--ghn-light);
}
.pricing-card .badge {
  display: inline-block;
  background: var(--ghn-teal);
  color: var(--ghn-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-card h3 { margin-bottom: 4px; }
.pricing-card .plan-desc { color: var(--ghn-gray); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-card .price { font-size: 2.6rem; font-weight: 800; color: var(--ghn-dark); }
.pricing-card .price span { font-size: 0.95rem; font-weight: 400; color: var(--ghn-gray); }
.pricing-card .plan-features {
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid var(--ghn-border);
  text-align: left;
}
.pricing-card .plan-features li { padding: 6px 0; font-size: 0.92rem; }
.pricing-card .plan-features .yes::before { content: "✓ "; color: var(--ghn-teal); font-weight: 700; }
.pricing-card .plan-features .no { color: #b7bcc2; }
.pricing-card .plan-features .no::before { content: "✗ "; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   11. FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--ghn-border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ghn-dark);
}
.faq-question::after { content: "+"; font-size: 1.4rem; color: var(--ghn-teal); }
.faq-item.open .faq-question::after { content: "\2212"; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--ghn-gray);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 18px; }

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--ghn-white);
  border: 1px solid var(--ghn-border);
  border-radius: var(--ghn-radius);
  padding: 28px;
}
.testimonial-card .quote-mark { font-size: 2.4rem; color: var(--ghn-gold); line-height: 1; font-family: Georgia, serif; }
.testimonial-card p { font-style: italic; color: var(--ghn-dark); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-author .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ghn-teal); color: var(--ghn-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
}
.testimonial-author .name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author .role { font-size: 0.8rem; color: var(--ghn-gray); }
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   13. INDUSTRY / SERVICE CARDS
   ============================================================ */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ghn-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; text-align: center; }
.ghn-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ghn-blog-layout { padding: 50px 30px; display: grid; grid-template-columns: 2.3fr 1fr; gap: 40px; align-items: start; }
.ghn-blog-article { display: flex; gap: 24px; margin-bottom: 24px; align-items: stretch; padding: 16px; }
.ghn-blog-thumb-link { flex: none; width: 220px; }
.ghn-blog-thumb-img { width: 220px; height: 150px; object-fit: cover; border-radius: var(--ghn-radius-sm); display: block; }
@media (max-width: 900px) {
  .ghn-services-grid { grid-template-columns: 1fr; }
  .ghn-steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .ghn-blog-layout { grid-template-columns: 1fr; padding: 40px 20px; }
}
@media (max-width: 480px) {
  .ghn-blog-article { flex-direction: column; }
  .ghn-blog-thumb-link, .ghn-blog-thumb-img { width: 100%; }
}
.industry-card { border: 1px solid var(--ghn-border); border-radius: var(--ghn-radius); overflow: hidden; background: var(--ghn-white); }
.industry-card .thumb { height: 180px; background: linear-gradient(135deg, var(--ghn-teal) 0%, var(--ghn-slate) 100%); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.industry-card .thumb-icon { width: 60px; height: 60px; color: #fff; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2)); }
.industry-card .body { padding: 26px; }
.industry-card .tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px; background: rgba(86, 124, 141, 0.12); color: var(--ghn-teal-dark); }
.tag-law, .tag-re, .tag-therapy { background: rgba(86, 124, 141, 0.12); color: var(--ghn-teal-dark); }
.industry-card .feature-list li { padding: 4px 0; font-size: 0.9rem; }
.industry-card .feature-list li::before { content: "✓ "; color: var(--ghn-teal); font-weight: 700; }
.industry-card .cta-link { display: inline-block; margin-top: 16px; color: var(--ghn-gold); font-weight: 700; font-size: 0.9rem; }
@media (max-width: 900px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   13b. TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.testimonial-card { background: var(--ghn-white); border: 1px solid var(--ghn-border); border-radius: var(--ghn-radius); padding: 28px; text-align: left; }
.testimonial-quote { font-size: 1rem; color: var(--ghn-dark); line-height: 1.6; margin: 0 0 18px; }
.testimonial-author { font-size: 0.88rem; color: var(--ghn-gray); }
.testimonial-role { display: block; font-weight: 700; color: var(--ghn-dark); font-size: 0.92rem; margin-bottom: 2px; }
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   14. WHY-CHOOSE FEATURE ROWS
   ============================================================ */
.feature-row-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.ghn-area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 16px; list-style: none; padding: 0; margin: 0; }
.ghn-area-list li { padding: 6px 0; border-bottom: 1px solid var(--ghn-border); color: var(--ghn-dark); font-size: 0.92rem; }
.ghn-area-list li::before { content: "\1F4CD "; font-size: 0.8rem; }
@media (max-width: 480px) {
  .ghn-area-list { grid-template-columns: 1fr; }
}
.feature-row { display: flex; gap: 16px; }
.feature-row .icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 10px; background: var(--ghn-light); color: var(--ghn-teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.feature-row h3 { margin-bottom: 6px; font-size: 1.1rem; }
.feature-row p { color: var(--ghn-gray); font-size: 0.95rem; margin: 0; }
@media (max-width: 768px) {
  .feature-row-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   15. CTA BANNER (shared, bottom of most pages)
   ============================================================ */
.cta-banner { text-align: center; }
.cta-banner h2 { color: var(--ghn-white); }
.cta-banner p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   16. BLOG — LISTING & SINGLE
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card { border: 1px solid var(--ghn-border); border-radius: var(--ghn-radius); overflow: hidden; background: var(--ghn-white); }
.blog-card .thumb { height: 190px; background: var(--ghn-light) center/cover; }
.blog-card .body { padding: 24px; }
.blog-card .meta, .post-meta { font-size: 0.78rem; color: var(--ghn-teal); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-card .meta .sep, .post-meta .sep { color: var(--ghn-gray); font-weight: 400; text-transform: none; margin: 0 6px; }
.blog-card h2 { font-size: 1.2rem; margin-bottom: 10px; }
.blog-card p { color: var(--ghn-gray); font-size: 0.92rem; }
.blog-card .read-more { color: var(--ghn-teal); font-weight: 700; font-size: 0.88rem; }
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.article-meta-bar { display: flex; align-items: center; gap: 18px; justify-content: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 18px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 60px 0; }
.article-body h2 { margin-top: 40px; }
.article-body h3 { margin-top: 28px; }
.article-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.article-body ul li { padding: 3px 0; }
.article-body table { margin: 20px 0; }
.article-body table th, .article-body table td { border: 1px solid var(--ghn-border); padding: 10px 14px; text-align: left; }
.article-author-box { display: flex; align-items: center; gap: 14px; padding: 24px; background: var(--ghn-light); border-radius: var(--ghn-radius); margin-top: 40px; }
.article-nav { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid var(--ghn-border); margin-top: 24px; font-size: 0.9rem; }
.related-posts h3 { margin-bottom: 18px; }

/* ============================================================
   17. HEADER / TOP BAR / NAV
   ============================================================ */
.top-bar {
  background: var(--ghn-slate);
  color: var(--ghn-white);
  font-size: 0.8rem;
  font-weight: 500;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.top-bar .top-bar-left { display: flex; align-items: center; gap: 24px; }
.top-bar .top-bar-left a, .top-bar .top-bar-left span { white-space: nowrap; }
.top-bar a:hover { color: var(--ghn-gold); }
.top-bar-tagline { color: rgba(255, 255, 255, 0.9); letter-spacing: 0.3px; white-space: nowrap; }
@media (max-width: 768px) {
  .top-bar-tagline { display: none; }
  .top-bar .container { justify-content: center; }
  .top-bar .top-bar-left { gap: 14px; row-gap: 4px; flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .top-bar { font-size: 0.72rem; }
  .top-bar .container { text-align: center; }
  .top-bar .top-bar-left { width: 100%; justify-content: center; }
  .top-bar .top-bar-left span:nth-child(2) { display: none; }
  .top-bar-phone { font-size: 1.15rem; font-weight: 700; width: 100%; text-align: center; }
}

.site-header { background: var(--ghn-white); border-bottom: 1px solid var(--ghn-border); position: relative; z-index: 500; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.site-branding { display: flex; align-items: flex-end; gap: 0; }
.site-branding-icon { width: 44px; height: 66px; flex: none; margin-right: -3px; }
.site-branding-word { font-size: 1.55rem; font-weight: 700; color: var(--ghn-dark); white-space: nowrap; line-height: 1; padding-bottom: 8px; }
.site-branding-word .accent-gold { color: var(--ghn-gold); }
.site-branding-word .accent-teal { color: var(--ghn-teal); }
@media (max-width: 480px) {
  .site-branding-word { font-size: 1.2rem; padding-bottom: 6px; }
  .site-branding-icon { width: 34px; height: 51px; margin-right: -2px; }
}
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.main-nav > ul { display: flex; align-items: center; gap: 32px; }
.main-nav li { position: relative; }
.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--ghn-dark); padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--ghn-teal); }
.main-nav .current-menu-item > a { color: var(--ghn-teal); border-bottom-color: var(--ghn-teal); }
.main-nav .nav-cta-item a { background: var(--ghn-gold); color: var(--ghn-dark) !important; border-radius: var(--ghn-radius-sm); padding: 9px 20px !important; border-bottom: none !important; }
.main-nav .nav-cta-item a:hover { background: #e0a83a; }

.main-nav .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
}
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--ghn-white);
  border: 1px solid var(--ghn-border);
  border-radius: var(--ghn-radius-sm);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 700;
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu { display: block; }
.main-nav .sub-menu li { width: 100%; }
.main-nav .sub-menu a { display: block; padding: 8px 12px; border-bottom: none; border-radius: var(--ghn-radius-sm); white-space: nowrap; }
.main-nav .sub-menu a:hover { background: var(--ghn-light); }

.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ghn-dark); display: block; }

@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 85vw); background: var(--ghn-white); box-shadow: -8px 0 24px rgba(0,0,0,0.12); transform: translateX(100%); transition: transform 0.25s ease; padding: 90px 30px 30px; overflow-y: auto; z-index: 600; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: flex-start; gap: 22px; }
  .main-nav .sub-menu {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 10px 0 0 16px;
    min-width: 0;
  }
  .main-nav .sub-menu li { margin-top: 12px; }
  .main-nav .menu-item-has-children > a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 550; }
  .nav-overlay.open { display: block; }
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer { background: #1a2332; color: rgba(255, 255, 255, 0.7); padding: 60px 0 0; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; }
.footer-col { flex: 1; min-width: 220px; }
.footer-col h3 { color: var(--ghn-white); font-size: 18px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); }
.footer-col a:hover { color: var(--ghn-gold-light); }
.footer-contact-list li { display: flex; align-items: center; gap: 12px; }
.footer-contact-icon { flex: none; width: 22px; font-size: 1.15rem; text-align: center; }
.footer-col-center { text-align: center; }
.footer-col-center ul { display: inline-block; text-align: left; }
.footer-col-center .footer-contact-list li { justify-content: center; }
@media (max-width: 768px) {
  .footer-col-center { text-align: center; }
}
.footer-bottom { background: #151b28; margin-top: 40px; padding: 20px 0; text-align: center; font-size: 14px; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 600px) {
  .footer-credit { display: block; margin-top: 6px; }
  .footer-credit .ghn-credit-sep { display: none; }
}

/* ============================================================
   19. FORMS
   ============================================================ */
#ghn-quote-form { scroll-margin-top: 30px; }
#ghn-quote-form-section { scroll-margin-top: 20px; }
.ghn-form label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.ghn-form input, .ghn-form select, .ghn-form textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--ghn-border); border-radius: var(--ghn-radius-sm);
  font-family: var(--ghn-font); font-size: 0.95rem; margin-bottom: 18px;
}
.ghn-form input:focus, .ghn-form select:focus, .ghn-form textarea:focus { outline: 2px solid var(--ghn-teal); outline-offset: 1px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--ghn-gray); background: var(--ghn-light); padding: 12px 16px; border-radius: var(--ghn-radius-sm); margin-bottom: 18px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ============================================================
   20. TWO-COLUMN LAYOUT (homepage hero, contact split, etc.)
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.partner-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  border: 1px solid var(--ghn-border);
  border-radius: var(--ghn-radius);
  padding: 34px 30px;
  margin-top: 30px;
}
.partner-logo { font-size: 1.15rem; font-weight: 700; }
.partner-logo-real { color: var(--ghn-dark); filter: grayscale(1); opacity: 0.75; transition: all 0.2s; }
.partner-logo-real:hover { color: var(--ghn-teal); filter: grayscale(0); opacity: 1; }
.partner-logo-placeholder {
  color: var(--ghn-gray);
  border: 1px dashed var(--ghn-border);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .account-grid { grid-template-columns: 1fr; }
  .ghn-hero-content { text-align: center; }
  .ghn-hero-content p { margin-left: auto; margin-right: auto; }
  .ghn-hero-actions, .ghn-hero-pills { justify-content: center; }
}
