/* ==========================================================================
   Harbor layout — self-contained styles
   ========================================================================== */

/* ---- FULL-WIDTH FIX ------------------------------------------------------
   Two separate things were capping every Harbor section's width:
   1) Bootstrap's own .container (bootstrap-5.0.0-beta2.min.css) snaps to
      540/720/960/1140/1320px depending on screen size.
   2) The platform's static/assets/css/custom.css adds a SITE-WIDE override
      that caps .container to 1600px !important once the screen is
      >=1400px wide — this uses !important, so it beats plain specificity
      and would still limit these sections even after fixing (1).
   The rules below are scoped to .container elements inside any harbor-*
   section only (so no other layout on the platform is affected) and use
   !important so they win over the platform-wide custom.css cap at every
   screen size, making each section stretch full browser width the way
   the reference site does.
   ------------------------------------------------------------------------ */
.harbor-navbar .container,
.harbor-hero .container,
.harbor-innovation .container,
.harbor-gallery .container,
.harbor-approach .container,
.harbor-products .container,
.harbor-services .container,
.harbor-faq .container,
.harbor-feature .container,
.harbor-cta .container,
.harbor-footer .container,
.harbor-modules .container,
.harbor-pricing .container,
.harbor-compare .container,
section[class^="harbor-"] .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}

@media (min-width: 1600px) {

  .harbor-navbar .container,
  .harbor-hero .container,
  .harbor-innovation .container,
  .harbor-gallery .container,
  .harbor-approach .container,
  .harbor-products .container,
  .harbor-services .container,
  .harbor-faq .container,
  .harbor-feature .container,
  .harbor-cta .container,
  .harbor-footer .container,
  .harbor-modules .container,
  .harbor-pricing .container,
  .harbor-compare .container,
  section[class^="harbor-"] .container {
    padding-left: 8% !important;
    padding-right: 8% !important;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.harbor-navbar,
.harbor-hero,
.harbor-innovation,
.harbor-gallery,
.harbor-approach,
.harbor-products,
.harbor-services,
.harbor-faq,
.harbor-feature,
.harbor-cta,
.harbor-footer,
.harbor-footer * {
  font-family: "Inter", system-ui, sans-serif;
  box-sizing: border-box;
}

.harbor-hero h1,
.harbor-hero .harbor-hero-eyebrow,
.harbor-innovation h2,
.harbor-innovation h4,
.harbor-gallery h2,
.harbor-gallery h3,
.harbor-approach h2,
.harbor-approach h3,
.harbor-products h2,
.harbor-products h3,
.harbor-services h2,
.harbor-services h3,
.harbor-faq h2,
.harbor-feature h2,
.harbor-cta h2,
.harbor-footer h5 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
}

/* ---- Shared section basics ---------------------------------------- */
.harbor-navbar section,
section[class^="harbor-"] {
  padding: 72px 0;
}

.harbor-navbar {
  padding: 0;
}

.harbor-section-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0A2E4D;
  margin-bottom: 14px;
}

.harbor-section-desc {
  color: #5C6B79;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.harbor-section-desc-wide {
  max-width: 780px;
}

.harbor-text-link {
  color: #1B7A9B;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

.harbor-text-link:hover {
  color: #0A2E4D;
  text-decoration: underline;
}

.harbor-btn-pill {
  background: #1b5b70;
  color: #fff;
  border-radius: 999px;
  padding: 10px 58px;
  font-weight: 600;
  border: none;
}

.harbor-btn-pill:hover {
  background: #0A2E4D;
  color: #fff;
}

.harbor-btn-outline {
  border: 1.5px solid #1B7A9B;
  color: #1B7A9B;
  border-radius: 999px;
  padding: 6px 20px;
  font-weight: 600;
}

.harbor-btn-outline:hover {
  background: #1B7A9B;
  color: #fff;
}

.harbor-btn-dark {
  background: #0A2E4D;
  color: #fff;
  border-radius: 6px;
  padding: 10px 26px;
  font-weight: 600;
  border: none;
}

.harbor-btn-dark:hover {
  background: #071f34;
  color: #fff;
}

/* ---- Navbar ---------------------------------------------------------- */
.harbor-navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(10, 46, 77, .06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.harbor-navbar .navbar-brand {
  font-weight: 700;
  color: #0A2E4D;
  font-size: 1.3rem;
}

.harbor-navbar-logo {
  height: 32px;
  width: auto;
}

.harbor-navbar .nav-link {
  color: #33414D;
  font-weight: 500;
  padding: 22px 14px;
}

.harbor-navbar .nav-link:hover,
.harbor-navbar .nav-link.active {
  color: #1B7A9B;
}

.harbor-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(10, 46, 77, .12);
  padding: .5rem 0;
}

.harbor-navbar .dropdown-item {
  padding: .65rem 1.25rem;
}

/* ---- Mobile collapse hardening -------------------------------------------
   The platform's site-wide main.css/custom.css (built for other layouts)
   can leak generic rules onto .navbar-collapse / .nav-link (the same class
   of problem the .container fix above already deals with). The symptom:
   the mobile menu renders permanently open, with no real background, and
   overlaps the page content below it instead of collapsing.
   These rules are scoped to .harbor-navbar only and use !important so they
   win over any such leakage at every screen size, restoring Bootstrap's
   default collapse/expand behavior for this layout specifically. ---------- */
@media (max-width: 991.98px) {
  .harbor-navbar .navbar-collapse {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #fff !important;
    box-shadow: 0 12px 24px rgba(10, 46, 77, .12) !important;
    padding: 10px 5% 22px !important;
    z-index: 1030 !important;
  }

  .harbor-navbar .navbar-collapse.show {
    display: block !important;
  }

  .harbor-navbar .navbar-nav {
    gap: 2px;
  }

  .harbor-navbar .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid #EEF2F5;
  }

  .harbor-navbar .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border-left: 2px solid #E7EDF1;
    margin-left: 10px;
  }

  .harbor-navbar .btn.harbor-btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 0 !important;
  }
}

/* ---- Hero -------------------------------------------------------------- */
.harbor-hero {
  background: #1B7A9B;
  padding: 60px 0;
  position: relative;
}

.harbor-hero-eyebrow {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.harbor-hero-desc {
  color: #DCEEF4;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
}

.harbor-hero-media {
  position: relative;
}

.harbor-hero-media img {
  border-radius: 6px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.harbor-hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(10, 46, 77, .82);
  color: #fff;
  padding: 14px 18px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.harbor-hero-badge-num {
  color: #F0763C;
  font-weight: 700;
  font-size: .9rem;
}

.harbor-hero-badge-label {
  font-weight: 700;
  letter-spacing: .5px;
}

.harbor-hero .carousel-control-prev,
.harbor-hero .carousel-control-next,
.harbor-products .carousel-control-prev,
.harbor-products .carousel-control-next {
  width: auto;
  opacity: 1;
}

.harbor-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.harbor-carousel-arrow-light {
  background: #EEF3F6;
  color: #0A2E4D;
}

.harbor-hero .carousel-control-prev {
  left: -50px;
}

.harbor-hero .carousel-control-next {
  right: -45px;
}

/* ---- Innovation -------------------------------------------------------- */
.harbor-innovation {
  background: #F5F8FA;
}

.harbor-innovation-media {
  position: relative;
}

.harbor-innovation-media img {
  border-radius: 4px;
  width: 100%;
}

.harbor-offer-card {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 62%;
  background: #17627E;
  color: #fff;
  padding: 26px 24px;
  border-radius: 4px;
}

.harbor-offer-icon {
  color: #F0763C;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.harbor-offer-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.harbor-offer-card p {
  font-size: 1.2rem;
  color: #CFE4EC;
  margin-bottom: 10px;
}

.harbor-offer-card a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.2rem;
}

.harbor-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.harbor-checklist li {
  color: #33414D;
  padding: 5px 0;
  font-weight: 500;
}

.harbor-checklist i {
  color: #1B7A9B;
  margin-right: 8px;
}

/* ---- Gallery ------------------------------------------------------------ */
.harbor-gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.harbor-gallery-item img {
  width: 90%;
  height: 320px;
  object-fit: fill;
  display: block;
}

.harbor-gallery-caption {
  position: absolute;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* You had a typo: cener */
  align-items: center;
  text-align: center;

  padding: 24px;
}

.harbor-gallery-eyebrow {
  font-size: .7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F0763C;
  font-weight: 700;
  margin-bottom: 8px;
}

.harbor-gallery-caption h3,
.harbor-gallery-caption .harbor-gallery-modal-title {
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
}

.harbor-gallery-caption p {
  font-size: .85rem;
  max-width: 200px;
  color: #E4EEF3;
}

/* ---- Gallery: horizontal side-scroll ------------------------------------ */
.harbor-gallery-scroller-wrap {
  position: relative;
}

.harbor-gallery-scroller {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 12px;
  margin: 0 -4px;
  scrollbar-width: none;
}

.harbor-gallery-scroller::-webkit-scrollbar {
  display: none;
}

.harbor-gallery-scroller .harbor-gallery-item {
  flex: 0 0 auto;
  width: 82%;
  height: 100%;
  scroll-snap-align: start;
  cursor: pointer;

  transition: transform .25s ease;
}

.harbor-gallery-scroller .harbor-gallery-item:hover {
  transform: translateY(-4px);
}

@media (min-width: 768px) {
  .harbor-gallery-scroller .harbor-gallery-item {
    width: 46%;
  }
}

.harbor-gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.harbor-gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #C9D6DF;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.harbor-gallery-dot.active {
  background: #1B7A9B;
  transform: scale(1.25);
}

/* ---- Gallery lightbox modal ---------------------------------------------- */
.harbor-gallery-modal .modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

.harbor-gallery-modal .modal-header {
  position: absolute;
  right: 0;
  z-index: 2;
  border: none;
  padding: 10px;
}

.harbor-gallery-modal .btn-close {
  background-color: #fff;
  border-radius: 50%;
  opacity: .9;
  padding: 8px;
}

.harbor-gallery-modal .modal-body {
  padding: 0;
}

.harbor-gallery-modal .harbor-gallery-item {
  width: 100%;
  margin: 0;
  cursor: default;
}

.harbor-gallery-modal .harbor-gallery-item:hover {
  transform: none;
}

.harbor-gallery-modal .harbor-gallery-item img {
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  background: #0A2E4D;
}

/* ---- Approach / step cards ----------------------------------------------- */
.harbor-approach {
  background: #fff;
}

.harbor-step-card {
  background: #fff;
  border: 1px solid #E7EDF1;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 6px 20px rgba(10, 46, 77, .05);
}

.harbor-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E6F3F7;
  color: #1B7A9B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

/* Used by eproc_start only — a bigger illustration image instead of the
   small icon circle above, per the "Where to Start" design. */
.harbor-step-illustration {
  width: 80%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.harbor-step-card h5 {
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #0A2E4D;
}

.harbor-step-card p {
  color: #6B7885;
  font-size: .9rem;
}

.harbor-step-card .harbor-text-link {
  margin-top: 4px;
  position: relative;
  padding-right: 16px;
}

.harbor-step-card .harbor-text-link::after {
  content: "\2192";
  /* → */
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s ease;
}

.harbor-step-card .harbor-text-link:hover::after {
  transform: translateX(4px);
}

/* ---- Products ------------------------------------------------------------- */
.harbor-products {
  background: #F5F8FA;
}

.harbor-products-title {
  font-weight: 700;
  color: #0A2E4D;
  margin-bottom: 4px;
}

.harbor-products-tagline {
  display: inline-block;
  background: #F0763C;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.harbor-products-media {
  background: #0A2E4D;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.harbor-products-media img {
  max-width: 100%;
  border-radius: 4px;
}

/* ---- Services -------------------------------------------------------------- */
.harbor-service-card {
  background: #fff;
  border: 1px solid #E7EDF1;
  border-radius: 6px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
}

.harbor-service-card h5 {
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: .9rem;
  color: #0A2E4D;
}

.harbor-service-card p {
  color: #6B7885;
  font-size: .88rem;
}

/* ---- FAQ --------------------------------------------------------------------- */
.harbor-faq {
  background: #F5F8FA;
}

.harbor-faq-categories li {
  padding: 10px 0;
  color: #1B7A9B;
  font-weight: 600;
  border-bottom: 1px solid #E1E9EE;
}

.harbor-faq-accordion .accordion-button {
  font-weight: 600;
  color: #0A2E4D;
  background: #fff;
}

.harbor-faq-accordion .accordion-button:not(.collapsed) {
  color: #1B7A9B;
  background: #EEF6F9;
  box-shadow: none;
}

.harbor-faq-accordion .accordion-item {
  border-color: #E7EDF1;
  margin-bottom: 6px;
  border-radius: 4px;
  overflow: hidden;
}

/* ---- Feature banner ------------------------------------------------------------ */
.harbor-feature-banner {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}

.harbor-feature-media {
  display: block;
  width: 80%;
  height: auto;
  transform: scale(1.02);
  /* hides the soft edge the blur leaves around the image */
}

.harbor-feature-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 50, 0.15) 0%, rgba(10, 30, 50, 0.35) 100%);
}

.harbor-feature-banner-caption {
  position: absolute;
  left: 6%;
  bottom: 8%;
  max-width: 480px;
  color: #fff;
}

.harbor-feature-banner-caption h2 {
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.harbor-feature-banner-caption p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 0.9;
}

.harbor-feature-enquire-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.harbor-feature-enquire-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
}

.harbor-feature-modal .modal-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.harbor-feature-modal .modal-header {
  border-bottom: none;
  padding: 10px 14px 0;
}

.harbor-feature-enquire-iframe {
  width: 100%;
  height: 70vh;
  border: 0;
  display: block;
}

/* ---- CTA ------------------------------------------------------------------------- */
.harbor-cta {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
}

@media (max-width: 991.98px) {

  /* fixed backgrounds are unreliable on mobile browsers, fall back to normal scroll */
  .harbor-cta {
    background-attachment: scroll;
  }
}

.harbor-cta h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 22px;
}

.harbor-cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.harbor-cta-form .form-control {
  border-radius: 999px;
  padding: 12px 20px;
  border: none;
}

.harbor-cta-form .btn {
  white-space: nowrap;
}

/* ---- Footer ------------------------------------------------------------------------- */
.harbor-footer {
  background: #F5F8FA;
  padding-top: 60px;
  color: #33414D;
}

.harbor-footer-contact li {
  margin-bottom: 12px;
}

.harbor-footer-contact i {
  color: #1B7A9B;
  margin-right: 8px;
}

.harbor-footer-heading {
  font-weight: 700;
  color: #0A2E4D;
  margin-bottom: 16px;
}

.harbor-footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.harbor-footer-form .form-control {
  border-radius: 4px;
  border: 1px solid #D9E2E8;
}

.harbor-footer-map iframe {
  border-radius: 6px;
}

.harbor-footer-bottom {
  margin-top: 50px;
  background: #0A2E4D;
  color: #C9D6DF;
  padding: 18px 0;
  font-size: .85rem;
}

.harbor-footer-bottom a {
  color: #C9D6DF;
  text-decoration: none;
  margin-right: 4px;
}

.harbor-footer-bottom a:hover {
  color: #fff;
}

/* ---- Modules ---------------------------------------------------------------------- */
.harbor-modules {
  background: #F5F8FA;
  padding: 70px 0;
}

.harbor-modules-media img {
  border-radius: 8px;
  width: 100%;
  display: block;
}

.harbor-modules-panel {
  background: #F5F8FA;
  padding: 24px;
  border-radius: 8px;
}

.harbor-modules-row {
  margin-bottom: 26px;
}

.harbor-modules-row:last-child {
  margin-bottom: 0;
}

.harbor-modules-links {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 8px;
}

.harbor-modules-links a {
  color: #1B7A9B;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
  text-decoration: none;
}

.harbor-modules-links a:first-child {
  text-decoration: underline;
}

.harbor-modules-links a:hover {
  color: #0A2E4D;
}

.harbor-modules-bar {
  height: 4px;
  border-radius: 2px;
  background: #7FC2DA;
  width: 100%;
}

/* ---- Pricing plans ------------------------------------------------------------------ */
.harbor-pricing {
  padding: 70px 0;
}

.harbor-pricing-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.harbor-pricing-toggle {
  display: inline-flex;
  border: 1.5px solid #1B7A9B;
  border-radius: 999px;
  padding: 3px;
  gap: 3px;
}

.harbor-pricing-toggle button {
  border: none;
  background: transparent;
  color: #1B7A9B;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.harbor-pricing-toggle button.active {
  background: #1B7A9B;
  color: #fff;
}

.harbor-pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.harbor-pricing-card {
  flex: 1 1 240px;
  min-width: 240px;
  border: 1px solid #E3EAEF;
  border-radius: 10px;
  padding: 30px 24px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(10, 46, 77, .05);
}

.harbor-pricing-card-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0A2E4D;
  text-align: center;
  margin-bottom: 14px;
}

.harbor-pricing-card-price {
  text-align: center;
  font-weight: 800;
  font-size: 2.1rem;
  color: #0A2E4D;
  margin-bottom: 4px;
}

.harbor-pricing-card-price sup {
  font-size: 1.1rem;
  top: -.9em;
}

.harbor-pricing-card-price span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0A2E4D;
}

.harbor-pricing-card-cycle {
  text-align: center;
  font-size: .85rem;
  color: #5C6B79;
  margin-bottom: 18px;
}

.harbor-pricing-card .harbor-btn-pill,
.harbor-pricing-card .harbor-btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.harbor-pricing-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.harbor-pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #EEF2F5;
  font-weight: 600;
  font-size: .92rem;
  color: #33414D;
}

.harbor-pricing-card-features li i {
  color: #0A2E4D;
  margin-top: 3px;
}

.harbor-pricing-card--custom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ---- Pricing comparison -------------------------------------------------------------- */
.harbor-compare {
  padding: 70px 0;
}

.harbor-compare-badge {
  display: block;
  margin: 0 auto 40px;
  width: fit-content;
  background: #1B7A9B;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  text-align: center;
}

.harbor-compare-head {
  display: grid;
  grid-template-columns: 1fr repeat(var(--plan-count, 3), minmax(120px, 1fr));
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.harbor-compare-head-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.harbor-compare-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #33414D;
  font-size: .92rem;
}

.harbor-compare-switch .form-check-input {
  width: 2.4em;
  height: 1.3em;
  cursor: pointer;
}

.harbor-compare-expand {
  justify-self: end;
  border: none;
  background: transparent;
  color: #0A2E4D;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: underline;
  cursor: pointer;
}

.harbor-compare-plan {
  text-align: center;
}

.harbor-compare-plan-name {
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .82rem;
  color: #0A2E4D;
  margin-bottom: 6px;
}

.harbor-compare-plan-price {
  font-weight: 800;
  font-size: 1.5rem;
  color: #0A2E4D;
  margin-bottom: 10px;
}

.harbor-compare-plan .harbor-btn-outline {
  width: 100%;
}

.harbor-compare-group {
  border: 1px solid #E3EAEF;
  border-radius: 6px;
  margin-top: 14px;
  overflow: hidden;
}

.harbor-compare-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  background: #EAF6F8;
  color: #0A2E4D;
  font-weight: 800;
  letter-spacing: .03em;
  font-size: .95rem;
  padding: 14px 20px;
  cursor: pointer;
}

.harbor-compare-group-header i {
  transition: transform .2s ease;
}

.harbor-compare-group.open .harbor-compare-group-header i {
  transform: rotate(180deg);
}

.harbor-compare-group-rows {
  display: none;
}

.harbor-compare-group.open .harbor-compare-group-rows {
  display: block;
}

.harbor-compare-row {
  display: grid;
  grid-template-columns: 1fr repeat(var(--plan-count, 3), minmax(120px, 1fr));
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid #F0F3F6;
  font-size: .92rem;
  color: #33414D;
}

.harbor-compare-row-value {
  text-align: center;
}

@media (max-width: 767.98px) {

  .harbor-compare-head,
  .harbor-compare-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .harbor-compare-row-value::before {
    content: attr(data-plan) ": ";
    font-weight: 700;
  }
}

/* ---- Responsive ----------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .harbor-offer-card {
    position: static;
    width: 100%;
    margin-top: -30px;
  }

  .harbor-hero .carousel-control-prev,
  .harbor-hero .carousel-control-next {
    display: none;
  }

  .harbor-pricing-head {
    flex-direction: column;
  }
}

/* ==========================================================================
   Harbor navbar — mobile sidebar drawer
   (Append this block to the end of harbor.css)
   ==========================================================================
   Replaces Bootstrap's inline .navbar-collapse on mobile: the platform's
   site-wide JS/CSS kept leaving that collapse permanently expanded and
   pushing the rest of the page down instead of overlaying it. Below 992px
   the inline nav is hidden entirely and #harborSidebar (a fixed, full-height
   off-canvas drawer) is used instead, toggled by the small script in
   harbor_navbar.html rather than Bootstrap's collapse component.
   ------------------------------------------------------------------------ */

@media (max-width: 991.98px) {

  /* Hide the old inline collapse nav completely on mobile — the sidebar
     below is the only mobile nav now. */
  .harbor-navbar .navbar-collapse {
    display: none !important;
  }
}

/* Prevents background scroll while the sidebar is open. */
body.harbor-sidebar-locked {
  overflow: hidden !important;
}

/* ---- Backdrop ------------------------------------------------------- */
.harbor-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 46, 77, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 1049;
}

.harbor-sidebar-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ---- Sidebar panel ---------------------------------------------------- */
.harbor-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(320px, 84vw);
  background: #fff;
  box-shadow: -8px 0 30px rgba(10, 46, 77, .18);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.harbor-sidebar.open {
  transform: translateX(0);
}

.harbor-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #EEF2F5;
  flex-shrink: 0;
}

.harbor-sidebar-head .harbor-navbar-brand {
  font-weight: 700;
  color: #0A2E4D;
  font-size: 1.05rem;
  text-decoration: none;
}

.harbor-sidebar-close {
  border: none;
  background: #F5F8FA;
  color: #33414D;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.harbor-sidebar-close:hover {
  background: #EAF6F8;
  color: #1B7A9B;
}

/* ---- Nav list ---------------------------------------------------------- */
.harbor-sidebar-nav {
  list-style: none;
  margin: 0;
  padding: 8px 10px;
  flex: 1;
}

.harbor-sidebar-item {
  border-bottom: 1px solid #F0F3F6;
}

.harbor-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  padding: 14px 10px;
  font-weight: 600;
  font-size: .98rem;
  color: #33414D;
  text-decoration: none;
}

a.harbor-sidebar-link:hover,
.harbor-sidebar-toggle:hover {
  color: #1B7A9B;
}

.harbor-sidebar-toggle i {
  transition: transform .2s ease;
  font-size: .8rem;
  color: #8494A2;
}

.harbor-sidebar-item.open .harbor-sidebar-toggle i {
  transform: rotate(180deg);
}

.harbor-sidebar-submenu {
  list-style: none;
  margin: 0;
  padding: 0 10px 10px 18px;
  display: none;
}

.harbor-sidebar-item.open .harbor-sidebar-submenu {
  display: block;
}

.harbor-sidebar-submenu li a {
  display: block;
  padding: 10px 8px;
  color: #5C6B79;
  font-size: .92rem;
  text-decoration: none;
  border-left: 2px solid #E7EDF1;
  padding-left: 14px;
}

.harbor-sidebar-submenu li a:hover {
  color: #1B7A9B;
  border-left-color: #1B7A9B;
}

/* ---- Footer / CTA -------------------------------------------------------- */
.harbor-sidebar-footer {
  padding: 16px 20px 22px;
  border-top: 1px solid #EEF2F5;
  flex-shrink: 0;
}