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

:root {
  --ink: #061638;
  --ink-2: #10264d;
  --muted: #52627a;
  --soft: #f4f8fb;
  --soft-2: #eaf2f6;
  --line: #dce7ee;
  --white: #ffffff;
  --teal: #059b9a;
  --teal-2: #08b7ad;
  --teal-dark: #037879;
  --gold: #f5a400;
  --navy: #001a36;
  --navy-2: #021027;
  --danger: #b42318;
  --success: #047857;
  --shadow: 0 22px 70px rgba(4, 23, 54, 0.14);
  --shadow-sm: 0 10px 30px rgba(4, 23, 54, 0.09);
  --radius: 8px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

.narrow {
  max-width: 820px;
}

.topbar {
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  color: #d8f6f5;
  background: var(--navy-2);
  font-size: 13px;
  font-weight: 700;
}

.topbar-link {
  border: 0;
  border-bottom: 1px solid rgba(105, 217, 210, 0.8);
  padding: 0;
  color: #69d9d2;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, #001529 0%, #021b3e 56%, #001329 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 15, 40, 0.22);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  flex: 0 0 58px;
}

.brand-mark-logo {
  width: 168px;
  flex-basis: 168px;
}

.brand-mark-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.brand-sub {
  color: #d5e8f5;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: #eef8ff;
  font-size: 14px;
  font-weight: 800;
}

.header-nav > a,
.nav-dropdown-trigger {
  flex: 0 0 auto;
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--teal-2);
  content: "";
  transition: transform 0.18s ease;
}

.header-nav > a:hover::after,
.header-nav > a.active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 95;
  width: min(760px, calc(100vw - 48px));
  padding: 14px;
  border: 1px solid rgba(220, 231, 238, 0.96);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(2, 16, 39, 0.22);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.nav-dropdown:last-of-type .nav-dropdown-panel {
  right: 0;
  left: auto;
  transform: translateY(10px);
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-dropdown:last-of-type:hover .nav-dropdown-panel,
.nav-dropdown:last-of-type:focus-within .nav-dropdown-panel {
  transform: translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nav-dropdown-link {
  min-height: 84px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: flex-start;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  border-color: var(--line);
  color: var(--teal-dark);
  background: var(--soft);
  outline: none;
}

.nav-dropdown-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: rgba(8, 183, 173, 0.09);
}

.nav-dropdown-link strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.nav-dropdown-link small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.38;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone small {
  display: block;
  color: #bdd5e5;
  font-size: 10px;
  font-weight: 700;
}

.phone-mini,
.menu-toggle {
  display: none;
}

.header-cta {
  flex: 0 0 auto;
  min-width: 0;
  padding-right: 15px;
  padding-left: 15px;
  white-space: nowrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(8, 183, 173, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-2), var(--teal-dark));
  box-shadow: 0 14px 28px rgba(5, 155, 154, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #10c7bd, #048384);
}

.btn-outline {
  color: var(--ink);
  border-color: #9ab2c1;
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.btn-lg {
  min-height: 52px;
  padding: 15px 22px;
  font-size: 16px;
}

.drawer {
  display: none;
  max-height: calc(100dvh - 78px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  -webkit-overflow-scrolling: touch;
}

.drawer-inner {
  display: grid;
  gap: 6px;
  padding: 16px 0 22px;
}

.drawer a,
.drawer button {
  width: 100%;
}

.drawer a {
  padding: 12px 0;
  font-weight: 800;
  color: #edf9ff;
}

.drawer-group {
  display: grid;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 0 10px;
}

.drawer .drawer-parent {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 8px 0;
  color: #edf9ff;
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.drawer .drawer-parent svg {
  flex: 0 0 auto;
  transition: transform 0.18s ease;
}

.drawer-group.is-open .drawer-parent svg {
  transform: rotate(90deg);
}

.drawer .drawer-parent:hover,
.drawer .drawer-parent:focus-visible {
  color: var(--white);
}

.drawer-subnav {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.drawer-group.is-open .drawer-subnav {
  display: grid;
}

.drawer-subnav[hidden] {
  display: none !important;
}

.drawer-subnav a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 8px 10px;
  color: #d8f6f5;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.drawer-subnav a:hover,
.drawer-subnav a:focus-visible {
  color: var(--white);
  background: rgba(8, 183, 173, 0.2);
  outline: none;
}

.drawer-call {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-home {
  position: relative;
  isolation: isolate;
  min-height: 704px;
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #f2f7fa 50%, #f2f7fa 100%);
  border-bottom: 1px solid var(--line);
}

.hero-home::before {
  position: absolute;
  inset: 0 0 0 50%;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.06) 100%),
    url("/assets/images/protax-cpa-advisor-hero.png") center right / cover no-repeat;
  content: "";
}

.hero-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: stretch;
  min-height: 704px;
}

.hero-copy {
  padding: 78px 42px 38px 0;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--teal-dark);
  background: #dff7f4;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  background: transparent;
  padding: 0;
}

.center {
  text-align: center;
  justify-content: center;
  margin-inline: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: 1.05;
  font-weight: 950;
  color: var(--ink);
}

h1 span,
h2 span {
  color: var(--teal);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 26px 0;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 34px;
  color: var(--ink-2);
  font-size: 15px;
}

.stars {
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 0;
  white-space: nowrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 620px;
  border-top: 1px solid var(--line);
}

.trust-row div {
  min-height: 92px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row svg {
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 704px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px 0 48px 34px;
}

.hero-review-card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-review-card h2,
.modal h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.hero-review-card p,
.modal-sub {
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: 14px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 12px;
  font-weight: 900;
  color: var(--ink-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8394a7;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 21px,
    calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(180, 35, 24, 0.7);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.field-error {
  display: none;
  margin: -2px 0 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.field.is-invalid .field-error {
  display: block;
}

.form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note svg {
  color: var(--teal);
}

.form-status {
  min-height: 0;
  display: none;
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: var(--danger);
  background: #fff1f0;
}

.form-status.is-success {
  color: var(--success);
  background: #ecfdf3;
}

.booking-page {
  background: var(--soft);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.booking-copy,
.booking-trust {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.booking-copy {
  padding: 34px;
}

.booking-copy h1 {
  margin-top: 10px;
  font-size: clamp(38px, 4vw, 58px);
}

.booking-copy > p {
  max-width: 620px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.6;
}

.booking-trust {
  overflow: hidden;
}

.booking-trust figure {
  aspect-ratio: 16 / 10;
  margin: 0;
}

.booking-trust img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-trust-list {
  display: grid;
  gap: 0;
  padding: 4px 24px 24px;
}

.booking-trust-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.booking-trust-list article:last-child {
  border-bottom: 0;
}

.booking-trust-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: #dff7f4;
}

.booking-trust-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
}

.booking-trust-list p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: var(--soft);
}

.section-title {
  max-width: 780px;
  margin: 9px auto 34px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 950;
}

.section-intro {
  max-width: 900px;
  margin: -16px auto 34px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}

.services-section {
  border-bottom: 1px solid var(--line);
}

.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.service-tile {
  min-height: 218px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  border: 0;
  border-radius: var(--radius);
  padding: 28px 16px 20px;
  background: var(--white);
  text-align: center;
  transition: transform 0.16s ease;
}

.service-tile:hover {
  transform: translateY(-3px);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--teal);
}

.service-tile h3 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.18;
}

.service-tile p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 13px;
}

.service-tile-grid-core {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-secondary-row {
  display: grid;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 16px;
}

.service-secondary-row > span {
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-secondary-row a {
  display: grid;
  gap: 4px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 16px;
  background: var(--white);
}

.service-secondary-row strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.service-secondary-row small {
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.45;
}

.home-location-section {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.city-seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.city-seo-card {
  min-height: 218px;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 0;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  transition: transform 0.16s ease;
}

.city-seo-card:hover {
  transform: translateY(-3px);
}

.city-seo-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.city-seo-card h3 a {
  color: inherit;
}

.service-tile h3,
.service-secondary-row strong,
.city-seo-card h3 a,
.compact-card h3,
.industry-card h3,
.problem-link strong,
.resource-card h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.city-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-service-links a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfe3ec;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: #f4fbfb;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.split-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}

.split-section-head h2 {
  margin: 10px 0 0;
  font-size: 34px;
  line-height: 1.16;
}

.split-section-head > p {
  margin-bottom: 4px;
  color: var(--ink-2);
  font-size: 17px;
}

.home-image-band {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 30px;
  border: 0;
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.home-image-band.is-flipped {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
}

.home-image-band figure {
  min-height: 220px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
}

.home-image-band img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.home-image-band h3 {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
}

.home-band-list {
  display: grid;
  gap: 10px;
}

.home-band-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 800;
}

.home-band-list svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.compact-card-grid,
.industry-card-grid,
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.compact-card,
.industry-card,
.problem-link,
.resource-card {
  display: grid;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.16s ease;
}

.compact-card:hover,
.industry-card:hover,
.problem-link:hover,
.resource-card:hover {
  transform: translateY(-3px);
}

.compact-card {
  grid-template-columns: 46px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
}

.compact-card > span,
.industry-card > span,
.problem-link > span,
.resource-card > span {
  color: var(--teal);
}

.compact-card h3,
.industry-card h3,
.problem-link strong,
.resource-card h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.compact-card p,
.industry-card p,
.problem-link p,
.resource-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.industry-card {
  min-height: 190px;
  align-content: start;
  gap: 12px;
  padding: 26px;
}

.problem-link {
  min-height: 172px;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.resource-card {
  min-height: 180px;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.steps-row-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-row-four article {
  min-height: 230px;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  border: 0;
  box-shadow: none;
  padding-top: 56px;
}

.steps-row-four article:not(:last-child)::after {
  display: none;
}

.steps-row-four svg {
  margin-left: 0;
}

.home-final-cta {
  padding: 58px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(0, 58, 91, 0.98));
}

.home-final-cta-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.home-final-cta .eyebrow {
  color: #69d9d2;
}

.home-final-cta h2 {
  max-width: 760px;
  margin: 8px 0 8px;
  color: var(--white);
  font-size: 36px;
  line-height: 1.16;
}

.home-final-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: #d4e9f4;
}

.why-band {
  padding: 46px 0;
  background: linear-gradient(90deg, #edf8fb, #ffffff);
  border-bottom: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
}

.why-grid h2 {
  margin: 12px 0 0;
  font-size: 31px;
  line-height: 1.15;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.why-points article {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.why-points svg {
  color: var(--teal);
}

.why-points h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
}

.why-points p {
  margin: 0;
  color: var(--ink-2);
  font-size: 12px;
}

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

.steps-row article {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(4, 23, 54, 0.04);
}

.steps-row article:not(:last-child)::after {
  position: absolute;
  right: -42px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a7c90;
  content: "->";
  font-size: 28px;
}

.steps-row span {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-weight: 950;
  font-size: 13px;
}

.steps-row svg {
  color: var(--teal);
  margin-left: 18px;
}

.steps-row h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.steps-row p {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.reviews-section {
  padding-top: 24px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote-mark {
  color: var(--teal);
  font-size: 40px;
  line-height: 0.85;
  font-weight: 950;
}

.review-card p {
  color: var(--ink-2);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.review-person > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--ink));
  font-weight: 950;
}

.review-person small {
  display: block;
  color: var(--ink-2);
  font-weight: 700;
}

.industries-strip {
  padding: 10px 0 40px;
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-row a {
  min-height: 104px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.industry-row a:last-child {
  border-right: 0;
}

.industry-row svg {
  color: var(--ink);
}

.faq-section {
  padding-top: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 44px;
  margin-top: 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary > span:last-child {
  flex: 0 0 auto;
  color: var(--teal);
  transition: transform 0.18s ease;
}

details[open] summary > span:last-child {
  transform: rotate(180deg);
}

.faq-summary-text {
  display: grid;
  gap: 4px;
  color: var(--ink);
  line-height: 1.25;
}

.faq-summary-text small {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -12px 0 24px;
}

.faq-chip-row span {
  border: 1px solid rgba(5, 155, 154, 0.22);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--teal-dark);
  background: #e3faf7;
  font-size: 12px;
  font-weight: 900;
}

details > div {
  border-top: 1px solid var(--line);
  padding: 0 18px 16px;
  color: var(--ink-2);
}

details p:last-child {
  margin-bottom: 0;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(0, 58, 91, 0.98)),
    radial-gradient(circle at 95% 50%, rgba(8, 183, 173, 0.25), transparent 26%);
}

.footer-cta::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 150px;
  opacity: 0.3;
  background-image: radial-gradient(circle, #08b7ad 2px, transparent 2px);
  background-size: 18px 18px;
  content: "";
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.home-final-cta-icon,
.footer-cta-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(105, 217, 210, 0.8);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 183, 173, 0.2);
}

.footer-cta h2 {
  margin-bottom: 4px;
  font-size: 34px;
  line-height: 1.16;
}

.footer-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: #d4e9f4;
}

.site-footer {
  color: #dcecf6;
  background: linear-gradient(180deg, #021b3e, #001329);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 0.9fr;
  gap: 34px;
  padding: 42px 0 30px;
}

.site-footer .brand {
  margin-bottom: 16px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.site-footer p {
  margin-bottom: 12px;
  color: #c7dbea;
  font-size: 14px;
}

.footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer-list a,
.footer-list span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #dcecf6;
}

.footer-list a:hover {
  color: #69d9d2;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.social-row svg {
  display: block;
}

.footer-base {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdd5e5;
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  overflow-x: auto;
  padding: 9px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  scrollbar-width: none;
  white-space: nowrap;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs a {
  flex: 0 0 auto;
  color: var(--teal-dark);
}

.breadcrumbs span {
  flex: 0 0 auto;
}

.sep {
  flex: 0 0 auto;
  color: #98aabb;
}

.hero-page {
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.97), rgba(4, 57, 84, 0.95)),
    url("/assets/images/protax-cpa-advisor-hero.png") center / cover no-repeat;
  background-blend-mode: multiply;
}

.hero-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

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

.hero-page .hero-lede,
.hero-page .hero-lede p {
  color: #e4f1f7;
}

.hero-page .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero-aside {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.hero-aside h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 24px;
}

.hero-aside ul {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.hero-aside li {
  display: flex;
  gap: 9px;
  color: #edf9ff;
  font-weight: 750;
}

.hero-aside li svg {
  color: #69d9d2;
  flex: 0 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 58px;
}

.content-grid h2 {
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.16;
}

.rich {
  color: var(--ink-2);
  font-size: 17px;
}

.rich h2,
.rich h3 {
  color: var(--ink);
}

.rich ul,
.rich ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.rich a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-section {
  position: relative;
}

.seo-section-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(330px, 0.42fr);
  gap: 42px;
  align-items: start;
}

.seo-section-shell.is-reverse {
  grid-template-columns: minmax(330px, 0.42fr) minmax(0, 0.58fr);
}

.seo-section-shell.is-reverse .seo-section-copy {
  order: 2;
}

.seo-section-copy h2 {
  margin: 10px 0 20px;
  font-size: 34px;
  line-height: 1.16;
}

.seo-prose-panel {
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(4, 23, 54, 0.06);
}

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

.seo-section-visual {
  display: grid;
  gap: 16px;
}

.seo-media {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.seo-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.seo-media-fallback {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent);
}

.seo-media-fallback span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.seo-media-fallback strong {
  font-size: 24px;
  line-height: 1.1;
}

.seo-media-fallback p {
  max-width: 320px;
  margin: 0;
  color: #dff7f4;
  font-weight: 750;
}

.seo-card-stack {
  display: grid;
  gap: 12px;
}

.seo-info-card {
  min-height: 112px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(4, 23, 54, 0.05);
}

.seo-info-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: #e3faf7;
}

.seo-info-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.seo-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.seo-card-stack-process .seo-info-card {
  border-left: 3px solid var(--teal);
}

.seo-card-stack-pricing .seo-info-card {
  border-left: 3px solid var(--gold);
}

.seo-card-stack-comparison .seo-info-card {
  border-left: 3px solid var(--ink);
}

.seo-pullquote {
  margin: 18px 0 0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--ink);
  background: #fff8e8;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.seo-mini-cta {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(5, 155, 154, 0.25);
  border-radius: var(--radius);
  padding: 18px;
  background: #effcf9;
}

.seo-mini-cta strong {
  color: var(--ink);
  font-size: 18px;
}

.seo-mini-cta .btn {
  width: 100%;
}

.seo-side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(4, 23, 54, 0.06);
}

.seo-side-panel h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.15;
}

.seo-side-panel > p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.seo-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.seo-side-item {
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(220, 231, 238, 0.9);
  border-radius: var(--radius);
  padding: 13px;
  background: #fbfdfe;
}

.seo-side-item div {
  min-width: 0;
}

.seo-side-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.seo-side-item span:not(.seo-info-icon) {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.seo-side-item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.seo-side-panel-coverage {
  border-left: 4px solid var(--teal);
}

.seo-side-panel-pricing {
  border-color: rgba(245, 164, 0, 0.32);
  background: #fffaf0;
}

.seo-side-panel-pricing .seo-info-icon {
  color: #9a6500;
  background: #fff0c8;
}

.seo-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.seo-timeline article {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(4, 23, 54, 0.04);
}

.seo-timeline article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: #e3faf7;
}

.seo-timeline small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-timeline strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.seo-compare-table {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(4, 23, 54, 0.05);
}

.seo-compare-head,
.seo-compare-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) repeat(2, minmax(0, 1fr));
}

.seo-compare-head {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), var(--teal-dark));
}

.seo-compare-head strong,
.seo-compare-head span,
.seo-compare-row > span {
  min-width: 0;
  padding: 14px 16px;
}

.seo-compare-row {
  border-top: 1px solid var(--line);
}

.seo-compare-row > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
}

.seo-compare-row > span:not(:last-child),
.seo-compare-head strong:first-of-type {
  border-right: 1px solid var(--line);
}

.seo-compare-topic {
  color: var(--ink);
  background: #f8fbfd;
  font-weight: 900;
}

.seo-compare-topic svg {
  flex: 0 0 auto;
  color: var(--teal);
}

.seo-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.seo-price-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(245, 164, 0, 0.32);
  border-radius: var(--radius);
  padding: 16px;
  background: #fffaf0;
  box-shadow: 0 8px 22px rgba(4, 23, 54, 0.04);
}

.seo-price-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #9a6500;
  background: #fff0c8;
}

.seo-price-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.seo-price-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.svc-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 155, 154, 0.45);
  box-shadow: var(--shadow-sm);
}

.svc-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: #e3faf7;
}

.svc-card h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.svc-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.area-link {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(4, 23, 54, 0.04);
}

.area-link svg {
  color: var(--teal);
  flex: 0 0 auto;
}

.area-link small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.legal-page h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 0;
  background: rgba(0, 14, 32, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal {
  position: relative;
  width: min(100%, 560px);
  height: 100vh;
  height: 100dvh;
  max-height: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  padding: 0;
  background: var(--white);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.36);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.is-open .modal {
  transform: translateX(0);
}

.modal-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 66px 40px 38px;
  scrollbar-gutter: stable;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--soft);
}

.modal-grab {
  display: none;
}

.modal-hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown-panel,
  .modal-overlay,
  .modal {
    transition: none;
  }
}

.success-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  margin-bottom: 18px;
}

.action-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  display: none;
  gap: 10px;
  transform: translate(-50%, 120%);
  border: 1px solid rgba(220, 231, 238, 0.86);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  backdrop-filter: blur(12px);
}

.action-bar.is-visible {
  transform: translate(-50%, 0);
}

.location-jump-section {
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.location-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
  background: #f7fbfc;
}

.location-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.location-section-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}

.location-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.location-panel-mini {
  align-content: start;
  background: linear-gradient(135deg, #effcfb 0%, #ffffff 70%);
}

.location-panel-mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: #dcfbf7;
}

.location-panel-mini strong {
  color: var(--navy);
  font-size: 22px;
}

.location-panel-mini p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.location-check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.45;
}

.location-check-list svg {
  color: var(--teal-dark);
  margin-top: 2px;
}

.location-step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: location-step;
}

.location-step-list li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 16px 16px 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfc;
  counter-increment: location-step;
}

.location-step-list li::before {
  content: counter(location-step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.location-step-list strong {
  color: var(--navy);
  font-size: 17px;
}

.location-step-list span {
  color: var(--muted);
  line-height: 1.5;
}

.location-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-service-card {
  display: grid;
  gap: 14px;
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 23, 54, 0.05);
}

.location-service-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: #dcfbf7;
}

.location-service-card strong,
.location-service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.location-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.location-service-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 900;
}

.location-service-card-large {
  grid-template-columns: 52px 1fr;
  min-height: 190px;
}

.state-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.state-city-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 23, 54, 0.05);
}

.state-city-card h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 22px;
}

.state-city-card p {
  margin: 0;
  color: var(--muted);
}

.state-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-city-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  background: #edf8f7;
}

.location-final-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.location-final-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.location-final-inner h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 50px);
}

.location-final-inner p,
.location-final-inner .rich p,
.location-final-inner .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.location-final-inner .rich p:last-child {
  margin-bottom: 0;
}

.location-service-hero,
.location-hub-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.88)),
    url("/assets/images/protax-cpa-advisor-hero.png") center / cover no-repeat;
  background-blend-mode: multiply;
}

.location-service-page + .footer-cta {
  display: none;
}

.location-service-page--tax-preparation .location-service-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.88)),
    url("/assets/images/seo-tax-preparation-process.webp") center / cover no-repeat;
  background-blend-mode: multiply;
}

.location-service-page--bookkeeping .location-service-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.88)),
    url("/assets/images/seo-bookkeeping-review.webp") center / cover no-repeat;
  background-blend-mode: multiply;
}

.location-service-page--payroll .location-service-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.88)),
    url("/assets/images/seo-filing-documents.webp") center / cover no-repeat;
  background-blend-mode: multiply;
}

.location-service-page--sales-tax .location-service-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.88)),
    url("/assets/images/seo-sales-tax-map.webp") center / cover no-repeat;
  background-blend-mode: multiply;
}

.location-service-page--tax-planning .location-service-hero {
  background:
    linear-gradient(135deg, rgba(0, 26, 54, 0.98), rgba(3, 120, 121, 0.88)),
    url("/assets/images/seo-advisory-meeting.webp") center / cover no-repeat;
  background-blend-mode: multiply;
}

.location-service-nav-band {
  position: sticky;
  top: 78px;
  z-index: 20;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.location-service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-service-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #f7fbfc;
  font-size: 14px;
  font-weight: 850;
}

.location-service-proof-band {
  padding-top: 42px;
  padding-bottom: 42px;
}

.location-service-proof-grid,
.location-hub-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-hub-service-grid {
  grid-template-columns: repeat(5, 1fr);
}

.location-service-proof-card,
.location-hub-service-card,
.location-hub-city-card,
.location-service-side,
.location-hub-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(4, 23, 54, 0.06);
}

.location-service-proof-card {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
}

.location-service-proof-card span,
.location-hub-service-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  color: var(--teal-dark);
  background: #dcfbf7;
}

.location-service-proof-card strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.22;
}

.location-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-data-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 12px;
  align-items: center;
  min-width: 0;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 23, 54, 0.05);
}

.location-data-card > span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: #dcfbf7;
}

.location-data-card small {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.location-data-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.location-service-section-shell,
.location-hub-split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.48fr);
  gap: 34px;
  align-items: start;
}

.location-service-section-shell.is-reverse .location-service-copy {
  order: 2;
}

.location-service-copy h2,
.location-hub-split h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.08;
}

.location-service-detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.location-service-detail-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-2);
  font-weight: 750;
}

.location-service-detail-list svg {
  color: var(--teal-dark);
  margin-top: 3px;
}

.location-service-timeline {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: city-service-step;
}

.location-service-timeline li {
  position: relative;
  min-height: 96px;
  padding: 20px 20px 20px 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: city-service-step;
}

.location-service-timeline li::before {
  content: counter(city-service-step);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.location-service-timeline strong,
.location-hub-service-card h3,
.location-hub-city-card h3 {
  display: block;
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.location-service-timeline span,
.location-hub-service-card p,
.location-hub-city-card p {
  color: var(--muted);
  line-height: 1.5;
}

.location-service-side {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
  padding: 24px;
}

.location-service-side .eyebrow {
  margin: 0;
}

.location-service-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(4, 23, 54, 0.08);
}

.location-service-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location-service-side-list {
  display: grid;
  gap: 12px;
}

.location-service-side-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border-radius: var(--radius);
  background: #f2fbfa;
}

.location-service-side-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--teal-dark);
  background: #dcfbf7;
}

.location-service-side-list strong {
  color: var(--navy);
  line-height: 1.25;
}

.location-service-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-service-related-grid a {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(4, 23, 54, 0.05);
}

.location-service-related-grid svg {
  color: var(--teal-dark);
}

.location-service-final-cta,
.location-hub-final-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.location-service-final-inner,
.location-hub-final-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.location-service-final-inner h2,
.location-hub-final-inner h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 50px);
}

.location-service-final-inner p,
.location-service-final-inner .rich p,
.location-service-final-inner .eyebrow,
.location-hub-final-inner p,
.location-hub-final-inner .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.location-hub-service-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 22px;
}

.location-hub-service-card a {
  align-self: end;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 900;
}

.location-hub-panel {
  padding: 24px;
}

.location-hub-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-hub-panel li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.location-hub-panel svg {
  color: var(--teal-dark);
  margin-top: 2px;
}

.location-hub-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-hub-city-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.location-hub-city-card h3 a {
  color: var(--navy);
}

.location-hub-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-hub-city-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: #edf8f7;
  font-size: 13px;
  font-weight: 850;
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 14px;
  }

  .header-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-phone small {
    display: none;
  }

  .header-cta {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (max-width: 1120px) {
  .location-service-grid,
  .state-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav,
  .header-phone,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .phone-mini,
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .phone-mini {
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .service-tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-tile-grid-core,
  .compact-card-grid,
  .city-seo-grid,
  .industry-card-grid,
  .problem-grid,
  .resource-grid,
  .steps-row-four,
  .seo-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-trust {
    order: -1;
  }

  .why-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 940px) {
  .location-section-grid {
    grid-template-columns: 1fr;
  }

  .location-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    display: none;
  }

  .hero-home {
    min-height: 0;
  }

  .hero-home::before {
    display: none;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 52px 0 30px;
  }

  .hero-visual {
    min-height: 0;
    justify-content: center;
    margin-inline: -18px;
    padding: 36px 18px 42px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.1)),
      url("/assets/images/protax-cpa-advisor-hero.png") center right / cover no-repeat;
  }

  .hero-review-card {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-row div:nth-child(2) {
    border-right: 0;
  }

  .trust-row div:nth-child(1),
  .trust-row div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .service-tile-grid,
  .svc-card-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section-head,
  .home-image-band,
  .home-image-band.is-flipped,
  .service-secondary-row,
  .home-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .split-section-head {
    gap: 14px;
    align-items: start;
  }

  .home-final-cta-inner {
    justify-items: start;
  }

  .home-image-band figure,
  .home-image-band img {
    min-height: 260px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .steps-row article:not(:last-child)::after {
    display: none;
  }

  .review-grid,
  .faq-grid,
  .content-grid,
  .seo-section-shell,
  .seo-section-shell.is-reverse,
  .hero-page-grid {
    grid-template-columns: 1fr;
  }

  .seo-section-shell.is-reverse .seo-section-copy {
    order: 0;
  }

  .seo-media {
    min-height: 210px;
  }

  .seo-side-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-timeline,
  .seo-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-row a:nth-child(3n) {
    border-right: 0;
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-base {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    text-align: center;
  }

  .action-bar {
    display: flex;
  }
}

@media (max-width: 620px) {
  .location-service-grid,
  .state-city-grid {
    grid-template-columns: 1fr;
  }

  .location-service-card-large {
    grid-template-columns: 1fr;
  }

  .location-service-proof-grid,
  .location-hub-service-grid,
  .location-service-related-grid,
  .location-hub-city-grid,
  .location-data-grid {
    grid-template-columns: 1fr;
  }

  .location-service-section-shell,
  .location-service-section-shell.is-reverse,
  .location-hub-split {
    grid-template-columns: 1fr;
  }

  .location-service-section-shell.is-reverse .location-service-copy {
    order: 0;
  }

  .location-service-side {
    position: static;
  }

  .location-service-final-inner,
  .location-hub-final-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .location-jump-nav a {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }

  .location-panel,
  .location-service-card,
  .state-city-card {
    padding: 18px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 44px;
    flex-basis: 44px;
  }

  .brand-mark svg {
    width: 44px;
  }

  .brand-mark-logo {
    width: 132px;
    flex-basis: 132px;
  }

  .header-actions {
    gap: 8px;
  }

  .phone-mini,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .drawer {
    max-height: calc(100dvh - 68px);
  }

  .drawer-subnav {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-buttons,
  .rating-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn,
  .rating-row {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
    padding: 28px 14px 34px;
  }

  .hero-review-card {
    padding: 22px;
  }

  .section {
    padding: 54px 0;
  }

  .section-title,
  .split-section-head h2,
  .home-image-band h3,
  .home-final-cta h2,
  .footer-cta h2,
  .content-grid h2,
  .seo-section-copy h2 {
    font-size: 28px;
  }

  .service-tile-grid,
  .service-tile-grid-core,
  .compact-card-grid,
  .city-seo-grid,
  .industry-card-grid,
  .problem-grid,
  .resource-grid,
  .steps-row-four,
  .seo-side-grid,
  .seo-timeline,
  .seo-price-grid,
  .why-points,
  .review-grid,
  .industry-row,
  .svc-card-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 178px;
  }

  .compact-card,
  .industry-card,
  .problem-link,
  .resource-card,
  .steps-row-four article {
    min-height: 0;
  }

  .compact-card {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .home-final-cta {
    padding: 48px 0;
  }

  .home-final-cta .btn {
    width: 100%;
  }

  .seo-prose-panel,
  .seo-info-card,
  .seo-side-panel,
  .seo-mini-cta {
    padding: 16px;
  }

  .booking-copy {
    padding: 22px;
  }

  .booking-trust-list {
    padding: 0 18px 18px;
  }

  .home-image-band {
    padding: 14px;
  }

  .home-image-band figure,
  .home-image-band img {
    min-height: 220px;
  }

  .seo-info-card,
  .seo-side-item {
    grid-template-columns: 40px 1fr;
  }

  .seo-info-icon {
    width: 40px;
    height: 40px;
  }

  .seo-timeline article,
  .seo-price-card {
    min-height: 0;
  }

  .seo-compare-table {
    display: grid;
    gap: 12px;
    border: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .seo-compare-head {
    display: none;
  }

  .seo-compare-row {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(4, 23, 54, 0.04);
  }

  .seo-compare-row > span,
  .seo-compare-row > span:not(:last-child) {
    border-right: 0;
  }

  .seo-compare-row > span:not(:first-child) {
    border-top: 1px solid var(--line);
  }

  .industry-row a,
  .industry-row a:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-row a:last-child {
    border-bottom: 0;
  }

  .modal-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }

  .modal {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    border-radius: 8px 8px 0 0;
    transform: translateY(100%);
  }

  .modal-overlay.is-open .modal {
    transform: translateY(0);
  }

  .modal-content {
    padding: 22px 20px 24px;
  }

  .modal-grab {
    display: block;
    flex: 0 0 auto;
    width: 46px;
    height: 4px;
    border-radius: 999px;
    background: #cbd7df;
    margin: 12px auto 10px;
  }

  .action-bar {
    left: 14px;
    right: 14px;
    bottom: 12px;
    transform: translateY(130%);
    justify-content: stretch;
  }

  .action-bar.is-visible {
    transform: translateY(0);
  }

  .action-bar .btn {
    flex: 1;
  }
}
 .lead-form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
