@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Merriweather:wght@400;500;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --navy: #1d252c;
  --navy-deep: #13191f;
  --blue: #3b4954;
  --blue-soft: #eef3f2;
  --sand: #f8fbfa;
  --sand-deep: #0f6b4b;
  --plum: #0d7d56;
  --mint: #2c8c66;
  --coral: #18724f;
  --text: #1f2529;
  --muted: #5d676d;
  --line: rgba(19, 25, 31, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(19, 25, 31, 0.14);
  --red: #0d7d56;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --heading-h1: clamp(2rem, 3.4vw, 3.9rem);
  --heading-h2: clamp(1.8rem, 2.5vw, 2.65rem);
  --heading-h3: 1.35rem;
}

body,
p,
li,
.section-lead,
.content p,
.footer-copy,
.contact-list,
.card p,
.mini-card p,
.blog-card p,
.resource-card p,
.testimonial-card p,
.stat-label {
  font-family: "Merriweather", Georgia, "Times New Roman", serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.eyebrow,
.hero-copy h1,
.page-hero-copy h1,
.cta-copy h2,
.nav-link,
.utility-link,
.utility-phone,
.btn,
.footer-title,
.blog-card h3,
.resource-card h3,
.card h3,
.mini-card h3,
.contact-card h3,
.stat-value,
.hero-badge,
.submenu-title,
.submenu-link,
.submenu-eyebrow,
.submenu-cta-title,
.testimonial-card strong {
  font-family: "Plus Jakarta Sans", "Trebuchet MS", "Segoe UI", sans-serif !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.06), transparent 28%),
    linear-gradient(180deg, #fcfffe 0%, #ffffff 44%, #f5faf8 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title,
.hero-copy h1,
.page-hero-copy h1,
.cta-copy h2 {
  margin: 0 0 18px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: var(--heading-h1);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: var(--heading-h2);
}

.section-lead,
.hero-copy p,
.page-hero-copy p,
.card p,
.content p,
.footer-copy,
.list,
.stat-label,
.contact-list,
.mini-card p,
.blog-card p {
  /* color: var(--muted); */
  color: #000;
  font-size: 1rem;
  line-height: 1.7;
}

.btn-row,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(19, 25, 31, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, #0c6b4b, #119866);
  color: var(--white);
}

.btn-secondary {
  background: #232a31;
  color: var(--white);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

/* Modern sans (Inter) for the shared header + footer chrome, site-wide —
   overrides the older Trebuchet/Plus Jakarta/Merriweather families in chrome. */
.topbar,
.topbar *,
.site-header,
.site-header *,
.site-footer,
.site-footer * {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif !important;
}

/* ===== Two-tier header: slim utility strip (scrolls away) + sticky main ===== */
/* The mount point must not create a containing block, or `position: sticky`
   below would only stick within the header's own (tiny) height. */
[data-site-header] { display: contents; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(19, 25, 31, 0.07);
  transition: box-shadow 260ms ease, background 260ms ease, border-color 260ms ease;
}
/* persistent-on-scroll: solidify + lift once the utility strip scrolls past */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(19, 25, 31, 0.1);
  box-shadow: 0 10px 34px rgba(13, 40, 30, 0.1);
}

.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 40px;
}
.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.topbar-links .utility-link {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 200ms ease;
}
.topbar-links .utility-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--mint);
  transition: width 200ms ease;
}
.topbar-links .utility-link:hover { color: #fff; }
.topbar-links .utility-link:hover::after { width: 100%; }

.topbar-phone {
  justify-self: end;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.topbar-phone-label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-right: 6px;
}
.topbar-phone:hover { color: var(--mint); }

.nav-wrap,
.footer-grid,
.hero-grid,
.split-grid,
.service-grid,
.value-grid,
.blog-grid,
.testimonial-grid,
.stats-grid,
.contact-grid,
.post-grid,
.resource-grid,
.cta-panel,
.logo-row {
  display: grid;
}

.nav-wrap {
  grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup {
  width: 100%;
}

.brand-logo {
  width: min(100%, 215px);
  height: auto;
}

.brand-lockup {
  text-decoration: none;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-wordmark-next {
  color: #0f8e56;
}

.brand-wordmark-cpa {
  color: var(--navy-deep);
}

.brand-mark {
  display: inline-flex;
  width: 52px;
  height: 52px;
  padding: 8px;
  border-radius: 16px;
  color: #0f8e56;
  background: rgba(15, 142, 86, 0.08);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-footer .brand-logo {
  width: min(100%, 255px);
}

.brand-logo-footer {
  width: min(100%, 255px);
}

.brand-footer {
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-footer .brand-wordmark {
  font-size: 1.7rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  align-items: center;
}

.nav-link,
.main-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--navy-deep);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link::after,
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after,
.nav-link.is-active::after,
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 12px;
  justify-self: end;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  justify-self: end;
}

/* ---- Single-strip header: subtle phone link + CTA on the right ---- */
.nav-actions { align-items: center; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 200ms ease;
}
.header-phone:hover { color: var(--plum); }
.header-phone-icon {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--mint));
  box-shadow: 0 6px 14px rgba(15, 107, 75, 0.28);
}
.header-phone-icon svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }

/* Utility quick links live in the mobile menu + footer, not the desktop bar */
.nav-utility { display: none; }

.nav-item {
  position: relative;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-link-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-trigger {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
  color: inherit;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.8;
  transition: transform 200ms ease, opacity 200ms ease;
}

.submenu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 250px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 107, 75, 0.14);
  box-shadow: 0 30px 64px rgba(13, 40, 30, 0.26);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 60;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.is-hover-open .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Full-bleed mega panel: anchored to the header and spanning the viewport, it
   sits directly below the nav so the pointer can move straight down from ANY
   item onto it — fixing the old centered panel that "kept switching". */
.submenu-mega {
  left: 0;
  right: 0;
  width: auto;
  min-width: 0;
  top: 100%;
  transform: translateY(8px);
  display: block;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(19, 25, 31, 0.07);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 26px 44px rgba(13, 40, 30, 0.12);
}
.has-mega-menu:hover .submenu-mega,
.has-mega-menu:focus-within .submenu-mega,
.has-mega-menu.is-hover-open .submenu-mega {
  transform: translateY(0);
}

.has-submenu:hover > .nav-link-parent .nav-caret,
.has-submenu:focus-within > .nav-link-parent .nav-caret,
.has-submenu.is-hover-open > .nav-link-parent .nav-caret,
.has-submenu.is-open > .nav-link-parent .nav-caret,
.has-submenu.is-active > .nav-link-parent .nav-caret {
  opacity: 1;
}

.mega-inner {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 28px 0 32px;
  display: grid;
  gap: 30px;
  align-items: start;
}
.mega-cols-2 .mega-inner {
  grid-template-columns: 300px minmax(0, 460px);
  justify-content: start;
}
.mega-cols-3 .mega-inner {
  grid-template-columns: 300px minmax(0, 1fr) minmax(0, 1fr);
}

@media (min-width: 1025px) {
  /* Offset parent = the header, so the panel spans full width */
  .nav-item.has-mega-menu { position: static; }
  /* Nav items fill the header height so the hover region reaches the panel */
  .main-nav { align-self: stretch; align-items: stretch; }
  .main-nav .nav-item { display: flex; align-items: center; }
  .main-nav > a { display: inline-flex; align-items: center; }
  /* 1px overlap removes the seam between item and panel */
  .submenu-mega { top: calc(100% - 1px); }
  /* No gap now, so the old hover bridge isn't needed (and would span full width) */
  .has-submenu::after { display: none; }
}

.submenu-group,
.submenu-cta {
  padding: 4px;
}

.submenu-eyebrow,
.submenu-title {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--coral);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.submenu-title {
  margin-bottom: 12px;
}

.submenu-cta {
  padding: 22px;
  border-radius: 0;
  background: linear-gradient(180deg, #0f6b4b, #0d7d56);
  border: 0;
  box-shadow: none;
  min-height: 100%;
}

.submenu-cta .submenu-description,
.submenu-cta .submenu-eyebrow,
.submenu-cta .submenu-cta-title {
  color: var(--white);
}

.submenu-cta .submenu-eyebrow {
  margin-bottom: 12px;
}

.submenu-cta-title {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.7rem, 2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.05;
}

.submenu-description {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.submenu-links {
  display: grid;
  gap: 4px;
}

.submenu-cta-button {
  display: inline-flex;
  width: fit-content;
  min-width: 190px;
  min-height: 50px;
  padding: 0 28px;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--white);
  color: var(--coral) !important;
  box-shadow: none;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.submenu-cta-button:hover {
  background: #f4fbf8;
}

.submenu-group {
  padding: 0;
}

.submenu-link {
  display: block;
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(19, 25, 31, 0.1);
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.submenu-link:hover,
.submenu-link.is-active {
  background: transparent;
  color: var(--plum);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(17, 152, 102, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  overflow: hidden;
  padding: 36px 0 40px;
}

.hero-grid,
.split-grid,
.post-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy {
  padding: 18px 0;
}

.hero-copy h1 {
  /* max-width: 12ch; */
  color: var(--navy-deep);
}

.hero-copy p {
  max-width: 58ch;
  margin: 0 0 28px;
}

.hero-single-column .hero-grid {
  grid-template-columns: 1fr;
}

.hero-single-column {
  position: relative;
  min-height: calc(100svh - 134px);
  display: flex;
  align-items: center;
  padding: 24px 0 28px;
  background:
    linear-gradient(90deg, rgba(191, 215, 200, 0.98) 0%, rgba(180, 206, 189, 0.96) 34%, rgba(169, 197, 179, 0.91) 56%, rgba(156, 185, 166, 0.86) 100%);
}

.hero-single-column::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(210, 229, 217, 0.88) 0%, rgba(194, 220, 203, 0.8) 34%, rgba(176, 205, 187, 0.64) 56%, rgba(159, 189, 171, 0.48) 100%),
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(24, 114, 79, 0.1), transparent 22%);
  pointer-events: none;
  z-index: 1;
}

.hero-video-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 800ms ease;
  filter: saturate(0.9) contrast(0.95) brightness(0.94);
}

.hero-video.is-active {
  opacity: 1;
}

.hero-single-column .hero-grid {
  position: relative;
  z-index: 2;
  /* width: 100%; */
}

/* .hero-single-column .hero-copy h1 {
  max-width: 14ch;
} */

.hero-single-column .hero-copy p {
  max-width: 72ch;
}

.hero-single-column .hero-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0;
  text-align: center;
}

.hero-single-column .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.hero-single-column .hero-badge {
  margin-left: auto;
  margin-right: auto;
}

.hero-single-column .hero-actions {
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(126, 104, 92, 0.12);
  color: var(--plum);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-visual,
.page-hero-visual,
.image-card,
.testimonial-card,
.card,
.mini-card,
.blog-card,
.resource-card,
.contact-card,
.calculator-box,
.cta-panel,
.stat-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  padding: 28px;
  background:
    linear-gradient(155deg, rgba(53, 31, 45, 0.96), rgba(90, 51, 70, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 25%);
  color: var(--white);
}

.hero-visual::before,
.page-hero-visual::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -60px -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  transform: rotate(18deg);
}

.visual-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.visual-card h2,
.visual-card h3 {
  margin: 0 0 12px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.visual-card h2 {
  font-size: var(--heading-h2);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.visual-card h3 {
  font-size: var(--heading-h3);
  line-height: 1.2;
}

.visual-points,
.check-list,
.footer-links,
.contact-list,
.post-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.visual-points li,
.check-list li,
.post-list li {
  position: relative;
  padding-left: 26px;
  margin-top: 10px;
}

.visual-points li::before,
.check-list li::before,
.post-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.stats-strip {
  margin-top: -28px;
  position: relative;
  padding: 0 0 24px;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 18px 0 -20px;
  background:
    radial-gradient(circle at 12% 18%, rgba(126, 104, 92, 0.12), transparent 18%),
    radial-gradient(circle at 84% 72%, rgba(90, 51, 70, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(243, 236, 229, 0.72));
  pointer-events: none;
}

.stats-grid,
.service-grid,
.value-grid,
.blog-grid,
.testimonial-grid,
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stat-card,
.card,
.mini-card,
.blog-card,
.testimonial-card,
.resource-card,
.contact-card,
.calculator-box {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stat-card,
.resource-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.stat-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 0;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(53, 31, 45, 0.08);
}

.stat-card .section-badge-icon,
.stat-card .stat-value,
.stat-card .stat-label {
  position: relative;
  z-index: 1;
}

.stat-card::before,
.resource-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -44px auto;
  width: 150px;
  height: 150px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(126, 104, 92, 0.08), rgba(203, 184, 162, 0.02));
  transform: rotate(22deg);
}

.testimonial-card::before {
  inset: auto auto -22px -18px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(203, 184, 162, 0.18) 0, rgba(203, 184, 162, 0.18) 34%, rgba(203, 184, 162, 0.08) 34%, rgba(203, 184, 162, 0.08) 52%, transparent 52%),
    linear-gradient(135deg, rgba(203, 184, 162, 0.08), rgba(203, 184, 162, 0.01));
  transform: none;
}

.stat-card-media {
  height: 148px;
  margin: -28px -28px 22px;
  border-radius: 28px 28px 26px 26px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.stat-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 27, 0.18), rgba(13, 18, 27, 0.48));
}

.stat-card-accounting .stat-card-media {
  background-image:
    linear-gradient(135deg, rgba(90, 51, 70, 0.14), rgba(90, 51, 70, 0)),
    url("../images/home-accounting-card.jpg");
}

.stat-card-tax .stat-card-media {
  background-image:
    linear-gradient(135deg, rgba(90, 51, 70, 0.14), rgba(90, 51, 70, 0)),
    url("../images/home-tax-card.jpg");
}

.stat-card-cfo .stat-card-media {
  background-image:
    linear-gradient(135deg, rgba(90, 51, 70, 0.14), rgba(90, 51, 70, 0)),
    url("../images/home-cfo-card.jpg");
}

.stat-card-accounting {
  padding-top: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(126, 104, 92, 0.1), transparent 16%),
    linear-gradient(180deg, #fffdfb 0%, #fff7ef 100%);
}

.stat-card-accounting .stat-card-media,
.stat-card-tax .stat-card-media,
.stat-card-cfo .stat-card-media {
  height: auto;
  aspect-ratio: 16 / 7;
  width: auto;
  margin: -28px -28px 26px;
  border-radius: 30px 30px 0 54px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
}

.stat-card-accounting .stat-card-media {
  box-shadow: 0 20px 40px rgba(53, 31, 45, 0.14);
  background-position: center 34%;
}

.stat-card-accounting::before {
  inset: auto auto -52px -24px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  transform: none;
  background: linear-gradient(135deg, rgba(203, 184, 162, 0.16), rgba(203, 184, 162, 0.02));
}

.stat-card-tax {
  background:
    radial-gradient(circle at 78% 24%, rgba(126, 104, 92, 0.1), transparent 16%),
    linear-gradient(180deg, #fffdfb 0%, #fff7ef 100%);
}

.stat-card-tax .stat-card-media {
  background-position: center 38%;
}

.stat-card-tax::before {
  inset: auto auto -52px -24px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  transform: none;
  background: linear-gradient(135deg, rgba(203, 184, 162, 0.16), rgba(203, 184, 162, 0.02));
}

.stat-card-cfo {
  background:
    radial-gradient(circle at 78% 24%, rgba(126, 104, 92, 0.1), transparent 16%),
    linear-gradient(180deg, #fffdfb 0%, #fff7ef 100%);
  border-color: var(--line);
}

.stat-card-cfo .stat-card-media {
  box-shadow: 0 22px 44px rgba(12, 8, 14, 0.28);
  background-position: center 34%;
}

.stat-card-cfo .stat-card-media::after {
  background: linear-gradient(180deg, rgba(13, 18, 27, 0.1), rgba(13, 18, 27, 0.34));
}

.stat-card-cfo .section-badge-icon {
  background: linear-gradient(135deg, rgba(126, 104, 92, 0.16), rgba(203, 184, 162, 0.28));
  color: var(--plum);
}

.stat-card-cfo .stat-value,
.stat-card-cfo .stat-label {
  color: inherit;
}

.stat-card-cfo::before {
  inset: auto auto -52px -24px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  transform: none;
  background: linear-gradient(135deg, rgba(203, 184, 162, 0.16), rgba(203, 184, 162, 0.02));
}

.stat-value {
  margin: 0 0 8px;
  color: var(--plum);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.section-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(126, 104, 92, 0.16), rgba(203, 184, 162, 0.28));
  color: var(--plum);
  position: relative;
  z-index: 1;
}

.section-badge-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.section-badge-icon-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff1e7;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(126, 104, 92, 0.18), rgba(203, 184, 162, 0.24));
  color: var(--plum);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.icon-pill svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.split-grid {
  gap: 56px;
}

.home-services-section {
  position: relative;
}

.home-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(203, 184, 162, 0.08) 0, rgba(203, 184, 162, 0.08) 22%, transparent 22%, transparent 58%, rgba(90, 51, 70, 0.04) 58%, rgba(90, 51, 70, 0.04) 60%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 242, 235, 0.72));
  pointer-events: none;
}

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

.home-services-section .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(90, 51, 70, 0.08);
  border-bottom: 1px solid rgba(90, 51, 70, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}

.service-feature {
  min-height: 100%;
  padding: 40px 28px 36px;
  position: relative;
}

.service-feature + .service-feature {
  border-left: 1px solid rgba(90, 51, 70, 0.1);
}

.home-services-section .service-feature:nth-child(2n + 1) {
  border-left: 0;
}

.home-services-section .service-feature:nth-child(n + 3) {
  border-top: 1px solid rgba(90, 51, 70, 0.1);
}

.service-feature-head {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.service-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #b94d43;
}

.service-feature-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
}

.service-feature h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.85rem;
  line-height: 1.08;
}

.service-feature p {
  max-width: 320px;
  margin: 0 0 28px 78px;
  color: var(--muted);
}

.service-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-left: 78px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.service-feature-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 22px rgba(53, 31, 45, 0.08);
  color: var(--navy-deep);
  font-size: 1rem;
}

.image-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31, 103, 178, 0.1), rgba(245, 236, 222, 0.9));
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cover {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-photo {
  width: 100%;
  height: 360px;
  margin-top: 22px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 22%;
}

.content h2,
.content h3,
.post-content h2,
.post-content h3,
.footer-title {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.content h2,
.post-content h2 {
  font-size: var(--heading-h2);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.content h3,
.post-content h3,
.footer-title {
  font-size: var(--heading-h3);
  line-height: 1.2;
}

.content p,
.post-content p {
  margin: 0 0 18px;
}

.check-list li {
  color: var(--text);
  line-height: 1.6;
}

.feature-band {
  background: linear-gradient(135deg, var(--navy-deep), #6b4455);
  color: var(--white);
}

.feature-band .section-title,
.feature-band .section-lead,
.feature-band .card h3,
.feature-band .card p {
  color: var(--white);
}

.feature-band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 100%;
  box-shadow: 0 16px 40px rgba(11, 9, 18, 0.16);
}

.feature-band .card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(22deg);
}

.logo-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.logo-chip span {
  color: transparent;
  font-size: 0;
}

.logo-chip span::before {
  content: "◆";
  color: #f0cab4;
  font-size: 0.84rem;
}

.testimonial-card {
  background: linear-gradient(180deg, #fff, #fff9f2);
  border-radius: 30px;
  padding-top: 28px;
  min-height: 100%;
  box-shadow: 0 20px 50px rgba(53, 31, 45, 0.08);
}

.testimonial-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(126, 104, 92, 0.12);
  color: var(--plum);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.testimonial-mark svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.testimonial-cta-row {
  justify-content: center;
}

.testimonial-card-link {
  margin-left: 0;
  margin-top: 18px;
}

.testimonial-card strong,
.blog-card h3,
.resource-card h3,
.card h3,
.mini-card h3,
.contact-card h3 {
  display: block;
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.2rem;
}

.blog-card a,
.resource-card a {
  color: var(--coral);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.section-resources-home {
  position: relative;
}

.section-resources-home::before,
.section-testimonials-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-resources-home::before {
  background:
    radial-gradient(circle at 8% 12%, rgba(203, 184, 162, 0.14), transparent 16%),
    radial-gradient(circle at 92% 84%, rgba(90, 51, 70, 0.08), transparent 18%);
}

.resource-card {
  border-radius: 30px;
  padding-top: 0;
  box-shadow: 0 20px 50px rgba(53, 31, 45, 0.08);
}

.resource-card-media {
  height: 154px;
  margin: -28px -28px 22px;
  border-radius: 30px 30px 0 36px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.resource-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53, 31, 45, 0.08), rgba(53, 31, 45, 0.5));
}

.resource-card-calculators .resource-card-media {
  background-image: url("../images/home-resource-calculators.jpg");
}

.resource-card-taxhub .resource-card-media {
  background-image: url("../images/home-resource-taxhub.jpg");
}

.resource-card-articles .resource-card-media {
  background-image: url("../images/home-resource-articles.jpg");
}

.section-testimonials-home {
  position: relative;
}

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

.testimonial-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--coral);
  opacity: 1;
}

.section-testimonials-home::before {
  background:
    linear-gradient(180deg, rgba(247, 242, 235, 0), rgba(247, 242, 235, 0.7)),
    radial-gradient(circle at 12% 20%, rgba(126, 104, 92, 0.1), transparent 16%),
    radial-gradient(circle at 88% 72%, rgba(90, 51, 70, 0.08), transparent 18%);
}

.page-hero {
  padding: 72px 0 72px;
}

.calculator-page-hero {
  padding: 54px 0 54px;
  background:
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.06), transparent 26%),
    linear-gradient(180deg, #f9fdfb 0%, #ffffff 78%);
  border-bottom: 1px solid rgba(19, 25, 31, 0.08);
}

.calculator-page-hero h1 {
  margin: 0 0 16px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

.calculator-page-hero p:not(.eyebrow) {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.page-hero-copy h1 {
  color: var(--navy-deep);
}

.page-hero-visual {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(249, 253, 251, 0.98), rgba(241, 248, 244, 0.98)),
    radial-gradient(circle at bottom left, rgba(24, 114, 79, 0.08), transparent 32%);
  overflow: hidden;
}

.page-hero-visual > img {
  display: block;
  width: 100%;
  min-height: 360px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(19, 25, 31, 0.08);
  position: relative;
  z-index: 1;
}

.page-hero-visual .visual-card {
  background: var(--white);
  color: var(--text);
}

.post-grid {
  align-items: start;
}

.post-content {
  max-width: 760px;
}

.post-content h1 {
  margin: 0 0 22px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.95rem, 2.6vw, 3rem);
  line-height: 1;
}

.post-meta {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-post-main {
  padding: 0 0 72px;
  background:
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.06), transparent 24%),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 38%, #f3f9f6 100%);
}

.blog-post-hero {
  position: relative;
  padding: 110px 0 88px;
  overflow: hidden;
  background-color: #2e3b47;
}

.blog-post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(31, 43, 50, 0.86), rgba(31, 43, 50, 0.72)),
    radial-gradient(circle at bottom right, rgba(167, 234, 210, 0.12), transparent 28%);
  z-index: 1;
}

.blog-post-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
}

.blog-post-hero .container {
  position: relative;
  z-index: 2;
}

.blog-post-hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.blog-post-hero-content h1 {
  margin: 0;
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-post-hero .eyebrow {
  color: #d8f2e7;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-post-meta-item::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.blog-post-meta-author::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8f2e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
}

.blog-post-meta-date::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8f2e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.blog-post-meta-topic::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8f2e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 12h10'/%3E%3Cpath d='M4 17h7'/%3E%3C/svg%3E");
}

.blog-post-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 44px;
}

.blog-post-sidebar {
  position: sticky;
  top: 120px;
}

.blog-post-toc {
  padding: 22px 22px 20px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(19, 25, 31, 0.06);
}

.blog-post-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-post-toc-header::after {
  content: "";
  width: 14px;
  height: 14px;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318714f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.blog-post-toc ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-post-toc a {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  text-decoration: none;
}

.blog-post-toc a:hover {
  color: var(--coral);
}

.blog-post-article {
  padding: 28px 30px 34px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(19, 25, 31, 0.06);
}

.blog-post-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.blog-post-section + .blog-post-section {
  margin-top: 28px;
}

.blog-post-article h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.blog-post-article h3 {
  margin: 20px 0 10px;
}

.blog-post-article p:last-child {
  margin-bottom: 0;
}

.sidebar-stack {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.calculator-form,
.contact-form {
  display: grid;
  gap: 14px;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 340px;
  gap: 28px;
  align-items: start;
}

.content-main {
  display: grid;
  gap: 28px;
}

.content-panel {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(53, 31, 45, 0.08);
}

.content-panel h2,
.content-panel h3 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.content-panel h2,
.lead-card h2,
.interior-section-heading h2 {
  font-size: var(--heading-h2);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.content-panel h3,
.lead-card h3,
.sidebar-card h3,
.blog-teaser h3 {
  font-size: var(--heading-h3);
  line-height: 1.2;
}

.content-panel p:last-child,
.content-panel ul:last-child,
.content-panel ol:last-child {
  margin-bottom: 0;
}

.legal-page .page-hero {
  padding-bottom: 60px;
}

.legal-page .section {
  padding-top: 18px;
}

.legal-page .content-panel {
  border-radius: 0;
  padding: 32px 36px;
}

.lead-card {
  background:
    linear-gradient(135deg, rgba(53, 31, 45, 0.96), rgba(90, 51, 70, 0.92)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%);
  color: var(--white);
}

.lead-card h2,
.lead-card h3,
.lead-card p,
.lead-card li {
  color: var(--white);
}

.sidebar-card {
  position: sticky;
  top: 120px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f6f1ea, #efe6db);
  border: 1px solid rgba(90, 51, 70, 0.1);
  box-shadow: 0 18px 40px rgba(53, 31, 45, 0.08);
}

.sidebar-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.sidebar-card p {
  margin: 0 0 16px;
}

.sidebar-book {
  width: 180px;
  margin: 18px auto 22px;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(53, 31, 45, 0.14);
}

.detail-grid,
.bullet-grid,
.industry-grid,
.faq-grid,
.blog-list-grid,
.process-steps {
  display: grid;
  gap: 20px;
}

.detail-grid,
.industry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bullet-card,
.faq-card,
.industry-card,
.process-step {
  padding: 24px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.bullet-card h3,
.faq-card h3,
.industry-card h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: var(--heading-h3);
  line-height: 1.2;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-step strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.blog-teaser {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
}

.blog-teaser span {
  color: var(--coral);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-teaser h3 {
  margin: 8px 0;
}

.blog-featured-band {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.96), rgba(255, 255, 255, 1)),
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.05), transparent 28%);
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.blog-archive-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(19, 25, 31, 0.08);
}

.blog-archive-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: rgba(19, 25, 31, 0.04);
}

.blog-archive-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 25, 31, 0.08), rgba(19, 25, 31, 0.18));
}

.blog-archive-media .photo-cover {
  display: block;
  min-height: 0;
  height: 100%;
}

.blog-archive-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(69, 78, 88, 0.84);
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-archive-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 24px;
}

.blog-archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(19, 25, 31, 0.08);
  color: #7d8690;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  line-height: 1.4;
}

.blog-archive-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-archive-meta-item::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.blog-meta-author::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318714f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
}

.blog-meta-date::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318714f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.blog-archive-meta span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(24, 114, 79, 0.45);
}

.blog-archive-body h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.blog-archive-body h3 a {
  color: var(--coral);
}

.blog-archive-body h3 a:hover {
  color: var(--navy-deep);
}

.blog-archive-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.blog-archive-cta {
  align-self: flex-start;
  margin-top: auto;
}

label {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-deep);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(20, 58, 99, 0.16);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.calc-result {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.cta {
  padding-top: 88px;
  padding-bottom: 88px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--navy-deep), #24313b);
  color: var(--white);
}

.cta-form {
  display: grid;
  gap: 18px;
  align-content: center;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.cta-field {
  display: grid;
  gap: 10px;
}

.cta-field span {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.cta-field-full {
  grid-column: 1 / -1;
}

.cta-form input,
.cta-form textarea {
  min-height: 52px;
  width: 100%;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.cta-form textarea {
  min-height: 118px;
  padding: 16px 18px;
  border-radius: 20px;
  resize: vertical;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(63, 39, 52, 0.48);
}

.cta-form .btn {
  justify-self: start;
  min-width: 154px;
}

.cta-submit {
  background: #0c6b4b;
  border-color: #0c6b4b;
  color: var(--white);
}

.cta-submit:hover {
  background: #119866;
}

/* ============================ Modern footer ============================ */
.site-footer {
  position: relative;
  padding: 84px 0 30px;
  background:
    radial-gradient(1200px 400px at 15% -10%, rgba(15, 107, 75, 0.28), transparent 60%),
    linear-gradient(180deg, #0f1620 0%, #0b1117 100%);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

/* gradient accent line across the very top */
.footer-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--mint) 45%, var(--sand-deep));
}

.site-footer .footer-copy,
.site-footer .contact-list,
.site-footer .contact-list a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand .brand-footer { margin-bottom: 20px; }

.footer-brand .footer-copy {
  max-width: 42ch;
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 24px;
}

/* Phone CTA pill in the brand column */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: rgba(120, 200, 165, 0.08);
  border: 1px solid rgba(120, 200, 165, 0.2);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}
.footer-phone:hover {
  transform: translateY(-2px);
  background: rgba(120, 200, 165, 0.14);
  border-color: rgba(120, 200, 165, 0.4);
}
.footer-phone-icon {
  width: 40px; height: 40px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--mint));
}
.footer-phone-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.footer-phone-text { display: grid; line-height: 1.2; }
.footer-phone-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer-phone-text strong { color: #fff; font-size: 1.15rem; font-weight: 700; }

.footer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 22px;
}
.footer-utility a {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 200ms ease;
}
.footer-utility a:hover { color: var(--mint); }

.footer-title {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links li + li,
.contact-list li + li {
  margin-top: 12px;
}

.footer-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  transition: color 220ms ease, transform 220ms ease, padding 220ms ease;
}
.footer-links a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1.5px;
  background: var(--mint);
  transform: translateY(-50%);
  transition: width 240ms ease;
}
.footer-links a:hover {
  color: #fff;
  padding-left: 18px;
}
.footer-links a:hover::before { width: 12px; }

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-item-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--mint);
  background: rgba(120, 200, 165, 0.1);
  border: 1px solid rgba(120, 200, 165, 0.18);
}
.contact-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
.site-footer .contact-list a:hover { color: #fff; }

.footer-bottom {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.86rem; color: rgba(255, 255, 255, 0.56); }
.footer-copyright a { color: rgba(255, 255, 255, 0.82); font-weight: 600; }
.footer-copyright a:hover { color: var(--mint); }

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 220ms ease;
}
.footer-bottom-links a:hover { color: #fff; }

.about-pillars-grid,
.about-split-grid,
.about-reasons-grid,
.about-stats-grid,
.about-final-grid {
  display: grid;
}

.about-copy-panel h2,
.about-reasons-copy h2,
.about-final-copy h2,
.about-intro-block h2 {
  margin: 0 0 18px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: var(--heading-h2);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
}

.about-copy-panel p,
.about-reasons-copy p,
.about-final-copy p,
.about-intro-block p,
.about-mini-card p,
.about-reason-item p,
.about-stat p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-photo-panel img,
.about-reasons-photo img,
.about-final-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-pillars {
  padding-top: 72px;
  padding-bottom: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.92)),
    radial-gradient(circle at bottom left, rgba(24, 114, 79, 0.05), transparent 24%);
}

.about-pillars-grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.about-intro-block,
.about-mini-card,
.about-copy-panel,
.about-reasons-copy,
.about-final-copy {
  position: relative;
}

.about-intro-block,
.about-copy-panel,
.about-reasons-copy,
.about-final-copy {
  padding-left: 24px;
}

.about-intro-block::before,
.about-copy-panel::before,
.about-reasons-copy::before,
.about-final-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8f8176, #5d3648);
}

.about-mini-card {
  min-height: 100%;
  padding: 18px 0 0 26px;
  border-left: 1px solid rgba(93, 54, 72, 0.1);
}

.about-mini-card h3,
.about-reason-item h3,
.about-copy-panel h3,
.about-final-copy h3 {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: var(--heading-h3);
  line-height: 1.2;
  color: var(--navy-deep);
}

.about-mini-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(93, 54, 72, 0.06);
  color: var(--plum);
}

.about-mini-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.about-split-section,
.about-leadership {
  padding-top: 54px;
  padding-bottom: 54px;
}

.about-story-band {
  background:
    linear-gradient(180deg, rgba(249, 244, 238, 0.86), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(143, 129, 118, 0.12), transparent 24%);
}

.about-team-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.about-team-heading h2 {
  margin-bottom: 18px;
}

.about-team-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 30px;
}

.about-team-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(39, 54, 63, 0.98), rgba(19, 25, 31, 1));
  box-shadow: 0 22px 50px rgba(19, 25, 31, 0.08);
}

.about-team-feature-media::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 241, 235, 0.22) 0%, rgba(220, 241, 235, 0.08) 55%, rgba(220, 241, 235, 0) 100%);
  pointer-events: none;
}

.about-team-feature-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-team-feature-copy {
  position: relative;
  overflow: hidden;
  padding: 32px 34px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 249, 0.96)),
    radial-gradient(circle at top right, rgba(220, 241, 235, 0.55), transparent 28%);
  box-shadow: 0 18px 40px rgba(19, 25, 31, 0.06);
}

.about-team-feature-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.about-team-feature-copy::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 241, 235, 0.36) 0%, rgba(220, 241, 235, 0.15) 56%, rgba(220, 241, 235, 0) 100%);
  pointer-events: none;
}

.about-profile-label,
.about-profile-badge,
.about-profile-role {
  position: relative;
  z-index: 1;
}

.about-profile-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(24, 114, 79, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.about-profile-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.about-profile-head h3 {
  margin: 0 0 8px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 1.45rem + 0.6vw, 2.1rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.about-profile-role {
  margin: 0 !important;
  font-size: 0.88rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green) !important;
}

.about-profile-badge {
  flex-shrink: 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(19, 25, 31, 0.96);
  box-shadow: 0 14px 28px rgba(19, 25, 31, 0.14);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.about-profile-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 18px !important;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--navy-deep) !important;
}

.about-profile-body {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(19, 25, 31, 0.08);
}

.about-team-support-heading {
  max-width: 640px;
  margin: 0 0 22px;
}

.about-team-support-heading h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 1.35rem + 0.7vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-team-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(19, 25, 31, 0.08);
}

.about-team-card::after {
  content: "";
  position: absolute;
  left: -12px;
  bottom: -18px;
  width: 136px;
  height: 136px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 241, 235, 0.9) 0%, rgba(220, 241, 235, 0.18) 62%, rgba(220, 241, 235, 0) 100%);
  pointer-events: none;
}

.about-team-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1 / 1.18;
  background: rgba(19, 25, 31, 0.04);
}

.about-team-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-team-content {
  position: relative;
  z-index: 1;
  padding: 18px 20px 24px;
}

.about-team-content h3 {
  margin: 0 0 6px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.35rem);
  line-height: 1.2;
  color: var(--navy-deep);
}

.about-team-role {
  margin: 0 0 12px !important;
  font-size: 0.86rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green) !important;
}

.about-team-content p:last-child {
  margin-bottom: 0;
}

.about-team-cta {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(19, 25, 31, 0.06);
}

.about-team-cta p {
  margin: 0;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
}

.about-split-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.about-split-grid-reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.about-photo-panel,
.about-reasons-photo,
.about-final-photo {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
  background: rgba(93, 54, 72, 0.06);
}

.about-photo-panel {
  /* min-height: 430px; */
}

.about-reasons {
  background:
    linear-gradient(180deg, rgba(39, 54, 63, 0.06), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.08), transparent 24%);
}

.about-reasons-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 40px;
  align-items: center;
}

.about-reason-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.about-reason-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}

.about-reason-item .about-mini-icon {
  margin-bottom: 0;
}

/* .about-reasons-photo {
  min-height: 520px;
} */

.about-stats-strip {
  padding: 34px 0;
  border-top: 1px solid rgba(93, 54, 72, 0.08);
  border-bottom: 1px solid rgba(93, 54, 72, 0.08);
  background:
    radial-gradient(circle at top left, rgba(212, 193, 176, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 234, 0.86));
}

.about-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-stats-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.about-stat {
  display: grid;
  align-content: start;
  row-gap: 0;
  padding: 28px 24px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(93, 54, 72, 0.08);
  box-shadow: 0 20px 44px rgba(63, 39, 52, 0.08);
  overflow: hidden;
}

.about-stat::before {
  content: "";
  width: 56px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8f8176, #5d3648);
}

.about-stat-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 64px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--navy-deep);
  padding: 12px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(93, 54, 72, 0.08), rgba(143, 129, 118, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.about-stat-number-wide {
  width: auto;
  min-width: 124px;
  padding-inline: 22px;
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  white-space: nowrap;
}

.about-final-band {
  padding-top: 72px;
  padding-bottom: 84px;
  background:
    linear-gradient(180deg, rgba(246, 250, 248, 0.96), rgba(236, 244, 240, 0.98)),
    radial-gradient(circle at bottom right, rgba(24, 114, 79, 0.08), transparent 26%);
  border-bottom: 1px solid rgba(19, 25, 31, 0.08);
}

.about-final-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 38px;
  align-items: center;
}

.about-final-photo {
  min-height: 420px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.directory-intro,
.directory-note {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fcf7f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.category-jump-grid,
.featured-tools-grid {
  display: grid;
  gap: 14px;
}

.category-jump-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.category-jump-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  text-align: center;
}

.featured-tools-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculator-directory {
  display: grid;
  gap: 18px;
}

.calc-category {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.calc-category-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border: 0;
  background: linear-gradient(180deg, #fff, #fdf8f3);
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.calc-toggle-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(126, 104, 92, 0.12);
  color: var(--plum);
  font-size: 1.25rem;
  line-height: 1;
}

.calc-category-body {
  display: none;
  padding: 0 28px 24px;
}

.calc-category-body.is-open {
  display: block;
}

.calc-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.calc-link-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  border-radius: 16px;
  background: #fcf7f2;
  color: var(--text);
  line-height: 1.5;
}

.calc-link-list li::before {
  content: ">";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--coral);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.directory-note {
  margin-top: 26px;
}

.directory-note p {
  margin: 0;
}

.directory-note a {
  color: var(--plum);
  font-weight: 700;
}

.calc-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 22, 27, 0.56), rgba(20, 22, 27, 0.56)),
    url("../images/calculator-photo.jpg") center/cover no-repeat;
}

.calc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 33, 0.7), rgba(18, 24, 33, 0.28));
}

.calc-hero-accent {
  position: absolute;
  top: -80px;
  right: 90px;
  width: 220px;
  height: 620px;
  background: linear-gradient(180deg, #d1254f, #b6113b);
  transform: rotate(39deg);
  opacity: 0.96;
}

.calc-hero-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.calc-hero .eyebrow {
  color: #ff5a72;
}

.calc-hero h1 {
  margin: 0;
  max-width: 8ch;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.calc-hero-breadcrumb {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.calc-directory-shell {
  background: #fffdf9;
}

.calc-groups {
  display: grid;
  gap: 58px;
}

.calc-group-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.calc-group-title h2 {
  margin: 0;
  color: #1d2230;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
}

.calc-group-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.calc-group-line {
  width: 52px;
  height: 2px;
  margin: 14px auto 18px;
  background: #d4a64e;
}

.calc-list-box {
  border: 1px solid #e9e3d8;
  background: var(--white);
}

.calc-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 0;
  border-top: 1px solid #efe7db;
  background: var(--white);
  color: #181d28;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.calc-row-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid #efe7db;
  background: var(--white);
  color: #181d28;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
}

.calc-list-box > .calc-row-link:first-child {
  border-top: 0;
}

.calc-row-link:hover {
  background: #fffaf4;
}

.calc-list-box > .calc-row:first-child {
  border-top: 0;
}

.calc-row-mark {
  color: #d4a64e;
  font-size: 1rem;
  line-height: 1;
}

.calc-row-body {
  display: none;
  padding: 0 20px 18px 42px;
  border-top: 1px solid #f3ede3;
  background: #fffaf4;
  color: var(--muted);
}

.calc-row-body.is-open {
  display: block;
}

.calc-row-body p {
  margin: 16px 0 0;
}

.calc-detail-shell {
  background: #fffdf9;
}

.calc-detail-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.calc-detail-card h1 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.calc-detail-card p {
  margin: 0 0 18px;
}

.calc-detail-card .btn {
  margin-top: 8px;
}

.container-inner button,
.calculator-container button,
.inner-sect button,
.inner-body button,
.body-inner button,
.bond-buttons .btn,
.pv-buttons .btn,
.calc-form .btn {
  background: linear-gradient(135deg, var(--coral), #8c7366) !important;
  color: var(--white) !important;
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 24px rgba(53, 31, 45, 0.12);
}

.container-inner button:hover,
.calculator-container button:hover,
.inner-sect button:hover,
.inner-body button:hover,
.body-inner button:hover,
.bond-buttons .btn:hover,
.pv-buttons .btn:hover,
.calc-form .btn:hover {
  background: linear-gradient(135deg, #8c7366, var(--plum)) !important;
}

@media (max-width: 1080px) {
  .nav-wrap,
  .cta-panel,
  .footer-grid,
  .hero-grid,
  .split-grid,
  .post-grid,
  .contact-grid,
  .page-hero .hero-grid,
  .content-shell {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .nav-actions {
    flex-wrap: wrap;
  }

  .brand-logo {
    width: min(100%, 340px);
  }

  .cta-form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .service-grid,
  .value-grid,
  .blog-grid,
  .testimonial-grid,
  .resource-grid,
  .category-jump-grid,
  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-tools-grid,
  .calc-link-list {
    grid-template-columns: 1fr;
  }

  .contact-inquiry-layout,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .calc-hero-accent {
    right: 20px;
  }

  .sidebar-stack {
    position: static;
  }

  .sidebar-card {
    position: static;
  }

  .process-steps,
  .detail-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature {
    padding: 34px 24px 30px;
  }

  .service-feature h3 {
    font-size: 1.55rem;
  }

  .service-feature-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-feature p,
  .service-feature-link {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .topbar .container {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .topbar-links {
    gap: 10px 14px;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 18px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    display: none;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    gap: 18px;
    margin-top: 8px;
    padding: 18px 14px 10px;
    width: 100%;
    background: rgba(255, 253, 250, 0.98);
    border-top: 1px solid rgba(19, 25, 31, 0.08);
  }

  .nav-shell.is-open {
    display: grid;
  }

  .main-nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 8px;
  }

  .nav-item {
    width: 100%;
  }

  .has-submenu::after {
    display: none;
  }

  .nav-link,
  .main-nav > a,
  .nav-link-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-link,
  .nav-link-parent,
  .main-nav > a {
    width: 100%;
    padding: 10px 0;
  }

  .has-submenu > .nav-link-parent .nav-caret {
    margin-left: 12px;
    flex: none;
    opacity: 0.65;
  }
  .has-submenu.is-open > .nav-link-parent .nav-caret {
    transform: rotate(-135deg) translateY(2px);
  }

  /* Utility quick links + phone appear inside the mobile menu */
  .nav-utility {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(19, 25, 31, 0.08);
  }
  .nav-utility .utility-link {
    color: var(--navy-deep);
    font-size: 0.98rem;
    font-weight: 600;
    padding: 10px 0;
  }
  .nav-utility .utility-link:hover { color: var(--plum); }
  .nav-utility-phone {
    display: inline-block;
    margin-top: 8px;
    color: var(--plum);
    font-size: 1.05rem;
    font-weight: 700;
  }

  /* The slim utility strip is desktop-only; its links live in the menu on mobile */
  .topbar { display: none; }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 4px;
  }
  .header-phone {
    justify-content: flex-start;
    padding: 6px 0;
  }

  .main-nav .submenu a {
    display: block;
    width: 100%;
    white-space: normal;
  }

  .submenu {
    position: static;
    transform: none;
    min-width: 0;
    display: none;
    margin-top: 0;
    padding: 12px 0 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-top: 1px solid rgba(19, 25, 31, 0.08);
    background: transparent;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
  }

  .submenu-mega {
    width: auto;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
  }

  /* Neutralize the desktop full-bleed/hover transforms on mobile — otherwise the
     sticky :hover after a tap shifts the stacked panel off-screen. Specificity
     here matches the :hover rules so these win. */
  .submenu-mega,
  .has-mega-menu:hover .submenu-mega,
  .has-mega-menu:focus-within .submenu-mega {
    left: auto;
    right: auto;
    transform: none;
  }

  /* Mega content stacks in one column inside the mobile accordion */
  .mega-inner,
  .mega-cols-2 .mega-inner,
  .mega-cols-3 .mega-inner {
    width: auto;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .submenu-group,
  .submenu-cta {
    padding: 0;
  }

  .submenu-group + .submenu-group,
  .submenu-cta {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(19, 25, 31, 0.08);
  }

  .submenu-cta {
    display: none;
  }

  .submenu-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--navy-deep);
  }

  .submenu-link {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--navy-deep) !important;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(19, 25, 31, 0.08);
  }

  .submenu-link::after,
  .submenu-title::after,
  .submenu-description::after {
    display: none !important;
  }

  .submenu-links {
    gap: 0;
  }

  .submenu-description {
    display: none;
  }

  .submenu > .submenu-link:last-child,
  .submenu-links .submenu-link:last-child {
    border-bottom: 0;
  }

  .has-submenu.is-open .submenu {
    display: grid;
  }

  .nav-actions {
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding-top: 4px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .stats-grid,
  .service-grid,
  .value-grid,
  .blog-grid,
  .testimonial-grid,
  .resource-grid,
  .category-jump-grid,
  .logo-row,
  .process-steps,
  .detail-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .hero,
  .page-hero {
    padding: 64px 0;
  }

  .cta {
    padding-bottom: 64px;
  }

  .contact-inquiry-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .contact-info-card {
    padding: 24px 20px;
  }

  .cta-panel,
  .hero-visual,
  .page-hero-visual,
  .stat-card,
  .card,
  .mini-card,
  .blog-card,
  .testimonial-card,
  .resource-card,
  .contact-card,
  .calculator-box {
    padding: 22px;
  }

  .stat-card-media,
  .resource-card-media {
    margin: -22px -22px 18px;
    height: 130px;
  }

  .stat-card-accounting,
  .stat-card-cfo {
    padding-top: 22px;
  }

  .stat-card-accounting .stat-card-media,
  .stat-card-cfo .stat-card-media {
    width: 100%;
    height: 136px;
    margin: 0 0 18px;
    border-radius: 24px;
    background-position: center;
  }

  .stat-card-tax .stat-card-media {
    height: 148px;
    border-radius: 24px;
    clip-path: none;
    background-position: center;
  }

  .testimonial-card {
    padding-top: 22px;
  }

  .home-services-section .service-grid {
    border-top: 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    gap: 16px;
  }

  .service-feature {
    padding: 24px 0 8px;
    border-top: 1px solid rgba(90, 51, 70, 0.1);
  }

  .service-feature + .service-feature {
    border-left: 0;
  }

  .service-feature h3 {
    font-size: 1.42rem;
  }

  .calc-hero {
    min-height: 340px;
  }

  .calc-hero-accent {
    width: 140px;
    height: 420px;
    right: -10px;
  }

  .calc-group-title {
    align-items: flex-start;
  }

  .calc-group-title h2 {
    font-size: 1.45rem;
  }

  .calc-row {
    padding: 16px;
    font-size: 0.92rem;
  }

  .calc-row-link {
    padding: 16px;
    font-size: 0.92rem;
  }

  .calc-row-body {
    padding: 0 16px 16px 38px;
  }

.calc-detail-card {
  padding: 24px;
  }
}

@media (max-width: 980px) {
  .about-pillars-grid,
  .about-team-feature,
  .about-team-grid,
  .about-split-grid,
  .about-reasons-grid,
  .about-final-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-team-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-profile-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-mini-card {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(93, 54, 72, 0.1);
  }

  .about-photo-panel,
  .about-reasons-photo,
  .about-final-photo {
      min-height: 320px;
  }
}

@media (max-width: 640px) {
  .about-team-feature-copy {
    padding: 24px 20px;
  }

  .about-profile-label {
    margin-bottom: 14px;
    padding: 8px 12px;
  }

  .about-profile-badge {
    padding: 10px 14px;
  }

  .about-team-grid {
    gap: 18px;
  }

  .about-team-content {
    padding: 16px 16px 22px;
  }

  .about-team-cta {
    padding: 20px;
  }

  .about-intro-block,
  .about-copy-panel,
  .about-reasons-copy,
  .about-final-copy {
    padding-left: 18px;
  }

  .about-intro-block::before,
  .about-copy-panel::before,
  .about-reasons-copy::before,
  .about-final-copy::before {
    height: 42px;
  }

  .about-reason-item {
    grid-template-columns: 1fr;
  }

  .about-stat {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Final brand cleanup overrides aligned to the official Next Level CPA logo */

.eyebrow {
  color: var(--coral);
}

.brand-wordmark-next,
.brand-mark {
  color: var(--coral);
}

.brand-mark {
  background: rgba(24, 114, 79, 0.08);
}

.hero-badge,
.testimonial-mark,
.calc-toggle-mark,
.about-mini-icon,
.section-badge-icon,
.icon-pill {
  background: rgba(24, 114, 79, 0.12);
  color: var(--coral);
}

.hero-visual,
.feature-band,
.lead-card,
.cta-panel,
.calc-hero-accent {
  background: linear-gradient(135deg, var(--navy-deep), var(--blue)) !important;
}

.hero-visual,
.feature-band,
.lead-card,
.cta-panel {
  color: var(--white);
}

.stats-strip::before,
.home-services-section::before,
.section-resources-home::before,
.section-testimonials-home::before,
.about-reasons,
.about-stats-strip,
.calc-directory-shell,
.directory-intro,
.directory-note {
  background:
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.06), transparent 28%),
    linear-gradient(180deg, #fbfffd 0%, #ffffff 48%, #f3f9f6 100%) !important;
}

.stat-card,
.resource-card,
.testimonial-card,
.content-panel,
.sidebar-card,
.about-stat,
.calc-category,
.calc-list-box,
.calc-link-list li {
  box-shadow: 0 18px 40px rgba(19, 25, 31, 0.08);
}

.stat-card,
.resource-card,
.testimonial-card,
.sidebar-card,
.about-stat,
.calc-category,
.calc-list-box,
.calc-link-list li,
.category-jump-grid a {
  border-color: rgba(19, 25, 31, 0.08) !important;
}

.stat-card::before,
.resource-card::before,
.testimonial-card::before,
.stat-card-accounting::before,
.stat-card-tax::before,
.stat-card-cfo::before {
  background: linear-gradient(135deg, rgba(24, 114, 79, 0.1), rgba(17, 152, 102, 0.02)) !important;
}

.stat-card-accounting,
.stat-card-tax,
.stat-card-cfo,
.testimonial-card,
.page-hero-visual,
.sidebar-card,
.calc-category-toggle {
  background: linear-gradient(180deg, #ffffff, #f6fbf8) !important;
}

.stat-card-accounting,
.stat-card-tax,
.stat-card-cfo {
  border-color: rgba(19, 25, 31, 0.08);
}

.stat-card-media::after,
.resource-card-media::after,
.stat-card-cfo .stat-card-media::after {
  background: linear-gradient(180deg, rgba(19, 25, 31, 0.12), rgba(19, 25, 31, 0.36)) !important;
}

.stat-card-accounting .stat-card-media,
.stat-card-tax .stat-card-media,
.stat-card-cfo .stat-card-media {
  background-color: rgba(19, 25, 31, 0.04);
}

.stat-value,
.section-badge-icon,
.icon-pill,
.submenu-link:hover,
.submenu-link.is-active,
.blog-card a,
.resource-card a,
.directory-note a,
.calc-link-list li::before {
  color: var(--coral) !important;
}

.logo-chip span::before {
  color: var(--mint);
}

.service-feature-icon {
  color: var(--coral);
}

.service-feature-arrow {
  box-shadow: 0 12px 22px rgba(19, 25, 31, 0.08);
}

.feature-band .card,
.process-step,
.logo-chip {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.section-badge-icon-light {
  background: rgba(24, 114, 79, 0.24) !important;
  color: rgba(255, 255, 255, 0.94);
}

.calc-hero {
  background:
    linear-gradient(rgba(19, 25, 31, 0.58), rgba(19, 25, 31, 0.58)),
    url("../images/calculator-photo.jpg") center/cover no-repeat !important;
}

.calc-hero-overlay {
  background: linear-gradient(90deg, rgba(19, 25, 31, 0.74), rgba(19, 25, 31, 0.28)) !important;
}

.calc-hero .eyebrow {
  color: rgba(255, 255, 255, 0.86) !important;
}

.calc-group-line {
  background: var(--coral) !important;
}

.about-intro-block::before,
.about-copy-panel::before,
.about-reasons-copy::before,
.about-final-copy::before,
.about-stat::before {
  background: linear-gradient(180deg, var(--coral), var(--mint)) !important;
}

.about-mini-card {
  border-color: rgba(19, 25, 31, 0.08) !important;
}

.stat-card-cfo .section-badge-icon {
  background: rgba(24, 114, 79, 0.12) !important;
  color: var(--coral) !important;
}

.about-stat-number {
  background: linear-gradient(180deg, rgba(24, 114, 79, 0.08), rgba(17, 152, 102, 0.08)) !important;
}

.calc-group-title h2,
.calc-row,
.calc-row-link,
.calc-category-toggle {
  color: var(--navy-deep) !important;
}

.container-inner button,
.calculator-container button,
.inner-sect button,
.inner-body button,
.body-inner button,
.bond-buttons .btn,
.pv-buttons .btn,
.calc-form .btn {
  background: linear-gradient(135deg, var(--coral), var(--mint)) !important;
  color: var(--white) !important;
  box-shadow: 0 12px 24px rgba(19, 25, 31, 0.12) !important;
}

.container-inner button:hover,
.calculator-container button:hover,
.inner-sect button:hover,
.inner-body button:hover,
.body-inner button:hover,
.bond-buttons .btn:hover,
.pv-buttons .btn:hover,
.calc-form .btn:hover {
  background: linear-gradient(135deg, var(--mint), var(--coral)) !important;
}

.calculator-category {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7fbf9);
  box-shadow: var(--shadow);
}

.calculator-category + .calculator-category {
  margin-top: 22px;
}

.calculator-category h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  text-align: center;
}

.calculator-category-title {
  display: grid;
  justify-items: center;
  margin-bottom: 22px;
}

.calculator-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(93, 54, 72, 0.08), rgba(143, 129, 118, 0.12));
  color: #8a7992;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.calculator-category-line {
  width: 114px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(201, 168, 106, 0.12), rgba(201, 168, 106, 0.88), rgba(201, 168, 106, 0.12));
}

.calculator-link-list {
  display: grid;
  gap: 12px;
}

.calculator-link-list a {
  display: block;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.calculator-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 114, 79, 0.24);
  box-shadow: 0 16px 30px rgba(19, 25, 31, 0.08);
}

.refund-tool {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: center;
}

.refund-tool__image,
.refund-tool__content,
.detail-card--accent,
.due-dates__grid {
  border-radius: 24px;
}

.refund-tool__image {
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  background: rgba(19, 25, 31, 0.05);
}

.refund-tool__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.refund-tool__content {
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7fbf9);
  box-shadow: var(--shadow);
}

.refund-tool__content > p:first-child {
  margin-top: 0;
}

.refund-action + .refund-action {
  margin-top: 26px;
}

.refund-action h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  color: var(--navy-deep);
}

.refund-action h2 span {
  color: var(--coral);
}

.refund-action select,
.custom-dropdown {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(19, 25, 31, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.refund-action .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--mint));
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(19, 25, 31, 0.12);
}

.refund-action--plain {
  padding-top: 8px;
}

.due-dates {
  display: grid;
  gap: 28px;
}

.detail-card--accent {
  padding: 28px;
  border: 1px solid rgba(24, 114, 79, 0.14);
  background: linear-gradient(135deg, rgba(24, 114, 79, 0.08), rgba(255, 255, 255, 0.95));
  box-shadow: var(--shadow);
}

.detail-card--accent span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-card--accent h2 {
  margin: 0 0 12px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--navy-deep);
}

.due-dates__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.due-dates__grid > div {
  display: grid;
  gap: 14px;
}

.accordion__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, #f7fbf9);
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.accordion__item span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.accordion__item.is-open span {
  transform: rotate(225deg);
}

.accordion__panel {
  display: none;
  padding: 16px 4px 20px;
}

.accordion__panel.is-open {
  display: block;
}

.due-date {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(19, 25, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.due-date + .due-date {
  margin-top: 14px;
}

.due-date h3 {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--navy-deep);
}

.due-date p {
  margin: 0 0 10px;
}

.due-date p:last-child {
  margin-bottom: 0;
}

.interior-soft-band {
  background: linear-gradient(180deg, rgba(246, 240, 234, 0.58), rgba(255, 255, 255, 0.96));
}

.about-page-main .about-philosophy-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
}

.about-page-main .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-page-main .about-philosophy-band,
.about-page-main .about-industries-band,
.about-page-main .about-values-band {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-page-main .about-final-band {
  padding-top: 68px;
  padding-bottom: 76px;
}

.about-page-main .about-industries-band {
  background:
    linear-gradient(180deg, rgba(250, 246, 240, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top left, rgba(143, 129, 118, 0.12), transparent 24%);
}

.about-page-main .about-values-band {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #26313a 0%, #313d47 100%);
}

.about-page-main .about-values-band .interior-section-heading h2,
.about-page-main .about-values-band .interior-section-heading p,
.about-page-main .about-values-band .interior-section-heading .eyebrow,
.about-page-main .about-values-band .bullet-card h3,
.about-page-main .about-values-band .bullet-card p {
  color: var(--white);
}

.about-page-main .about-values-band .interior-section-heading .eyebrow {
  color: #2fb07d;
}

.about-page-main .about-values-band .bullet-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 44px rgba(8, 12, 16, 0.22);
}

.about-page-main .about-values-band .bullet-card::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(22deg);
}

.about-page-main .about-values-band .interior-card-icon {
  position: relative;
  z-index: 1;
  background: rgba(24, 133, 87, 0.14);
  color: #1bb77e;
  box-shadow: none;
}

.about-page-main .about-philosophy-band .bullet-card,
.about-page-main .about-industries-band .industry-card {
  position: relative;
  overflow: hidden;
}

.about-page-main .about-philosophy-band .bullet-card::before,
.about-page-main .about-industries-band .industry-card::before {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 243, 236, 0.9) 0%, rgba(233, 248, 242, 0.68) 55%, rgba(233, 248, 242, 0) 100%);
}

.about-page-main .about-philosophy-band .bullet-card::after,
.about-page-main .about-industries-band .industry-card::after {
  content: none;
}

.about-page-main .about-philosophy-band .bullet-card > *,
.about-page-main .about-industries-band .industry-card > * {
  position: relative;
  z-index: 1;
}

.business-page-main .business-challenges-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
}

.business-page-main .page-hero {
  background: #0c6545;
}

.business-page-main .page-hero .eyebrow {
  color: rgba(231, 248, 240, 0.82);
}

.business-page-main .page-hero-copy h1 {
  color: var(--white);
}

.business-page-main .page-hero-copy p {
  color: rgba(243, 250, 246, 0.92);
}

.business-page-main .page-hero-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(241, 248, 244, 0.08)),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 32%);
}

.business-page-main .section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.business-page-main .business-overview-band,
.business-page-main .business-included-band,
.business-page-main .business-chooseus-band {
  padding-top: 48px;
  padding-bottom: 48px;
}

.business-page-main .business-included-band {
  padding-bottom: 64px;
}

.business-page-main .interior-dark-band {
  margin-top: 20px;
}

.business-page-main .business-chooseus-band {
  margin-top: 20px;
}

.business-page-main .business-cta-band {
  padding-top: 56px;
  padding-bottom: 56px;
}

.business-page-main .content-main {
  gap: 22px;
}

.business-page-main .interior-split {
  align-items: start;
  gap: 28px;
}

.business-page-main .interior-two-column {
  align-items: start;
}

.business-page-main .business-overview-band {
  background: #0c6545;
}

.business-page-main .business-benefits-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
}

.business-page-main .business-included-band {
  background: #ffffff;
}

.business-page-main .business-included-band .interior-split {
  align-items: stretch;
}

.business-page-main .business-included-band .interior-visual {
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.business-page-main .business-included-band .interior-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-page-main .business-chooseus-band {
  background: #ffffff;
}

.business-page-main .business-cta-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
  border-bottom: 1px solid rgba(19, 25, 31, 0.08);
}
.business-page-main .business-overview-band .content-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.business-page-main .business-overview-band .content-panel .eyebrow {
  color: rgba(231, 248, 240, 0.82);
}

.business-page-main .business-overview-band .content-panel h2 {
  color: var(--white);
}

.business-page-main .business-overview-band .content-panel p {
  color: rgba(243, 250, 246, 0.9);
}

.business-page-main .business-overview-band .bullet-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.business-page-main .business-overview-band .bullet-card h3 {
  color: var(--white);
}

.business-page-main .business-overview-band .bullet-card p {
  color: rgba(243, 250, 246, 0.88);
}

.business-page-main .business-overview-band .sidebar-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 246, 0.94));
  border-color: rgba(24, 114, 79, 0.16);
  box-shadow: 0 18px 40px rgba(8, 58, 39, 0.16);
}

.business-page-main .business-challenges-band .bullet-card,
.business-page-main .business-benefits-band .bullet-card,
.business-page-main .business-chooseus-band .bullet-card {
  position: relative;
  overflow: hidden;
}

.business-page-main .business-challenges-band .bullet-card::before,
.business-page-main .business-benefits-band .bullet-card::before,
.business-page-main .business-chooseus-band .bullet-card::before {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 243, 236, 0.9) 0%, rgba(233, 248, 242, 0.68) 55%, rgba(233, 248, 242, 0) 100%);
}

.business-page-main .business-challenges-band .bullet-card::after,
.business-page-main .business-benefits-band .bullet-card::after,
.business-page-main .business-chooseus-band .bullet-card::after {
  content: none;
}

.medical-page-main .medical-challenges-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
}

.medical-page-main .page-hero {
  background: #0c6545;
}

.medical-page-main .page-hero .eyebrow {
  color: rgba(231, 248, 240, 0.82);
}

.medical-page-main .page-hero-copy h1 {
  color: var(--white);
}

.medical-page-main .page-hero-copy p {
  color: rgba(243, 250, 246, 0.92);
}

.medical-page-main .page-hero-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(241, 248, 244, 0.08)),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 32%);
}

.medical-page-main .section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.medical-page-main .medical-guidance-band,
.medical-page-main .medical-focus-band,
.medical-page-main .medical-related-band {
  padding-top: 48px;
  padding-bottom: 48px;
}

.medical-page-main .medical-why-band,
.medical-page-main .medical-related-band {
  margin-top: 20px;
}

.medical-page-main .medical-cta-band {
  padding-top: 60px;
  padding-bottom: 60px;
}

.medical-page-main .medical-guidance-band {
  background: #0c6545;
}

.medical-page-main .medical-services-band {
  background: #ffffff;
}

.medical-page-main .medical-focus-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
}

.medical-page-main .medical-why-band {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #26313a 0%, #313d47 100%);
}

.medical-page-main .medical-related-band {
  background: #ffffff;
}

.medical-page-main .medical-cta-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 24%);
  border-bottom: 1px solid rgba(19, 25, 31, 0.08);
}

.medical-page-main .medical-guidance-band .content-panel {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.medical-page-main .medical-guidance-band .content-panel .eyebrow {
  color: rgba(231, 248, 240, 0.82);
}

.medical-page-main .medical-guidance-band .content-panel h2 {
  color: var(--white);
}

.medical-page-main .medical-guidance-band .content-panel p,
.medical-page-main .medical-guidance-band .interior-check-item {
  color: rgba(243, 250, 246, 0.9);
}

.medical-page-main .medical-guidance-band .interior-check-item::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(202, 239, 223, 0.96));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.medical-page-main .medical-guidance-band .interior-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(241, 248, 244, 0.08)),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.12), transparent 32%);
  box-shadow: 0 18px 40px rgba(8, 58, 39, 0.16);
}

.medical-page-main .medical-challenges-band .bullet-card,
.medical-page-main .medical-services-band .bullet-card,
.medical-page-main .medical-related-band .industry-card {
  position: relative;
  overflow: hidden;
}

.medical-page-main .medical-challenges-band .bullet-card::before,
.medical-page-main .medical-services-band .bullet-card::before,
.medical-page-main .medical-related-band .industry-card::before {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 243, 236, 0.9) 0%, rgba(233, 248, 242, 0.68) 55%, rgba(233, 248, 242, 0) 100%);
}

.medical-page-main .medical-challenges-band .bullet-card::after,
.medical-page-main .medical-services-band .bullet-card::after,
.medical-page-main .medical-related-band .industry-card::after {
  content: none;
}

.medical-page-main .medical-challenges-band .bullet-card > *,
.medical-page-main .medical-services-band .bullet-card > *,
.medical-page-main .medical-related-band .industry-card > * {
  position: relative;
  z-index: 1;
}

.contact-page-main .section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.contact-page-main .contact-hero-band {
  background:
    linear-gradient(180deg, rgba(249, 244, 238, 0.88), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top right, rgba(24, 114, 79, 0.08), transparent 22%);
}

.contact-page-main .contact-methods-band {
  background:
    linear-gradient(180deg, rgba(240, 247, 243, 0.94), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.06), transparent 22%);
}

.contact-page-main .contact-methods-band .bullet-card {
  position: relative;
  overflow: hidden;
}

.contact-page-main .contact-methods-band .bullet-card::before {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -46px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 243, 236, 0.9) 0%, rgba(233, 248, 242, 0.68) 55%, rgba(233, 248, 242, 0) 100%);
}

.contact-page-main .contact-methods-band .bullet-card > * {
  position: relative;
  z-index: 1;
}

.contact-page-main .contact-form-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 238, 0.88)),
    radial-gradient(circle at bottom left, rgba(143, 129, 118, 0.08), transparent 24%);
}

.contact-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.contact-inquiry-copy h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-inquiry-copy > p {
  max-width: 620px;
  margin: 0 0 26px;
}

.contact-form-inquiry {
  gap: 12px;
  max-width: 520px;
}

.contact-form-inquiry input,
.contact-form-inquiry textarea,
.contact-form-inquiry select {
  border-radius: 0;
  border: 1px solid rgba(19, 25, 31, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.contact-form-inquiry select {
  min-height: 52px;
}

.contact-form-inquiry textarea {
  min-height: 132px;
}

.contact-form-inquiry .btn {
  justify-self: start;
  margin-top: 8px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-info-card {
  padding: 28px 24px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 25, 31, 0.08);
  box-shadow: 0 18px 40px rgba(19, 25, 31, 0.06);
}

.contact-info-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  color: #18724f;
}

.contact-info-icon svg {
  width: 40px;
  height: 40px;
  stroke: #18724f;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
}

.contact-info-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.contact-info-card a {
  color: inherit;
}

.contact-page-main .contact-faq-band {
  background:
    linear-gradient(180deg, rgba(246, 250, 248, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top left, rgba(24, 114, 79, 0.05), transparent 22%);
}

.contact-faq-accordion {
  display: grid;
  gap: 14px;
}

.contact-faq-item {
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(19, 25, 31, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(63, 39, 52, 0.04);
}

.contact-faq-item.is-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.contact-faq-item span {
  border: 0;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  transform: none;
}

.contact-faq-item.is-open span {
  transform: none;
}

.contact-faq-label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(1.18rem, 1.5vw, 1.35rem);
  line-height: 1.3;
}

.contact-faq-label strong {
  color: #0f8b5e;
  font-weight: 800;
}

.contact-faq-mark {
  color: #0f8b5e;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.contact-faq-panel {
  margin-top: -14px;
  padding: 22px 24px 22px;
  border: 1px solid rgba(19, 25, 31, 0.12);
  border-top: 0;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(63, 39, 52, 0.04);
}

.contact-faq-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.contact-page-main .contact-cta-band {
  padding-top: 40px;
  padding-bottom: 56px;
}

.business-page-main .business-challenges-band .bullet-card > *,
.business-page-main .business-benefits-band .bullet-card > *,
.business-page-main .business-chooseus-band .bullet-card > * {
  position: relative;
  z-index: 1;
}

.interior-dark-band {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, rgba(33, 42, 52, 0.98), rgba(52, 64, 76, 0.96));
}

.interior-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.interior-section-heading h2 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.interior-section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.interior-section-heading-light h2,
.interior-section-heading-light p {
  color: var(--white);
}

.interior-card-grid,
.interior-two-column,
.interior-split {
  display: grid;
  gap: 22px;
}

.interior-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.interior-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.interior-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.interior-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.interior-split {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: 34px;
}

.interior-split-reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.interior-visual {
  /* min-height: 420px; */
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: rgba(93, 54, 72, 0.08);
}

.interior-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 125, 86, 0.1), rgba(24, 114, 79, 0.08));
  color: var(--coral);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.interior-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.interior-check-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.interior-check-item {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.7;
}

.interior-check-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #3ca36f);
  box-shadow: 0 0 0 6px rgba(24, 133, 87, 0.12);
}

.interior-process-grid {
  margin-top: 10px;
}

.interior-link-list,
.interior-link-list-light {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.interior-link-list a,
.interior-link-list-light a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
}

.interior-link-list a {
  background: #fcf7f2;
  border: 1px solid var(--line);
  color: var(--navy-deep);
}

.interior-link-list-light a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.interior-link-list a::after,
.interior-link-list-light a::after {
  content: ">";
  font-size: 1rem;
}

.interior-cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(33, 42, 52, 0.98), rgba(52, 64, 76, 0.96));
  box-shadow: var(--shadow);
}

.interior-cta-banner h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: var(--heading-h2);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.interior-cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.interior-cta-banner .eyebrow {
  color: #a7ead2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .blog-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post-shell {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }

  .interior-card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interior-card-grid-3,
  .interior-two-column,
  .interior-split,
  .interior-split-reverse,
  .interior-cta-banner {
    grid-template-columns: 1fr;
  }

  .refund-tool,
  .due-dates__grid {
    grid-template-columns: 1fr;
  }

  .refund-tool__image {
    min-height: 280px;
  }

  .business-page-main .business-included-band .interior-visual {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .blog-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-post-hero {
    padding: 88px 0 72px;
  }

  .blog-post-meta {
    gap: 10px 16px;
  }

  .blog-post-article {
    padding: 24px 22px 28px;
    border-radius: 20px;
  }

  .blog-post-toc {
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .blog-archive-media {
    height: 210px;
  }

  .blog-archive-body {
    padding: 20px 18px 22px;
  }

  .blog-archive-meta {
    gap: 6px 8px;
    padding-bottom: 12px;
    font-size: 0.8rem;
  }

  .blog-archive-body h3 {
    font-size: 1.35rem;
  }

  .interior-card-grid-2,
  .interior-card-grid-3,
  .interior-card-grid-4 {
    grid-template-columns: 1fr;
  }

  .interior-section-heading {
    margin-bottom: 22px;
  }

  .interior-visual {
    min-height: 300px;
  }

  .interior-cta-banner {
    padding: 26px 22px;
    border-radius: 24px;
  }
}
