/* ============================================================
   4K Accounting Services — Shared Stylesheet
   Design: Deep Navy + Warm Gold | Lora + Inter
   ============================================================ */

/* 1. RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 2. CSS VARIABLES */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #162840;
  --navy-light:  #1E3A52;
  --gold:        #C4922A;
  --gold-light:  #F0D9A8;
  --gold-pale:   #FBF4E6;
  --cream:       #FAFAF8;
  --card:        #FFFEFA;
  --ink:         #1A1A1A;
  --muted:       #6B7280;
  --divider:     #E2DDD6;
  --shadow-sm:   0 2px 12px rgba(13,27,42,0.07);
  --shadow-md:   0 8px 32px rgba(13,27,42,0.12);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.16);
  --green:       #2D6A4F;
  --radius:      12px;
  --radius-lg:   20px;
  --nav-h:       72px;
  --container:   1120px;
}

/* 3. TYPOGRAPHY */
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; overflow-x: clip;
  width: 100%;
}

h1, h2, h3, .serif {
  font-family: 'Lora', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1  { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2  { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.25rem; }
h3  { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4  { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p   { color: #3a3632; line-height: 1.78; }
em  { font-style: italic; color: var(--gold); }

/* 4. UTILITIES */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container--sm { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mb-0  { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-label--light { color: var(--gold-light); }
.section-label--muted { color: var(--muted); }

/* 5. GRAIN OVERLAY */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* 6. NAVIGATION */

/* Skip-to-content link (visible on keyboard focus) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: white !important;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}
.skip-link:focus {
  left: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Utility bar (above main nav) */
.nav-utility {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 32px;
  display: flex;
  align-items: center;
}
.nav-utility__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}
.nav-utility a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-utility a:hover { color: white; }
.nav-utility a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
.nav-utility__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-light) !important;
}
.nav-utility__phone:hover { color: var(--gold) !important; }

/* Main nav */
.nav {
  position: fixed;
  top: 32px; left: 0; right: 0; /* sits below utility bar */
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--navy);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255,255,250,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--divider), 0 4px 20px rgba(13,27,42,0.06);
}

.nav.nav--dark {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav.nav--dark .nav__links > li > a,
.nav.nav--dark .nav__dropdown-trigger { color: rgba(255,255,255,0.78); }
.nav.nav--dark .nav__links > li > a:hover,
.nav.nav--dark .nav__dropdown-trigger:hover { color: white; }

.nav.nav--light {
  background: rgba(255,255,250,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--divider), 0 4px 20px rgba(13,27,42,0.04);
}
.nav.nav--light .nav__links > li > a,
.nav.nav--light .nav__dropdown-trigger { color: var(--ink); }
.nav.nav--light .nav__links > li > a:hover,
.nav.nav--light .nav__dropdown-trigger:hover { color: var(--gold); }

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 44px; width: auto; display: block; }
.nav__logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 6px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}

.nav__links > li > a,
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  letter-spacing: 0.005em;
  background: transparent;
  transition: color 0.2s, background 0.2s;
}

.nav__links > li > a:focus-visible,
.nav__dropdown-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Active page indicator */
.nav__links > li > a[aria-current="page"],
.nav__dropdown-trigger[aria-current="page"] {
  color: var(--gold) !important;
  box-shadow: inset 0 -2px 0 var(--gold);
  border-radius: 0;
}
.nav.scrolled .nav__links > li > a[aria-current="page"],
.nav.scrolled .nav__dropdown-trigger[aria-current="page"] { color: var(--gold) !important; }

/* CTA — Book Free Call */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: #d9a230; transform: translateY(-1px); }
.nav__cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* Dropdowns */
.nav__dropdown { position: relative; }
.nav__chevron { transition: transform 0.2s; flex-shrink: 0; }
.nav__dropdown-trigger[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13,27,42,0.16);
  padding: 0.5rem;
  min-width: 240px;
  z-index: 100;
  flex-direction: column;
}

.nav__dropdown.is-open .nav__dropdown-menu { display: flex; }
.nav__dropdown:focus-within .nav__dropdown-menu { display: flex; }

.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--navy) !important;
  font-size: 0.88rem;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown-menu a:hover,
.nav__dropdown-menu a:focus-visible {
  background: var(--gold-pale);
  color: var(--gold) !important;
  outline: none;
}
.nav__dropdown-menu a:focus-visible {
  box-shadow: inset 0 0 0 2px var(--gold);
}

.nav__dropdown-header {
  color: var(--muted) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600 !important;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 0.25rem;
  padding-bottom: 0.55rem !important;
}

.nav__dropdown-featured {
  background: var(--gold-pale);
  font-weight: 600 !important;
}
.nav__dropdown-featured:hover { background: var(--gold-light) !important; }

.nav__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Hamburger (mobile only) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}
.nav__hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.nav--dark .nav__hamburger span { background: white; }

/* Mobile overlay */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 2000;
  flex-direction: column;
  padding-top: calc(env(safe-area-inset-top, 0px) + 1rem);
}
.nav__mobile.open { display: flex; }

.nav__mobile-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mobile .close-btn {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 1rem);
  right: 1.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.5rem;
  padding: 0.75rem;
  line-height: 1;
  border-radius: 6px;
  z-index: 1;
}
.nav__mobile .close-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav__mobile-cta {
  display: block;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600;
  text-align: center;
  padding: 1rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.nav__mobile-link,
.nav__mobile-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 400;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  text-align: left;
}
.nav__mobile-link:focus-visible,
.nav__mobile-accordion:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav__mobile-accordion[aria-expanded="true"] .nav__chevron {
  transform: rotate(180deg);
}
.nav__mobile-accordion .nav__chevron {
  transition: transform 0.2s;
  color: rgba(255,255,255,0.6);
}

.nav__mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0 0.75rem 1rem;
  margin-bottom: 0.25rem;
}
.nav__mobile-submenu[hidden] { display: none; }

.nav__mobile-submenu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  padding: 0.65rem 0.25rem;
}
.nav__mobile-submenu a:hover,
.nav__mobile-submenu a:focus-visible {
  color: var(--gold);
  outline: none;
}
.nav__mobile-submenu a:focus-visible { text-decoration: underline; }

.nav__mobile-featured {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.nav__mobile-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.nav__mobile-utility a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.nav__mobile-utility a:hover { color: white; }

.nav__mobile-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.9rem 1.25rem;
  border-radius: 100px;
  margin-top: 1.5rem;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.nav__mobile-phone-cta:hover,
.nav__mobile-phone-cta:focus-visible {
  background: var(--gold);
  color: var(--navy);
  outline: none;
}
.nav__mobile-phone-cta svg { flex-shrink: 0; }

/* Hide utility bar + adjust nav at mobile breakpoint */
@media (max-width: 880px) {
  .nav-utility { display: none; }
  .nav { top: 0; }
  .nav__hamburger { display: flex; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; padding: 0 1.25rem; }
}

/* Reduce hero/page-hero top padding overlap with new utility bar.
   .hero (homepage, full-viewport) and .page-hero already account for var(--nav-h);
   add an extra 32px so content clears the utility bar on desktop. */
@media (min-width: 881px) {
  .page-hero { padding-top: calc(var(--nav-h) + 32px + 4rem); }
}

/* 7. FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer collapses to two columns on tablet before stacking on mobile */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 280px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 4px 10px;
}

.footer__heading {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__links li + li { margin-top: 0.65rem; }

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__links a:hover { color: white; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.footer__contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__contact-item a:hover { color: white; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }
.footer__bottom a[href*="bigfox"]:hover { color: #FE701F; }

/* 8. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: #d9a230;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,146,42,0.35);
}

.btn--secondary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.btn--secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.3);
}

.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--divider);
}
.btn--ghost-dark:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 0.95rem; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* 9. PAGE HERO (shared short version) */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .section-label { color: var(--gold-light); }

.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; }

/* 10. SECTION DIVIDER */
.section-divider { height: 1px; background: var(--divider); }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  background: var(--navy) url('../assets/4kHero.webp') center 35% / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 0 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13,27,42,0.93) 0%, rgba(13,27,42,0.93) 45%, rgba(13,27,42,0.72) 100%),
    linear-gradient(to top, rgba(13,27,42,0.6) 0%, transparent 35%);
  z-index: 0;
}

.hero__bg-glow-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero__bg-glow-2 {
  position: absolute;
  bottom: -120px; left: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__eyebrow-badge {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: rgba(196,146,42,0.12);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(196,146,42,0.25);
}

.hero__eyebrow-line {
  height: 1px;
  width: 40px;
  background: rgba(196,146,42,0.4);
}

.hero h1 {
  color: white;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--gold); }

.hero__subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__proof-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.hero__proof-item svg { width: 14px; height: 14px; color: var(--gold); }

.hero__visual-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 380px;
}

.bento-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: border-color 0.2s, background 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bento-card:hover {
  border-color: rgba(196,146,42,0.35);
  background: rgba(255,255,255,0.07);
}

.bento-card--highlight {
  background: rgba(196,146,42,0.1);
  border-color: rgba(196,146,42,0.3);
}

.bento-card--highlight:hover {
  background: rgba(196,146,42,0.14);
  border-color: rgba(196,146,42,0.5);
}

.bento-card--cpa {
  background: rgba(45,106,79,0.1);
  border-color: rgba(45,106,79,0.25);
}

.bento-card--cpa:hover {
  background: rgba(45,106,79,0.15);
  border-color: rgba(45,106,79,0.4);
}

.bento-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.bento-card--cpa .bento-icon { color: #4CAF8A; }

.bento-num {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  color: white;
  line-height: 1;
  font-weight: 700;
}

.bento-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.hero__floating-stat {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: rgba(255,255,250,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  text-align: center;
}

.hero__floating-stat .stat-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}

.hero__floating-stat .stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--card);
  border-bottom: 1px solid var(--divider);
  padding: 2rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}

.trust-bar__item + .trust-bar__item {
  border-left: 1px solid var(--divider);
}

.trust-bar__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.trust-bar__icon svg { width: 20px; height: 20px; color: var(--gold); }

.trust-bar__num {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}

.trust-bar__label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   TRUST STATS BAR (Service pages — centered value + label design)
   ============================================================ */
.trust-stats {
  background: var(--card);
  border-top: 1px solid rgba(196,146,42,0.2);
  border-bottom: 1px solid rgba(196,146,42,0.2);
  padding: 2.25rem 0;
}
.trust-stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 2rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.trust-stats__item:hover { transform: translateY(-2px); }
.trust-stats__value {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-stats__star { font-size: 0.75em; color: var(--gold); }
.trust-stats__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
  white-space: nowrap;
}
.trust-stats__sep {
  width: 1px;
  height: 3rem;
  background: rgba(196,146,42,0.25);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-stats__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .trust-stats__item {
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(196,146,42,0.15);
    border-bottom: 1px solid rgba(196,146,42,0.15);
  }
  .trust-stats__item:nth-child(2n+1) { border-right: 1px solid rgba(196,146,42,0.15); }
  .trust-stats__item:nth-child(2n)   { border-right: none; }
  .trust-stats__item:nth-child(3), .trust-stats__item:nth-child(4) { border-bottom: none; }
  .trust-stats__sep { display: none; }
  .trust-stats__label { white-space: normal; }
}

/* ============================================================
   SERVICES SECTION (Homepage)
   ============================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--cream);
}

.services-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.services-section__header p { color: var(--muted); margin-top: 0.75rem; }

.services-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.services-col__label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--divider);
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--divider);
  margin-bottom: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
}

a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.service-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg { width: 20px; height: 20px; color: var(--gold); }

.service-card__body { flex: 1; }
.service-card__name { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.service-card__desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

.service-card__arrow {
  flex-shrink: 0;
  color: var(--divider);
  transition: color 0.2s, transform 0.2s;
  margin-top: 2px;
}
.service-card:hover .service-card__arrow { color: var(--gold); transform: translateX(3px); }

/* ============================================================
   WHY 4K
   ============================================================ */
.why-section {
  background: url('../assets/different-CPA-bg.webp') center center / cover no-repeat;
  position: relative;
  padding: 6rem 0;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
  pointer-events: none;
}

.why-section .container { position: relative; z-index: 1; }

.why-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.why-section__header h2 { color: white; }
.why-section__header p { color: rgba(255,255,255,0.55); margin-top: 0.75rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(13,27,42,0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}

.why-card:hover {
  background: rgba(13,27,42,0.82);
  border-color: rgba(196,146,42,0.45);
}

.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(196,146,42,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

.why-card__icon svg { width: 24px; height: 24px; color: var(--gold); }

.why-card h3 { color: white; font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.82); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS (PROCESS)
   ============================================================ */
.process-section {
  background: var(--cream);
  padding: 6rem 0;
}

.process-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 2rem);
  right: calc(16.66% + 2rem);
  height: 1px;
  border-top: 2px dashed var(--divider);
}

.process-step {
  padding: 0 2rem;
  text-align: center;
  position: relative;
}

.process-step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}

.process-step__num-text {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.process-step:hover .process-step__num {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.process-step h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem; }
.process-step p { font-size: 0.875rem; color: var(--muted); max-width: 240px; margin: 0 auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--navy);
  padding: 6rem 0;
}

.testimonials-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.testimonials-section__header h2 { color: white; }
.testimonials-section__header p { color: rgba(255,255,255,0.55); margin-top: 0.75rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(196,146,42,0.3);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(196,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name { font-size: 0.85rem; font-weight: 600; color: white; }
.testimonial-card__type { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.testimonials-cta {
  text-align: center;
}

.testimonials-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.2s;
}

.testimonials-link:hover { gap: 0.75rem; }
.testimonials-link svg { width: 16px; height: 16px; }

/* Light variant — same structure on cream/light backgrounds (service pages) */
.testimonials-section--light { background: var(--cream); }
.testimonials-section--light .testimonials-section__header h2 { color: var(--navy); }
.testimonials-section--light .testimonials-section__header p { color: var(--muted); }
.testimonials-section--light .testimonial-card {
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
}
.testimonials-section--light .testimonial-card:hover {
  background: var(--card);
  border-color: var(--gold-light);
}
.testimonials-section--light .testimonial-card__quote { color: var(--ink); }
.testimonials-section--light .testimonial-card__author { border-top-color: rgba(0,0,0,0.08); }
.testimonials-section--light .testimonial-card__avatar { background: var(--gold-pale); }
.testimonials-section--light .testimonial-card__name { color: var(--navy); }
.testimonials-section--light .testimonial-card__type { color: var(--muted); }

/* ============================================================
   MEET MINDY
   ============================================================ */
.mindy-section {
  background: var(--cream);
  padding: 6rem 0;
}

.mindy-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 5rem;
  align-items: center;
}

.mindy-photo-wrap {
  position: relative;
}

.mindy-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
}

.mindy-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mindy-cert-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--card);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--divider);
}

.mindy-cert-badge__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.mindy-cert-badge__value {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--navy);
}

.mindy-content .section-label { margin-bottom: 0.5rem; }
.mindy-content h2 { margin-bottom: 1.25rem; }
.mindy-content p { margin-bottom: 1rem; color: var(--muted); }

.mindy-creds {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.75rem 0 2rem;
}

.mindy-cred-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--ink);
}

.mindy-cred-item svg {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   TECH PARTNERS
   ============================================================ */
.partners-section {
  background: var(--card);
  padding: 3rem 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.partners-section__label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.75rem;
}

.partners-track-outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0.5rem 0;
  animation: partners-marquee 28s linear infinite;
}

.partners-track-outer:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo,
.partner-logo-img {
  margin-right: 4rem;
  flex-shrink: 0;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgb(176, 171, 165);
  letter-spacing: -0.02em;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.partner-logo:hover {
  color: var(--navy);
  background: var(--card);
}

.partner-logo-img {
  height: 44px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  display: block;
}

.partner-logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track { animation: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--cream);
  padding: 6rem 0;
}

.faq-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-item:first-child { border-top: 1px solid var(--divider); }

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: color 0.2s;
  width: 100%;
  text-align: left;
}

.faq-trigger:hover { color: var(--gold); }

.faq-trigger__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--divider);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.3s;
}

.faq-trigger__icon svg { width: 14px; height: 14px; color: var(--navy); }

.faq-item.open .faq-trigger__icon {
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-item.open .faq-trigger__icon svg { color: var(--navy); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body p {
  padding-bottom: 1.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(196,146,42,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner .section-label { margin-bottom: 0.5rem; }
.cta-banner h2 { color: white; margin-bottom: 1rem; }
.cta-banner h2 em { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.55); margin-bottom: 2.5rem; font-size: 1rem; }

.cta-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICES PAGE — FULL CARDS
   ============================================================ */
.services-full-grid {
  padding: 5rem 0;
  background: var(--cream);
}

.services-full-col-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-full-col-header__bar {
  height: 3px;
  flex: 1;
  background: var(--divider);
  border-radius: 2px;
}

.services-full-col-header__bar.gold { background: var(--gold); }

.service-full-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-full-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-full-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-full-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-full-card__icon svg { width: 24px; height: 24px; color: var(--gold); }

.service-full-card__name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.service-full-card__tagline { font-size: 0.82rem; color: var(--muted); }

.service-full-card__desc { font-size: 0.9rem; color: #4a4540; line-height: 1.75; margin-bottom: 1rem; }

.service-full-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.service-full-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--muted);
}

.service-full-card__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.about-story {
  padding: 6rem 0;
  background: var(--cream);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4rem;
  align-items: start;
}

.timeline {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.timeline__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 19px;
  bottom: -2rem;
  width: 2px;
  background: var(--divider);
}

.timeline__dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline__dot svg { width: 16px; height: 16px; color: var(--gold); }

.timeline__year { font-size: 0.75rem; font-weight: 700; color: var(--gold); margin-bottom: 0.15rem; }
.timeline__event { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

.about-creds {
  padding: 5rem 0;
  background: var(--navy);
}

.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cred-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.cred-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(196,146,42,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}

.cred-card__icon svg { width: 26px; height: 26px; color: var(--gold); }

.cred-card h4 { color: white; margin-bottom: 0.5rem; font-size: 1rem; }
.cred-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.about-values {
  padding: 6rem 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--divider);
  transition: box-shadow 0.2s, transform 0.2s;
}

.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.value-card__num {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  color: rgba(196,146,42,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

.about-personal {
  padding: 5rem 0;
  background: var(--navy);
}

.about-personal h2 { color: white; }
.about-personal p { color: rgba(255,255,255,0.6); }

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.hobby-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.hobby-item:hover { background: rgba(255,255,255,0.09); }

.hobby-item__icon { font-size: 2rem; margin-bottom: 0.5rem; }
.hobby-item__name { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-section {
  padding: 5rem 0 6rem;
  background: var(--cream);
}

.pricing-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.pricing-note {
  display: inline-block;
  background: rgba(196,146,42,0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(196,146,42,0.2);
  margin-bottom: 1rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pricing-card--featured .pricing-card__tier { color: var(--gold); }

.pricing-card__name { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.pricing-card--featured .pricing-card__name { color: white; }

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.price-amount {
  font-family: 'Lora', serif;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
}

.pricing-card--featured .price-amount { color: white; }

.price-period {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-card--featured .price-period { color: rgba(255,255,255,0.5); }

.pricing-card__tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--divider);
}

.pricing-card--featured .pricing-card__tagline {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.1);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #3a3632;
}

.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); }

.pricing-features li svg {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card--featured .pricing-features li svg { color: var(--gold); }

.pricing-card__cta { margin-top: auto; }

.pricing-card__cta .btn { width: 100%; justify-content: center; }

.pricing-card--featured .btn--ghost {
  border-color: rgba(255,255,255,0.3);
  color: white;
}

.pricing-card--featured .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* One-time services */
.onetime-section {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--divider);
  margin-bottom: 3rem;
}

.onetime-section h3 { margin-bottom: 0.5rem; color: var(--navy); }
.onetime-section > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.75rem; }

.onetime-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.onetime-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--divider);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.onetime-item:hover {
  border-color: var(--gold);
  background: var(--card);
  transform: translateY(-1px);
}

.onetime-item__name { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.onetime-item__price { font-size: 0.82rem; color: var(--gold); font-weight: 600; white-space: nowrap; }

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 560px;
  margin: 2rem auto 0;
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual-col { display: none; }
  .hero h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
  .mindy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mindy-photo-wrap { max-width: 380px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-story__inner { grid-template-columns: 1fr; }
  .timeline { position: static; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
  .hero__inner { padding: 3rem 0; }
  .hero__proof-row { display: none; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item { min-width: 0; }
  .trust-bar__item:nth-child(2n) { border-left: 1px solid var(--divider); }
  .trust-bar__item:nth-child(3), .trust-bar__item:nth-child(4) { border-top: 1px solid var(--divider); }
  .trust-bar__item:nth-child(3) { border-left: none; }
  .trust-bar__num { font-size: clamp(1.1rem, 4vw, 1.8rem); }
  .services-cols { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step { padding: 1.5rem; text-align: left; }
  .process-step__num { margin: 0 0 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card--featured { order: -1; }
  .onetime-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hobbies-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cols { grid-template-columns: 1fr; }
}

/* "Areas We Serve" city cards — image background + navy overlay for legibility.
   The per-card image is set INLINE as `background-image:url('assets/areas/{slug}.webp')`
   (NOT via a custom property): a url() inside a CSS var resolves relative to the
   stylesheet, but an inline background-image resolves relative to the page, so it
   works whether served from the site root, a /site/ preview subpath, or file://.
   Reused on index.html (base) and service-areas.html + city pages (.area-card--lg). */
.area-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 1.75rem;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, .72) 0%, rgba(13, 27, 42, .8) 55%, rgba(13, 27, 42, .88) 100%);
  transition: background .3s ease;
}
.area-card > * { position: relative; z-index: 1; }
.area-card__title { font-weight: 600; color: #fff; margin-bottom: .35rem; text-shadow: 0 1px 6px rgba(13, 27, 42, .55); }
.area-card__desc { color: rgba(255, 255, 255, .9); font-size: .875rem; line-height: 1.5; margin: 0; text-shadow: 0 1px 5px rgba(13, 27, 42, .55); }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13, 27, 42, .28); }
.area-card:hover::before {
  background: linear-gradient(180deg, rgba(13, 27, 42, .78) 0%, rgba(13, 27, 42, .85) 55%, rgba(13, 27, 42, .92) 100%);
}
/* Larger variant for service-areas.html + city pages (was 2rem pad / 16px radius / 1.1rem title) */
.area-card--lg { border-radius: 16px; padding: 2rem; min-height: 188px; }
.area-card--lg .area-card__title { font-size: 1.1rem; }
.area-card--lg .area-card__desc { font-size: .9rem; line-height: 1.6; }

/* Service-page inline grids (.responsive-*): columns are set inline, so the
   collapse rules below need !important to override them on smaller screens. */
@media (max-width: 900px) {
  /* 3-up card grids → 2-up on tablets / large phones */
  .responsive-3col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  /* 2-up content + the pricing-callout CTA → single column */
  .responsive-2col,
  .responsive-2col-cta { grid-template-columns: 1fr !important; gap: 2rem !important; }
}
@media (max-width: 600px) {
  /* 3-up card grids → single column on phones */
  .responsive-3col { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .hero { min-height: auto; padding-top: var(--nav-h); }
  .hero__inner { padding: 2.5rem 0; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .pricing-cards { gap: 1rem; }
  .mindy-cert-badge { right: 0; bottom: -1rem; }
}

/* ============================================================
   ANIMATIONS (initial states — GSAP sets final states)
   ============================================================ */
.gsap-fade { opacity: 0; }
.gsap-up   { opacity: 0; transform: translateY(30px); }

@media (prefers-reduced-motion: reduce) {
  .gsap-fade, .gsap-up { opacity: 1; transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Product Card + DIY Promo (Bookkeeping Tracker) */
@media (max-width: 760px) {
  .product-card,
  .product-promo {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .product-card { padding: 1.5rem !important; }
  .product-card h2,
  .product-promo h2 { font-size: 1.5rem !important; }
}

/* ── BREADCRUMB ── */
.breadcrumb { padding: calc(32px + var(--nav-h) + 0.7rem) 0 0.7rem; background: var(--cream); border-bottom: 1px solid var(--divider); }
.breadcrumb + .page-hero,
.breadcrumb + .about-hero-wrap { padding-top: 1.75rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; list-style: none; padding: 0; margin: 0; font-size: 0.775rem; color: var(--muted); gap: 0; }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: "/"; margin: 0 0.45rem; color: rgba(0,0,0,0.28); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.18s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 500; }
/* Seamlessly merge into navy page-hero on the 18 service/content pages */
.breadcrumb:has(+ .page-hero) { background: var(--navy); border-bottom: none; }
.breadcrumb:has(+ .page-hero) + .page-hero { padding-top: 1.25rem; }
.breadcrumb:has(+ .page-hero) ol { color: rgba(255,255,255,0.45); }
.breadcrumb:has(+ .page-hero) li + li::before { color: rgba(255,255,255,0.22); }
.breadcrumb:has(+ .page-hero) a { color: rgba(255,255,255,0.45); }
.breadcrumb:has(+ .page-hero) a:hover { color: var(--gold-light); }
.breadcrumb:has(+ .page-hero) [aria-current="page"] { color: rgba(255,255,255,0.88); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateY(8px);
  z-index: 900;
  cursor: pointer;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--navy); }
@media (max-width: 600px) { .back-to-top { bottom: 1.25rem; right: 1.25rem; } }
