:root {
  --color-ink: #10202b;
  --color-muted: #526575;
  --color-border: #dce7ee;
  --color-surface: #ffffff;
  --color-soft: #f4f9fb;
  --color-blue: #1f6f9f;
  --color-blue-dark: #145579;
  --color-teal: #0f8f86;
  --color-green: #2f8f46;
  --color-amber: #b7791f;
  --color-danger: #b42318;
  --shadow-card: 0 16px 40px rgba(16, 32, 43, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--color-soft);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  color: var(--color-blue-dark);
  text-decoration: underline;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: var(--color-blue-dark);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 231, 238, 0.86);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
  font-size: 0.95rem;
}

.brand:hover {
  color: var(--color-ink);
  text-decoration: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-ink);
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle:hover {
  border-color: var(--color-blue);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.nav-links {
  position: fixed;
  inset: 72px 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  max-height: calc(100vh - 88px);
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow-y: auto;
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  color: var(--color-ink);
  font-weight: 650;
}

.nav-dropdown {
  display: grid;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 0;
  border-radius: 12px;
  color: var(--color-ink);
  background: transparent;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-current="page"],
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--color-blue-dark);
  background: #eaf5f8;
}

.nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  display: none;
  gap: 0.2rem;
  padding: 0.3rem 0 0.3rem 0.75rem;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  color: var(--color-muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-blue-dark);
  text-decoration: none;
  background: #eaf5f8;
}

.main {
  min-height: 65vh;
}

.section {
  padding: 3.5rem 0;
}

.section-tight {
  padding: 2rem 0;
}

.section-soft {
  background: #edf5f8;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.hero {
  padding: 4.25rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(31, 111, 159, 0.14), rgba(15, 143, 134, 0.11)),
    #ffffff;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.3rem, 8vw, 4.75rem);
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.65rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

.hero-subtitle,
.intro {
  max-width: 790px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--color-blue-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.back-link::before {
  content: "\2190";
  margin-right: 0.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  background: var(--color-blue);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.button:hover {
  color: #ffffff;
  text-decoration: none;
  background: var(--color-blue-dark);
}

.button-secondary {
  color: var(--color-blue-dark);
  border-color: var(--color-border);
  background: #ffffff;
}

.button-secondary:hover {
  color: var(--color-blue-dark);
  background: #edf8fa;
}

.button-reset {
  color: var(--color-ink);
  border-color: var(--color-border);
  background: #ffffff;
}

.button-reset:hover {
  color: var(--color-ink);
  background: #f1f5f8;
}

.hero-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-panel-header {
  padding: 1.2rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-blue), var(--color-teal));
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  padding: 1rem;
}

.metric-tile {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fbfdfe;
}

.metric-number {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-blue-dark);
  font-size: 1.55rem;
  font-weight: 850;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.6rem;
}

.section-heading p {
  color: var(--color-muted);
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.audience-row .badge {
  margin-bottom: 0;
}

.tool-type {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.audience-note {
  max-width: 760px;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--color-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-blue-dark);
  background: #edf8fa;
  font-weight: 700;
}

.audience-summary {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.audience-summary-card {
  padding: 1rem;
  border: 1px solid rgba(31, 111, 159, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
}

.audience-summary-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-blue-dark);
}

.audience-summary-card span {
  color: var(--color-muted);
}

.hero-panel .audience-summary {
  grid-template-columns: 1fr;
  margin-top: 0;
  padding: 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.audience-choice-grid {
  display: grid;
  gap: 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 10px 28px rgba(16, 32, 43, 0.05);
}

.card:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--color-muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.card-meta .badge {
  margin-bottom: 0;
}

.card-link {
  margin-top: auto;
  color: var(--color-blue-dark);
  font-weight: 800;
}

.card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.24rem 0.58rem;
  border-radius: 999px;
  color: var(--color-blue-dark);
  background: #e7f4f6;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-green {
  color: #1f6532;
  background: #e8f6ed;
}

.badge-amber {
  color: #7a4b12;
  background: #fff4df;
}

.badge-customer {
  color: #145579;
  background: #e6f2fb;
}

.badge-owner {
  color: #1f6532;
  background: #e8f6ed;
}

.tool-section {
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(16, 32, 43, 0.05);
}

.tool-section + .tool-section {
  margin-top: 1.5rem;
}

.tool-section-header {
  max-width: 800px;
  margin-bottom: 1.25rem;
}

.tool-section-header p {
  color: var(--color-muted);
}

.tool-section .cards-grid {
  align-items: stretch;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.feature-list li {
  padding: 1rem;
  border-left: 4px solid var(--color-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #ffffff;
}

.disclaimer-box,
.notice-box {
  padding: 1.25rem;
  border: 1px solid #bedee4;
  border-radius: var(--radius);
  background: #edf8fa;
}

.disclaimer-box strong,
.notice-box strong {
  color: var(--color-blue-dark);
}

.intro + .notice-box {
  margin-top: 1.2rem;
}

.cta-box {
  margin-top: 1.4rem;
  padding: 1.25rem;
  border: 1px solid #bedee4;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(31, 111, 159, 0.08), rgba(15, 143, 134, 0.1)),
    #ffffff;
  box-shadow: 0 10px 28px rgba(16, 32, 43, 0.05);
}

.cta-box h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}

.cta-box p {
  max-width: 720px;
  color: var(--color-muted);
}

.cta-box .button:disabled {
  color: #ffffff;
  background: #7aa8bd;
  cursor: not-allowed;
  opacity: 0.8;
}

.table-wrap {
  width: 100%;
  margin: 1rem 0 1.2rem;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.info-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  color: var(--color-blue-dark);
  background: #edf8fa;
  font-weight: 850;
}

.info-table td:first-child {
  color: var(--color-ink);
  font-weight: 800;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.hub-layout {
  display: grid;
  gap: 1.4rem;
}

.hub-layout > *,
.calculator-layout > *,
.cards-grid > * {
  min-width: 0;
}

.sidebar-card {
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.sidebar-card h2 {
  font-size: 1.35rem;
}

.sidebar-card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.sidebar-card ul,
.toc ul,
.footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-card li,
.toc li,
.footer-list li {
  margin-top: 0.55rem;
}

.sidebar-card li:first-child {
  margin-top: 0;
}

.sidebar-card a {
  font-weight: 750;
}

.sidebar-link-note {
  display: block;
  margin-top: 0.1rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.sidebar-index-link {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.calculator-layout {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.calculator-card {
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.input-group {
  display: grid;
  gap: 0.35rem;
}

.input-group-wide {
  grid-column: 1 / -1;
}

.option-group {
  padding: 0;
  margin: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 0.35rem;
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #cbd9e2;
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-ink);
  font-weight: 650;
}

.check-option input {
  flex: 0 0 auto;
  width: auto;
  min-height: auto;
  margin: 0.25rem 0 0;
  accent-color: var(--color-blue);
}

.check-option:has(input:checked) {
  border-color: rgba(31, 111, 159, 0.55);
  background: #edf8fa;
}

label {
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #cbd9e2;
  border-radius: 12px;
  color: var(--color-ink);
  background: #ffffff;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 111, 159, 0.16);
  border-color: var(--color-blue);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.form-error {
  margin-top: 0.9rem;
  color: var(--color-danger);
  font-weight: 750;
}

.form-error:empty {
  display: none;
}

.results-grid {
  display: grid;
  gap: 1rem;
}

.results-grid.estimate-results {
  grid-template-columns: 1fr;
}

.estimate-panel h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.3rem, 6vw, 1.65rem);
}

.estimate-panel .estimate-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.estimate-panel .result-card {
  display: flex;
  min-height: 0;
  padding: 0.85rem 0.7rem;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.estimate-panel .result-card-primary {
  order: -1;
  grid-column: 1 / -1;
  min-height: 0;
  padding: 1rem;
  align-items: center;
  text-align: center;
}

.result-card {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fbfdfe;
}

.result-card-primary {
  border-color: rgba(31, 111, 159, 0.42);
  background: linear-gradient(135deg, rgba(31, 111, 159, 0.08), rgba(15, 143, 134, 0.1));
  box-shadow: 0 12px 28px rgba(16, 32, 43, 0.08);
}

.result-card-primary .result-label {
  color: var(--color-blue-dark);
}

.estimate-panel .result-card-primary .result-value {
  font-size: clamp(1.9rem, 9vw, 2.35rem);
}

.result-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  color: var(--color-blue-dark);
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
}

.result-label {
  display: block;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.result-value {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-blue-dark);
  font-size: clamp(1.45rem, 6vw, 2.15rem);
  font-weight: 900;
}

.estimate-panel .result-value {
  font-size: clamp(1.2rem, 6vw, 1.65rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  white-space: nowrap;
}

.result-value.small {
  font-size: 1.22rem;
}

.result-note {
  margin-top: 0.85rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.result-disclaimer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.audience-crosslink {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.audience-crosslink h2 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.audience-crosslink p {
  color: var(--color-muted);
}

.result-warning {
  margin-top: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  color: #7a1d14;
  background: #fff0ed;
  font-weight: 750;
}

.result-warning.is-positive {
  color: #1f6532;
  background: #e8f6ed;
}

.package-block {
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.comparison-grid {
  display: grid;
  gap: 1rem;
}

.article {
  padding: 2.5rem 0;
}

.article-content {
  max-width: 820px;
}

.article-content h2 {
  margin-top: 2.1rem;
}

.toc {
  margin: 1.4rem 0;
  padding: 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

summary {
  padding: 1rem;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 1rem 1rem;
  color: var(--color-muted);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0;
  color: #d7e5eb;
  background: #10202b;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  color: #ffffff;
  font-weight: 850;
}

.site-footer a {
  color: #d7f3f1;
}

.footer-disclaimer {
  max-width: 740px;
  color: #b7cbd5;
}

.muted {
  color: var(--color-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-muted);
  background: #ffffff;
  font-size: 0.92rem;
  font-weight: 750;
}

@media (min-width: 700px) {
  .audience-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .results-grid.estimate-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .estimate-panel h2 {
    margin-bottom: 1.15rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
  }

  .estimate-panel .estimate-results {
    gap: 1rem;
  }

  .estimate-panel .result-card {
    min-height: 112px;
    padding: 1rem;
    text-align: left;
  }

  .estimate-panel .result-card-primary {
    min-height: 145px;
    text-align: center;
  }

  .estimate-panel .result-card-primary .result-value {
    font-size: clamp(2rem, 4vw, 2.45rem);
  }

  .estimate-panel .result-value {
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  }

  .estimate-results .result-card-primary {
    grid-column: 1 / -1;
  }

  .estimate-results .result-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    max-height: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .nav-links a {
    padding: 0.55rem 0.75rem;
  }

  .nav-dropdown {
    position: relative;
    display: block;
  }

  .nav-dropdown-toggle {
    width: auto;
    padding: 0.55rem 0.75rem;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 0;
    z-index: 120;
    min-width: 210px;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    box-shadow: var(--shadow-card);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 0.7rem 0.8rem;
    color: var(--color-ink);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }

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

  .hub-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }

  .calculator-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

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

  .tool-section {
    padding: 1.75rem;
  }
}

/* Homepage redesign */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page {
  --home-blue: #1168f5;
  --home-blue-dark: #0b4fc6;
  --home-navy: #10182e;
  --home-copy: #526078;
  --home-line: #e4eaf3;
  --home-soft-blue: #edf5ff;
  --home-soft-green: #edf9f0;
  --home-soft-violet: #f3efff;
  --home-soft-amber: #fff5e7;
  color: var(--home-navy);
  background: #ffffff;
}

.home-page .container,
.home-page .nav-shell {
  width: min(100% - 2rem, 1280px);
}

.home-page .site-header {
  position: relative;
  border-bottom-color: rgba(228, 234, 243, 0.9);
  background: #ffffff;
}

.home-page .nav-shell {
  min-height: 78px;
}

.home-page .brand {
  color: var(--home-navy);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.home-page .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #237cff, #0757df);
  box-shadow: 0 8px 18px rgba(17, 104, 245, 0.2);
  transform: rotate(-5deg);
}

.home-page .brand-mark .icon {
  width: 28px;
  height: 28px;
  transform: rotate(5deg);
}

.home-page .nav-links > a,
.home-page .nav-dropdown-toggle {
  color: #26324a;
  font-size: 1.05rem;
}

.home-page .nav-links > a:hover,
.home-page .nav-links > a[aria-current="page"],
.home-page .nav-dropdown-toggle:hover,
.home-page .nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--home-blue);
  background: transparent;
}

.home-nav {
  --home-blue: #1168f5;
  --home-blue-dark: #0b4fc6;
  --home-navy: #10182e;
  --home-line: #e4eaf3;
  border-bottom-color: rgba(228, 234, 243, 0.9);
  background: #ffffff;
}

.home-nav .nav-shell {
  width: min(100% - 2rem, 1280px);
  min-height: 78px;
}

.home-nav .brand {
  color: var(--home-navy);
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.home-nav .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #237cff, #0757df);
  box-shadow: 0 8px 18px rgba(17, 104, 245, 0.2);
  transform: rotate(-5deg);
}

.home-nav .brand-mark .icon {
  width: 28px;
  height: 28px;
  transform: rotate(5deg);
}

.home-nav .nav-links > a,
.home-nav .nav-dropdown-toggle {
  color: #26324a;
  font-size: 1.05rem;
}

.home-nav .nav-links > a:hover,
.home-nav .nav-links > a[aria-current="page"],
.home-nav .nav-dropdown-toggle:hover,
.home-nav .nav-dropdown-toggle[aria-current="page"],
.home-nav .nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--home-blue);
  background: transparent;
}

.home-nav .nav-links > a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--home-blue);
}

.home-nav .nav-dropdown-menu {
  gap: 0.25rem;
}

@media (max-width: 919px) {
  .home-nav .nav-links {
    inset: 78px 1rem auto;
  }
}

.home-page .nav-links > a[aria-current="page"] {
  box-shadow: inset 0 -2px var(--home-blue);
}

.home-page .nav-dropdown-menu {
  gap: 0.25rem;
}

.home-menu-link {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
}

.home-menu-link strong,
.home-menu-link small {
  display: block;
}

.home-menu-link strong {
  color: var(--home-navy);
  font-size: 1.02rem;
}

.home-menu-link small {
  color: #738097;
  font-size: 0.86rem;
  font-weight: 550;
}

.home-menu-icon,
.home-service-row-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 9px;
}

.home-menu-icon .icon,
.home-service-row-icon .icon {
  width: 25px;
  height: 25px;
}

.home-icon-blue {
  color: #1168f5;
  background: #eaf3ff;
}

.home-icon-green {
  color: #168447;
  background: #eaf8ef;
}

.home-icon-violet {
  color: #7252d8;
  background: #f1edff;
}

.home-icon-amber {
  color: #d27308;
  background: #fff3dd;
}

.home-icon-cyan {
  color: #087f9c;
  background: #e8f8fb;
}

.home-icon-coral {
  color: #d14d63;
  background: #fff0f2;
}

.home-main {
  background: #ffffff;
}

.home-hero {
  position: relative;
  padding: 3.4rem 0 1.5rem;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 3.4rem;
  right: 2%;
  width: 47%;
  height: 21rem;
  border-radius: 50% 45% 48% 52%;
  background: linear-gradient(145deg, rgba(221, 235, 255, 0.86), rgba(242, 247, 255, 0.55));
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.home-hero-copy {
  max-width: 520px;
}

.home-hero h1 {
  max-width: 520px;
  margin-bottom: 1.15rem;
  color: var(--home-navy);
  font-size: clamp(2.7rem, 5vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-hero-subtitle {
  max-width: 500px;
  color: var(--home-copy);
  font-size: 1.15rem;
  line-height: 1.65;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.55rem;
}

.home-page .home-hero-actions .button {
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.9rem 1.3rem;
  border-radius: 9px;
  font-size: 1rem;
  box-shadow: none;
}

.home-page .home-button-primary {
  color: #ffffff;
  border-color: var(--home-blue);
  background: var(--home-blue);
  box-shadow: 0 10px 24px rgba(17, 104, 245, 0.2);
}

.home-page .home-button-primary:hover {
  color: #ffffff;
  background: var(--home-blue-dark);
}

.home-page .home-button-secondary {
  color: var(--home-blue);
  border-color: #8fb9fb;
  background: #ffffff;
}

.home-page .home-button-secondary:hover {
  color: var(--home-blue-dark);
  border-color: var(--home-blue);
  background: var(--home-soft-blue);
}

.home-dashboard-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 9.2rem;
}

.home-dashboard-glow {
  position: absolute;
  inset: 4% 0 0 5%;
  border-radius: 50%;
  background: rgba(221, 235, 255, 0.68);
}

.home-dashboard {
  position: relative;
  z-index: 1;
  padding: 1.15rem;
  border: 1px solid #dfe6ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 45px rgba(36, 67, 113, 0.12);
}

.home-dashboard-header,
.home-dashboard-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.home-dashboard-title {
  color: var(--home-navy);
  font-size: 1.15rem;
  font-weight: 850;
}

.home-dashboard-filter {
  padding: 0.42rem 0.68rem;
  border: 1px solid var(--home-line);
  border-radius: 6px;
  color: #4b5870;
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 750;
}

.home-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.home-dashboard-metric {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--home-line);
  border-radius: 9px;
  background: #ffffff;
}

.home-dashboard-metric small,
.home-dashboard-metric strong,
.home-dashboard-metric span {
  display: block;
}

.home-dashboard-metric small {
  min-height: 1.8em;
  color: #46546c;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.3;
}

.home-dashboard-metric strong {
  color: var(--home-navy);
  font-size: 1.5rem;
  line-height: 1.2;
}

.home-dashboard-metric span {
  margin-top: 0.08rem;
  color: #14783f;
  font-size: 0.84rem;
  font-weight: 800;
}

.home-dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.7rem;
  margin-top: 0.7rem;
}

.home-dashboard-range,
.home-dashboard-trend {
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  background: #ffffff;
}

.home-dashboard-card-heading {
  margin-bottom: 0.65rem;
  color: #26344c;
  font-size: 0.95rem;
  font-weight: 850;
}

.home-dashboard-card-heading small {
  color: #14783f;
  font-size: 0.84rem;
  font-weight: 800;
}

.home-range-row {
  display: grid;
  grid-template-columns: 125px 1fr 50px;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.58rem;
  color: #2f3e56;
  font-size: 0.86rem;
  font-weight: 650;
}

.home-range-row > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-range-row i {
  height: 5px;
  border-radius: 999px;
  background: #e8edf4;
  overflow: hidden;
}

.home-range-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--home-blue);
}

.home-range-row small {
  color: #435169;
  font-size: 0.84rem;
  font-weight: 750;
  text-align: right;
}

.home-range-soon {
  color: #68758a;
}

.home-range-soon i,
.home-range-soon b {
  opacity: 0.72;
}

.home-dashboard-chart {
  display: block;
  width: 100%;
  height: 120px;
  margin-top: 0.15rem;
  overflow: visible;
}

.home-chart-grid {
  fill: none;
  stroke: #eef2f7;
  stroke-width: 1;
}

.home-chart-line {
  fill: none;
  stroke: var(--home-blue);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-dashboard-chart circle {
  fill: #ffffff;
  stroke: var(--home-blue);
  stroke-width: 2.5;
}

.home-dashboard-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.home-dashboard-mini-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.58rem;
  border: 1px solid var(--home-line);
  border-radius: 8px;
}

.home-dashboard-mini-grid strong,
.home-dashboard-mini-grid small {
  display: block;
  grid-column: 2;
  line-height: 1;
}

.home-dashboard-mini-grid strong {
  color: var(--home-navy);
  font-size: 1.05rem;
}

.home-dashboard-mini-grid small {
  color: #526078;
  font-size: 0.84rem;
  font-weight: 650;
}

.home-service-row-icon {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
}

.home-service-row-icon .icon {
  width: 22px;
  height: 22px;
}

.home-dashboard-services {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0;
  left: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  width: auto;
  padding: 0.9rem;
  border: 1px solid var(--home-line);
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(36, 67, 113, 0.13);
}

.home-dashboard-services > strong {
  grid-column: 1 / -1;
  margin-bottom: 0.2rem;
  color: #26344c;
  font-size: 0.95rem;
}

.home-service-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.58rem;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
}

.home-service-pill .icon {
  width: 22px;
  height: 22px;
}

.home-trust-section {
  padding: 0.25rem 0 0.9rem;
}

.home-trust-grid {
  display: grid;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(31, 62, 110, 0.04);
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 1rem 1.15rem;
}

.home-trust-item + .home-trust-item {
  border-top: 1px solid var(--home-line);
}

.home-trust-item strong,
.home-trust-item small {
  display: block;
}

.home-trust-item strong {
  font-size: 1rem;
}

.home-trust-item small {
  color: #59677e;
  font-size: 0.86rem;
}

.home-icon-bubble {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.home-icon-bubble .icon {
  width: 30px;
  height: 30px;
}

.home-stats-section {
  padding: 0.25rem 0 0.9rem;
}

.home-stats-grid {
  display: grid;
  gap: 0.8rem;
}

.home-stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  min-height: 124px;
  padding: 1.15rem;
  border: 1px solid var(--home-line);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(31, 62, 110, 0.04);
}

.home-stat-card strong,
.home-stat-card small {
  display: block;
}

.home-stat-card strong {
  color: var(--home-navy);
  font-size: 1.2rem;
  line-height: 1.18;
}

.home-stat-card small {
  margin-top: 0.2rem;
  color: #59677e;
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-content-section {
  padding: 0.15rem 0 0.8rem;
}

.home-main-panels,
.home-bottom-panels {
  display: grid;
  gap: 1rem;
}

.home-how-panel,
.home-audience-panel,
.home-compact-panel {
  min-width: 0;
  border: 1px solid var(--home-line);
  border-radius: 14px;
  background: #ffffff;
}

.home-how-panel {
  padding: 1rem;
  border-color: transparent;
}

.home-how-panel > h2,
.home-audience-panel > h2 {
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
  text-align: center;
}

.home-steps {
  position: relative;
  display: grid;
  gap: 0.5rem;
}

.home-step {
  position: relative;
  padding: 0.45rem;
  text-align: center;
}

.home-step-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: calc(50% + 27px);
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--home-blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.home-step-number-green {
  background: #168447;
}

.home-step-number-violet {
  background: #7252d8;
}

.home-step-icon {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.home-step-icon .icon {
  width: 39px;
  height: 39px;
}

.home-step h3 {
  margin: 0.7rem 0 0.3rem;
  font-size: 1rem;
}

.home-step p {
  margin: 0 auto;
  color: var(--home-copy);
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-audience-panel {
  padding: 1rem;
  background: linear-gradient(135deg, #fbfdff, #f8fbff);
}

.home-audience-grid {
  display: grid;
  gap: 0.8rem;
}

.home-audience-card {
  min-width: 0;
  padding: 1rem;
  border-radius: 12px;
}

.home-audience-customer {
  background: #f0f6ff;
}

.home-audience-business {
  background: #f1faf4;
}

.home-audience-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-audience-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--home-blue);
  box-shadow: 0 5px 12px rgba(17, 104, 245, 0.2);
}

.home-audience-business .home-audience-icon {
  background: #19894c;
}

.home-audience-icon .icon {
  width: 31px;
  height: 31px;
}

.home-audience-header h3 {
  margin: 0 0 0.1rem;
  color: #1552ad;
  font-size: 1.05rem;
}

.home-audience-business .home-audience-header h3 {
  color: #176d3d;
}

.home-audience-header p {
  margin: 0;
  color: #526078;
  font-size: 0.84rem;
  line-height: 1.4;
}

.home-check-list {
  display: grid;
  gap: 0.48rem;
  padding: 0;
  margin: 0.8rem 0 0;
  list-style: none;
}

.home-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #344158;
  font-size: 0.84rem;
}

.home-check-list .icon {
  width: 19px;
  height: 19px;
  color: var(--home-blue);
}

.home-audience-business .home-check-list .icon {
  color: #168447;
}

.home-bottom-section {
  padding: 0 0 1.5rem;
}

.home-bottom-panels {
  align-items: start;
}

.home-compact-panel {
  padding: 1.25rem;
}

.home-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-panel-heading h2 {
  margin: 0;
  font-size: 1.45rem;
}

.home-panel-heading a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.home-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 0.9rem;
}

.home-panel-actions a:first-child {
  color: #1552ad;
}

.home-panel-actions a:last-child {
  color: #176d3d;
}

.home-panel-heading .icon,
.home-page .home-hero-actions .icon {
  width: 21px;
  height: 21px;
}

.home-panel-heading a:hover {
  text-decoration: none;
}

.home-category-grid,
.home-guide-grid {
  display: grid;
  gap: 0.65rem;
}

.home-category-card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 108px;
  padding: 0.7rem 0.35rem;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  color: var(--home-navy);
  text-align: center;
  background: #fbfdff;
}

a.home-category-card:hover {
  color: var(--home-navy);
  border-color: #b9d1f8;
  text-decoration: none;
  transform: translateY(-1px);
}

.home-category-icon,
.home-guide-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 10px;
}

.home-category-icon .icon,
.home-guide-icon .icon {
  width: 32px;
  height: 32px;
}

.home-category-card strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.home-category-card small {
  position: absolute;
  top: 0.25rem;
  right: 0.3rem;
  color: #8a6c27;
  font-size: 0.82rem;
  font-weight: 800;
}

.home-guide-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  min-width: 0;
  min-height: 112px;
  padding: 1rem;
  border: 1px solid var(--home-line);
  border-radius: 10px;
  color: var(--home-navy);
  background: #ffffff;
}

.home-guide-card:hover {
  color: var(--home-navy);
  border-color: #b9d1f8;
  text-decoration: none;
}

.home-guide-card strong,
.home-guide-card small {
  display: block;
}

.home-guide-card strong {
  font-size: 1.05rem;
  line-height: 1.28;
}

.home-guide-card small {
  margin-top: 0.3rem;
  color: #59677e;
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.7rem;
  color: #59677e;
  font-size: 0.86rem;
}

.home-disclaimer .icon {
  width: 22px;
  height: 22px;
  color: var(--home-blue);
}

.home-disclaimer p {
  margin: 0;
}

.home-page .site-footer {
  margin-top: 0;
  background: #0e1930;
}

.home-page .footer-brand,
.home-page .site-footer h2 {
  font-size: 1.2rem;
}

.home-page .footer-disclaimer,
.home-page .footer-list a {
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 620px) {
  .home-hero-actions {
    flex-wrap: nowrap;
  }

  .home-page .home-hero-actions .button {
    min-width: 0;
    padding-inline: 0.9rem;
    white-space: nowrap;
  }

  .home-stats-grid,
  .home-category-grid,
  .home-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 760px) {
  .home-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-trust-item + .home-trust-item {
    border-top: 0;
    border-left: 1px solid var(--home-line);
  }

  .home-main-panels,
  .home-bottom-panels {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  }

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

@media (min-width: 960px) {
  .home-page .nav-dropdown-menu {
    min-width: 285px;
    padding: 0.6rem;
  }

  .home-page .nav-links,
  .home-nav .nav-links {
    margin-right: 0;
    margin-left: auto;
    gap: 0.85rem;
  }

  .home-nav .nav-dropdown-menu {
    min-width: 285px;
    padding: 0.6rem;
  }

  .home-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(610px, 1.18fr);
    gap: 2rem;
  }

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

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

  .home-steps::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 37px;
    left: 17%;
    right: 17%;
    border-top: 1px dashed #c8d3e2;
  }

  .home-step {
    z-index: 1;
  }
}

@media (max-width: 759px) {
  .home-dashboard-wrap {
    padding-bottom: 0;
  }

  .home-dashboard-services {
    position: relative;
    top: auto;
    right: auto;
    bottom: 0;
    left: auto;
    width: 100%;
    margin-top: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-dashboard-services > strong {
    grid-column: 1 / -1;
  }

  .home-dashboard-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 619px) {
  .home-page .brand {
    max-width: 220px;
    font-size: 0.98rem;
  }

  .home-hero {
    padding-top: 2.7rem;
  }

  .home-hero h1 {
    font-size: 2.7rem;
  }

  .home-hero-actions .button {
    width: 100%;
  }

  .home-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-panel-actions {
    justify-content: flex-start;
  }

  .home-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stat-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-category-card {
    transition: none;
  }
}
