﻿/*
Theme Name: Tax Help Basics
Theme URI: https://taxhelpbasics.com
Author: Tax Help Basics
Description: Professional IRS tax resolution WordPress theme вЂ” forest green & amber edition
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxhelpbasics
*/

/* =============================================
   DESIGN SYSTEM вЂ” Tax Help Basics
   Palette: Forest Green + Warm Amber + Cream
   Fonts: Libre Baskerville (headings) + Source Sans 3 (body)
   ============================================= */
:root {
  /* Core Palette */
  --thb-green-900: #0d1f15;
  --thb-green-800: #1a3a2a;
  --thb-green-700: #1e4530;
  --thb-green-600: #255c3d;
  --thb-green-500: #2d7050;
  --thb-green-400: #3a8c65;
  --thb-green-200: #a8d5be;
  --thb-green-100: #e2f0e9;
  --thb-green-50:  #f2f8f4;

  --thb-amber-700: #8b5e1a;
  --thb-amber-600: #a87020;
  --thb-amber-500: #c9973a;
  --thb-amber-400: #d9ad5a;
  --thb-amber-300: #e8c47a;
  --thb-amber-100: #faf0d7;
  --thb-amber-50:  #fdf8ee;

  --thb-cream:     #f7f3ec;
  --thb-cream-dark: #ede7db;
  --thb-white:     #ffffff;
  --thb-charcoal:  #1c1c1c;
  --thb-gray-700:  #3d3d3d;
  --thb-gray-600:  #5a5a5a;
  --thb-gray-500:  #787878;
  --thb-gray-400:  #9a9a9a;
  --thb-gray-300:  #c4c4c4;
  --thb-gray-200:  #e0e0e0;
  --thb-gray-100:  #f0f0f0;

  /* Semantic */
  --thb-text:      var(--thb-charcoal);
  --thb-text-muted: var(--thb-gray-600);
  --thb-bg:        var(--thb-white);
  --thb-bg-alt:    var(--thb-cream);
  --thb-primary:   var(--thb-green-800);
  --thb-accent:    var(--thb-amber-500);
  --thb-accent-dark: var(--thb-amber-700);
  --thb-success:   #27864a;
  --thb-danger:    #c0392b;

  /* Typography */
  --font-serif:  'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans:   'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;
  --sp-2xl: 8rem;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.16);
  --shadow-amber: 0 8px 24px rgba(201,151,58,0.30);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 280ms ease;
  --t-slow: 460ms ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* WordPress admin bar — keep sticky header flush, no white strip */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
/* Prevent WP from adding a gap above body content */
body.admin-bar { margin-top: 0 !important; }
html.admin-bar { margin-top: 0 !important; }
#wpadminbar { position: fixed !important; }

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--thb-text);
  background: var(--thb-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--thb-primary);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--thb-green-500); text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--thb-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }
em { font-style: italic; }
strong { font-weight: 700; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--thb-green-900);
  color: var(--thb-green-200);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: none;
}
@media (min-width: 768px) { .top-bar { display: block; } }

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.top-bar-inner i { color: var(--thb-amber-400); margin-right: 0.4rem; }
.top-bar-divider { color: var(--thb-green-600); }
.top-bar-phone {
  color: var(--thb-amber-300);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}
.top-bar-phone:hover { color: var(--thb-amber-100); }
.top-bar-phone i { color: var(--thb-amber-400); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--thb-white);
  border-bottom: 2px solid var(--thb-cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow var(--t-base);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark svg { width: 44px; height: 44px; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-primary {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--thb-green-800);
  letter-spacing: -0.01em;
}
.logo-secondary {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--thb-amber-500);
}

/* Desktop Primary Nav */
.header-nav {
  display: none;
  flex: 1;
  margin: 0 1.5rem;
}
@media (min-width: 900px) { .header-nav { display: flex; align-items: center; } }

.header-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.header-nav-list li { margin: 0; }
.header-nav-list > li > a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--thb-gray-700);
  padding: 0.4rem 0.875rem;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}
.header-nav-list > li > a:hover,
.header-nav-list > li.current-menu-item > a,
.header-nav-list > li.current_page_item > a {
  color: var(--thb-green-700);
  background: var(--thb-green-50);
}

/* Dropdown sub-menus */
.header-nav-list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--thb-white);
  border: 1px solid var(--thb-cream-dark);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 500;
}
.header-nav-list li { position: relative; }
.header-nav-list li:hover > .sub-menu { display: block; }
.header-nav-list .sub-menu li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--thb-gray-700);
  padding: 0.625rem 1.25rem;
  transition: color var(--t-fast), background var(--t-fast);
}
.header-nav-list .sub-menu li a:hover { color: var(--thb-green-700); background: var(--thb-green-50); }

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (min-width: 900px) { .header-actions { display: flex; } }

.header-consult-btn {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--thb-green-700);
  border: 2px solid var(--thb-green-700);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  transition: all var(--t-base);
}
.header-consult-btn:hover {
  background: var(--thb-green-700);
  color: var(--thb-white);
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--thb-amber-500);
  color: var(--thb-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.625rem 1.375rem;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-amber);
  transition: all var(--t-base);
  letter-spacing: 0.01em;
}
.header-phone-btn:hover {
  background: var(--thb-amber-700);
  color: var(--thb-white);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(201,151,58,0.40);
}
.header-phone-btn i { font-size: 0.875rem; }

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 900px) { .mobile-toggle { display: none; } }
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--thb-green-800);
  border-radius: 2px;
  transition: all var(--t-base);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  background: var(--thb-green-900);
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid var(--thb-green-700);
}
.mobile-drawer.open { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
}
/* Support both direct <a> and wp_nav_menu generated <ul> */
.mobile-nav-links a,
.mobile-nav-menu li a {
  color: var(--thb-green-100);
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t-fast);
  display: block;
}
.mobile-nav-links a:hover,
.mobile-nav-menu li a:hover { color: var(--thb-amber-300); }
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-menu li { margin: 0; }
.mobile-nav-menu .sub-menu { display: none; } /* hide sub-menus on mobile drawer */

.mobile-nav-ctas { display: flex; flex-direction: column; gap: 0.75rem; }
.btn-mobile-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: var(--thb-amber-500);
  color: var(--thb-white);
  font-weight: 700;
  padding: 0.875rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  text-align: center;
}
.btn-mobile-call:hover { background: var(--thb-amber-700); color: var(--thb-white); }
.btn-mobile-consult {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--thb-green-100);
  border: 2px solid rgba(255,255,255,0.25);
  padding: 0.75rem;
  border-radius: var(--r-md);
  font-weight: 600;
}
.btn-mobile-consult:hover { border-color: var(--thb-amber-400); color: var(--thb-amber-300); }

/* Sticky Bottom Bar */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 800;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
@media (min-width: 768px) { .sticky-bottom-bar { display: none; } }
.sticky-call, .sticky-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
}
.sticky-call {
  background: var(--thb-amber-500);
  color: var(--thb-white);
}
.sticky-call:hover { background: var(--thb-amber-700); color: var(--thb-white); }
.sticky-form {
  background: var(--thb-green-800);
  color: var(--thb-white);
}
.sticky-form:hover { background: var(--thb-green-700); color: var(--thb-white); }

/* =============================================
   HERO SECTION - Full-width background overlay
   ============================================= */
.thb-hero {
  position: relative;
  min-height: 100vh;
  background: var(--thb-green-900);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  display: flex;
  align-items: center;
}

.thb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 31, 21, 0.93) 0%,
    rgba(13, 31, 21, 0.88) 45%,
    rgba(26, 58, 42, 0.70) 100%
  );
  z-index: 1;
}

/* Inner two-column layout */
.thb-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media (min-width: 900px) {
  .thb-hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .thb-hero-inner {
    grid-template-columns: 1fr 460px;
    gap: 4rem;
  }
}

/* Left: text content */
.thb-hero-left-content {
  color: var(--thb-white);
  max-width: 620px;
}

.thb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--thb-amber-300);
  margin-bottom: 1.5rem;
}
.thb-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--thb-amber-400);
  flex-shrink: 0;
}

.thb-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--thb-white);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.thb-hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Trust row */
.thb-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.25rem;
}
.thb-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}
.thb-trust-badge i { color: var(--thb-amber-400); font-size: 0.75rem; }

/* Hero action buttons */
.thb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.thb-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--thb-amber-500);
  color: var(--thb-white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-amber);
  transition: all var(--t-base);
  line-height: 1.2;
}
.thb-btn-call:hover {
  background: var(--thb-amber-700);
  color: var(--thb-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,151,58,0.45);
}
.thb-btn-call i { font-size: 1.125rem; flex-shrink: 0; }
.thb-btn-call span { display: flex; flex-direction: column; }
.thb-btn-call small {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.thb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 2px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: all var(--t-base);
}
.thb-btn-secondary:hover { color: var(--thb-amber-300); border-color: var(--thb-amber-400); }

/* Right: form card */
.thb-hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thb-form-box {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--thb-cream-dark);
  width: 100%;
}

.thb-form-box-header { text-align: center; margin-bottom: 1.75rem; }
.thb-form-icon {
  width: 60px;
  height: 60px;
  background: var(--thb-green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.375rem;
  color: var(--thb-amber-400);
}
.thb-form-title {
  font-size: 1.375rem;
  color: var(--thb-green-800);
  margin-bottom: 0.375rem;
}
.thb-form-subtitle {
  font-size: 0.9rem;
  color: var(--thb-gray-600);
  margin-bottom: 0;
}

.thb-form-placeholder {
  text-align: center;
  padding: 1.5rem;
  color: var(--thb-gray-600);
  font-size: 0.9rem;
  background: var(--thb-gray-100);
  border-radius: var(--r-md);
}

.thb-form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--thb-gray-500);
}
.thb-form-security i { color: var(--thb-success); }

.thb-urgency-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.35);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
}
.thb-urgency-note i { flex-shrink: 0; color: var(--thb-amber-300); }
/* CF7 Form Styles */
.wpcf7-form { display: flex; flex-direction: column; gap: 1rem; }
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 2px solid var(--thb-gray-200);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--thb-text);
  background: var(--thb-white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--thb-green-500);
  box-shadow: 0 0 0 3px rgba(45,112,80,0.12);
}
.wpcf7 textarea { min-height: 90px; resize: vertical; }
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 0.9375rem;
  background: var(--thb-green-800);
  color: var(--thb-white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base);
  letter-spacing: 0.01em;
}
.wpcf7 input[type="submit"]:hover {
  background: var(--thb-green-600);
  transform: translateY(-2px);
}
.wpcf7-not-valid-tip { color: var(--thb-danger); font-size: 0.8rem; margin-top: 0.25rem; display: block; }
.wpcf7 form .wpcf7-response-output {
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  border-width: 1px;
  border-style: solid;
}
.wpcf7 form.sent .wpcf7-response-output {
  background: #d4edda; border-color: #28a745; color: #155724;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background: #f8d7da; border-color: #dc3545; color: #721c24;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.thb-section { padding: 5rem 0; }
@media (min-width: 768px) { .thb-section { padding: 6.5rem 0; } }

.thb-overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--thb-amber-600);
  margin-bottom: 1rem;
}
.thb-overline--light { color: var(--thb-amber-300); }

.thb-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--thb-amber-600);
}
.thb-label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--thb-amber-400);
}

.thb-section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--thb-primary);
}
.thb-section-sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.0625rem;
  color: var(--thb-gray-600);
}

/* Shared primary button */
.thb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--thb-green-800);
  color: var(--thb-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 2rem;
  border-radius: var(--r-md);
  transition: all var(--t-base);
  box-shadow: var(--shadow-md);
  margin-top: 0.5rem;
}
.thb-btn-primary:hover {
  background: var(--thb-green-600);
  color: var(--thb-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =============================================
   INTRO SECTION
   ============================================= */
.thb-intro { background: var(--thb-white); }

/* 2-column: left (image+stats+quote) | right (text) */
.thb-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .thb-intro-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}
@media (min-width: 1200px) {
  .thb-intro-grid { gap: 5rem; }
}

/* Left column wrapper */
.thb-intro-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Image */
.thb-intro-img-col { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.thb-intro-img { width: 100%; display: block; object-fit: cover; max-height: 360px; }
@media (min-width: 900px) {
  .thb-intro-img { max-height: 280px; }
}

/* Right column */
.thb-intro-text h2 { color: var(--thb-primary); margin-bottom: 1.25rem; }
.thb-lead-para {
  font-size: 1.125rem;
  color: var(--thb-gray-700);
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.8;
}
/* Stats stack */
.thb-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--thb-cream-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.thb-stat-card {
  background: var(--thb-white);
  padding: 1.375rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: background var(--t-fast);
  border-left: 4px solid var(--thb-amber-500);
}
.thb-stat-card:hover { background: var(--thb-amber-50); }
.thb-stat-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--thb-green-800);
  line-height: 1;
}
.thb-stat-label {
  font-size: 0.875rem;
  color: var(--thb-gray-600);
  font-weight: 500;
}

/* Quote block */
.thb-quote-block {
  background: var(--thb-green-800);
  color: var(--thb-green-100);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
}
.thb-quote-block i {
  color: var(--thb-amber-400);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.thb-quote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.thb-services-section { background: var(--thb-cream); }

.thb-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .thb-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .thb-services-grid { grid-template-columns: repeat(3, 1fr); } }

.thb-service-item {
  background: var(--thb-white);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--thb-cream-dark);
  display: flex;
  gap: 0;
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.thb-service-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.thb-service-number {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--thb-amber-400);
  background: var(--thb-green-900);
  padding: 1.5rem 0.625rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
}

.thb-service-body {
  padding: 1.75rem;
  flex: 1;
}
.thb-service-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--thb-amber-50);
  border: 2px solid var(--thb-amber-200, #e8c47a);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--thb-amber-600);
  margin-bottom: 1rem;
  transition: all var(--t-base);
}
.thb-service-item:hover .thb-service-icon-wrap {
  background: var(--thb-green-800);
  border-color: var(--thb-green-800);
  color: var(--thb-amber-300);
}
.thb-service-body h3 {
  font-size: 1.125rem;
  color: var(--thb-primary);
  margin-bottom: 0.25rem;
}
.thb-service-tagline {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--thb-amber-600);
  margin-bottom: 0.875rem;
}
.thb-service-body p:not(.thb-service-tagline) {
  font-size: 0.9rem;
  color: var(--thb-gray-600);
  line-height: 1.7;
  margin: 0;
}

.thb-services-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--thb-cream-dark);
}
.thb-services-cta p {
  font-size: 1.0625rem;
  color: var(--thb-gray-600);
  margin-bottom: 1.25rem;
}

/* =============================================
   RISK SECTION
   ============================================= */
.thb-risk-section { background: var(--thb-white); }

.thb-risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) { .thb-risk-grid { grid-template-columns: 1.1fr 1fr; gap: 5rem; } }

.thb-risk-left h2 { color: var(--thb-primary); margin-bottom: 1.25rem; }
.thb-risk-left > p { margin-bottom: 1.5rem; color: var(--thb-gray-700); font-size: 1.0625rem; }

.thb-risk-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.thb-risk-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--thb-gray-200);
  font-size: 1.0625rem;
  color: var(--thb-gray-700);
}
.thb-risk-list li:last-child { border-bottom: none; }
.thb-risk-list i {
  color: var(--thb-danger);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 1rem;
}
.thb-risk-conclusion {
  font-size: 0.9375rem;
  color: var(--thb-gray-600);
  margin-bottom: 1.5rem;
}

/* Privilege card */
.thb-privilege-card {
  background: var(--thb-green-800);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  color: var(--thb-green-100);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.thb-privilege-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--thb-amber-500), var(--thb-amber-300));
}
.thb-privilege-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--thb-amber-400);
  margin-bottom: 1.25rem;
}
.thb-privilege-card h3 {
  color: var(--thb-white);
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
}
.thb-privilege-card > p {
  color: rgba(255,255,255,0.78);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.thb-card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 1.5rem 0;
}
.thb-privilege-list { display: flex; flex-direction: column; gap: 0.75rem; }
.thb-privilege-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
}
.thb-privilege-item i { color: var(--thb-amber-400); font-size: 0.875rem; }

/* =============================================
   PROCESS SECTION вЂ” Vertical timeline
   ============================================= */
.thb-process-section { background: var(--thb-cream); }

.thb-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.thb-timeline-track {
  display: none;
}
@media (min-width: 768px) {
  .thb-timeline-track {
    display: block;
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--thb-amber-400), var(--thb-green-400));
    z-index: 0;
  }
}

.thb-timeline-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.thb-timeline-step:last-child { margin-bottom: 0; }

.thb-tl-node {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--thb-green-800);
  border: 3px solid var(--thb-amber-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,58,42,0.25);
}
.thb-tl-node span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--thb-amber-300);
  line-height: 1;
}

.thb-tl-content {
  background: var(--thb-white);
  border-radius: var(--r-lg);
  padding: 1.625rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--thb-cream-dark);
  flex: 1;
  transition: box-shadow var(--t-base);
}
.thb-tl-content:hover { box-shadow: var(--shadow-md); }
.thb-tl-content h3 {
  font-size: 1.125rem;
  color: var(--thb-primary);
  margin-bottom: 0.5rem;
}
.thb-tl-content p {
  font-size: 0.9375rem;
  color: var(--thb-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.thb-why-section { background: var(--thb-green-50, #f2f8f4); }

.thb-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .thb-why-grid { grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: center; }
}

.thb-why-intro h2 { color: var(--thb-primary); margin-bottom: 1.25rem; }
.thb-why-intro p { color: var(--thb-gray-700); font-size: 1.0625rem; margin-bottom: 1.5rem; }

.thb-why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--thb-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--thb-cream-dark);
}
@media (min-width: 640px) {
  .thb-why-features { grid-template-columns: repeat(2, 1fr); }
}

.thb-why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.625rem;
  border-bottom: 1px solid var(--thb-gray-100);
  border-right: 1px solid var(--thb-gray-100);
  transition: background var(--t-fast);
}
.thb-why-feature:hover { background: var(--thb-green-50, #f2f8f4); }
.thb-why-feature:nth-child(even) { border-right: none; }
@media (max-width: 639px) {
  .thb-why-feature { border-right: none; }
}

.thb-why-icon {
  width: 44px;
  height: 44px;
  background: var(--thb-green-800);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--thb-amber-300);
  flex-shrink: 0;
}
.thb-why-feature h4 {
  font-size: 1rem;
  color: var(--thb-primary);
  margin-bottom: 0.25rem;
}
.thb-why-feature p {
  font-size: 0.875rem;
  color: var(--thb-gray-600);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.thb-final-cta {
  background: var(--thb-green-800);
  color: var(--thb-white);
  position: relative;
  overflow: hidden;
}
.thb-final-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9973a' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v-2h-2l-2 2zm-36 0l2-2v2h-2zm4 0l6-6v2l-4 4h-2zm4 0l10-10v2L60 40h-2zm4 0l14-14v2L64 40h-2zm4 0l18-18v2L68 40h-2zm4 0l22-22v2L72 40h-2zm4 0l26-26v2L76 40h-2zm4 0L80 36v2h-2l-2-2h2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.thb-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .thb-final-cta-inner { grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start; }
}

.thb-cta-text-block h2 {
  color: var(--thb-white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.thb-cta-text-block > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.thb-cta-subline {
  color: var(--thb-amber-300) !important;
  font-size: 1.125rem !important;
  font-family: var(--font-serif);
  margin-bottom: 2rem !important;
}

.thb-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.thb-btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--thb-amber-500);
  color: var(--thb-white);
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-amber);
  transition: all var(--t-base);
  line-height: 1.2;
}
.thb-btn-cta-call:hover {
  background: var(--thb-amber-700);
  color: var(--thb-white);
  transform: translateY(-2px);
}
.thb-btn-cta-call i { font-size: 1.125rem; }
.thb-btn-cta-call span { display: flex; flex-direction: column; }
.thb-btn-cta-call small {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.82;
}

.thb-btn-cta-form {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.9375rem;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: all var(--t-base);
}
.thb-btn-cta-form:hover { color: var(--thb-amber-300); border-color: var(--thb-amber-400); }

.thb-cta-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.875rem !important;
  margin: 0 !important;
}
.thb-cta-guarantee i { color: var(--thb-amber-400); }

/* CTA form panel */
.thb-cta-form-panel {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl);
}
.thb-cta-form-panel h3 {
  font-size: 1.25rem;
  color: var(--thb-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--thb-cream-dark);
}

/* =============================================
   FOOTER
   ============================================= */

/* CTA strip */
.thb-footer-cta-strip {
  background: var(--thb-amber-500);
  padding: 1.5rem 0;
}
.thb-footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .thb-footer-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.thb-footer-cta-text {
  color: var(--thb-white);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
}
.thb-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--thb-green-800);
  color: var(--thb-white);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  white-space: nowrap;
  transition: background var(--t-base);
  flex-shrink: 0;
}
.thb-footer-cta-btn:hover { background: var(--thb-green-600); color: var(--thb-white); }

/* Footer main */
.thb-footer-main {
  background: var(--thb-green-900);
  padding: 4rem 0 3rem;
}
.thb-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) { .thb-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .thb-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Footer brand */
.thb-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.thb-footer-logo-primary {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--thb-white);
  line-height: 1.1;
}
.thb-footer-logo-secondary {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--thb-amber-400);
}
.thb-footer-brand > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.thb-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--thb-amber-300);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-sans);
  transition: color var(--t-base);
}
.thb-footer-phone:hover { color: var(--thb-amber-100); }
.thb-footer-phone i { font-size: 1rem; }

/* Footer columns */
.thb-footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--thb-amber-400);
  margin-bottom: 1.25rem;
}
.thb-footer-links,
.thb-footer-col .thb-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thb-footer-links li { margin-bottom: 0.625rem; }
.thb-footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--t-base);
}
.thb-footer-links a:hover { color: var(--thb-amber-300); }

.thb-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.thb-footer-contact-item i { color: var(--thb-amber-400); font-size: 0.875rem; }
.thb-footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--t-base);
}
.thb-footer-contact-item a:hover { color: var(--thb-amber-300); }

.thb-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.thb-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}
.thb-footer-badge i { color: var(--thb-amber-400); }

/* Footer bottom */
.thb-footer-bottom {
  background: var(--thb-green-900);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.thb-footer-bottom-inner > p:first-child {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.thb-footer-bottom-inner a {
  color: rgba(255,255,255,0.45);
  transition: color var(--t-base);
}
.thb-footer-bottom-inner a:hover { color: var(--thb-amber-300); }
.thb-footer-disclaimer {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.775rem !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto !important;
}

/* =============================================
   RESPONSIVE вЂ” MOBILE PADDING
   ============================================= */
@media (max-width: 480px) {
  .thb-hero-left { padding: 4rem 1.25rem 3rem; }
  .thb-hero-right { padding: 2.5rem 1.25rem; }
  .thb-section { padding: 4rem 0; }
  .thb-form-box { padding: 1.75rem 1.25rem; }
  .thb-final-cta-inner { gap: 2.5rem; }
  .thb-cta-form-panel { padding: 1.75rem 1.25rem; }
}

/* =============================================
   PAGE HERO — shared for back-taxes & audit pages
   ============================================= */
.thb-page-hero,
.thb-audit-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--thb-green-900);
  background-size: cover;
  background-position: center top;
  padding: 8rem 0 5rem;
}
.thb-page-hero-overlay,
.thb-audit-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(10,31,21,0.93) 0%,
    rgba(26,58,42,0.86) 60%,
    rgba(26,58,42,0.75) 100%
  );
}
.thb-page-hero-inner,
.thb-audit-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.thb-page-hero-content h1,
.thb-audit-hero h1 {
  color: var(--thb-white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.thb-page-hero-lead,
.thb-audit-hero-lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.thb-page-hero-actions,
.thb-audit-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
.thb-audit-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,151,58,0.18);
  border: 1px solid rgba(201,151,58,0.35);
  color: var(--thb-amber-300);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
  display: inline-flex;
}
.thb-audit-hero-badge i { color: var(--thb-amber-400); }

/* =============================================
   BACK TAXES PAGE — Sections
   ============================================= */
.thb-bt-intro { background: var(--thb-white); }
.thb-bt-options { background: var(--thb-cream); }
.thb-bt-process { background: var(--thb-white); }
.thb-bt-why { background: var(--thb-green-800); color: var(--thb-white); }
.thb-bt-contact { background: var(--thb-green-800); color: var(--thb-white); }

/* Split grid (intro) */
.thb-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .thb-split-grid { grid-template-columns: 1.3fr 1fr; gap: 5rem; align-items: center; }
}
.thb-split-text h2 { color: var(--thb-primary); margin-bottom: 1.25rem; }
.thb-split-img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  max-height: 500px;
}
.thb-split-img-fallback {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.thb-split-stat-card {
  background: var(--thb-white);
  border-left: 4px solid var(--thb-amber-500);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.thb-split-quote {
  background: var(--thb-green-800);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  color: rgba(255,255,255,0.85);
}
.thb-split-quote i { color: var(--thb-amber-400); font-size: 1.25rem; margin-bottom: 0.625rem; display: block; }
.thb-split-quote p { font-family: var(--font-serif); font-style: italic; font-size: 0.9375rem; margin: 0; line-height: 1.7; }

/* Options grid */
.thb-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .thb-options-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .thb-options-grid { grid-template-columns: repeat(3, 1fr); } }

.thb-option-card {
  background: var(--thb-white);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--thb-cream-dark);
  border-top: 3px solid var(--thb-amber-500);
  transition: box-shadow var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.thb-option-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.thb-option-icon {
  width: 52px; height: 52px;
  background: var(--thb-green-800);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  color: var(--thb-amber-300);
}
.thb-option-card h3 { font-size: 1.125rem; color: var(--thb-primary); margin: 0; }
.thb-option-card p { font-size: 0.9rem; color: var(--thb-gray-600); margin: 0; line-height: 1.7; }
.thb-option-tag {
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--thb-amber-600);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--thb-cream-dark);
}

/* Horizontal steps */
.thb-steps-horizontal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .thb-steps-horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.thb-step-h {
  flex: 1;
  background: var(--thb-cream);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--thb-cream-dark);
}
.thb-step-h-num {
  width: 52px; height: 52px;
  background: var(--thb-green-800);
  border: 3px solid var(--thb-amber-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--thb-amber-300);
  margin: 0 auto 1rem;
}
.thb-step-h h4 { font-size: 1rem; color: var(--thb-primary); margin-bottom: 0.5rem; }
.thb-step-h p { font-size: 0.875rem; color: var(--thb-gray-600); margin: 0; line-height: 1.65; }
.thb-step-h-arrow {
  display: none;
  align-self: center;
  color: var(--thb-amber-400);
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-bottom: 2rem;
}
@media (min-width: 768px) { .thb-step-h-arrow { display: flex; } }

/* Why banner (back taxes) */
.thb-why-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .thb-why-banner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
}
.thb-why-banner-text h2 { color: var(--thb-white); margin-bottom: 1rem; }
.thb-why-banner-text p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 1.0625rem; }
.thb-why-banner-list { display: flex; flex-direction: column; gap: 0.875rem; }
.thb-why-check-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
}
.thb-why-check-item i { color: var(--thb-amber-400); font-size: 1rem; flex-shrink: 0; }

/* Contact split */
.thb-contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 960px) {
  .thb-contact-split { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.thb-contact-split-text h2 { color: var(--thb-white); margin-bottom: 1.25rem; }
.thb-contact-split-text > p { color: rgba(255,255,255,0.78); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.thb-contact-split-form {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl);
}
.thb-contact-split-form h3 {
  font-size: 1.25rem;
  color: var(--thb-primary);
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--thb-cream-dark);
}

/* =============================================
   IRS AUDIT PAGE — Sections
   ============================================= */
.thb-audit-why { background: var(--thb-white); }
.thb-audit-types { background: var(--thb-cream); }
.thb-audit-faq { background: var(--thb-white); }

/* Audit why grid */
.thb-audit-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .thb-audit-why-grid { grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
}
.thb-audit-why-text h2 { color: var(--thb-primary); margin-bottom: 1.25rem; }
.thb-audit-why-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.thb-audit-risk-card {
  background: var(--thb-cream);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  border: 1px solid var(--thb-cream-dark);
}
.thb-audit-risk-card--good { background: var(--thb-green-50); border-color: var(--thb-green-200); }
.thb-audit-risk-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}
.thb-audit-risk-icon.danger { background: #fde8e8; color: var(--thb-danger); }
.thb-audit-risk-icon.success { background: #d4f0e0; color: var(--thb-success); }
.thb-audit-risk-card h4 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--thb-primary); }
.thb-audit-risk-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.thb-audit-risk-list li { font-size: 0.875rem; color: var(--thb-gray-700); line-height: 1.55; }

/* Audit types grid */
.thb-audit-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .thb-audit-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .thb-audit-types-grid { grid-template-columns: repeat(3, 1fr); } }

.thb-audit-type-item {
  background: var(--thb-white);
  border-radius: var(--r-lg);
  padding: 1.875rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--thb-cream-dark);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.thb-audit-type-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.thb-audit-type-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--thb-green-100);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.thb-audit-type-item h3 { font-size: 1.125rem; color: var(--thb-primary); margin-bottom: 0.75rem; position: relative; }
.thb-audit-type-item p { font-size: 0.9rem; color: var(--thb-gray-600); line-height: 1.7; margin: 0; position: relative; }

/* Mid image / CTA strip */
.thb-audit-mid-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.thb-audit-mid-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.thb-audit-mid-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,31,21,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
}
.thb-audit-mid-overlay p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--thb-amber-200, #e8c47a);
  max-width: 680px;
  margin: 0;
}
.thb-audit-cta-strip {
  background: var(--thb-green-900);
  padding: 2.5rem 0;
}
.thb-audit-cta-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .thb-audit-cta-strip-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.thb-audit-cta-strip-inner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--thb-amber-300);
  margin: 0;
}

/* FAQ accordion */
.thb-audit-faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .thb-audit-faq-inner { grid-template-columns: 1fr 1.6fr; gap: 5rem; }
}
.thb-audit-faq-header h2 { margin-bottom: 1rem; }
.thb-audit-faq-header p { color: var(--thb-gray-600); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.thb-faq-list { display: flex; flex-direction: column; gap: 0; }
.thb-faq-item {
  border-bottom: 1px solid var(--thb-gray-200);
}
.thb-faq-item:first-child { border-top: 1px solid var(--thb-gray-200); }
.thb-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--thb-primary);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.thb-faq-q::-webkit-details-marker { display: none; }
.thb-faq-q i {
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--thb-amber-500);
  transition: transform var(--t-base);
}
details[open] .thb-faq-q { color: var(--thb-amber-600); }
details[open] .thb-faq-q i { transform: rotate(180deg); }
.thb-faq-a {
  padding: 0 0 1.25rem;
}
.thb-faq-a p { font-size: 0.9375rem; color: var(--thb-gray-600); line-height: 1.75; margin: 0; }

/* =============================================
   RESPONSIVE — new page templates
   ============================================= */
@media (max-width: 480px) {
  .thb-page-hero,
  .thb-audit-hero { padding: 6rem 0 3.5rem; min-height: auto; }
  .thb-option-card,
  .thb-audit-type-item { padding: 1.5rem 1.25rem; }
  .thb-contact-split-form { padding: 1.75rem 1.25rem; }
}

/* =============================================
   INNER PAGES — Shared sidebar + content layout
   ============================================= */
.ipage-content-wrap {
  background: var(--thb-cream);
  padding: 3.5rem 0 5rem;
}
.ipage-content-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .ipage-content-container {
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
  }
}

/* ---- Main editable column ---- */
.ipage-main {
  min-width: 0;
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

/* Rich typography for WP editor output */
.ipage-main h2,
.ipage-main h3,
.ipage-main h4,
.ipage-main p,
.ipage-main ul,
.ipage-main ol,
.ipage-main hr,
.ipage-main blockquote {
  margin-bottom: 1.25rem;
}

/* Section heading — h2 */
.ipage-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--thb-primary);
  line-height: 1.25;
  padding-top: 2rem;
  padding-bottom: 0.625rem;
  border-top: 2px solid var(--thb-cream-dark);
  border-bottom: 3px solid var(--thb-amber-400);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.ipage-main > h2:first-child {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}

/* Sub-heading — h3 */
.ipage-main h3 {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 700;
  color: var(--thb-green-700);
  line-height: 1.3;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--thb-amber-400);
}
/* Prevent sidebar h3 from inheriting content styles */
.ipage-sidebar h3,
.ipage-form-card h3,
.ipage-form-card-header h3 {
  font-size: 1.125rem;
  color: var(--thb-primary);
  margin: 0 0 0.2rem;
  padding: 0;
  border: none;
}

/* h4 */
.ipage-main h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--thb-primary);
  margin-top: 1.25rem;
  margin-bottom: 0.375rem;
}

/* Body text */
.ipage-main p {
  font-size: 1rem;
  color: var(--thb-gray-600);
  line-height: 1.85;
}
.ipage-main p strong {
  color: var(--thb-primary);
  font-weight: 700;
}

/* Lists */
.ipage-main ul,
.ipage-main ol {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.ipage-main ul li,
.ipage-main ol li {
  font-size: 0.9375rem;
  color: var(--thb-gray-600);
  line-height: 1.75;
  padding-left: 1.625rem;
  position: relative;
}
.ipage-main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--thb-amber-400);
}
.ipage-main ol {
  counter-reset: ipage-ol;
}
.ipage-main ol li {
  counter-increment: ipage-ol;
}
.ipage-main ol li::before {
  content: counter(ipage-ol);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--thb-amber-500);
  line-height: 1.75;
}

/* Divider — rendered as a visual section break */
.ipage-main hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, var(--thb-amber-400), var(--thb-cream-dark), transparent);
  margin: 2.5rem 0;
}

/* Blockquote */
.ipage-main blockquote {
  background: var(--thb-green-800);
  border-radius: var(--r-lg);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--thb-amber-400);
  margin: 2rem 0;
}
.ipage-main blockquote p {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 0;
}

/* Links inside content */
.ipage-main a {
  color: var(--thb-green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.ipage-main a:hover { color: var(--thb-amber-600); }

/* ---- Sidebar ---- */
.ipage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .ipage-sidebar {
    position: sticky;
    top: 90px;
  }
}

/* Form card */
.ipage-form-card {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--thb-amber-500);
}
.ipage-form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--thb-cream-dark);
}
.ipage-form-card-header > i {
  font-size: 1.5rem;
  color: var(--thb-amber-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.ipage-form-card-header h3 {
  font-size: 1.125rem;
  color: var(--thb-primary);
  margin: 0 0 0.2rem;
  padding: 0;
  border: none;
  font-family: var(--font-serif);
}
.ipage-form-card-header p {
  font-size: 0.8rem;
  color: var(--thb-gray-500);
  margin: 0;
}
.ipage-form-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--thb-cream-dark);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--thb-gray-500);
}
.ipage-form-trust i { color: var(--thb-amber-500); margin-right: 0.25rem; }

/* Sidebar image */
.ipage-sidebar-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ipage-sidebar-img-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 300px;
}

/* Stats */
.ipage-sidebar-stats {
  background: var(--thb-green-800);
  border-radius: var(--r-xl);
  padding: 1.25rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}
.ipage-stat-n {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--thb-amber-300);
}
.ipage-stat-l {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

/* Call box */
.ipage-callbox {
  background: var(--thb-white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ipage-callbox p {
  font-size: 0.875rem;
  color: var(--thb-gray-500);
  margin-bottom: 0.625rem;
}
.ipage-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--thb-green-700);
  transition: color var(--t-fast);
}
.ipage-phone-link:hover { color: var(--thb-amber-600); }

/* ---- Intro image column styling ---- */
.thb-intro-img-col { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.thb-intro-img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 480px; }

/* ---- Process section image ---- */
.thb-process-img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}
.thb-process-img { width: 100%; max-height: 360px; object-fit: cover; display: block; }

/* ---- Audit editor content wrapper (full-width variant) ---- */
.audit-editor-content { background: var(--thb-cream); }
.audit-editor-inner { max-width: 100%; padding: 0; }

/* =============================================
   INNER PAGE — Breadcrumb topbar
   ============================================= */
.thb-inner-topbar {
  background: var(--thb-green-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.625rem 0;
}
.thb-inner-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.thb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}
.thb-breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.thb-breadcrumb a:hover { color: var(--thb-amber-300); }
.thb-breadcrumb i { font-size: 0.625rem; color: rgba(255,255,255,0.3); }
.thb-breadcrumb span { color: var(--thb-amber-300); font-weight: 600; }
.thb-topbar-call {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--thb-amber-300);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.thb-topbar-call:hover { color: var(--thb-amber-200); }

/* =============================================
   BACK TAXES — Hero strip
   ============================================= */
.bt-hero-strip {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: var(--thb-green-900);
  background-size: cover;
  background-position: center;
  padding: 5rem 0 4rem;
}
.bt-hero-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5,18,12,0.92) 0%, rgba(26,58,42,0.82) 100%);
}
.bt-hero-strip-inner {
  position: relative;
  z-index: 2;
}
.bt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.3);
  color: var(--thb-amber-300);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.bt-hero-strip-inner h1 {
  color: var(--thb-white);
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.bt-hero-strip-inner > p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
  max-width: 620px;
}
.bt-hero-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* =============================================
   BACK TAXES — Body layout (sidebar + main)
   ============================================= */
.bt-body-wrap { background: var(--thb-cream); padding: 3rem 0 4rem; }
.bt-body-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .bt-body-container {
    grid-template-columns: 340px 1fr;
    gap: 3rem;
  }
}

/* Sidebar */
.bt-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 960px) { .bt-sidebar { position: sticky; top: 90px; } }

.bt-sidebar-form {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--thb-amber-500);
}
.bt-sidebar-form-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--thb-cream-dark);
}
.bt-sidebar-form-header > i {
  font-size: 1.5rem;
  color: var(--thb-amber-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.bt-sidebar-form-header h3 { font-size: 1.125rem; color: var(--thb-primary); margin: 0 0 0.2rem; }
.bt-sidebar-form-header p { font-size: 0.8rem; color: var(--thb-gray-500); margin: 0; }
.bt-sidebar-form-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--thb-cream-dark);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--thb-gray-500);
}
.bt-sidebar-form-footer i { color: var(--thb-amber-500); margin-right: 0.25rem; }

.bt-sidebar-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.bt-sidebar-img { width: 100%; display: block; object-fit: cover; max-height: 320px; }
.bt-sidebar-img-placeholder {
  background: var(--thb-green-800);
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.bt-sidebar-img-placeholder i { font-size: 3rem; }
.bt-sidebar-img-placeholder p { font-size: 0.875rem; margin: 0; }

.bt-sidebar-stats {
  background: var(--thb-green-800);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  text-align: center;
}
.bt-stat-n { display: block; font-family: var(--font-serif); font-size: 1.375rem; font-weight: 700; color: var(--thb-amber-300); }
.bt-stat-l { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.2rem; }

.bt-sidebar-callbox {
  background: var(--thb-white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.bt-sidebar-callbox p { font-size: 0.875rem; color: var(--thb-gray-500); margin-bottom: 0.75rem; }
.bt-sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--thb-green-700);
  transition: color var(--t-fast);
}
.bt-sidebar-phone:hover { color: var(--thb-amber-600); }

/* Main content */
.bt-main { display: flex; flex-direction: column; gap: 0; }
.bt-editor-content {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.bt-editor-content:empty { display: none; }
.bt-editor-content h2 { color: var(--thb-primary); margin-bottom: 1rem; }
.bt-editor-content p { color: var(--thb-gray-600); line-height: 1.8; margin-bottom: 1rem; }

.bt-section-block {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.bt-section-block--dark {
  background: var(--thb-green-800);
}
.bt-section-heading { font-size: clamp(1.25rem, 2.5vw, 1.75rem); color: var(--thb-primary); margin-bottom: 0.75rem; }
.bt-section-heading--light { color: var(--thb-white); }
.bt-section-intro { color: var(--thb-gray-500); font-size: 0.9375rem; margin-bottom: 1.75rem; }

/* Services list */
.bt-services-list { display: flex; flex-direction: column; gap: 0; }
.bt-service-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--thb-cream-dark);
  position: relative;
}
.bt-service-row:last-child { border-bottom: none; }
.bt-service-icon {
  width: 44px; height: 44px;
  background: var(--thb-green-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--thb-green-700);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.bt-service-text h4 { font-size: 1rem; color: var(--thb-primary); margin-bottom: 0.3rem; }
.bt-service-text p { font-size: 0.875rem; color: var(--thb-gray-500); margin: 0; line-height: 1.65; }
.bt-service-badge {
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--thb-amber-600);
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.25);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* Timeline */
.bt-timeline { display: flex; flex-direction: column; gap: 0; }
.bt-timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bt-timeline-item:last-child { border-bottom: none; }
.bt-timeline-num {
  width: 48px; height: 48px;
  background: rgba(201,151,58,0.15);
  border: 2px solid var(--thb-amber-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--thb-amber-300);
  flex-shrink: 0;
}
.bt-timeline-body h4 { font-size: 1rem; color: var(--thb-white); margin-bottom: 0.35rem; }
.bt-timeline-body p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.65; }

/* Bottom CTA */
.bt-bottom-cta { text-align: center; }
.bt-cta-icon { font-size: 2.5rem; color: var(--thb-amber-500); margin-bottom: 1rem; display: block; }
.bt-bottom-cta h2 { color: var(--thb-primary); margin-bottom: 0.875rem; font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.bt-bottom-cta > p { color: var(--thb-gray-600); margin-bottom: 1.75rem; font-size: 0.9375rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.bt-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
.bt-cta-note { font-size: 0.8125rem; color: var(--thb-gray-400); }
.bt-cta-note i { color: var(--thb-amber-500); margin-right: 0.25rem; }

/* =============================================
   IRS AUDIT — Hero
   ============================================= */
.audit-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--thb-green-900);
  background-size: cover;
  background-position: center;
  padding: 5rem 0 4rem;
}
.audit-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,18,12,0.95) 0%, rgba(26,58,42,0.85) 60%, rgba(26,58,42,0.7) 100%);
}
.audit-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.audit-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.3);
  color: var(--thb-amber-300);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.25rem;
}
.audit-hero-inner h1 {
  color: var(--thb-white);
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.audit-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 600px;
}
.audit-hero-urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.audit-urgency-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-full);
}
.audit-urgency-item i { color: var(--thb-amber-400); }
.audit-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* =============================================
   IRS AUDIT — Stat ribbon
   ============================================= */
.audit-stat-ribbon {
  background: var(--thb-amber-500);
  padding: 1.25rem 0;
}
.audit-stat-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.audit-ribbon-stat { text-align: center; }
.audit-ribbon-stat span { display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--thb-green-900); }
.audit-ribbon-stat small { font-size: 0.75rem; color: rgba(26,58,42,0.7); text-transform: uppercase; letter-spacing: 0.06em; }
.audit-ribbon-div { width: 1px; height: 40px; background: rgba(26,58,42,0.2); }
@media (max-width: 600px) { .audit-ribbon-div { display: none; } }

/* =============================================
   IRS AUDIT — Editor content
   ============================================= */
.audit-editor-content { background: var(--thb-white); }
.audit-editor-inner {
  padding: 3rem 0;
  max-width: 800px;
}
.audit-editor-content:empty,
.audit-editor-inner:empty { display: none; }
.audit-editor-inner h2 { color: var(--thb-primary); margin-bottom: 1rem; }
.audit-editor-inner p { color: var(--thb-gray-600); line-height: 1.8; }

/* =============================================
   IRS AUDIT — Alternating rows
   ============================================= */
.audit-row { padding: 5rem 0; }
.audit-row--light { background: var(--thb-white); }
.audit-row--dark { background: var(--thb-green-800); }
.audit-row-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .audit-row-inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .audit-row--dark .audit-row-inner { direction: rtl; }
  .audit-row--dark .audit-row-inner > * { direction: ltr; }
}

.audit-row-img { position: relative; }
.audit-row-img img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); object-fit: cover; max-height: 440px; display: block; }
.audit-img-placeholder {
  background: var(--thb-cream);
  border-radius: var(--r-xl);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--thb-gray-400);
}
.audit-img-placeholder--dark { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.3); }
.audit-img-placeholder i { font-size: 3rem; }
.audit-img-placeholder span { font-size: 0.875rem; }
.audit-row-img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--thb-green-800);
  color: var(--thb-amber-300);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.audit-quote-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.audit-quote-card i { color: var(--thb-amber-400); font-size: 1.25rem; margin-bottom: 0.625rem; display: block; }
.audit-quote-card p { color: rgba(255,255,255,0.75); font-family: var(--font-serif); font-style: italic; font-size: 0.9375rem; margin: 0; line-height: 1.7; }

.audit-row-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--thb-amber-600);
  margin-bottom: 0.75rem;
  display: block;
}
.audit-row-label--light { color: var(--thb-amber-300); }
.audit-row-text h2 { font-size: clamp(1.375rem, 3vw, 2.125rem); color: var(--thb-primary); margin-bottom: 1rem; line-height: 1.2; }
.audit-row--dark .audit-row-text h2 { color: var(--thb-white); }
.audit-row-lead { font-size: 1.0625rem; color: var(--thb-gray-600); line-height: 1.75; margin-bottom: 1rem; }
.audit-row--dark .audit-row-lead,
.audit-row--dark .audit-row-text p { color: rgba(255,255,255,0.7); }

/* Compare columns */
.audit-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
@media (max-width: 640px) { .audit-compare { grid-template-columns: 1fr; } }
.audit-compare-col { border-radius: var(--r-lg); padding: 1.25rem; }
.audit-compare-bad { background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.15); }
.audit-compare-good { background: rgba(26,58,42,0.06); border: 1px solid rgba(26,58,42,0.15); }
.audit-compare-col h5 { font-size: 0.875rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.audit-compare-bad h5 { color: #dc2626; }
.audit-compare-bad h5 i { color: #dc2626; }
.audit-compare-good h5 { color: var(--thb-green-700); }
.audit-compare-good h5 i { color: var(--thb-green-700); }
.audit-compare-col ul { padding-left: 0; list-style: none; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.audit-compare-col ul li { font-size: 0.8125rem; color: var(--thb-gray-600); padding-left: 0.875rem; position: relative; }
.audit-compare-col ul li::before { content: ""; position: absolute; left: 0; top: 0.45em; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* Process steps (audit) */
.audit-process-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.audit-process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.audit-ps-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--thb-amber-400);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.audit-process-step h4 { font-size: 1rem; color: var(--thb-white); margin-bottom: 0.35rem; }
.audit-process-step p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.65; }

/* =============================================
   IRS AUDIT — Types grid
   ============================================= */
.audit-types-section { background: var(--thb-cream); padding: 5rem 0; }
.audit-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--thb-amber-600);
  margin-bottom: 0.75rem;
  display: block;
}
.audit-section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--thb-primary); margin-bottom: 2.5rem; }
.audit-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .audit-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .audit-types-grid { grid-template-columns: repeat(3, 1fr); } }
.audit-type-card {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--thb-cream-dark);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.audit-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.audit-type-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--thb-cream-dark);
  line-height: 1;
  margin-bottom: 0.875rem;
}
.audit-type-card h3 { font-size: 1.0625rem; color: var(--thb-primary); margin-bottom: 0.5rem; }
.audit-type-card p { font-size: 0.875rem; color: var(--thb-gray-500); line-height: 1.7; margin: 0; }

/* =============================================
   IRS AUDIT — FAQ + Form
   ============================================= */
.audit-faq-form-wrap { background: var(--thb-white); padding: 5rem 0; }
.audit-faq-form-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .audit-faq-form-inner { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start; } }

.audit-faq-col h2 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); color: var(--thb-primary); margin-bottom: 1.75rem; }
.audit-faq-list { display: flex; flex-direction: column; gap: 0; }
.audit-faq-item {
  border-bottom: 1px solid var(--thb-cream-dark);
}
.audit-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.125rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--thb-gray-700);
  list-style: none;
  transition: color var(--t-fast);
}
.audit-faq-item summary::-webkit-details-marker { display: none; }
.audit-faq-item summary i { flex-shrink: 0; font-size: 0.75rem; color: var(--thb-amber-500); transition: transform var(--t-base); }
.audit-faq-item[open] summary { color: var(--thb-green-700); }
.audit-faq-item[open] summary i { transform: rotate(180deg); }
.audit-faq-item p { font-size: 0.9rem; color: var(--thb-gray-500); line-height: 1.75; padding-bottom: 1.125rem; margin: 0; }

.audit-form-card {
  background: var(--thb-white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--thb-amber-500);
  position: sticky;
  top: 90px;
}
.audit-form-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--thb-cream-dark);
}
.audit-form-card-top > i { font-size: 1.5rem; color: var(--thb-amber-500); flex-shrink: 0; margin-top: 2px; }
.audit-form-card-top h3 { font-size: 1.125rem; color: var(--thb-primary); margin: 0 0 0.2rem; }
.audit-form-card-top p { font-size: 0.8rem; color: var(--thb-gray-500); margin: 0; }
.audit-form-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--thb-cream-dark);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--thb-gray-500);
}
.audit-form-trust i { color: var(--thb-amber-500); margin-right: 0.25rem; }
.audit-form-phone { margin-top: 1.25rem; text-align: center; }
.audit-form-phone p { font-size: 0.875rem; color: var(--thb-gray-400); margin-bottom: 0.625rem; }

/* =============================================
   IRS AUDIT — Bottom strip
   ============================================= */
.audit-bottom-strip {
  background: var(--thb-green-800);
  padding: 4rem 0;
  text-align: center;
}
.audit-bottom-strip-inner { max-width: 680px; }
.audit-bottom-strip h2 { color: var(--thb-white); font-size: clamp(1.375rem, 3vw, 2rem); margin-bottom: 1rem; }
.audit-bottom-strip p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; margin-bottom: 2rem; line-height: 1.75; }

/* end of Tax Help Basics stylesheet */
