:root {
  --gs-blue: #9ec2df;
  --gs-blue-dark: #153a5b;
  --gs-black: #0a0203;
  --gs-gray: #cccccb;
  --gs-sage: #153a5b;
  --gs-check: #153a5b;
  --gs-ink: #14202b;
  --gs-muted: #647282;
  --gs-soft: #f7fafc;
  --gs-soft-blue: #eef6fb;
  --gs-line: #dfe7ee;
  --gs-white: #ffffff;
  --gs-shadow: 0 18px 45px rgba(20, 32, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gs-ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--gs-white);
  line-height: 1.55;
  overflow-x: hidden;
}

p {
  line-height: 1.5;
  overflow-wrap: break-word;
}

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

a:hover {
  color: #0d2b46;
}

img {
  max-width: 100%;
}

.row > * {
  min-width: 0;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 3rem;
}

.mobile-title-break {
  display: inline;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1360px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 56px 0;
}

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

.section-blue-soft {
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
}

.section-dark {
  color: var(--gs-white);
  background: linear-gradient(135deg, var(--gs-blue-dark), #0d253c);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gs-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gs-blue);
}

.section-dark .eyebrow,
.cta-band .eyebrow {
  color: var(--gs-blue);
}

.section-dark .eyebrow::before,
.cta-band .eyebrow::before {
  background: var(--gs-blue);
}

h1,
h2,
h3,
h4,
h5 {
  max-width: 100%;
  color: var(--gs-black);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: var(--gs-white);
}

.display-heading {
  font-size: clamp(2.45rem, 5vw, 5rem);
  overflow-wrap: break-word;
}

.lead-text {
  color: var(--gs-muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.section-dark .lead-text,
.section-dark .muted-on-dark {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 24px;
}

.btn-primary {
  border-color: var(--gs-blue-dark);
  background: var(--gs-blue-dark);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: #0d2b46;
  background: #0d2b46;
}

.btn-outline-primary {
  color: var(--gs-blue-dark);
  border-color: var(--gs-blue-dark);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--gs-white);
  border-color: var(--gs-blue-dark);
  background: var(--gs-blue-dark);
}

.btn-light-blue {
  color: var(--gs-blue-dark);
  border-color: var(--gs-blue);
  background: var(--gs-blue);
}

.btn-light-blue:hover,
.btn-light-blue:focus {
  color: var(--gs-blue-dark);
  border-color: #b9d5e9;
  background: #b9d5e9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--gs-white);
  border-bottom: 1px solid var(--gs-line);
  box-shadow: none;
}

.topline {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  color: var(--gs-muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--gs-line);
  background: #fbfdff;
}

.topline a {
  color: var(--gs-ink);
}

.topline i {
  color: var(--gs-blue-dark);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 76px;
  padding-top: 8px;
  padding-bottom: 12px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo img {
  width: min(306px, 56vw);
  height: auto;
}

.header-badges {
  align-items: center;
  gap: 28px;
  margin-left: 42px;
}

.header-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-logo-badge img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 184px;
  object-fit: contain;
}

.header-logo-badge.is-xero img {
  height: 44px;
  max-width: 138px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--gs-blue-dark);
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  background: var(--gs-white);
  white-space: nowrap;
}

.trust-badge i {
  color: var(--gs-check);
}

.primary-nav {
  padding: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  border-radius: 999px;
  background: var(--gs-blue-dark);
  box-shadow: none;
}

.nav-shell .navbar-nav {
  width: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  .site-header {
    min-height: 108px;
  }

  .primary-nav {
    margin-top: -62px;
    padding: 0 0 10px;
  }

  .primary-nav .container {
    display: flex;
    justify-content: flex-end;
  }

  .primary-nav .offcanvas-lg {
    width: auto;
    max-width: 100%;
  }

  .primary-nav .offcanvas-body {
    padding: 0;
  }

  .nav-shell {
    width: auto;
    max-width: 100%;
  }

  .nav-shell .navbar-nav {
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .nav-shell .nav-item + .nav-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

.nav-shell .nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 0;
}

.nav-shell .nav-link:hover,
.nav-shell .nav-link:focus,
.nav-shell .nav-link.active {
  color: #bed5e7;
  background: transparent;
}

.dropdown-menu {
  padding: 10px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  box-shadow: var(--gs-shadow);
}

.dropdown-item {
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}

.dropdown-item:active,
.dropdown-item:hover,
.dropdown-item.active {
  color: var(--gs-blue-dark);
  background: var(--gs-soft-blue);
}

.mobile-menu-btn {
  flex: 0 0 auto;
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  background: var(--gs-white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(158, 194, 223, 0.35), transparent 28%),
    linear-gradient(135deg, #f7fbfe 0%, #ffffff 48%, #eef6fb 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  content: "";
  border-radius: 50%;
  background: rgba(111, 143, 122, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: var(--gs-shadow);
}

.hero-card img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.hero-card-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  color: var(--gs-white);
  border-radius: 8px;
  background: rgba(21, 58, 91, 0.92);
  backdrop-filter: blur(8px);
}

.hero-card-overlay strong,
.hero-card-overlay p {
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero-trust .trust-badge {
  box-shadow: 0 8px 18px rgba(20, 32, 43, 0.08);
}

.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.stats-panel {
  padding: 20px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: var(--gs-shadow);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon,
.feature-icon,
.service-icon,
.step-number,
.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--gs-blue-dark);
  border-radius: 8px;
  background: var(--gs-soft-blue);
}

.feature-icon,
.service-icon,
.cert-icon {
  width: 72px;
  height: 72px;
}

.feature-icon i,
.service-icon i,
.cert-icon i {
  font-size: 2rem !important;
}

.card-clean {
  height: 100%;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-shadow);
}

.service-card::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  content: "";
  border-radius: 50%;
  background: rgba(158, 194, 223, 0.22);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3,
.feature-card h3 {
  font-size: 1.2rem;
  text-wrap: balance;
}

.service-card p,
.feature-card p,
.cert-card p,
.process-card p,
.price-card p,
.review-card p {
  line-height: 1.46;
  text-wrap: pretty;
}

.service-card p,
.feature-card p,
.cert-card p {
  max-width: 31ch;
  margin-right: auto;
  margin-left: auto;
}

.service-card a {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px;
  text-align: center;
}

.section-blue-soft .caption-panel {
  height: 100%;
  text-align: center;
}

.section-blue-soft .caption-panel span {
  display: inline-block;
  max-width: 32ch;
  line-height: 1.46;
  text-wrap: pretty;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--gs-shadow);
}

.image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-panel.image-focus-top img {
  object-position: center top;
}

.image-panel.image-contain {
  background: var(--gs-white);
}

.image-panel.image-contain img {
  height: min(560px, 72vh);
  min-height: 360px;
  object-fit: contain;
  object-position: center;
}

.caption-panel {
  padding: 22px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
}

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

.check-list li {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.check-list i {
  margin-top: 5px;
  color: var(--gs-check);
}

.check-list li span,
.accordion-button,
.card-clean,
.caption-panel,
.feature-card,
.service-card,
.cert-card,
.process-card,
.price-card,
.review-card {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.process-line {
  counter-reset: process;
}

.process-card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
}

.process-card p {
  margin-right: auto;
  margin-left: auto;
}

.step-number {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--gs-white);
  background: var(--gs-blue-dark);
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 205px;
  padding: 24px 24px 22px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 10px 24px rgba(20, 32, 43, 0.045);
}

.price-card .tag {
  align-self: flex-start;
  margin-bottom: 18px !important;
}

.price-card .price {
  margin-bottom: 8px;
}

.price-card p {
  margin-bottom: 0;
}

.price-table {
  overflow: hidden;
  padding: 0;
}

.price-table-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  color: var(--gs-white);
  background: var(--gs-blue-dark);
}

.price-table-header i {
  font-size: 1.45rem;
  color: var(--gs-blue);
}

.price-table-header h3 {
  margin: 0;
  color: var(--gs-white);
  font-size: 1.15rem;
}

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gs-line);
}

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

.price-row span {
  color: var(--gs-ink);
}

.price-row strong {
  color: var(--gs-blue-dark);
  white-space: nowrap;
}

.price-note {
  margin: 18px 24px 24px;
  padding: 16px;
  color: var(--gs-muted);
  border-radius: 8px;
  background: var(--gs-soft);
}

.price {
  color: var(--gs-blue-dark);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.blog-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.06);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: var(--gs-shadow);
}

.blog-card-featured img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.blog-card-featured img.image-contain,
.article-hero-image.image-contain img {
  object-fit: contain;
  background: var(--gs-soft-blue);
}

.blog-card-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gs-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card .post-meta {
  margin-bottom: 14px;
}

.reviews-section {
  position: relative;
}

.reviews-source-pills {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.review-source-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--gs-line);
  border-radius: 999px;
  color: var(--gs-blue-dark);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--gs-white);
}

.review-source-pill i {
  color: var(--gs-blue);
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.06);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gs-blue-dark);
  font-weight: 800;
}

.review-source i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gs-white);
  background: var(--gs-blue-dark);
}

.review-source.is-google i {
  background: #4285f4;
}

.review-source.is-facebook i {
  background: #1877f2;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #f7b731;
  font-size: 0.9rem;
  white-space: nowrap;
}

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

.review-card .review-link {
  margin-top: auto;
  font-weight: 800;
}

.reviews-integration-note {
  padding: 22px;
  border-radius: 8px;
  color: var(--gs-white);
  background: var(--gs-blue-dark);
}

.reviews-integration-note p {
  color: rgba(255, 255, 255, 0.82);
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-filter .tag {
  border: 1px solid var(--gs-line);
  background: var(--gs-white);
}

.post-pagination .page-link {
  min-width: 42px;
  color: var(--gs-blue-dark);
  border-color: var(--gs-line);
  font-weight: 800;
}

.post-pagination .page-item.active .page-link {
  color: var(--gs-white);
  border-color: var(--gs-blue-dark);
  background: var(--gs-blue-dark);
}

.article-hero-image {
  overflow: hidden;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  box-shadow: var(--gs-shadow);
}

.article-hero-image img {
  display: block;
  width: 100%;
  height: min(560px, 58vw);
  object-fit: cover;
}

.article-layout {
  align-items: flex-start;
}

.article-content {
  color: var(--gs-ink);
  font-size: 1.04rem;
}

.article-content > * + * {
  margin-top: 1.25rem;
}

.article-content h2 {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.article-content h3 {
  margin-top: 1.75rem;
  font-size: 1.28rem;
}

.article-content p,
.article-content li {
  color: #263646;
  line-height: 1.56;
}

.article-content ul,
.article-content ol {
  padding-left: 1.3rem;
}

.article-lede {
  padding: 24px;
  border-left: 4px solid var(--gs-blue);
  border-radius: 8px;
  background: var(--gs-soft-blue);
}

.article-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.article-summary-item {
  padding: 20px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
}

.article-summary-item i {
  color: var(--gs-blue-dark);
  font-size: 1.35rem;
}

.article-highlight,
.article-disclaimer {
  padding: 22px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-soft);
}

.article-highlight {
  border-left: 4px solid var(--gs-blue-dark);
}

.content-table {
  overflow: hidden;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
}

.content-table table {
  margin: 0;
}

.content-table th {
  color: var(--gs-white);
  background: var(--gs-blue-dark);
}

.article-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
}

.toc-card,
.author-mini,
.service-mini {
  padding: 22px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.06);
}

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

.toc-card a {
  color: var(--gs-ink);
  font-weight: 700;
}

.toc-card a:hover {
  color: var(--gs-blue-dark);
}

.author-mini {
  display: flex;
  gap: 14px;
}

.author-mini img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.article-nav-card,
.related-post-card {
  display: block;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.06);
}

.article-nav-card small,
.related-post-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--gs-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.article-nav-card strong,
.related-post-card strong {
  color: var(--gs-black);
}

.related-post-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  color: var(--gs-blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  border-radius: 999px;
  background: var(--gs-soft-blue);
}

.faq-wrap .accordion-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
}

.faq-wrap .accordion-button {
  color: var(--gs-ink);
  font-weight: 800;
  box-shadow: none;
}

.faq-wrap .accordion-button:not(.collapsed) {
  color: var(--gs-blue-dark);
  background: var(--gs-soft-blue);
}

.cta-band {
  overflow: hidden;
  padding: 54px;
  border-radius: 8px;
  color: var(--gs-white);
  background:
    linear-gradient(135deg, rgba(21, 58, 91, 0.96), rgba(10, 2, 3, 0.86)),
    url("../img/consultation-office.jpg") center/cover;
}

.cta-band h2,
.cta-band p {
  color: var(--gs-white);
}

.cta-band p,
.page-hero p,
.hero-card-overlay p,
.caption-panel p,
.contact-card p,
.article-lede p,
.article-summary-item p,
.reviews-integration-note p {
  line-height: 1.5;
}

.page-hero {
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(247, 250, 252, 0.95), rgba(238, 246, 251, 0.94)),
    url("../img/office-meeting.jpg") center/cover;
}

.page-hero.dark-photo {
  color: var(--gs-white);
  background:
    linear-gradient(120deg, rgba(21, 58, 91, 0.92), rgba(10, 2, 3, 0.72)),
    url("../img/magdalena-phone.jpg") center/cover;
}

.page-hero.dark-photo .eyebrow {
  color: var(--gs-blue);
}

.page-hero.dark-photo .eyebrow::before {
  background: var(--gs-blue);
}

.page-hero.dark-photo h1,
.page-hero.dark-photo p {
  color: var(--gs-white);
}

.page-hero.dark-photo .caption-panel,
.page-hero.dark-photo .caption-panel h2,
.page-hero.dark-photo .caption-panel h3,
.page-hero.dark-photo .caption-panel p {
  color: var(--gs-ink);
}

.page-hero.dark-photo .caption-panel .tag {
  color: var(--gs-blue-dark);
  background: var(--gs-soft-blue);
}

.contact-card {
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
}

.form-shell {
  padding: 32px;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: var(--gs-shadow);
}

.form-control,
.form-select {
  min-height: 52px;
  border-color: #cfdbe6;
  border-radius: 8px;
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gs-blue);
  box-shadow: 0 0 0 0.2rem rgba(158, 194, 223, 0.35);
}

.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gs-line);
  border-radius: 8px;
  background: var(--gs-white);
  box-shadow: 0 12px 30px rgba(20, 32, 43, 0.06);
}

.cert-card h3 {
  text-wrap: balance;
}

.cert-meta {
  color: var(--gs-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.cert-actions {
  margin-top: auto;
  padding-top: 18px;
}

.certificate-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.certificate-ribbon .tag {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--gs-line);
}

.credential-strip-label {
  color: var(--gs-muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credential-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.credential-logo-card img {
  display: block;
  width: auto;
  height: 58px;
  max-width: 230px;
  object-fit: contain;
}

.credential-logo-card.is-xero img {
  height: 60px;
  max-width: 188px;
}

.section-dark .credential-strip,
.page-hero.dark-photo .credential-strip {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.section-dark .credential-strip-label,
.page-hero.dark-photo .credential-strip-label {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  color: rgba(255, 255, 255, 0.78);
  background: #0b1724;
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus {
  color: #bed5e7;
}

.footer h2 {
  margin-bottom: 1rem;
}

.footer h2 + .list-unstyled {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.footer .col-lg-4 h2 + .list-unstyled {
  gap: 14px;
}

.footer .col-lg-4 li {
  display: flex;
  align-items: center;
}

.footer .col-lg-4 i {
  color: var(--gs-blue);
}

.footer-logo {
  max-width: 260px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-policy-link {
  justify-self: center;
}

.footer-credit {
  justify-self: end;
  padding-right: 56px;
  text-align: right;
}

.footer-credit a {
  font-weight: 700;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1020;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  box-shadow: var(--gs-shadow);
}

.back-to-top.is-visible {
  display: inline-flex;
}

@media (max-width: 1399.98px) {
  .header-badges {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .nav-shell .nav-link {
    padding: 8px 12px;
    font-size: 0.84rem;
  }

  .brand-logo img {
    width: min(270px, 52vw);
  }

  .header-logo-badge img {
    max-width: 86px;
    max-height: 22px;
  }

  .header-logo-badge.is-xero img {
    max-width: 74px;
    max-height: 26px;
  }
}

@media (max-width: 991.98px) {
  .topline {
    display: none;
  }

  .header-main {
    gap: 12px;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-logo {
    max-width: calc(100% - 64px);
  }

  .brand-logo img {
    width: 300px;
    max-width: 100%;
  }

  .primary-nav {
    margin-top: 0;
    padding: 0;
  }

  .primary-nav .offcanvas-lg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    width: min(340px, 92vw);
    max-width: 100%;
    overflow-y: auto;
    background: var(--gs-white);
    box-shadow: -18px 0 42px rgba(20, 32, 43, 0.14);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .primary-nav .offcanvas-lg.show,
  .primary-nav .offcanvas-lg.showing {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-shell {
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-shell .nav-link {
    justify-content: space-between;
    color: var(--gs-ink);
    border-radius: 8px;
  }

  .nav-shell .navbar-nav {
    flex-direction: column;
  }

  .nav-shell .nav-link:hover,
  .nav-shell .nav-link:focus,
  .nav-shell .nav-link.active {
    color: var(--gs-blue-dark);
    background: var(--gs-soft-blue);
  }

  .offcanvas-body {
    padding-top: 0;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-card img {
    height: 420px;
  }

  .stats-strip {
    margin-top: 0;
  }

  .section {
    padding: 68px 0;
  }

  .cta-band {
    padding: 36px 26px;
  }

  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured img {
    height: 390px;
  }

  .article-summary-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .section .row,
  .section-sm .row,
  .page-hero .row,
  .hero .row {
    margin-right: 0;
    margin-left: 0;
  }

  .section .row > *,
  .section-sm .row > *,
  .page-hero .row > *,
  .hero .row > * {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .section h2,
  .section-sm h2,
  .section p,
  .section-sm p,
  .section li,
  .section-sm li,
  .caption-panel,
  .accordion,
  .accordion-item,
  .accordion-button {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-policy-link,
  .footer-credit {
    justify-self: center;
    padding-right: 0;
    text-align: center;
  }

  .reviews-source-pills {
    justify-content: flex-start;
  }

  .review-card {
    padding: 22px;
  }

  .review-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero .row > * {
    min-width: 0;
  }

  .page-hero .display-heading {
    max-width: min(100%, 13em);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .hero .container,
  .hero .col-lg-6 {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1,
  .hero p {
    width: calc(100vw - 56px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .display-heading {
    font-size: clamp(1.9rem, 7vw, 2.3rem);
    overflow-wrap: anywhere;
  }

  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }

  .price-row {
    flex-direction: column;
    gap: 6px;
  }

  .hero .btn,
  .page-hero .btn {
    display: inline-flex;
    justify-content: center;
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero .d-flex.flex-wrap.gap-3,
  .page-hero .d-flex.flex-wrap.gap-3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badge {
    max-width: 100%;
    white-space: normal;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .certificate-ribbon {
    flex-direction: column;
    align-items: flex-start;
  }

  .certificate-ribbon .tag,
  .credential-strip,
  .credential-logo-card {
    max-width: 100%;
  }

  .hero-card img {
    height: 360px;
  }

  .hero-card-overlay {
    position: static;
    border-radius: 0;
  }

  .section {
    padding: 56px 0;
  }

  .section-sm {
    padding: 44px 0;
  }

  .stats-panel,
  .form-shell {
    padding: 22px;
  }

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

@media (max-width: 575.98px) {
  .site-header .container {
    --bs-gutter-x: 2rem;
  }

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

  .brand-logo {
    flex: 0 1 auto;
    max-width: calc(100vw - 82px);
  }

  .brand-logo img {
    width: min(255px, 68vw);
  }

  .hero .display-heading {
    font-size: clamp(1.62rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .hero h1,
  .hero p {
    width: min(100%, 340px);
  }

  .mobile-title-break {
    display: block;
  }

  .page-hero .display-heading {
    font-size: clamp(1.35rem, 5.6vw, 1.75rem);
    line-height: 1.15;
  }

  .page-hero .article-title {
    font-size: clamp(1.35rem, 5.4vw, 1.65rem);
  }

  .blog-card-featured-body {
    padding: 28px 22px;
  }

  .blog-card-featured img {
    height: 360px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .breadcrumb-item,
  .post-meta span {
    min-width: 0;
    max-width: 100%;
  }

  .breadcrumb-item.active {
    flex: 1 1 100%;
    padding-left: 0;
  }

  .breadcrumb-item.active::before {
    display: none;
  }

  .post-meta {
    gap: 8px;
    font-size: 0.84rem;
  }

  .post-meta span {
    flex: 1 1 100%;
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .post-meta i {
    margin-top: 4px;
    flex: 0 0 auto;
  }

  .article-layout {
    --bs-gutter-x: 0;
  }

  .article-layout > * {
    padding-right: 0;
    padding-left: 0;
  }

  .article-content,
  .article-content p,
  .article-content li,
  .article-lede,
  .article-summary-item,
  .cert-card,
  .caption-panel {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .article-content h2 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .article-content {
    max-width: min(100%, 280px);
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero p,
  .page-hero .lead-text,
  .caption-panel p {
    max-width: 34ch;
  }

  .hero-card-overlay {
    padding: 18px;
  }

  .hero-card-overlay p {
    max-width: 28ch;
  }
}
