:root {
  --bg-primary: #011a1f;
  --bg-alt: #072f36;
  --bg-footer: #001a1f;
  --text-body: #818e90;
  --text-heading: #afc5c8;
  --text-subtitle: #86a3a7;
  --text-white: #fff;
  --accent-teal: #0692ac;
  --accent-teal-bright: #7df9ff;
  --accent-teal-border: #0aa9b0;
  --stroke: rgba(255, 255, 255, 0.05);
  --stroke-light: rgba(255, 255, 255, 0.1);
  --title-gradient: linear-gradient(
    90deg,
    #6f9099 0%,
    #d3e4e6 17.31%,
    #c5d9db 30.77%,
    #b5cccf 46.15%,
    #d8e6e8 63.46%,
    #cbd9db 80.29%,
    #6e8f93 100%
  );
  --btn-gradient: linear-gradient(
    270deg,
    rgba(6, 146, 172, 0.05) 0%,
    rgba(5, 137, 162, 0.5) 50%,
    rgba(6, 146, 172, 0.5) 100%
  );
  --btn-demo-gradient: linear-gradient(
    275deg,
    rgba(9, 98, 176, 0.24) 0.84%,
    rgba(2, 243, 255, 0.24) 50.5%,
    rgba(11, 140, 226, 0.24) 97.38%
  );
  --card-bg: linear-gradient(
    93deg,
    rgba(6, 146, 172, 0.05) 2.99%,
    rgba(6, 146, 172, 0.01) 98.56%
  );
  --tag-fill: linear-gradient(
    92deg,
    rgba(6, 146, 172, 0.05) 26.06%,
    rgba(6, 146, 172, 0.25) 50.65%,
    rgba(6, 146, 172, 0.05) 86.55%
  );
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --primary_color_primary_high: rgba(255, 159, 56, 0.2);
  --primary_color_primary_mid: rgba(255, 159, 56, 0.12);
  --primary_color_primary_low: rgba(255, 159, 56, 0.08);
  --primary_color_disable: #ffe9d1;
  --primary_color_pressed: rgba(67, 34, 0, 0.2);
  --primary_color_focused: #ffc88d;
  --primary_color_hover: #f37d00;
  --primary_color_default: #011a1f;
  --arrow-image: url("../img/arrow-img.svg");
}
html,
body {
  background-color: #011a1f;
  color: #818e90;
}

.position-absolute {
  position: absolute;
  width: 100%;
}

img {
  width: 100%;
}

.mobile {
  display: none;
}

.desktop {
  display: block;
}
a {
  text-decoration: none;
}
.btns {
  padding: 16px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.84px;
  font-family: "Inter", sans-serif;
}
.btns:hover {
  background: linear-gradient(
    270deg,
    rgba(6, 146, 172, 0.02) 0%,
    rgba(5, 137, 162, 0.2) 50%,
    rgba(6, 146, 172, 0.2) 100%
  );
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
  border-radius: 56px;
  border: 1px solid var(--tag-stroke, rgba(255, 255, 255, 0.1));
  background: var(
    --Tag-fill,
    linear-gradient(
      92deg,
      rgba(6, 146, 172, 0.05) 26.06%,
      rgba(6, 146, 172, 0.25) 50.65%,
      rgba(6, 146, 172, 0.05) 86.55%
    )
  );
  -webkit-backdrop-filter: blur(6.6999998093px);
  backdrop-filter: blur(6.6999998093px);
  padding: 7px 20px 7px 8px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
  letter-spacing: -0.16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: flex;
  align-items: center;
}
.tag svg,
.tag img {
  margin-right: 4px;
  width: 23px;
  height: 22px;
}

.navs {
  margin: 0 auto;
}
.navs .logo img {
  max-width: 177px;
}
.navs .btns > .desktop {
  display: inline-block;
}
.navs .btns > .mobile {
  display: none;
}

.navigations_section {
  border-radius: 12px;
  margin-top: 32px;
  position: sticky;
  top: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  background-blend-mode: overlay;
  padding: 6px;
  isolation: isolate;
  z-index: 1;
  position: relative;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.navigations_section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 12px;
  background: inherit; /* or rgba(...) */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -1; /* sits under children with z-index > 0 */
}
.navigations_section.nav-hide {
  transform: translateY(-100%);
  opacity: 0;
}
.navigations_section.nav-show {
  transform: translateY(0);
  opacity: 1;
}
.navigations_section .desktop-menu {
  width: 50%;
}
.navigations_section .desktop-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.navigations_section .desktop-menu ul:not(.depth_0) {
  display: flex;
  gap: 30px;
  flex-direction: row;
}
.navigations_section .desktop-menu ul li {
  float: left;
  position: relative;
}
.navigations_section .desktop-menu ul li a {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 13px */
  letter-spacing: 0.26px;
  text-transform: uppercase;
  background: var(
    --Title-2,
    linear-gradient(
      90deg,
      #6f9099 0%,
      #d3e4e6 17.31%,
      #c5d9db 30.77%,
      #b5cccf 46.15%,
      #d8e6e8 63.46%,
      #cbd9db 80.29%,
      #6e8f93 100%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.navigations_section .desktop-menu ul li a.active::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d9d9d9;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  border: none;
}
.navigations_section .desktop-menu ul li a::after {
  border: none;
}
.navigations_section .desktop-menu ul li > ul.depth_0 {
  transform: translateY(48px) !important;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid var(--Stroke, rgba(255, 255, 255, 0.05));
  background: rgba(255, 255, 255, 0.05);
  background-blend-mode: overlay;
  box-shadow: 12px 12px 60px 0 rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(75px);
  backdrop-filter: blur(75px);
}
.navigations_section .desktop-menu ul li > ul.depth_0 li {
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  width: 100%;
  margin-bottom: 8px;
}
.navigations_section .desktop-menu ul li > ul.depth_0 li.active {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border: 1px solid var(--tag-stroke, rgba(255, 255, 255, 0.1));
}
.navigations_section .desktop-menu ul li > ul.depth_0 li a {
  text-align: end;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  letter-spacing: 0.32px;
  text-transform: uppercase;
  background: var(
    --Title-2,
    linear-gradient(
      90deg,
      #6f9099 0%,
      #d3e4e6 17.31%,
      #c5d9db 30.77%,
      #b5cccf 46.15%,
      #d8e6e8 63.46%,
      #cbd9db 80.29%,
      #6e8f93 100%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
.navigations_section .desktop-menu ul li > ul.depth_0 li a::after {
  display: none;
}
.navigations_section .menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigations_section .menu > ul > li:not(:last-child) {
  margin-right: 8px;
}
.navigations_section .menu > ul > li .btns {
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    270deg,
    rgba(6, 146, 172, 0.02) 0%,
    rgba(5, 137, 162, 0.2) 50%,
    rgba(6, 146, 172, 0.2) 100%
  );
  padding: 13px 16px;
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.84px;
}
.navigations_section .menu > ul > li .btns svg {
  margin-right: 8px;
}
.navigations_section .menu > ul > li .btns-booked {
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #0aa9b0;
  background: linear-gradient(
    275deg,
    rgba(9, 98, 176, 0.24) 0.84%,
    rgba(2, 243, 255, 0.24) 50.5%,
    rgba(11, 140, 226, 0.24) 97.38%
  );
  padding: 13px 16px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.84px;
}
.navigations_section .menu > ul > li .dropdown-menu {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgb(29, 56, 62);
  background-blend-mode: overlay;
  box-shadow: 12px 12px 60px 0px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(75px);
  backdrop-filter: blur(75px);
  margin-top: 12px !important;
  padding: 24px 20px;
}
.navigations_section .menu > ul > li .dropdown-menu ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.navigations_section .menu > ul > li .dropdown-menu ul > li {
  border-radius: 4px;
  border: 1px solid transparent;
  margin-bottom: 8px;
}
.navigations_section
  .menu
  > ul
  > li
  .dropdown-menu
  ul
  > li:nth-last-child(-n + 2)
  a {
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #0aa9b0;
  padding: 13px 16px;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.84px;
}
.navigations_section .menu > ul > li .dropdown-menu ul > li > a {
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  padding: 10px 16px;
  font-weight: 500;
  line-height: 100%; /* 24px */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  background: var(
    --Title-2,
    linear-gradient(
      90deg,
      #6f9099 0%,
      #d3e4e6 17.31%,
      #c5d9db 30.77%,
      #b5cccf 46.15%,
      #d8e6e8 63.46%,
      #cbd9db 80.29%,
      #6e8f93 100%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navigations_section .menu > ul > li .dropdown-menu ul > li > a.active {
  font-weight: bolder;
}
.navigations_section .menu > ul > li .dropdown-menu ul > li:hover {
  border: 1px solid var(--tag-stroke, rgba(255, 255, 255, 0.1));
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}
.navigations_section .menu > ul > li .dropdown-menu .social_media > .d-flex {
  align-items: center;
  gap: 12px;
}
.navigations_section
  .menu
  > ul
  > li
  .dropdown-menu
  .social_media
  > .d-flex
  > a {
  border-radius: 39px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(
    --Tag-fill,
    linear-gradient(
      92deg,
      rgba(6, 146, 172, 0.05) 26.06%,
      rgba(6, 146, 172, 0.25) 50.65%,
      rgba(6, 146, 172, 0.05) 86.55%
    )
  );
  display: flex;
}
.navigations_section
  .menu
  > ul
  > li
  .dropdown-menu
  .social_media
  > .d-flex
  > a
  svg
  .svg-fill {
  fill: #0692ac;
  transition: fill 0.5s ease;
}
.navigations_section
  .menu
  > ul
  > li
  .dropdown-menu
  .social_media
  > .d-flex
  > a
  svg
  .svg-stroke {
  stroke: #0692ac;
  transition: fill 0.5s ease;
}
.navigations_section
  .menu
  > ul
  > li
  .dropdown-menu
  .social_media
  > .d-flex
  > a:hover
  svg
  .svg-fill {
  fill: #7df9ff;
}
.navigations_section
  .menu
  > ul
  > li
  .dropdown-menu
  .social_media
  > .d-flex
  > a:hover
  svg
  .svg-stroke {
  stroke: #7df9ff;
}

.footer-section {
  border-top: 1px solid var(--Stroke, rgba(255, 255, 255, 0.05));
  background: #001a1f;
  padding: 100px 0 24px 0;
  background-image: url(../img/footer-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 3;
}
.footer-section .footer-logo {
  margin-bottom: 20px;
}
.footer-section .complince-security {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-section .complince-security .logo-item {
  width: 75px;
}
.footer-section .footer-text {
  margin-bottom: 20px;
}
.footer-section .footer-text p {
  color: var(--Body-Text, #818e90);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}
.footer-section .footer-logo img {
  max-width: 202px;
  height: auto;
  aspect-ratio: 101/18;
}
.footer-section .social_media > .d-flex {
  align-items: center;
  gap: 12px;
}
.footer-section .social_media > .d-flex > a {
  border-radius: 39px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(
    --Tag-fill,
    linear-gradient(
      92deg,
      rgba(6, 146, 172, 0.05) 26.06%,
      rgba(6, 146, 172, 0.25) 50.65%,
      rgba(6, 146, 172, 0.05) 86.55%
    )
  );
}
.footer-section .social_media > .d-flex > a svg .svg-fill {
  fill: #0692ac;
  transition: fill 0.5s ease;
}
.footer-section .social_media > .d-flex > a svg .svg-stroke {
  stroke: #0692ac;
  transition: fill 0.5s ease;
}
.footer-section .social_media > .d-flex > a:hover svg .svg-fill {
  fill: #7df9ff;
}
.footer-section .social_media > .d-flex > a:hover svg .svg-stroke {
  stroke: #7df9ff;
}
.footer-section .contact-details {
  display: flex;
  justify-content: space-around; /* or space-around / space-evenly */
  margin-bottom: 50px;
}
.footer-section .contact-details .heading {
  margin-bottom: 10px;
}
.footer-section .contact-details .heading h5 {
  color: var(--Title, #afc5c8);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
}
.footer-section .contact-details .details p {
  color: var(--Body-Text, #818e90);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin-bottom: 10px;
}
.footer-section .contact-details .details p a {
  color: var(--Body-Text, #818e90);
  text-decoration: none;
  transition:
    color 0.5s ease-in-out,
    -webkit-text-decoration 0.5s ease-in-out;
  transition:
    color 0.5s ease-in-out,
    text-decoration 0.5s ease-in-out;
  transition:
    color 0.5s ease-in-out,
    text-decoration 0.5s ease-in-out,
    -webkit-text-decoration 0.5s ease-in-out;
}
.footer-section .contact-details .details p a:hover {
  color: var(--Body-Text, #818e90);
  text-decoration: underline;
}
.footer-section .contact-details .details a {
  color: var(--Body-Text, #818e90);
  text-decoration: none;
  transition:
    color 0.5s ease-in-out,
    -webkit-text-decoration 0.5s ease-in-out;
  transition:
    color 0.5s ease-in-out,
    text-decoration 0.5s ease-in-out;
  transition:
    color 0.5s ease-in-out,
    text-decoration 0.5s ease-in-out,
    -webkit-text-decoration 0.5s ease-in-out;
}
.footer-section .contact-details .details a:hover {
  color: var(--Body-Text, #818e90);
  text-decoration: underline;
}
.footer-section .contact-details .details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}
.footer-section .contact-details .details ul li {
  margin-bottom: 10px;
}
.footer-section .contact-details .details ul li a {
  color: var(--Body-Text, #818e90);
  text-decoration: none;
  transition:
    color 0.5s ease-in-out,
    -webkit-text-decoration 0.5s ease-in-out;
  transition:
    color 0.5s ease-in-out,
    text-decoration 0.5s ease-in-out;
  transition:
    color 0.5s ease-in-out,
    text-decoration 0.5s ease-in-out,
    -webkit-text-decoration 0.5s ease-in-out;
}
.footer-section .contact-details .details ul li a:hover {
  color: var(--Body-Text, #818e90);
  text-decoration: underline;
}
.footer-section .spacer-24 {
  margin-top: 50px;
  margin-bottom: 24px;
  border: 1px solid #02262d;
}
.footer-section .copy-writes {
  color: var(--Body-Text, #818e90);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}
.footer-section .copy-writes svg {
  margin-right: 4px;
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: var(--title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
h1 {
  font-size: 80px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}
h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.56px;
  text-transform: capitalize;
}
h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  color: var(--text-subtitle);
}
h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  color: var(--text-heading);
}
p {
  margin-bottom: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.section-padding {
  padding: 100px 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: var(--btn-gradient);
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.96px;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
.btn-primary::after {
  content: "";
  border-radius: 8px;
  border: 1px solid #2f7783;
  filter: blur(0.5px);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 146, 172, 0.2);
}
.btn-primary svg {
  transition: transform 0.4s ease;
}
.btn-primary:hover svg {
  transform: translateX(6px);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--accent-teal-border);
  background: var(--btn-demo-gradient);
  backdrop-filter: blur(2px);
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.84px;
  transition: all 0.3s ease;
}
.btn-demo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(6, 146, 172, 0.15);
}

.btn-login {
  padding: 13px 16px;
  border-radius: 8px;
  border: 1px solid var(--stroke-light);
  background: linear-gradient(
    270deg,
    rgba(6, 146, 172, 0.02) 0%,
    rgba(5, 137, 162, 0.2) 50%,
    rgba(6, 146, 172, 0.2) 100%
  );
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.84px;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background: linear-gradient(
    270deg,
    rgba(6, 146, 172, 0.05) 0%,
    rgba(5, 137, 162, 0.3) 50%,
    rgba(6, 146, 172, 0.3) 100%
  );
}

.text-link {
  color: var(--accent-teal);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.text-link:hover {
  color: var(--accent-teal-bright);
}

/* ===== HERO ===== */
.hero_section {
  margin-top: 156px;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  text-align: center;
}
.hero_section h1 {
  margin: 0 auto 36px;
  max-width: 900px;
}
.hero_section .hero-body {
  max-width: 800px;
  margin: 0 auto 40px;
}
.hero_section .hero-body p {
  color: var(--text-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
}
.hero-cta {
  display: flex;
  justify-content: center;
}

/* ===== LOGO SECTION ===== */
.logo-section {
  padding: 40px 0 60px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.logo-section p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-subtitle);
  margin-bottom: 32px;
}
.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  /* opacity: 0.5; */
}
.logo-strip .logo-placeholder {
  width: 120px;
  height: 60px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-subtitle);
  letter-spacing: 0.5px;
}

/* ===== SECTION: THE PLANNING BOTTLENECK ===== */
.planning-bottleneck {
  background-color: var(--bg-alt);
}
.planning-bottleneck .body-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.planning-bottleneck .body-text p {
  margin-bottom: 20px;
}
.planning-bottleneck .body-text p:last-child {
  margin-bottom: 0;
}
.pressure-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pressure-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 160%;
  color: var(--text-body);
}
.pressure-list li .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 4px;
  border-radius: 50%;
  background: rgba(6, 146, 172, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pressure-list li .check-icon svg {
  width: 12px;
  height: 12px;
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-img {
  background: #1a2e33;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtitle);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  /* padding: 20px; */
  overflow: hidden;
}

/* ===== SECTION: HOW THE LOOP WORKS ===== */
.loop-section {
  background-color: var(--bg-primary);
}
.loop-intro {
  font-size: 22px;
  font-weight: 400;
  line-height: 160%;
  color: var(--text-body);
}
.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.loop-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--stroke-light);
  background: var(--card-bg);
}
.loop-card strong {
  display: block;
  color: #0792ac;
  font-size: 17px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 12px;
}
.loop-card p {
  font-size: 15px;
  line-height: 160%;
  color: var(--text-body);
}
.loop-diagram-wrapper {
  margin-top: 50px;
}
.loop-closing {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-subtitle);
}

/* ===== SECTION: FOUR CAPABILITIES ===== */
.capabilities-section {
  background-color: var(--bg-alt);
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.capability-card {
  border-radius: 16px;
  border: 1px solid var(--stroke-light);
  background: var(--card-bg);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.capability-card .card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a2e33;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--stroke-light);
  overflow: hidden;
}
.capability-card .card-media .media-label {
  color: var(--text-subtitle);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 16px;
}
.capability-card .card-content {
  padding: 32px;
}
.capability-card .card-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--stroke-light);
  background: var(--tag-fill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 16px;
}
.capability-card h3 {
  font-style: normal;
  margin-bottom: 16px;
  color: var(--text-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}
.capability-card p {
  font-size: 16px;
  line-height: 165%;
  color: var(--text-body);
  margin-bottom: 20px;
}
.capability-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.capability-card .card-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* ===== SECTION: WHAT MORTAR DELIVERS ===== */
.benefits-section {
  background-color: var(--bg-primary);
}
.benefits-intro {
  max-width: 800px;
  margin: 0 auto;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.benefit-card {
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--stroke-light);
  background: var(--card-bg);
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--stroke-light);
  background: var(--tag-fill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-teal);
}
.benefit-card h3 {
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 16px;
  line-height: 165%;
}

/* ===== SECTION: WHO IT'S FOR ===== */
.who-section {
  background-color: var(--bg-alt);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.who-card {
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--stroke-light);
  background: var(--card-bg);
}
.who-card h3 {
  font-style: normal;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 28px;
}
.who-card ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.who-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 160%;
  color: var(--text-body);
}
.who-card ul li .bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  margin-top: 8px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  background-color: var(--bg-primary);
}
.cta-card-outer {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(6, 146, 172, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(6, 146, 172, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(6, 146, 172, 0.04) 0%,
      transparent 50%
    );
}
.cta-card-inner {
  padding: 80px 100px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  text-align: center;
}
.cta-card-inner h2 {
  margin: 0 auto 24px;
}
.cta-card-inner .cta-sub {
  font-size: 18px;
  line-height: 160%;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ===== FOOTER ===== */
.footer-section {
  border-top: 1px solid var(--stroke);
  background-color: var(--bg-footer);
  padding: 100px 0 24px;
  position: relative;
  z-index: 3;
}
.footer-top {
  margin-bottom: 60px;
}
.footer-logo-text {
  font-size: 24px;
  font-weight: 600;
  background: var(--title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.footer-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-badge {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--text-subtitle);
  text-align: center;
  line-height: 1.2;
}
.footer-desc {
  max-width: 360px;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-body);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  border-radius: 39px;
  padding: 10px;
  border: 1px solid var(--stroke-light);
  background: var(--tag-fill);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--accent-teal);
}
.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-teal);
}
.footer-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-contact-col h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.footer-contact-col p,
.footer-contact-col a {
  font-size: 16px;
  line-height: 150%;
  color: var(--text-body);
  display: block;
  margin-bottom: 6px;
}
.footer-contact-col a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid var(--stroke);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--text-body);
}
.footer-bottom a {
  font-size: 14px;
  color: var(--text-body);
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: var(--text-heading);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 44px;
  }
  .cta-card-inner {
    padding: 60px 60px;
  }
}
@media (max-width: 1024px) {
  .nav-wrapper {
    padding: 16px 20px 0;
  }
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-actions .btn-login {
    display: none;
  }
  .hero_section {
    margin-top: 120px;
  }
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 20px;
  }
  .loop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-grid {
    grid-template-columns: 1fr;
  }
  .footer-contacts {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-padding {
    padding: 70px 0;
  }
}
@media (max-width: 768px) {
  .nav-wrapper {
    padding: 12px 16px 0;
  }
  .hero_section {
    margin-top: 100px;
    padding-bottom: 50px;
  }
  h1 {
    font-size: 36px;
    letter-spacing: -0.4px;
  }
  h2 {
    font-size: 30px;
    letter-spacing: -0.3px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 18px;
  }
  body {
    font-size: 16px;
  }
  .hero_section .hero-body p {
    font-size: 16px;
  }

  .loop-intro {
    font-size: 18px;
  }
  .loop-closing {
    font-size: 17px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .container,
  .container-wide {
    padding: 0 16px;
  }
  .logo-strip {
    gap: 24px;
  }
  .logo-strip .logo-placeholder {
    width: 90px;
    height: 32px;
    font-size: 9px;
  }
  .who-card {
    padding: 32px;
  }
  .who-card h3 {
    font-size: 24px;
  }
  .cta-card-inner {
    padding: 48px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .benefit-card {
    padding: 28px;
  }
  .capability-card .card-content {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  .nav-actions .btn-demo {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ===== MOBILE NAV MENU ===== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(1, 26, 31, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu-overlay.active {
  display: flex;
}
.mobile-menu-overlay a {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading);
  transition: color 0.3s ease;
}
.mobile-menu-overlay a:hover {
  color: var(--accent-teal-bright);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--stroke-light);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}
.mobile-menu-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-white);
}
.mySwiperhelix .swiper-button-next,
.mySwiperhelix .swiper-button-prev {
  color: var(--accent-teal);
}
.grecaptcha-badge {
    bottom: 100px !important;
}
@media (max-width: 575.98px) {
  .tag {
    font-size: 14px;
  }
  .navs .logo img {
    width: 157px;
  }
  .navs .navigations_section .menu > ul > li .btns svg {
    margin-right: 0;
  }
  .navs .navigations_section .menu > ul > li .dropdown-menu ul > li > a {
    font-size: 16px;
  }
  .navs .navigations_section .menu .dropdown-menu {
    width: 200px;
  }
  .footer-section {
    padding: 20px 0;
  }
  .footer-section .contact-details {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-section .spacer-24 {
    margin-top: unset;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .loop-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .tag {
    font-size: 14px;
  }
  .navs .logo img {
    width: 157px;
  }
  .navs .navigations_section .menu > ul > li .btns svg {
    margin-right: 0;
  }
  .navs .navigations_section .menu > ul > li .dropdown-menu ul > li > a {
    font-size: 16px;
  }
  .navs .navigations_section .menu .dropdown-menu {
    width: 200px;
  }
  .footer-section {
    padding: 20px 0;
  }
  .footer-section .contact-details {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-section .spacer-24 {
    margin-top: unset;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .loop-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .tag {
    font-size: 14px;
  }
  .navs .logo img {
    width: 157px;
  }
  .navs .navigations_section .menu > ul > li .btns svg {
    margin-right: 0;
  }
  .navs .navigations_section .menu > ul > li .dropdown-menu ul > li > a {
    font-size: 16px;
  }
  .footer-section {
    padding: 20px 0;
  }
  .footer-section .contact-details {
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-section .spacer-24 {
    margin-top: unset;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .tag {
    font-size: 14px;
  }
  .navs .logo img {
    width: 157px;
  }
  .navs .navigations_section .menu > ul > li .btns svg {
    margin-right: 0;
  }
  .navs .navigations_section .menu > ul > li .dropdown-menu ul > li > a {
    font-size: 16px;
  }
  .footer-section {
    padding: 20px 0;
  }
  .footer-section .contact-details {
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer-section .spacer-24 {
    margin-top: unset;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
