.breadcrumb {
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: underline;
  font-weight: 700;
}

.breadcrumb > svg {
  margin: 0 3px;
}

.box {
  background: #edf1f8;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 3px 8px 3px rgba(16, 37, 94, 0.15);
  overflow-x: auto;
}

.icon-text {
  transform: translate(5px, -1px);
}

/* TABLE */

.table-l {
  min-width: 1000px;
}
.table-m {
  min-width: 700px;
}
.table-s {
  min-width: 500px;
}

.table .table-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  border-bottom: 1px solid #b3c1e5;
}
.table .table-row:last-child {
  border: none !important;
  border-radius: 0 0 10px 10px;
}
.table .table-row:nth-of-type(2n) {
  background: #f8faff;
}
.table .row-head {
  background: #a9b7d3;
  border-radius: 10px 10px 0 0;
  height: 30px;
  font-weight: 600;
}
.table .table-row.row-head .cell {
  font-size: 11px;
  line-height: 12px;
  margin: 0 5px;
}
.table .table-row.row-head .cell:first-child {
  width: calc(50% - 12px);
}
.table .table-row .cell {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 13px;
  width: 50%;
  margin: 0 5px;
}
.table .table-row:not(.row-head) .cell > img {
  width: 30px;
  margin-right: 10px;
  border-radius: 100%;
  border: 2px solid #10255e;
}
.table .table-link-row {
  transition: 0.3s ease background;
  cursor: pointer;
}
.table .table-link-row:hover {
  background: #d8def2;
}
.table .row-head .cell img {
  max-height: 28px;
}
.table .row-head .cell-head-logo {
  justify-content: center;
  margin: 0 15px;
}

.cell-head-logo-text {
  justify-content: center;
  margin: 0 15px;
  font-size: 15px !important;
  font-weight: 600;
  font-style: italic;
}
.table .table-row .cell-options {
  justify-content: end;
  text-align: right;
  min-width: 60px;
  width: 1%;
}
.table .table-row .cell-options > svg {
  font-size: 16px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s ease color;
}
.table .table-row .cell-options > svg:hover {
  color: #677fc1;
}
.table .table-row.row-head .cell.wt-20pct {
  margin-left: -5px !important;
}
.table .cell-name {
  max-width: 250px;
}
.table .image-small {
  display: flex;
  position: absolute;
  top: -7px;
  width: 100%;
}
.table .image-small div {
  margin: 0 auto;
}
.table .image-small img {
  max-height: 14px;
  margin-right: -2px;
}
.table .image-small span {
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  transform: translateY(-3px);
}
/* CELL PROGRESS */
.cell-progress {
  position: relative;
  height: 32px;
  margin: 0 15px !important;
  cursor: pointer;
}
.cell-head-progress {
  margin: 0 15px;
}
.cell-progress .progress {
  position: absolute;
  background: #a9b7d3;
  width: 100%;
  height: 5px;
}
.progresImgContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.progress-img {
  position: absolute;
  width: 50px;
  height: 20px;
  top: -11px;
}
.progress-active {
  position: relative;
  width: calc(100% - 44px);
  left: 22px;
}
.progress-active .progress-bar {
  position: absolute;
  top: -4px;
  height: 8px;
  width: calc(50% - 4px);
}
.progress-active .progress-bar-1 {
  left: -2px;
  background: linear-gradient(to right, #10255e 0%, #3ea6c6 100%);
}
.progress-active .progress-bar-2 {
  left: calc(50% + 6px);
  background: linear-gradient(to right, #3ea6c6 0%, #3ab949 100%);
}
.cell-progress .circle {
  position: absolute;
  background: #a9b7d3;
  cursor: pointer;
  transition: 0.3s ease filter;
  border-radius: 100%;
  width: 22px;
  height: 22px;
}
.cell-progress .circle:hover {
  filter: brightness(1.2);
}
.cell-progress .circle svg {
  color: #e7ecf5;
  text-align: center;
  width: 100%;
  padding-top: 2px;
  font-size: 14px;
}
.cell-progress .circle-mid svg {
  position: absolute;
  top: 15%;
  padding: 0;
  margin: 0;
}
.cell-progress .circle-start {
  left: 0;
}
.cell-progress .circle-stop {
  right: 0;
}
.cell-progress .circle-mid {
  width: 16px;
  height: 16px;
  left: calc(50% - 8px);
}
.cell-progress .circle-start.circle-complete {
  background: #10255e;
}
.cell-progress .circle-mid.circle-complete {
  background: #3ea6c6;
}
.cell-progress .circle-stop.circle-complete {
  background: #3ab949;
}
.cell-progress .circle .start-date,
.cell-progress .circle .stop-date {
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: -6px;
  color: #a9b7d3;
  white-space: nowrap;
}
.cell-progress .circle .start-date {
  left: 21px;
}
.cell-progress .circle .stop-date {
  right: 21px;
}
.cell-progress .circle-complete .start-date,
.cell-progress .circle-complete .stop-date {
  color: #10255e;
}

.cell-progress-solo {
  margin: 0 30px 0 15px !important;
}

.profileImg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 100%;
  border: 2px solid #10255e;
}

.profileImgLivePreview {
  width: 100%;
  height: 100%;
  margin-right: 10px;
  border-radius: 100%;
  border: 2px solid #10255e;
}

/* STATUS CIRCLES */

.status-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 100%;
}
.circle-green {
  background: #3ab949;
  margin-top: 1px;
}
.circle-red {
  background: #d5330e;
  margin-top: 1px;
}
.circle-gray {
  background: gray;
  margin-top: 1px;
}

/* INPUTS */

.input-text input::placeholder,
.input-text textarea::placeholder {
  color: #9da6c1;
}

.input-text label,
.input-select label {
  font-weight: 500;
  font-size: 15px;
  color: #10255e;
  margin-bottom: 0;
  padding: 0 2px;
}
.input-text input,
.input-text textarea,
.input-select select {
  width: 100%;
  height: 40px;
  padding: 2px 14px 0;
  margin: 2px 0 4px 0;
  font-size: 16px;
  display: inline-block;
  background: #fff;
  color: #10255e;
  border: 1px solid #9aa9d6;
  border-radius: 4px;
}
.input-select select {
  padding: 2px 14px 0 7px;
}
.input-text .input-description,
.input-select .input-description,
.input-toggle .input-description {
  font-size: 13px;
  line-height: 12px;
  color: var(--contrast-3);
  padding: 2px 2px 0;
}

.input-icon {
  position: relative;
}
.input-icon input {
  padding-left: 40px;
}

.input-text > svg,
.input-select > svg {
  position: absolute;
  top: 28px;
  left: 14px;
  font-size: 18px;
  color: #10255e;
}
.search-right .input-text > svg {
  top: 14px;
}
.input-text label,
.input-select label {
  font-size: 11px;
  font-weight: 700;
}
.info-popup {
  position: absolute;
  top: 32px;
  z-index: 999999 !important;
  width: 100%;
  background: #f8faff;
  border-radius: 4px;
  border: 1px solid #9aa9d6;
  box-shadow: 0 3px 8px 3px rgba(16, 37, 94, 0.4);
}
.info-popup input {
  background: #e6e9f5;
  border: 1px solid #9aa9d6;
}

.popup-head {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 32px;
  padding: 3px 10px;
  border-radius: 4px 4px 0 0;
  background: #c0cde6;
  color: #10255e !important;
  font-size: 16px;
  font-weight: bold;
}
.popup-head svg {
  position: absolute;
  top: 7px;
  right: 7px;
}
.popup-body {
  display: flex;
  gap: 20px;
  padding: 12px 15px 15px 15px;
}
.popup-body.row .col-6 {
  max-width: calc(50% - 10px);
}
.info-popup:before {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: #c0cde6 transparent;
  position: absolute;
  top: -10px;
  left: calc(50% - 10px);
}

/* SHIPPING COMPANY */
.header-img-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
  overflow: hidden;
  background: #c0d3de;
  border: 3px solid #10255e;
  object-fit: cover;
}

.header-img-profile img {
  max-width: 100%;
}

.header-img {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
  width: 80px;
  height: 100px;
  border-radius: 15px;
  margin-right: 15px;
  overflow: hidden;
  background: #c0d3de;
  border: 3px solid #10255e;
  /* object-fit: cover; */
}

.header-img img {
  max-width: 100%;
}

.header-img-text {
  font-size: 32px;
  font-weight: 600;
  float: left;
}
.header-left {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
}

header .header-right {
  float: right;
  text-align: right;
}
header .header-right p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

header .header-right h5 {
  font-size: 11px;
  text-transform: uppercase;
  color: #8593ba;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease all;
  margin: 0 !important;
}

.pageTitle {
  font-size: 23px;
  /* text-transform: uppercase; */
  /* color: #8593ba; */
  color: #10255e;
  /* font-weight: 600; */
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease all;
  margin-bottom: 10px !important;
}

h5 {
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: #8593ba !important;
  font-weight: bold !important;
}

h4 {
  font-size: 16px !important;
  /* text-transform: uppercase !important; */
  /* color: #8593ba !important; */
  font-weight: bold !important;
}

/* h1 {
  font-size: 32px;
  font-weight: 600;
  float: left;
}
h2 {
  font-size: 14px;
  margin: 0 0 8px 2px;
}
h5 {
  font-size: 11px;
  text-transform: uppercase;
  color: #8593ba;
}
a {
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease all;
}

a p {
  text-decoration: underline;
}

a i {
  color: #10255e;
  transition: 0.3s ease color;
}

a:hover,
a:hover i {
  color: #6f94f0 !important;
} */

/* PROFILE PAGE ADMIN VIEW */

.work-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.work-logo img {
  max-width: 180px;
}

/* USER DASHBOARD */

.style-box {
  padding: 20px;
  background-size: cover;
}

.style-box h2 {
  font-size: 40px;
  font-weight: 700;
}

.style-box p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
}

.style-box svg {
  /* font-size: 32px; */
  display: inline-block;
  float: right;
}

.style-box .text-bottom {
  color: #3e5183;
  padding-top: 12px;
}

.bg-box {
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #ffffff, rgb(228, 234, 242));
  box-shadow: 0 3px 8px 3px rgba(131, 136, 132, 0.15);
}

.green-box {
  color: #02a534;
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #fefefe, #c2e4cc);
  box-shadow: 0 3px 8px 3px rgba(0, 116, 4, 0.15);
}
.yellow-box {
  color: #8a9a0c;
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #fefefe, #dfe4c2);
  box-shadow: 0 3px 8px 3px rgba(114, 110, 0, 0.15);
}
.red-box {
  color: #962f2f;
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #fefefe, #e4d0c2);
  box-shadow: 0 3px 8px 3px rgba(128, 0, 0, 0.15);
}

.blue-box {
  color: #0d3f99;
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #fcfcfc, #c3c7e2);
  box-shadow: 0 3px 8px 3px rgba(0, 22, 112, 0.15);
}

/* USER PROFILE */

.top-right-content {
  top: 10px;
  right: 10px;
  z-index: 100;
  position: absolute;
}

.top-right-content-mobile {
  display: none;
}

.profile-image-box {
  position: relative;
  overflow: visible;
  margin-top: 50px;
  padding: 100px 60px 60px 60px;
  background: url('/images/dotted-bg.png'), linear-gradient(to bottom, #e5edf8, #edf1f8);
  background-repeat: repeat-x;
}

.profile-image {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 10;
}

.profile-image img {
  width: 140px;
  border-radius: 100%;
  border: 3px solid #10255e;
}

.profile-image-change {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.profile-image-change a {
  position: absolute;
  top: -30px;
  background: #244cb1;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  padding-top: 12px;
  transition: 0.3s ease background;
}

.profile-image-change a:hover {
  background: #3b6be5;
}

.profile-image-change a svg {
  color: #fff !important;
}

.profile-image-info > div:first-child {
  padding: 0 20px 0 0;
}

.profile-image-info > div:nth-child(2) {
  padding: 0 20px;
  border-right: 2px solid #d2d8e8;
  border-left: 2px solid #d2d8e8;
}

.profile-image-info > div:last-child {
  padding: 0 0 0 20px;
}

@media (max-width: 1220px) {
  .top-right-content {
    display: none;
  }

  .top-right-content-mobile {
    display: block;
  }
  .profile-image-info > div {
    margin: 20px 0;
    padding: 0 !important;
  }
  .profile-image-info > div:nth-child(2) {
    margin-bottom: 0;
    padding-top: 20px !important;
    border-right: none;
    border-left: none;
    border-top: 2px solid #d2d8e8;
    border-bottom: 2px solid #d2d8e8;
  }
}

/* BUTTONS */

.button {
  background: #244cb1;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease background;
  padding: 10px 20px;
  text-align: center;
  border: none;
  outline: none;
}

.button:disabled {
  background: #98aacb;
  color: #fff;
}

.button:hover {
  background: #3b6be5;
}

.button-small {
  padding: 3px 8px;
}

.group-box {
  padding: 20px;
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #e5edf8, #edf1f8);
  background-size: cover;
  background-repeat: repeat-x;
}
.group-box h2 {
  font-size: 18px !important;
  font-weight: 700 !important;
  height: 50px !important;
}
.group-box h5 {
  font-size: 25px !important;
  font-weight: bold !important;
  padding-bottom: 5px !important;
  text-align: center !important;
  color: #0c4e9a !important;
  margin-bottom: 0 !important;
}
.group-box p {
  font-size: 10px !important;
  line-height: 12px !important;
  font-weight: bold !important;
  color: #7093bc !important;
  display: inline-block !important;
  text-align: center !important;
  text-transform: uppercase !important;
}
.group-box i {
  font-size: 20px !important;
  padding-right: 8px !important;
  display: inline-block !important;
  float: left !important;
}
.group-box .row > div:first-child {
  border-right: 1px solid #9ebbe5;
}

.top-group .box {
  min-width: 180px;
  cursor: pointer;
  transition: 0.3s ease all;
}
.top-group:hover .box {
  box-shadow: 0 3px 20px 3px rgba(16, 37, 94, 0.4);
  filter: saturate(1.5);
}

#advanced-search {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #9aa9d6;
  border-radius: 6px;
  width: 100%;
  padding: 10px 15px 15px;
  margin-bottom: 30px;
}
#advanced-search button {
  margin: 0 auto;
  width: max-content;
}

.info-box {
  padding: 20px;
  background: url('/images/dotted-bg-small.png'), linear-gradient(to bottom, #e5edf8, #edf1f8);
  background-repeat: repeat-x;
}
.info-box h3 {
  font-size: 13px;
  text-transform: uppercase;
  color: #8593ba;
  margin: 0;
  line-height: 25px;
}
.info-box p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  word-wrap: break-word;
}

.cbreadcrumb {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.cbreadcrumb a {
  text-decoration: underline !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

.cbreadcrumb > i {
  margin: 0 3px !important;
}

.popup {
  margin: 70px auto;
  padding: 0;
  background: #fff;
  border-radius: 5px;
  width: 50%;
  position: relative;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.6));
  transition: all 0.5s ease-in-out;
}
.popup-header {
  background: #c0cadd;
  color: #10255e;
  padding: 12px 0 5px;
  border-radius: 6px 6px 0 0;
  text-align: center;
}
.popup-header .close {
  position: absolute;
  top: 12px;
  right: 12px;
}
.popup-content {
  padding: 40px 60px 45px;
  max-height: 70%;
}
.popup-footer {
  background: #e7ecf5;
  padding: 16px 20px;
  height: 70px;
}
.popup-cancel {
  color: #7c8bb4;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.popup-splitter {
  width: 100%;
  margin: 25px 0;
  border-top: 1px solid #9aa9d6;
}

@media (max-width: 991px) {
  .full-main .input-text input,
  .input-select select {
    font-size: 20px;
    height: 60px;
  }
  .full-main .input-text label,
  .input-select label {
    font-size: 15px;
  }
  .full-main .input-text > i,
  .input-select > i {
    top: 44px;
  }
  .full-main .dropzone {
    margin-top: 20px;
    font-size: 20px;
  }
  .full-main button {
    width: 100%;
    height: 80px;
    font-size: 20px;
  }
}

/* INPUTS */

.input-text input::placeholder,
.input-text textarea::placeholder {
  color: #9da6c1;
}

.input-text textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  height: 75px !important;
}

.input-text label,
.input-select label {
  font-weight: 500;
  font-size: 15px;
  color: #10255e;
  margin-bottom: 0;
  padding: 0 2px;
}
.input-text input,
.input-text textarea,
.input-select select {
  width: 100%;
  height: 40px;
  padding: 2px 14px 0;
  margin: 2px 0 4px 0;
  font-size: 16px;
  display: inline-block;
  background: #fff;
  color: #10255e;
  border: 1px solid #9aa9d6;
  border-radius: 4px;
}
.input-select select {
  padding: 2px 14px 0 7px;
}
.input-text .input-description,
.input-select .input-description,
.input-toggle .input-description {
  font-size: 13px;
  line-height: 12px;
  color: var(--contrast-3);
  padding: 2px 2px 0;
}

.input-icon {
  position: relative;
}
.input-icon input {
  padding-left: 40px;
}

.red-icon {
  color: #d5330e !important;
}

.input-text > i,
.input-select > i {
  position: absolute;
  top: 28px;
  left: 14px;
  font-size: 18px;
  color: #10255e;
}
.search-right .input-text > i {
  top: 14px;
}
.input-text label,
.input-select label {
  font-size: 11px;
  font-weight: 700;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #c0cde6;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #244cb1;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.dzu-dropzone {
  overflow: hidden !important;
}

/* flag state */
/* VERIFY BOX */

.verify-box {
  width: 100%;
  margin: 20px 15px !important;
  padding: 10px 30px;
  font-weight: 600;
  color: #248316;
  background: #caefd1;
  border: 1px solid #8abc86;
  border-radius: 4px;
}

.verify-box .col-6 {
  margin: 8px 0;
  padding-left: 35px;
}

/* Hide browser's default checkbox */
.verify-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox */
.verify-box .checkmark {
  position: absolute;
  top: 10px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #f6fff5;
}
.verify-box:hover input ~ .checkmark {
  background-color: #f6fff5;
}
.verify-box input:checked ~ .checkmark {
  background-color: #39ad28;
}
.verify-box .checkmark:after {
  content: '';
  position: absolute;
  display: none;
}
.verify-box input:checked ~ .checkmark:after {
  display: block;
}

/* Checkmark/indicator */
.verify-box .checkmark:after {
  left: 6px;
  top: 4px;
  width: 7px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.verify-box .pre-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #39ad28;
}
.verify-box .verify-box-bottom {
  margin-top: 10px;
  padding-top: 10px;
  text-align: center;
  border-top: 1px solid #8abc86;
}

/* Seafarer book */

.popup-header {
  background: #c0cadd;
  color: #10255e;
  padding: 12px 0 5px;
  border-radius: 6px 6px 0 0;
  text-align: center;
}
.popup-header .close {
  position: absolute;
  top: 12px;
  right: 12px;
}
.popup-heading {
  margin-bottom: 15px;
}
.popup-heading i {
  font-size: 20px;
  margin-right: 3px;
}
.popup-heading h3 {
  display: inline;
}
.popup-content {
  padding: 40px 60px 45px;
  max-height: 70%;
  /* overflow-y: scroll; */
}
.popup-content-img {
  min-height: 80vh;
  padding: 10px;
}
.popup-content-flex-left {
  height: 74vh;
  max-height: unset;
  overflow-y: scroll;
}
.popup-content-flex {
  max-height: 80vh;
  padding: 10px;
}
.popup-content-img img {
  max-width: 100%;
  max-height: 100%;
}
.popup-footer {
  background: #e7ecf5;
  padding: 16px 20px;
  height: 70px;
}
.popup-cancel {
  color: #7c8bb4;
  font-size: 14px;
  text-decoration: underline;
}
.popup-splitter {
  width: 100%;
  margin: 25px 0;
  border-top: 1px solid #8d919e;
}

.button-green {
  background: #caefd1;
  border: 1px solid #8abc86;
  color: #248316;
}
.button-green:hover {
  background: #248316;
  color: #caefd1;
}

.link-btn-green {
  background: #18901c;
}
.link-btn-green:hover {
  background: #30ad34;
}
.link-btn-red {
  background: #b12424;
}
.link-btn-red:hover {
  background: #dc4444;
}

.popup-steps .step {
  color: #67769d;
}
.popup-steps .active-step {
  color: #10255e;
}
.popup-steps .completed-step {
  color: #509d7d;
}

.popup-certificate {
  max-width: 100%;
}

.popup-user-top {
  text-align: center;
  margin: -30px 0 25px;
}
.popup-user-top img {
  width: 40px;
  border-radius: 50%;
  border: 2px solid #10255e;
  transform: translateY(12px);
}
.popup-user-top p {
  display: inline;
  padding-left: 3px;
  font-weight: 500;
}

.popup-green-box {
  padding: 30px 0;
  margin: 30px 0;
  background: #caefd1;
  border: 1px solid #8abc86;
  color: #39ad28;
  border-radius: 4px;
}
.popup-green-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #248317;
}
.popup-green-box p {
  font-weight: 500;
}

.seafarer-book {
  background: #e5e9f4;
  color: black;
  padding: 20px;
  background-size: contain;
  background-position: center !important;
  background-repeat: no-repeat;
  background-color: white;
  height: 850px;
  overflow-y: hidden !important;
}
.seafarer-book-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -5px;
}
.seafarer-book-logo img {
  max-width: 100%;
}
.seafarer-book-info {
  text-align: center;
  width: 100%;
  padding-top: 20px;
}
.seafarer-book h2 {
  font-size: 17px;
}
.seafarer-book h3 {
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  margin: 10px 0;
}
.seafarer-book h4 {
  font-size: 12px;
}
.seafarer-book h5 {
  font-size: 11px;
  color: black;
}
.seafarer-book p {
  font-size: 12px;
  line-height: 14px;
}
.seafarer-book a {
  font-size: 12px;
  line-height: 14px;
  text-decoration: underline;
  color: #007ce2;
}
.splitter {
  border: none !important;
  color: #3daef4;
  font-size: 12px;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 10px 0 !important;
  overflow: hidden;
}
.seafarer-book-user-splitter {
  display: flex;
  margin: 30px 0 10px;
}
.seafarer-book-user-splitter span {
  padding-top: 5%;
  color: #2c396f;
}
.seafarer-book-user-splitter img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 2px solid #2c396f;
}
.input {
  display: flex;
}
.input label {
  font-size: 9px;
  width: 200px;
  padding-top: 3px;
  white-space: nowrap;
}
.input input {
  width: 100%;
  height: 20px;
  padding: 2px 5px;
  font-size: 10px;
  background: #fff;
  border: 1px solid #b7bee2;
}
.qr-code-header {
  margin: 8px 0 15px;
}
.qr-code {
  max-width: 70px !important;
}
.seafarer-book-notice h4 {
  margin-top: 10px;
}
.seafarer-book-notice p {
  margin: 8px 0;
}
.subtext {
  transform: translateY(-5px);
  font-size: 10px !important;
  line-height: 11px !important;
}
.signatures p {
  margin: 10px 0 10px;
  padding-top: 5px;
  font-size: 10px;
  font-style: italic;
  border-top: 1px dashed #b7bee2;
}
.signatures img {
  max-width: 70px;
  margin-bottom: -50px;
}

.seafarer-info h4 {
  margin-top: 10px;
}
.seafarer-info .input {
  margin: 4px 0;
}
.seafarer-info .input label {
  text-align: left;
  padding-right: 8px;
}
.seafarer-info .last-input {
  margin-top: 15px;
  transform: translateX(-8px);
}
.approved img {
  max-width: 25px;
  display: inline-block;
}
.approved > div {
  transform: translateY(2px);
  display: inline-block;
  padding: 0 5px;
  background: #caefd1;
  border: 1px solid #8abc86;
  color: #39ad28;
  border-radius: 4px;
  /* margin-left: 5px; */
  margin-top: 5px;
}
.approved > div p,
.approved > div i {
  transform: translateY(-2px);
  padding: 0;
  margin: 0;
}

.verifyWithIdsureBox {
  background-color: rgb(165, 225, 191);
  color: black;
  border-radius: 10px;
  padding: 0px 10px;
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  height: 21px !important;
}

.seafarer-info .button {
  height: 16px;
  padding: 1px;
  width: calc(100% - 12px);
  transform: translateX(-10px);
  font-size: 10px;
  min-height: 16px;
  background: #caefd1;
  border: 1px solid #8abc86;
  color: #39ad28;
  border-radius: 2px;
  transition: 0.3s all ease;
}

.seafarer-info .button:hover {
  background: #39ad28;
  color: #caefd1;
}
.seafarer-book .mobile-header {
  margin-bottom: 20px;
  display: none;
}

.progress-line,
.progress-line-bg {
  position: relative;
  width: calc(100% - 50px);
  height: 6px;
  float: right;
  margin-top: -32px;
  border-radius: 4px;
  background-color: #97a4c6;
}
.progress-line {
  position: absolute;
  top: 32px;
  left: 0;
  background-color: #244cb1;
}
.boxed-text {
  background-color: #d9dff1;
  border-radius: 4px;
  text-align: center;
  margin: 5px;
  padding: 5px 10px;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
}
.boxed-text.active {
  background-color: #10255e;
  color: #fff;
}
.inline-btn {
  background-color: #244cb1;
  color: #fff;
  margin: 5px;
  padding: 3px 6px;
  border-radius: 3px;
}

@media (max-width: 992px) {
  .popup {
    width: 90%;
  }
  .full-main .input-text input,
  .input-select select {
    font-size: 20px;
    height: 60px;
  }
  .full-main .input-text label,
  .input-select label {
    font-size: 15px;
  }
  .full-main .input-text > i,
  .input-select > i {
    top: 44px;
  }
  .full-main .dropzone {
    margin-top: 20px;
    font-size: 20px;
  }
  .full-main button {
    width: 100%;
    height: 80px;
    font-size: 20px;
  }

  /* Seafarer book */

  .seafarer-book .mobile-header {
    display: block;
  }
  .seafarer-book .desktop-header {
    display: none;
  }

  .seafarer-book-logo {
    text-align: center;
  }
  .seafarer-book h4 {
    text-align: center;
  }
  .qr-code {
    max-width: 120px !important;
    margin-left: calc(50% - 60px);
  }
  .signatures p {
    margin: 40px 0 20px;
  }
  .signatures img {
    max-width: 120px;
    margin-bottom: -50px;
  }
}

.header-qr {
  border: none;
  border-radius: 0;
}

.signature-line {
  border-top: 1px solid #9aa9d6;
  padding-top: 5px;
  text-align: right;
  font-size: 11px;
}

.signatureBox {
  margin-top: 40px;
  border-bottom: 1px solid black;
  height: 120px;
  width: 100%;
  min-width: 250px;
}

.stampBox {
  margin-top: 40px;
  border-bottom: 1px solid black;
  height: 120px;
  width: 100%;
  min-width: 250px;
}

/* flag state end */

/* Verification */
.verification-box {
  padding: 15px 10px;
  background: #edf1f8;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 3px 8px 3px rgba(16, 37, 94, 0.15);
  overflow-x: auto;
}
.verification-box h2 {
  width: 100%;
  text-align: center;
}

.verification {
  margin: 0 !important;
  padding: 0 30px !important;
}
.verification .verifying-box {
  margin: 20px auto;
  padding: 10px 18px;
  background: #c2d0e4;
  border-radius: 4px;
}
.verification .issuer-logo {
  width: 100%;
  text-align: center;
}
.verification .issuer-logo img {
  width: 200px;
  max-width: 80%;
  margin-bottom: 20px;
}
.verification-progress {
  /* width: calc(100% + 60px); */
  padding: 30px 50px;
  /* margin: 0 -30px; */
  background: #fff;
  border-top: 1px solid #616fa7;
  border-bottom: 1px solid #616fa7;
}
.verification-progress h5 {
  padding-top: 10px;
  color: #616fa7;
  font-size: 10px;
  font-weight: 500;
}
.verification-progress p {
  font-size: 16px;
  font-weight: 600;
}
.verification-progress .progress-status-icon {
  display: inline-block;
  transform: translateY(-6px);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
  padding-top: 5px;
}
.verification-progress .progress-status-icon.success {
  background: #17932e;
  color: #d8eeda;
}
.verification-progress .success-text {
  color: #17932e;
}
.verification h3 {
  width: 100%;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
}
.timestamp {
  display: flex;
  padding: 6px 10px;
  width: 100%;
  font-weight: 500;
  background: #dfe2ec;
  border-radius: 4px;
  /* margin: 0 10px 8px; */
}
.timestamp img {
  width: 20px;
  border-radius: 50%;
  border: 1px solid #10255e;
  margin-right: 5px;
}

/* CERTIFICATE */

.certificate > div {
  border: 5px solid #526889;
  border-radius: 10px;
  box-shadow: 0 3px 8px 3px rgba(16, 37, 94, 0.15);
}
.certificate > div img {
  max-width: 100%;
}

/* DETIALS */

.details {
  text-align: center;
}

.details .verifying-box {
  margin: 20px auto;
  padding: 10px 18px;
  font-weight: 500;
  background: #c2e4cb;
  color: #16932e;
  border-radius: 4px;
}
.details .verifying-box i {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background: #17932e;
  color: #c2e4cb;
  padding-top: 4px;
}

.details .verification-progress p {
  font-size: 14px;
}
.details .verification-progress img:first-of-type {
  max-width: 80px;
}
.details .verification-progress img:last-of-type {
  max-width: 200px;
}
.details .verification-progress img {
  padding: 15px 0 10px;
}

.details .box > p {
  font-size: 11px;
  margin: 20px 0 5px;
  color: #616fa7;
}
.details h4 {
  color: #2c396f;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
}
.details h6 {
  margin: 20px 0 0;
  font-size: 9px;
  color: #a9b2d6;
}
/* Verification END */

.checkbox-wrapper input[type='checkbox'] {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  width: 1.2em;
  height: 1.2em;
  border-radius: 0.15em;
  margin-right: 0.5em;
  border: 2px solid #8d9bba;
  outline: none;
  cursor: pointer;
}

.checkbox-wrapper input[type='checkbox']:checked {
  position: relative;
  background-color: #12bc1a;
  border: 0.15em solid #12bc1a;
  color: #12bc1a;
  box-shadow: inset 0 0 0 0.15em #12bc1a;
}

.checkbox-wrapper input[type='checkbox']:checked::before {
  content: '✓';
  font-size: 1.2em;
  color: #fff;
  position: absolute;
  right: 0px;
  top: -4px;
}
.checkbox-wrapper input[type='checkbox']:disabled {
  border-color: #c0c0c0;
  background-color: #c0c0c0;
}

.checkbox-wrapper input[type='checkbox']:disabled + span {
  color: #c0c0c0;
}

.checkbox-wrapper input[type='checkbox']:focus {
  box-shadow: 0 0 20px #007a7e;

}


/* ================================================================
   LANDING PAGE REDESIGN — Digital Horizon design system
   ================================================================ */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --dh-primary:           #002880;
  --dh-primary-cont:      #163ea6;
  --dh-secondary:         #005ab4;
  --dh-sky:               #2D9CDB;   /* signing workspace accent */
  --dh-surface:           #faf9fc;
  --dh-surface-low:       #f4f3f6;
  --dh-surface-lowest:    #ffffff;
  --dh-on-surface:        #1a1c1e;
  --dh-on-surface-var:    #444653;
  --dh-secondary-fixed:   #d6e3ff;
  --dh-outline-var:       #c4c5d5;
  --dh-gradient:          linear-gradient(135deg, #002880 0%, #163ea6 100%);
  --dh-shadow:            0px 12px 32px rgba(26, 28, 30, 0.06);
}

/* ── FONTS ───────────────────────────────────────────────────── */

/* Display headlines — Space Grotesk (same geometric family as signing workspace) */
.lp-hero__h1 {
  font-family: var(--font-space-grotesk), var(--font-inter), sans-serif !important;
}

/* All other headings and UI — Inter throughout, matching signing workspace */
.lp-bma__h2,
.lp-bento__h2,
.lp-how__h2,
.lp-founder__h2,
.lp-cta__h2,
.lp-bento__card-h3,
.lp-how__step-h4,
.lp-badge,
.lp-milestone-badge,
.lp-btn,
.lp-bma__link,
.lp-bento__card-link,
.lp-cta__stats-header,
.lp-founder__name {
  font-family: var(--font-inter), sans-serif !important;
}

/* Eyebrow labels — tight, uppercase, Inter — same as signing workspace labels */
.lp-eyebrow,
.lp-partners__label,
.lp-signing-card__label {
  font-family: var(--font-inter), sans-serif !important;
  letter-spacing: 0.12em !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

/* ── SHARED UTILITIES ────────────────────────────────────────── */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 8px;
  background: rgba(45, 156, 219, 0.1);
  border: 1px solid rgba(45, 156, 219, 0.3);
  color: var(--dh-sky);
  font-family: var(--font-inter), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-badge--dark {
  background: rgba(45, 156, 219, 0.08);
  border-color: rgba(45, 156, 219, 0.2);
  color: var(--dh-sky);
}
.lp-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dh-sky);
  animation: lp-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.5); }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0.5rem;
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.2;
}
.lp-btn--primary {
  background: var(--dh-gradient);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0, 40, 128, 0.3);
}
.lp-btn--primary:hover {
  transform: scale(1.02);
  color: #ffffff !important;
}
.lp-btn--secondary {
  background: var(--dh-surface-low);
  color: var(--dh-on-surface) !important;
}
.lp-btn--secondary:hover {
  background: var(--dh-outline-var);
  color: var(--dh-on-surface) !important;
}
.lp-btn--white {
  background: #ffffff;
  color: var(--dh-primary) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.lp-btn--white:hover {
  transform: scale(1.03);
  color: var(--dh-primary) !important;
}
.lp-btn--ghost-white {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.25);
}
.lp-btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #ffffff !important;
}

/* ── HERO ────────────────────────────────────────────────────── */
.lp-hero.header-section.index-header-section {
  background: var(--dh-surface) !important;
  background-image: none !important;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Kill the existing left-fade overlay */
.lp-hero.header-section::before {
  display: none !important;
}
/* Hide decorative pattern from LandingsHeader */
.lp-hero .banner-right-img {
  display: none !important;
}
/* Nav — shared refinements (hero + subpages) */
.lp-hero .main-header .navbar-collapse .navbar-nav li a,
.lp-subpage-hero .main-header .navbar-collapse .navbar-nav li a {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  color: #3d4a63 !important;
}
.lp-hero .main-header .navbar-collapse .navbar-nav a:hover,
.lp-hero .main-header .navbar-collapse .navbar-nav .active > a,
.lp-subpage-hero .main-header .navbar-collapse .navbar-nav a:hover,
.lp-subpage-hero .main-header .navbar-collapse .navbar-nav .active > a {
  color: var(--dh-primary) !important;
}
.lp-hero .main-header .navbar-collapse .btn-nav a,
.lp-subpage-hero .main-header .navbar-collapse .btn-nav a {
  background: var(--dh-gradient) !important;
  color: #ffffff !important;
  font-family: var(--font-inter), sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
  filter: none !important;
  box-shadow: 0 2px 8px rgba(0,40,128,0.18) !important;
  letter-spacing: 0.01em !important;
}
.lp-hero .main-header .navbar-collapse .btn-nav a:hover,
.lp-subpage-hero .main-header .navbar-collapse .btn-nav a:hover {
  filter: brightness(1.08) !important;
  box-shadow: 0 4px 14px rgba(0,40,128,0.22) !important;
}

.lp-hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0 100px;
}
.lp-hero__container {
  width: 100%;
}
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-hero__left {
  max-width: 560px;
}
.lp-hero__h1 {
  font-size: 72px !important;
  font-weight: 700 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.02em !important;
  color: var(--dh-primary) !important;
  margin-bottom: 28px !important;
  word-spacing: normal !important;
}
.lp-hero__accent {
  color: var(--dh-secondary) !important;
  -webkit-text-fill-color: var(--dh-secondary) !important;
  background: none !important;
  filter: none !important;
  animation: none !important;
}
.lp-hero__sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 18px !important;
  line-height: 1.65 !important;
  color: var(--dh-on-surface-var) !important;
  margin-bottom: 36px !important;
  font-weight: 400 !important;
}
.lp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero image */
.lp-hero__right {
  position: relative;
}
.lp-hero__img-wrap {
  position: relative;
  padding: 16px;
}
.lp-hero__img-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 40, 128, 0.2);
  transform: rotate(3deg);
  border: 12px solid #ffffff;
}
.lp-hero__img-card img {
  object-fit: cover;
}
.lp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 40, 128, 0.4) 0%, transparent 60%);
}
/* Floating compliance card */
.lp-hero__float {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--dh-shadow);
  border-left: 4px solid var(--dh-secondary);
  max-width: 240px;
  z-index: 2;
}
.lp-hero__float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dh-secondary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.lp-hero__float-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dh-secondary);
  margin: 0;
}
.lp-hero__float-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--dh-on-surface);
  margin: 2px 0 0;
}
/* Decorative blur blob */
.lp-hero__blob {
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: rgba(0, 40, 128, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* ── BMA MILESTONE ───────────────────────────────────────────── */
.lp-bma-wrap {
  padding: 80px 0;
  background: var(--dh-surface);
}
.lp-bma {
  background: radial-gradient(circle at top left, #e8f1ff 0%, #f5f8ff 50%, #ffffff 100%);
  border-radius: 20px;
  padding: 64px;
  border: 1px solid rgba(0, 40, 128, 0.08);
  box-shadow: var(--dh-shadow);
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
}
.lp-bma__logo-col {
  flex-shrink: 0;
}
.lp-bma__logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 40, 128, 0.1);
  border: 8px solid rgba(0, 40, 128, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lp-bma__logo {
  width: 100%;
  height: auto;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}
.lp-bma__logo-circle:hover .lp-bma__logo {
  filter: grayscale(0);
}
.lp-milestone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(45, 156, 219, 0.1);
  border: 1px solid rgba(45, 156, 219, 0.3);
  color: var(--dh-sky);
  border-radius: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.lp-bma__h2 {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: var(--dh-primary) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
}
.lp-bma__desc {
  font-family: var(--font-inter), sans-serif;
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: var(--dh-on-surface-var) !important;
  margin-bottom: 28px !important;
  max-width: 600px;
}
.lp-bma__link {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dh-secondary) !important;
  text-decoration: none !important;
  transition: opacity 0.15s;
}
.lp-bma__link:hover {
  opacity: 0.75;
  color: var(--dh-secondary) !important;
}
/* Anchor watermark */
.lp-bma__watermark {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 14rem;
  line-height: 1;
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  color: var(--dh-primary);
}

/* ── PARTNERS ────────────────────────────────────────────────── */
.lp-partners {
  background: var(--dh-surface-low);
  padding: 52px 0;
}
.lp-partners__label {
  text-align: center;
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a9ab5;
  margin-bottom: 36px;
}
.lp-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 56px;
}
.lp-partners__item {
  display: flex;
  align-items: center;
}
.lp-partners__item img {
  height: 120px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  filter: grayscale(1) !important;
  opacity: 0.65 !important;
  transition: opacity 0.2s, filter 0.2s !important;
  display: block !important;
}
.lp-partners__item:hover img {
  filter: grayscale(0) !important;
  opacity: 1 !important;
}

/* ── BENTO GRID ──────────────────────────────────────────────── */
.lp-bento {
  padding: 100px 0;
  background: var(--dh-surface-low);
}
.lp-bento__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}
.lp-bento__h2 {
  font-size: 48px !important;
  font-weight: 700 !important;
  color: var(--dh-primary) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
}
.lp-bento__sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 17px;
  color: var(--dh-on-surface-var);
  line-height: 1.6;
  max-width: 520px;
}
.lp-bento__watermark-text {
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--dh-primary);
  opacity: 0.07;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}
.lp-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
/* Card base */
.lp-bento__card {
  background: var(--dh-surface-lowest);
  border-radius: 2rem;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s;
}
.lp-bento__card:hover {
  box-shadow: 0 12px 40px rgba(26, 28, 30, 0.08);
}
.lp-bento__card--large {
  grid-column: span 2;
}
.lp-bento__card--accent-left {
  border-left: 4px solid var(--dh-primary);
}
.lp-bento__card--accent-right {
  border-right: 4px solid var(--dh-primary);
}
.lp-bento__card--gradient {
  background: var(--dh-gradient);
  color: #ffffff;
}
.lp-bento__card--muted {
  background: #e8e8eb;
}
.lp-bento__icon {
  font-size: 32px;
  color: var(--dh-primary);
  margin-bottom: 20px;
}
.lp-bento__icon--secondary {
  color: var(--dh-secondary);
}
.lp-bento__card--gradient .lp-bento__icon {
  color: rgba(255,255,255,0.8);
}
.lp-bento__card-h3 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--dh-on-surface) !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
}
.lp-bento__card--gradient .lp-bento__card-h3 {
  color: #ffffff !important;
}
.lp-bento__card-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 16px !important;
  color: var(--dh-on-surface-var) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  flex: 1;
}
.lp-bento__card--gradient .lp-bento__card-p {
  color: rgba(255,255,255,0.8) !important;
}
.lp-bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.lp-bento__tags span {
  padding: 6px 14px;
  background: var(--dh-surface-low);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dh-on-surface-var);
}
.lp-bento__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.lp-bento__card--large .lp-bento__card-link {
  color: var(--dh-secondary) !important;
}
.lp-bento__card-link:hover {
  opacity: 1;
  color: inherit !important;
}
.lp-bento__row {
  display: flex;
  gap: 32px;
  align-items: center;
}
.lp-bento__row > div:first-child {
  flex: 1;
}
/* Code block */
.lp-bento__code {
  flex: 1;
  background: rgba(26, 28, 30, 0.05);
  border-radius: 0.75rem;
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--dh-on-surface-var);
}
.lp-bento__code-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.lp-bento__code-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dh-outline-var);
}
.lp-bento__code code {
  display: block;
  padding: 0;
  background: none;
  font-size: 13px;
  line-height: 1.8;
  color: var(--dh-on-surface);
}
.lp-bento__code-response {
  color: #005ab4 !important;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.lp-how {
  padding: 100px 0;
  background: var(--dh-surface-lowest);
}
.lp-how__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.lp-how__h2 {
  font-size: 48px !important;
  font-weight: 700 !important;
  color: var(--dh-primary) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin-bottom: 16px !important;
}
.lp-how__sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 17px;
  color: var(--dh-on-surface-var);
  line-height: 1.65;
}
.lp-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
.lp-how__step {
  position: relative;
}
.lp-how__ghost {
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 10rem;
  font-weight: 900;
  color: var(--dh-surface-low);
  line-height: 1;
  position: absolute;
  top: -3rem;
  left: -1rem;
  z-index: 0;
  user-select: none;
  letter-spacing: -0.05em;
}
.lp-how__step-content {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
.lp-how__step-h4 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--dh-on-surface) !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
}
.lp-how__step-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 16px !important;
  color: var(--dh-on-surface-var) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

/* ── FOUNDER ─────────────────────────────────────────────────── */
.lp-founder {
  padding: 100px 0;
  background: var(--dh-surface-low);
}
.lp-founder__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}
.lp-founder__h2 {
  font-size: 42px !important;
  font-weight: 700 !important;
  color: var(--dh-primary) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
}
.lp-founder__p {
  font-family: var(--font-inter), sans-serif;
  font-size: 17px !important;
  color: var(--dh-on-surface-var) !important;
  line-height: 1.8 !important;
  margin-bottom: 20px !important;
}
.lp-founder__name {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dh-primary);
  letter-spacing: 0.04em;
  margin-top: 12px;
}
.lp-founder__img {
  width: 100%;
  border-radius: 2rem;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: 0 32px 64px rgba(26, 28, 30, 0.12);
}

/* ── CTA ─────────────────────────────────────────────────────── */
.lp-cta {
  padding: 80px 0;
  background: var(--dh-surface);
}
.lp-cta__card {
  background: var(--dh-gradient);
  border-radius: 20px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lp-cta__h2 {
  font-size: 52px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
  margin-bottom: 20px !important;
}
.lp-cta__desc {
  font-family: var(--font-inter), sans-serif;
  font-size: 17px !important;
  color: rgba(255,255,255,0.8) !important;
  line-height: 1.7 !important;
  margin-bottom: 40px !important;
}
.lp-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* Stats glassmorphic card */
.lp-cta__stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  padding: 32px;
  position: relative;
  z-index: 1;
}
.lp-cta__stats-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}
.lp-cta__stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
}
.lp-cta__stats-row:last-child {
  border-bottom: none;
}
.lp-cta__stats-row span {
  color: rgba(255,255,255,0.65);
}
.lp-cta__stats-row strong {
  color: #ffffff;
  font-weight: 700;
}
.lp-cta__highlight {
  color: #aac7ff !important;
}
/* Decorative blobs */
.lp-cta__blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(60px);
  pointer-events: none;
}
.lp-cta__blob--r { bottom: -120px; right: -120px; }
.lp-cta__blob--l { top: -120px;    left:  -120px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lp-hero__h1 { font-size: 56px !important; }
  .lp-bento__watermark-text { display: none; }
}

@media (max-width: 992px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero__left { max-width: 100%; }
  .lp-hero__right { display: none; }
  .lp-hero__h1 { font-size: 48px !important; }
  .lp-bma { flex-direction: column; gap: 40px; border-radius: 2rem; padding: 48px; }
  .lp-bma__watermark { display: none; }
  .lp-bma__h2 { font-size: 32px !important; }
  .lp-bento__grid { grid-template-columns: 1fr; }
  .lp-bento__card--large { grid-column: span 1; }
  .lp-bento__row { flex-direction: column; }
  .lp-how__steps { grid-template-columns: 1fr; gap: 80px; }
  .lp-founder__grid { grid-template-columns: 1fr; }
  .lp-founder__img { max-width: 360px; margin: 0 auto; aspect-ratio: 4/3; }
  .lp-cta__card { grid-template-columns: 1fr; padding: 48px; gap: 40px; border-radius: 2rem; }
  .lp-cta__h2 { font-size: 36px !important; }
}

@media (max-width: 576px) {
  .lp-hero__h1 { font-size: 38px !important; }
  .lp-hero__body { padding: 40px 0 72px; }
  .lp-bma { padding: 36px 28px; }
  .lp-bma__logo-circle { width: 120px; height: 120px; }
  .lp-bento { padding: 72px 0; }
  .lp-bento__h2 { font-size: 34px !important; }
  .lp-bento__card { padding: 28px; border-radius: 1.25rem; }
  .lp-how { padding: 72px 0; }
  .lp-how__h2 { font-size: 34px !important; }
  .lp-how__ghost { font-size: 7rem; }
  .lp-founder { padding: 72px 0; }
  .lp-cta { padding: 60px 0; }
  .lp-partners__item img { height: 48px !important; max-width: none !important; }
}

/* ── SIGNING CARD ────────────────────────────────────────────── */
.lp-signing-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 300px;
  z-index: 2;
}
.lp-signing-card__shadow1 {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(16, 56, 107, 0.35), rgba(27, 124, 237, 0.18));
  transform: translate(24px, 24px) rotate(-5deg);
  filter: blur(0.5px);
  z-index: 1;
}
.lp-signing-card__shadow2 {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255,255,255,0.9), rgba(199,222,248,0.72));
  border: 1px solid rgba(143,181,225,0.9);
  transform: translate(12px, 12px) rotate(-2deg);
  box-shadow: 0 24px 34px rgba(12,35,66,0.24);
  z-index: 2;
}
.lp-signing-card__body {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid #afcaea;
  outline: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 42px 56px rgba(8,26,53,0.28), 0 18px 24px rgba(14,57,111,0.18),
              inset 0 1px 0 rgba(255,255,255,0.95);
  padding: 24px;
  transform: perspective(960px) rotateY(-4deg) rotateX(1deg);
  transform-origin: right bottom;
  will-change: transform;
}
.lp-signing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(16%, -32%);
  background: #d92d20;
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  box-shadow: 0 10px 18px rgba(133,16,12,0.35);
}
.lp-signing-card__label {
  margin-bottom: 8px;
  color: #3f6698;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lp-signing-card__title {
  font-size: 18px !important;
  margin-bottom: 10px !important;
  color: #0e2f58 !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  font-family: var(--font-space-grotesk), sans-serif !important;
}
.lp-signing-card__desc {
  margin-bottom: 18px;
  color: #3f5f88;
  font-size: 14px;
  line-height: 1.6;
}
.lp-signing-card__btn {
  display: inline-block;
  text-decoration: none !important;
  background: #1b7ced;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #0f68cf;
  transition: background 180ms ease;
}
.lp-signing-card__btn:hover {
  background: #136bcf;
  color: #fff !important;
}

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.lp-newsletter {
  background: var(--dh-surface-low);
  padding: 80px 0;
  border-top: 1px solid rgba(45, 156, 219, 0.1);
}
.lp-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-newsletter__eyebrow {
  font-family: var(--font-inter), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-sky);
  margin-bottom: 12px;
}
.lp-newsletter__h2 {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--dh-primary) !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.01em !important;
}
.lp-newsletter__sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  color: var(--dh-on-surface-var);
  line-height: 1.6;
  margin: 0;
}
.lp-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-newsletter__row {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 28, 30, 0.06);
}
.lp-newsletter__input {
  flex: 1;
  padding: 14px 18px;
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  border: 1px solid var(--dh-outline-var);
  border-right: none;
  border-radius: 10px 0 0 10px;
  background: var(--dh-surface-lowest);
  color: var(--dh-on-surface);
  outline: none;
  transition: border-color 0.15s;
}
.lp-newsletter__input:focus {
  border-color: var(--dh-sky);
}
.lp-newsletter__input::placeholder {
  color: #9da4b0;
}
.lp-newsletter__btn {
  padding: 14px 24px;
  background: var(--dh-gradient);
  color: #ffffff;
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.lp-newsletter__btn:hover {
  opacity: 0.9;
}
.lp-newsletter__error {
  font-family: var(--font-inter), sans-serif;
  font-size: 13px;
  color: #ba1a1a;
  margin: 0;
}

@media (max-width: 768px) {
  .lp-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── SUBPAGE SHARED HERO ──────────────────────────────────────────── */
.lp-subpage-hero {
  background: #faf9fc;
  padding: 0 0 80px;
}
.lp-subpage-hero__body {
  padding-top: 48px;
  text-align: center;
}
.lp-subpage-hero__eyebrow {
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-sky, #2D9CDB);
  margin: 0 0 16px;
}
.lp-subpage-hero__h1 {
  font-family: var(--font-space-grotesk), var(--font-inter), sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--dh-primary, #002880);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.lp-subpage-hero__sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 17px;
  color: var(--dh-on-surface-var, #4a5568);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── ABOUT: WHAT WE DO ────────────────────────────────────────────── */
.lp-about-intro {
  padding: 96px 0;
  background: #fff;
}
.lp-about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-about-intro__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 440px;
}
.lp-about-intro__eyebrow {
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-sky, #2D9CDB);
  margin: 0 0 12px;
}
.lp-about-intro__h2 {
  font-family: var(--font-inter), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 20px;
  line-height: 1.25;
}
.lp-about-intro__p {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  color: var(--dh-on-surface-var, #4a5568);
  line-height: 1.7;
  margin: 0 0 14px;
}
.lp-about-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dh-primary, #002880);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.2s;
}
.lp-about-intro__link:hover { gap: 12px; }

/* ── ABOUT: FOUNDER ───────────────────────────────────────────────── */
.lp-about-founder {
  padding: 96px 0;
  background: var(--dh-surface, #f4f6fb);
}
.lp-about-founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-about-founder__img-wrap {
  position: relative;
}
.lp-about-founder__img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 480px;
}
.lp-about-founder__badge-wrap {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-about-founder__badge-name {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dh-primary, #002880);
}
.lp-about-founder__badge-role {
  font-family: var(--font-inter), sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dh-sky, #2D9CDB);
}
.lp-about-founder__eyebrow {
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-sky, #2D9CDB);
  margin: 0 0 12px;
}
.lp-about-founder__h2 {
  font-family: var(--font-inter), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 20px;
  line-height: 1.25;
}
.lp-about-founder__p {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  color: var(--dh-on-surface-var, #4a5568);
  line-height: 1.7;
  margin: 0 0 14px;
}
.lp-about-founder__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dh-sky, #2D9CDB);
  text-decoration: none;
  margin-top: 8px;
}
.lp-about-founder__linkedin:hover { text-decoration: underline; }

/* ── ABOUT: SUSTAINABILITY ────────────────────────────────────────── */
.lp-sustain {
  padding: 96px 0;
  background: #fff;
}
.lp-sustain__header {
  text-align: center;
  margin-bottom: 56px;
}
.lp-sustain__eyebrow {
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-sky, #2D9CDB);
  margin: 0 0 12px;
}
.lp-sustain__h2 {
  font-family: var(--font-inter), sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 14px;
}
.lp-sustain__sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  color: var(--dh-on-surface-var, #4a5568);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.lp-sustain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.lp-sustain__card {
  background: var(--dh-surface, #f4f6fb);
  border-radius: 16px;
  padding: 32px 28px;
}
.lp-sustain__icon {
  width: 48px;
  height: 48px;
  background: rgba(45,156,219,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--dh-sky, #2D9CDB);
}
.lp-sustain__card-h3 {
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 10px;
}
.lp-sustain__card-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: var(--dh-on-surface-var, #4a5568);
  line-height: 1.65;
  margin: 0;
}
.lp-sustain__sdg {
  background: var(--dh-surface, #f4f6fb);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.lp-sustain__sdg-img {
  width: 80px;
}
.lp-sustain__sdg-h3 {
  font-family: var(--font-inter), sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 14px;
}
.lp-sustain__sdg-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: var(--dh-on-surface-var, #4a5568);
  line-height: 1.7;
  margin: 0 0 10px;
}

/* ── FEATURES: SECTION HEADER ─────────────────────────────────────── */
.lp-features-header {
  padding: 96px 0 64px;
  background: #faf9fc;
}
.lp-features-header__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ── FEATURES: ALTERNATING SPLIT SECTION ─────────────────────────── */
.lp-feature {
  padding: 80px 0;
}
.lp-feature:nth-child(odd) {
  background: #fff;
}
.lp-feature:nth-child(even) {
  background: var(--dh-surface, #f4f6fb);
}
.lp-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-feature__grid--reversed {
  direction: rtl;
}
.lp-feature__grid--reversed > * {
  direction: ltr;
}
.lp-feature__eyebrow {
  font-family: var(--font-inter), sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dh-sky, #2D9CDB);
  margin: 0 0 12px;
}
.lp-feature__h2 {
  font-family: var(--font-inter), sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 16px;
  line-height: 1.25;
}
.lp-feature__p {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  color: var(--dh-on-surface-var, #4a5568);
  line-height: 1.7;
  margin: 0 0 24px;
}
.lp-feature__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-feature__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: var(--dh-on-surface-var, #4a5568);
  line-height: 1.5;
}
.lp-feature__bullet::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dh-sky, #2D9CDB);
  margin-top: 6px;
  flex-shrink: 0;
}
.lp-feature__img-wrap {
  background: var(--dh-surface, #f4f6fb);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 320px;
}
.lp-feature__img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
}
.lp-feature__icon-box {
  width: 72px;
  height: 72px;
  background: rgba(0,40,128,0.06);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--dh-primary, #002880);
}

/* ── CONTACT ──────────────────────────────────────────────────────── */
.lp-contact {
  padding: 80px 0 100px;
  background: #fff;
}
.lp-contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 72px;
}
.lp-contact__card {
  background: var(--dh-surface, #f4f6fb);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.lp-contact__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,156,219,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dh-sky, #2D9CDB);
  flex-shrink: 0;
}
.lp-contact__card-h3 {
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 8px;
}
.lp-contact__card-p {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: var(--dh-on-surface-var, #4a5568);
  margin: 0;
  line-height: 1.6;
}
.lp-contact__card-a + .lp-contact__card-p {
  margin-top: 4px;
}
.lp-contact__card-a {
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  color: var(--dh-sky, #2D9CDB);
  text-decoration: none;
}
.lp-contact__card-a:hover { text-decoration: underline; }
.lp-contact__form-header {
  text-align: center;
  margin-bottom: 40px;
}
.lp-contact__form-h2 {
  font-family: var(--font-inter), sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dh-primary, #002880);
  margin: 0 0 10px;
}
.lp-contact__form-sub {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  color: var(--dh-on-surface-var, #4a5568);
}

/* ── SUBPAGE RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-about-intro__grid,
  .lp-about-founder__grid,
  .lp-sustain__sdg,
  .lp-feature__grid,
  .lp-contact__cards {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-feature__grid--reversed {
    direction: ltr;
  }
  .lp-sustain__grid {
    grid-template-columns: 1fr;
  }
  .lp-about-intro__img,
  .lp-about-founder__img {
    max-height: 320px;
  }
}

/* ── SUBPAGE HERO: header-section overrides ───────────────────────── */
/* Remove old harbor background image injected by header-section class */
.lp-subpage-hero.header-section {
  background: #faf9fc !important;
  background-image: none !important;
  min-height: auto !important;
  overflow: visible !important;
}
/* Kill left-fade overlay */
.lp-subpage-hero.header-section::before {
  display: none !important;
}
/* Hide decorative pattern */
.lp-subpage-hero .banner-right-img {
  display: none !important;
}
/* Kill drop-shadow on Sign Up button across all lp pages */
.lp-hero .btn-nav a,
.lp-subpage-hero .btn-nav a {
  filter: none !important;
}

/* ── CONTACT FORM: refined overrides ─────────────────────────────── */
.lp-contact form#contact {
  max-width: 780px;
  margin: 0 auto;
}

/* Let col-6 fill its half properly — remove Bootstrap's own padding */
.lp-contact form#contact .col-6 {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.lp-contact form#contact .col-12 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* Field wrapper */
.lp-contact form#contact .input-text {
  margin-bottom: 4px;
  width: 100% !important;
}

/* Inputs & textarea */
.lp-contact form#contact input:not([type='submit']),
.lp-contact form#contact textarea {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 15px !important;
  width: 100% !important;
  background: var(--dh-surface, #f4f6fb) !important;
  border: 1.5px solid transparent !important;
  border-radius: 10px !important;
  color: #1a2340 !important;
  padding: 16px 20px 16px 52px !important;
  height: 62px !important;
  margin: 6px 0 !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
}
.lp-contact form#contact textarea {
  height: 160px !important;
  padding: 16px 20px !important;
  resize: vertical !important;
}

/* Focus */
.lp-contact form#contact input:focus,
.lp-contact form#contact textarea:focus {
  border-color: var(--dh-sky, #2D9CDB) !important;
  box-shadow: 0 0 0 3px rgba(45,156,219,0.12) !important;
  outline: none !important;
  background: #fff !important;
}

/* Icon positioning */
.lp-contact form#contact .input-icon > i,
.lp-contact form#contact .input-text > i {
  top: 50% !important;
  transform: translateY(-50%) !important;
  left: 20px !important;
  font-size: 15px !important;
  color: #8a9ab5 !important;
}

/* Submit button — auto width, left aligned, gradient */
.lp-contact form#contact input[type='submit'] {
  grid-column: 1 / -1;
  width: auto !important;
  justify-self: start !important;
  font-family: var(--font-inter), sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: var(--dh-gradient, linear-gradient(135deg,#002880,#163ea6)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 16px 48px !important;
  cursor: pointer !important;
  margin-top: 12px !important;
  letter-spacing: 0.01em !important;
  transition: opacity 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 2px 10px rgba(0,40,128,0.18) !important;
  height: auto !important;
}
.lp-contact form#contact input[type='submit']:hover {
  opacity: 0.9 !important;
  box-shadow: 0 4px 18px rgba(0,40,128,0.24) !important;
}

/* Honeypot */
.lp-contact form#contact .input-hp {
  display: none !important;
}

/* Validation errors */
.lp-contact form#contact .form-text.text-danger {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 12px !important;
  margin-top: -4px !important;
  margin-bottom: 4px !important;
}

@media (max-width: 640px) {
  .lp-contact form#contact {
    grid-template-columns: 1fr;
  }
}

/* ── POLICY PAGES (cookie-policy, privacy-policy) ──────────────────── */
.lp-policy {
  padding: 64px 0 96px;
  background: var(--dh-surface);
}

.lp-policy__content {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-inter), sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--dh-on-surface);
}

.lp-policy__intro {
  font-size: 17px;
  color: var(--dh-on-surface-var);
  border-left: 3px solid var(--dh-secondary);
  padding-left: 20px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.lp-policy__section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dh-outline-var);
}
.lp-policy__section:last-child {
  border-bottom: none;
}

.lp-policy__section h2 {
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dh-primary);
  margin-bottom: 16px;
  margin-top: 0;
}

.lp-policy__section h3 {
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dh-on-surface);
  margin-top: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-policy__section h3 span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--dh-on-surface-var);
}

.lp-policy__section p {
  margin-bottom: 14px;
  color: var(--dh-on-surface-var);
}

.lp-policy__section ul {
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--dh-on-surface-var);
}

.lp-policy__section ul li {
  margin-bottom: 6px;
}

.lp-policy__section a {
  color: var(--dh-secondary);
  text-decoration: none;
}
.lp-policy__section a:hover {
  text-decoration: underline;
}

.lp-policy__cookie-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.lp-policy__cookie-type {
  background: var(--dh-surface-low);
  border: 1px solid var(--dh-outline-var);
  border-radius: 10px;
  padding: 20px 22px;
}

.lp-policy__cookie-type h3 {
  margin-top: 0;
  font-size: 13px;
  color: var(--dh-primary);
}

.lp-policy__cookie-type p {
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .lp-policy__cookie-types {
    grid-template-columns: 1fr;
  }
  .lp-policy__content {
    font-size: 15px;
  }
}

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.lp-footer {
  background: var(--dh-primary);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-inter), sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.lp-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Brand column */
.lp-footer__logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  border-radius: 10px;
}

.lp-footer__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 20px;
  line-height: 1.5;
}

.lp-footer__socials {
  display: flex;
  gap: 10px;
}

.lp-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.lp-footer__socials a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lp-footer__socials i {
  font-size: 16px;
}

/* Headings */
.lp-footer__heading {
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 16px;
}

/* Links list */
.lp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer__links li {
  margin-bottom: 10px;
}

.lp-footer__links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-footer__links a:hover {
  color: #fff;
}

/* Contact */
.lp-footer__contact-name {
  margin: 0 0 4px;
  color: #fff;
  font-weight: 500;
}

.lp-footer__contact-name span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.lp-footer__email {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 12px;
}

.lp-footer__email:hover {
  color: #fff;
}

.lp-footer__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 4px;
}
.lp-footer__memberships + .lp-footer__label {
  margin-top: 20px;
}

/* Company */
.lp-footer__address {
  margin: 0 0 8px;
}

.lp-footer__cvr {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0 0 16px;
}

.lp-footer__memberships {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lp-footer__memberships img {
  filter: brightness(0) invert(0.7);
  transition: filter 0.2s;
}

.lp-footer__memberships a:hover img {
  filter: brightness(0) invert(1);
}

.lp-footer__qr {
  width: 130px;
  margin-top: 6px;
  display: block;
  opacity: 0.85;
}

/* Bottom bar */
.lp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 18px 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .lp-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
    padding: 48px 24px 36px;
  }
}

@media (max-width: 560px) {
  .lp-footer__inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 32px;
  }
}

/* ── TERMS DEFINITIONS LIST ─────────────────────────────────────────── */
.lp-terms__defs {
  margin: 16px 0 8px;
  font-size: 15px;
  line-height: 1.6;
}

.lp-terms__def {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2px 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--dh-outline-var, #e5e7eb);
  align-items: baseline;
}

.lp-terms__def:first-child {
  border-top: 1px solid var(--dh-outline-var, #e5e7eb);
}

.lp-terms__defs dt {
  font-weight: 600;
  color: var(--dh-primary);
  font-size: 14px;
}

.lp-terms__defs dd {
  margin: 0;
  color: var(--dh-on-surface);
}

@media (max-width: 640px) {
  .lp-terms__def {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* ── LOGIN PAGE ─────────────────────────────────────────────────────── */
.lp-login {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-inter), sans-serif;
}

.lp-login__split {
  flex: 1;
  display: flex;
  min-height: 100vh;
}

/* ── Left panel: ship image ── */
.lp-login__panel--image {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
}

.lp-login__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lp-login__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,40,128,0.68) 0%, rgba(0,20,70,0.82) 100%);
}

.lp-login__brand {
  position: relative;
  z-index: 1;
  padding: 52px 56px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-login__logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.lp-login__brand-bottom {
  padding-bottom: 12px;
}

.lp-login__tagline {
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.lp-login__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-login__bullets li {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.lp-login__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.12)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ffffff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
}

/* ── Right panel: form ── */
.lp-login__panel--form {
  flex: 0 0 42%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

.lp-login__form-inner {
  width: 100%;
  max-width: 360px;
}

.lp-login__form-title {
  font-family: var(--font-space-grotesk), sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dh-primary);
  margin-bottom: 6px;
}

.lp-login__form-subtitle {
  font-size: 15px;
  color: var(--dh-on-surface-var);
  margin-bottom: 32px;
}

.lp-login__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.lp-login__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-login__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-login__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dh-on-surface);
  letter-spacing: 0.01em;
}

.lp-login__forgot {
  font-size: 13px;
  color: var(--dh-secondary);
  text-decoration: none;
}
.lp-login__forgot:hover {
  text-decoration: underline;
}

.lp-login__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--dh-outline-var);
  border-radius: 8px;
  font-size: 14px;
  color: var(--dh-on-surface);
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s;
  font-family: var(--font-inter), sans-serif;
}
.lp-login__input:focus {
  border-color: var(--dh-secondary);
  box-shadow: 0 0 0 3px rgba(0,90,180,0.1);
}
.lp-login__input::placeholder {
  color: #b0b3c1;
}

.lp-login__error {
  font-size: 12px;
  color: #ba1a1a;
}

.lp-login__submit {
  width: 100%;
  height: 46px;
  background: var(--dh-gradient);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-inter), sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 10px rgba(0,40,128,0.2);
  margin-top: 4px;
}
.lp-login__submit:hover:not(:disabled) {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(0,40,128,0.28);
}
.lp-login__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.lp-login__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--dh-outline-var);
  font-size: 13px;
}
.lp-login__divider::before,
.lp-login__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--dh-outline-var);
}
.lp-login__divider span {
  color: #9a9cac;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.lp-login__ms-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 4px;
  transition: opacity 0.15s, box-shadow 0.15s;
}
.lp-login__ms-btn img {
  height: 41px;
  display: block;
  border-radius: 4px;
}
.lp-login__ms-btn:hover {
  opacity: 0.88;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.lp-login__signup-link {
  font-size: 14px;
  color: var(--dh-on-surface-var);
  text-align: center;
  margin-bottom: 8px;
}
.lp-login__signup-link a {
  color: var(--dh-secondary);
  text-decoration: none;
  font-weight: 500;
}
.lp-login__signup-link a:hover {
  text-decoration: underline;
}

.lp-login__support {
  font-size: 12px;
  color: #9a9cac;
  text-align: center;
  margin-top: 16px;
}
.lp-login__support a {
  color: var(--dh-on-surface-var);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lp-login__panel--image {
    display: none;
  }
  .lp-login__panel--form {
    flex: 1;
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  .lp-login__panel--form {
    padding: 32px 20px;
    align-items: flex-start;
    padding-top: 60px;
  }
}
