* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Urbanist", sans-serif;
      overflow-x: hidden;
      background: #ffffff;
    }

    .site-header {
      width: 100%;
      height: 77px;
      background: #062b27;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 999;
      animation: headerFade 0.8s ease forwards;
    }

    .header-container {
      width: 100%;
      max-width: 1128px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo img {
      width: 122px;
      height: auto;
      display: block;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 70px;
      margin-left: 90px;
    }

    .main-nav a,
    .language-btn {
      font-family: "Urbanist", sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
      text-decoration: none;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: 0.3s ease;
      line-height: 1;
    }

    .main-nav a:hover,
    .language-btn:hover {
      color: #ff5a12;
      transform: translateY(-1px);
    }

    .language-wrap {
      position: relative;
    }

    .language-btn {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .language-btn span {
      font-size: 10px;
      margin-top: 2px;
    }

    .language-dropdown {
      position: absolute;
      top: 28px;
      left: 0;
      width: 130px;
      background: #ffffff;
      border-radius: 10px;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.3s ease;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    }

    .language-dropdown a {
      display: block;
      color: #062b27;
      font-size: 14px;
      padding: 9px 16px;
    }

    .language-dropdown a:hover {
      background: #f4f4f4;
      color: #ff5a12;
      transform: none;
    }

    .language-wrap:hover .language-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .header-cta {
      width: 132px;
      height: 39px;
      border-radius: 50px;
      background: #ff5a12;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      transition: 0.3s ease;
      box-shadow: 0 8px 22px rgba(255, 90, 18, 0.22);
    }

    .header-cta:hover {
      background: #ffffff;
      color: #ff5a12;
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 38px;
      height: 38px;
      border: none;
      background: transparent;
      cursor: pointer;
      position: relative;
    }

    .menu-toggle span {
      width: 26px;
      height: 2px;
      background: #ffffff;
      position: absolute;
      left: 6px;
      transition: 0.3s ease;
      border-radius: 10px;
    }

    .menu-toggle span:nth-child(1) {
      top: 11px;
    }

    .menu-toggle span:nth-child(2) {
      top: 18px;
    }

    .menu-toggle span:nth-child(3) {
      top: 25px;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 18px;
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 18px;
    }

    .hero-section {
      width: 100%;
      min-height: calc(100vh - 77px);
      height: 771px;
      background-image: url("../assets/hero-reception.jpg");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
      animation: heroZoom 1.2s ease forwards;
    }

/* =========================================
   HERO TITLE OVERLAY
========================================= */

.hero-section{
    position:relative;
}

.hero-title-overlay{
    position:absolute;
    left:0;
    right:0;
    top:60%;
    transform:translateY(-50%);
    width:100%;
    display:flex;
    justify-content:center;
    z-index:20;
    pointer-events:none;
}

.hero-title-box{
    width:100%;
    background:rgba(255,255,255,.62);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
    padding:42px 20px;
    text-align:center;
}

.hero-title-box h1{
    margin:0;
    font-family:"Urbanist",sans-serif;
    font-size:72px;
    line-height:1.08;
    font-weight:800;
    color:#4f95ae;
    text-shadow:
        0 4px 10px rgba(0,0,0,.25),
        0 1px 0 rgba(255,255,255,.55);
    letter-spacing:-1.5px;
}

/* Animation */

.hero-title-box h1{
    animation:heroTitle 1.1s ease;
}

@keyframes heroTitle{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Tablet */

@media (max-width:991px){

.hero-title-overlay{
    top:45%;
}

.hero-title-box{
    padding:35px 15px;
}

.hero-title-box h1{
    font-size:54px;
}

}

/* Mobile */

@media (max-width:767px){

.hero-title-overlay{
    top:48%;
}

.hero-title-box{
    padding:28px 15px;
}

.hero-title-box h1{
    font-size:36px;
    line-height:1.15;
}

}

/* Small Mobile */

@media (max-width:480px){

.hero-title-box h1{
    font-size:30px;
}

}

    @keyframes headerFade {
      from {
        opacity: 0;
        transform: translateY(-18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroZoom {
      from {
        opacity: 0;
        transform: scale(1.035);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @media (max-width: 1024px) {
      .header-container {
        max-width: 100%;
      }

      .main-nav {
        gap: 42px;
        margin-left: 40px;
      }

      .hero-section {
        height: 690px;
        min-height: 690px;
        background-position: center center;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        height: 72px;
      }

      .logo img {
        width: 116px;
      }

      .menu-toggle {
        display: block;
        z-index: 1001;
      }

      .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: #062b27;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        margin-left: 0;
        padding-top: 50px;
        transform: translateX(100%);
        transition: 0.4s ease;
      }

      .main-nav.active {
        transform: translateX(0);
      }

      .main-nav a,
      .language-btn {
        font-size: 20px;
        padding: 18px 0;
      }

      .language-wrap {
        text-align: center;
      }

      .language-dropdown {
        position: static;
        width: 180px;
        margin: 0 auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-radius: 12px;
      }

      .language-wrap:hover .language-dropdown {
        display: block;
      }

      .header-cta {
        margin-top: 22px;
        width: 172px;
        height: 48px;
        font-size: 17px;
      }

      .hero-section {
        height: 650px;
        min-height: 650px;
        background-position: 42% center;
      }
    }

    @media (max-width: 480px) {
      .header-container {
        padding: 0 18px;
      }

      .logo img {
        width: 108px;
      }

      .hero-section {
        height: 600px;
        min-height: 600px;
        background-position: 39% center;
      }
    }
	  
	  .future-reception-section {
  width: 100%;
  height: 487px;
  background: #0b2526;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
}

.future-reception-content {
  width: 100%;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  transform: translateY(-1px);
  animation: futureFadeUp 0.9s ease forwards;
}

.future-small-title {
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  color: #a8afb1;
  margin: 0 0 8px 0;
  letter-spacing: 0px;
}

.future-main-title {
  font-size: 45px;
  line-height: 1.18;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0px;
}

.future-description {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 400;
  color: #a8afb1;
  margin: 24px 0 0 0;
  letter-spacing: 0px;
}

.future-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.future-btn {
  height: 52px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.future-btn-orange {
  width: 235px;
  background: #ea4f0c;
  color: #ffffff;
  gap: 12px;
}

.future-btn-white {
  width: 179px;
  background: #ffffff;
  color: #253442;
  gap: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.arrow-icon {
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.play-icon {
  width: 28px;
  height: 28px;
  background: #ea4f0c;
  border-radius: 50%;
  position: relative;
  flex: 0 0 28px;
}

.play-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 8px solid #ffffff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.future-btn-orange:hover {
  background: #ffffff;
  color: #ea4f0c;
  transform: translateY(-2px);
}

.future-btn-white:hover {
  background: #ea4f0c;
  color: #ffffff;
  transform: translateY(-2px);
}

.future-btn-white:hover .play-icon {
  background: #ffffff;
}

.future-btn-white:hover .play-icon::before {
  border-left-color: #ea4f0c;
}

@keyframes futureFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(-1px);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .future-reception-section {
    height: auto;
    min-height: 460px;
    padding: 80px 24px;
  }

  .future-small-title {
    font-size: 24px;
  }

  .future-main-title {
    font-size: 40px;
  }

  .future-description {
    font-size: 19px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .future-reception-section {
    min-height: auto;
    padding: 70px 20px;
  }

  .future-reception-content {
    max-width: 100%;
  }

  .future-small-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .future-main-title {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1.2px;
  }

  .future-description {
    font-size: 17px;
    line-height: 1.55;
    margin-top: 22px;
  }

  .future-description br {
    display: none;
  }

  .future-btn-wrap {
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .future-btn-orange,
  .future-btn-white {
    width: 100%;
    max-width: 280px;
    height: 52px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .future-main-title {
    font-size: 30px;
  }

  .future-description {
    font-size: 16px;
  }
}

.platform-section {
  width: 100%;
  background: #ffffff;
  padding: 89px 20px 12px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.platform-section * {
  letter-spacing: 0;
  box-sizing: border-box;
}

.platform-heading {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  animation: fadeUp 0.8s ease forwards;
}

.platform-heading h2 {
  margin: 0;
  color: #0c1838;
  font-size: 46px;
  line-height: 52px;
  font-weight: 800;
  letter-spacing: 0;
}

.platform-heading h2 span {
  color: #ef4f12;
  letter-spacing: 0;
}

.platform-heading p {
  margin: 12px 0 0;
  color: #272727;
  font-size: 21px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-card-row {
  width: 100%;
  max-width: 1128px;
  height: 432px;
  margin: 62px auto 0;
  display: grid;
  grid-template-columns: 604px 524px;
  align-items: stretch;
  animation: fadeUp 0.9s ease forwards;
}

.platform-image-box {
  width: 604px;
  height: 432px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
}

.platform-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.platform-content-box {
  width: 524px;
  height: 432px;
  background: #f7f7f7;
  border-radius: 0 18px 18px 0;
  padding: 53px 48px 40px 49px;
}

.platform-content-box h3 {
  margin: 0;
  color: #000000;
  font-size: 30px;
  line-height: 31px;
  font-weight: 800;
  letter-spacing: 0;
}

.platform-content-box p {
  width: 390px;
  margin: 19px 0 0;
  color: #52638a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-content-box ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.platform-content-box li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 10px;
  color: #30415f;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-content-box li::before {
  content: "✓";
  position: absolute;
  left: 1px;
  top: 0;
  color: #006dff;
  font-size: 13px;
  font-weight: 700;
}

.arrival-btn {
  width: auto;
  height: 42px;
  margin-top: 18px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
  padding:0 20px;
}

.arrival-btn span {
  font-size: 21px;
  line-height: 1;
  margin-top: -1px;
  font-weight: 400;
}

.arrival-btn:hover {
  background: #0c1838;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .platform-card-row {
    max-width: 960px;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .platform-image-box,
  .platform-content-box {
    width: 100%;
    height: 410px;
  }

  .platform-content-box {
    padding: 48px 40px;
  }

  .platform-content-box p {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .platform-section {
    padding: 65px 18px 0;
  }

  .platform-heading h2 {
    font-size: 34px;
    line-height: 39px;
  }

  .platform-heading p {
    font-size: 17px;
    line-height: 25px;
    margin-top: 14px;
  }

  .platform-heading p br {
    display: none;
  }

  .platform-card-row {
    margin-top: 42px;
    grid-template-columns: 1fr;
    height: auto;
  }

  .platform-image-box {
    height: 330px;
    border-radius: 18px 18px 0 0;
  }

  .platform-content-box {
    height: auto;
    border-radius: 0 0 18px 18px;
    padding: 36px 26px 34px;
  }

  .platform-content-box h3 {
    font-size: 27px;
    line-height: 30px;
  }

  .platform-content-box p {
    font-size: 15px;
    line-height: 21px;
  }

  .platform-content-box li {
    font-size: 16px;
    line-height: 21px;
  }

  .arrival-btn {
    width: 100%;
    max-width: 260px;
    height: 46px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .platform-heading h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .platform-image-box {
    height: 280px;
  }
}

.ai-automation-section {
  width: 100%;
  background: #ffffff;
  padding: 18px 20px 25px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.ai-automation-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.ai-automation-card {
  width: 100%;
  max-width: 1128px;
  height: 396px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 523px 605px;
  align-items: stretch;
  animation: aiFadeUp 0.9s ease forwards;
}

.ai-automation-content {
  width: 523px;
  height: 396px;
  background: #f7f7f7;
  border-radius: 18px 0 0 18px;
  padding: 60px 50px 40px 52px;
}

.ai-automation-content h3 {
  margin: 0;
  color: #000000;
  font-size: 30px;
  line-height: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.ai-automation-content p {
  width: 410px;
  margin: 17px 0 0;
  color: #52638a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.ai-automation-content ul {
  list-style: none;
  margin: 21px 0 0;
  padding: 0;
}

.ai-automation-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: #30415f;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.ai-automation-content li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 0;
  color: #006dff;
  font-size: 13px;
  font-weight: 700;
}

.ai-automation-btn {
  width: 265px;
  height: 42px;
  margin-top: 17px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.ai-automation-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.ai-automation-btn:hover {
  background: #0c1838;
  color: #ffffff;
  transform: translateY(-2px);
}

.ai-automation-image {
  width: 605px;
  height: 396px;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.ai-automation-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes aiFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .ai-automation-card {
    max-width: 960px;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .ai-automation-content,
  .ai-automation-image {
    width: 100%;
    height: 390px;
  }

  .ai-automation-content {
    padding: 52px 40px 38px;
  }

  .ai-automation-content p {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ai-automation-section {
    padding: 24px 18px 60px;
  }

  .ai-automation-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ai-automation-content {
    order: 2;
    width: 100%;
    height: auto;
    border-radius: 0 0 18px 18px;
    padding: 36px 26px 34px;
  }

  .ai-automation-image {
    order: 1;
    width: 100%;
    height: 330px;
    border-radius: 18px 18px 0 0;
  }

  .ai-automation-content h3 {
    font-size: 27px;
    line-height: 31px;
  }

  .ai-automation-content p {
    font-size: 15px;
    line-height: 21px;
  }

  .ai-automation-content p br {
    display: none;
  }

  .ai-automation-content li {
    font-size: 16px;
    line-height: 21px;
  }

  .ai-automation-btn {
    width: 100%;
    max-width: 270px;
    height: 46px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .ai-automation-image {
    height: 280px;
  }

  .ai-automation-content h3 {
    font-size: 25px;
    line-height: 29px;
  }
}


.live-video-section {
  width: 100%;
  background: #ffffff;
  padding: 20px 20px 25px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.live-video-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.live-video-card {
  width: 100%;
  max-width: 1128px;
  height: 431px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 604px 524px;
  align-items: stretch;
  animation: liveVideoFadeUp 0.9s ease forwards;
}

.live-video-image {
  width: 604px;
  height: 431px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
}

.live-video-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.live-video-content {
  width: 524px;
  height: 431px;
  background: #0a0a0a;
  border-radius: 0 18px 18px 0;
  padding: 76px 48px 40px 48px;
}

.live-video-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.live-video-content p {
  width: 390px;
  margin: 16px 0 0;
  color: #bcbcbc;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.live-video-content ul {
  list-style: none;
  margin: 21px 0 0;
  padding: 0;
}

.live-video-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: #d5d5d5;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.live-video-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 16px;
  height: 16px;
  background: #353535;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
}

.live-video-btn {
  width: 284px;
  height: 42px;
  margin-top: 17px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.live-video-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.live-video-btn:hover {
  background: #ffffff;
  color: #ef4f12;
  transform: translateY(-2px);
}

@keyframes liveVideoFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .live-video-card {
    max-width: 960px;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .live-video-image,
  .live-video-content {
    width: 100%;
    height: 410px;
  }

  .live-video-content {
    padding: 64px 40px 38px;
  }

  .live-video-content p {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .live-video-section {
    padding: 24px 18px 50px;
  }

  .live-video-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .live-video-image {
    width: 100%;
    height: 330px;
    border-radius: 18px 18px 0 0;
  }

  .live-video-content {
    width: 100%;
    height: auto;
    border-radius: 0 0 18px 18px;
    padding: 38px 26px 34px;
  }

  .live-video-content h3 {
    font-size: 27px;
    line-height: 31px;
  }

  .live-video-content p {
    font-size: 15px;
    line-height: 21px;
  }

  .live-video-content p br {
    display: none;
  }

  .live-video-content li {
    font-size: 16px;
    line-height: 21px;
  }

  .live-video-btn {
    width: 100%;
    max-width: 292px;
    height: 46px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .live-video-image {
    height: 280px;
  }

  .live-video-content h3 {
    font-size: 25px;
    line-height: 29px;
  }
}


.secure-management-section {
  width: 100%;
  background: #ffffff;
  padding: 26px 20px 25px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.secure-management-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.secure-management-card {
  width: 100%;
  max-width: 1128px;
  height: 396px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 523px 605px;
  align-items: stretch;
  animation: secureFadeUp 0.9s ease forwards;
}

.secure-management-content {
  width: 523px;
  height: 396px;
  background: #f7f7f7;
  border-radius: 18px 0 0 18px;
  padding: 59px 50px 40px 52px;
}

.secure-management-content h3 {
  margin: 0;
  color: #000000;
  font-size: 30px;
  line-height: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.secure-management-content p {
  width: 410px;
  margin: 17px 0 0;
  color: #52638a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.secure-management-content ul {
  list-style: none;
  margin: 21px 0 0;
  padding: 0;
}

.secure-management-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: #30415f;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.secure-management-content li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 0;
  color: #006dff;
  font-size: 13px;
  font-weight: 700;
}

.secure-management-btn {
  width: 190px;
  height: 42px;
  margin-top: 17px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.secure-management-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.secure-management-btn:hover {
  background: #0c1838;
  color: #ffffff;
  transform: translateY(-2px);
}

.secure-management-image {
  width: 605px;
  height: 396px;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.secure-management-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes secureFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .secure-management-card {
    max-width: 960px;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .secure-management-content,
  .secure-management-image {
    width: 100%;
    height: 390px;
  }

  .secure-management-content {
    padding: 52px 40px 38px;
  }

  .secure-management-content p {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .secure-management-section {
    padding: 24px 18px 50px;
  }

  .secure-management-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .secure-management-content {
    order: 2;
    width: 100%;
    height: auto;
    border-radius: 0 0 18px 18px;
    padding: 36px 26px 34px;
  }

  .secure-management-image {
    order: 1;
    width: 100%;
    height: 330px;
    border-radius: 18px 18px 0 0;
  }

  .secure-management-content h3 {
    font-size: 27px;
    line-height: 31px;
  }

  .secure-management-content p {
    font-size: 15px;
    line-height: 21px;
  }

  .secure-management-content p br {
    display: none;
  }

  .secure-management-content li {
    font-size: 16px;
    line-height: 21px;
  }

  .secure-management-btn {
    width: 100%;
    max-width: 220px;
    height: 46px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .secure-management-image {
    height: 280px;
  }

  .secure-management-content h3 {
    font-size: 25px;
    line-height: 29px;
  }
}


.integration-section {
  width: 100%;
  background: #ffffff;
  padding: 23px 20px 30px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.integration-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.integration-card {
  width: 100%;
  max-width: 1128px;
  height: 431px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 604px 524px;
  align-items: stretch;
  animation: integrationFadeUp 0.9s ease forwards;
}

.integration-image {
  width: 604px;
  height: 431px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
}

.integration-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.integration-content {
  width: 524px;
  height: 431px;
  background: #f7f7f7;
  border-radius: 0 18px 18px 0;
  padding: 62px 48px 40px 48px;
}

.integration-content h3 {
  margin: 0;
  color: #000000;
  font-size: 30px;
  line-height: 31px;
  font-weight: 800;
  letter-spacing: 0;
}

.integration-content p {
  width: 400px;
  margin: 22px 0 0;
  color: #52638a;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.integration-content ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.integration-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: #30415f;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.integration-content li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 0;
  color: #006dff;
  font-size: 13px;
  font-weight: 700;
}

.integration-btn {
  width: 272px;
  height: 42px;
  margin-top: 17px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.integration-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.integration-btn:hover {
  background: #0c1838;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes integrationFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .integration-card {
    max-width: 960px;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .integration-image,
  .integration-content {
    width: 100%;
    height: 410px;
  }

  .integration-content {
    padding: 58px 40px 38px;
  }

  .integration-content p {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .integration-section {
    padding: 24px 18px 50px;
  }

  .integration-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .integration-image {
    width: 100%;
    height: 330px;
    border-radius: 18px 18px 0 0;
  }

  .integration-content {
    width: 100%;
    height: auto;
    border-radius: 0 0 18px 18px;
    padding: 36px 26px 34px;
  }

  .integration-content h3 {
    font-size: 27px;
    line-height: 31px;
  }

  .integration-content p {
    font-size: 15px;
    line-height: 21px;
  }

  .integration-content p br {
    display: none;
  }

  .integration-content li {
    font-size: 16px;
    line-height: 21px;
  }

  .integration-btn {
    width: 100%;
    max-width: 280px;
    height: 46px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .integration-image {
    height: 280px;
  }

  .integration-content h3 {
    font-size: 25px;
    line-height: 29px;
  }
}



.accessible-reception-section {
  width: 100%;
  background: #ffffff;
  padding: 22px 20px 26px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.accessible-reception-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.accessible-reception-card {
  width: 100%;
  max-width: 1128px;
  height: 396px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 523px 605px;
  align-items: stretch;
  animation: accessibleFadeUp 0.9s ease forwards;
}

.accessible-reception-content {
  width: 523px;
  height: 396px;
  background: #0a0a0a;
  border-radius: 18px 0 0 18px;
  padding: 46px 50px 38px 52px;
}

.accessible-reception-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 31px;
  font-weight: 800;
  letter-spacing: 0;
}

.accessible-reception-content p {
  width: 420px;
  margin: 12px 0 0;
  color: #bcbcbc;
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.accessible-reception-content ul {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.accessible-reception-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 11px;
  color: #d5d5d5;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.accessible-reception-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 16px;
  height: 16px;
  background: #353535;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
}

.accessible-reception-btn {
  width: auto;
  height: 42px;
  margin-top: 17px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
  padding:0 20px;
}

.accessible-reception-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.accessible-reception-btn:hover {
  background: #ffffff;
  color: #ef4f12;
  transform: translateY(-2px);
}

.accessible-reception-image {
  width: 605px;
  height: 396px;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.accessible-reception-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@keyframes accessibleFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .accessible-reception-card {
    max-width: 960px;
    height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .accessible-reception-content,
  .accessible-reception-image {
    width: 100%;
    height: 390px;
  }

  .accessible-reception-content {
    padding: 44px 40px 36px;
  }

  .accessible-reception-content p {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .accessible-reception-section {
    padding: 24px 18px 50px;
  }

  .accessible-reception-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .accessible-reception-content {
    width: 100%;
    height: auto;
    border-radius: 18px 18px 0 0;
    padding: 38px 26px 34px;
  }

  .accessible-reception-image {
    width: 100%;
    height: 330px;
    border-radius: 0 0 18px 18px;
  }

  .accessible-reception-content h3 {
    font-size: 27px;
    line-height: 31px;
  }

  .accessible-reception-content p {
    font-size: 15px;
    line-height: 21px;
  }

  .accessible-reception-content p br {
    display: none;
  }

  .accessible-reception-content ul {
    margin-top: 24px;
  }

  .accessible-reception-content li {
    font-size: 16px;
    line-height: 21px;
  }

  .accessible-reception-btn {
    width: 100%;
    max-width: 245px;
    height: 46px;
    margin-top: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .accessible-reception-image {
    height: 280px;
  }

  .accessible-reception-content h3 {
    font-size: 25px;
    line-height: 29px;
  }
}


.multi-site-section {
  width: 100%;
  background: #ffffff;
  padding: 16px 20px 60px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.multi-site-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.multi-site-wrap {
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
  text-align: center;
  animation: multiSiteFadeUp 0.9s ease forwards;
}

.multi-site-image {
  width: 100%;
  height: 656px;
  border-radius: 18px;
  overflow: hidden;
}

.multi-site-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.multi-site-content {
  width: 100%;
  margin-top: 26px;
  text-align: center;
}

.multi-site-content h2 {
  margin: 0;
  color: #000000;
  font-size: 46px;
  line-height: 52px;
  font-weight: 800;
  letter-spacing: 0;
}

.multi-site-content p {
  margin: 9px 0 0;
  color: #000000;
  font-size: 21px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.multi-site-points {
  width: 100%;
  max-width: 650px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 38px;
  row-gap: 11px;
}

.multi-site-points li {
  position: relative;
  padding-left: 25px;
  color: #30415f;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0;
}

.multi-site-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background: #eef5ff;
  color: #006dff;
  border-radius: 50%;
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
  text-align: center;
}

.multi-site-btn {
  width: auto;
  height: 42px;
  margin-top: 25px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
  padding:0 20px;
}

.multi-site-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.multi-site-btn:hover {
  background: #0c1838;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes multiSiteFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .multi-site-wrap {
    max-width: 760px;
  }

  .multi-site-image {
    height: 500px;
  }

  .multi-site-content h2 {
    font-size: 40px;
    line-height: 46px;
  }

  .multi-site-content p {
    font-size: 19px;
    line-height: 25px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .multi-site-section {
    padding: 24px 18px 55px;
  }

  .multi-site-image {
    height: 360px;
    border-radius: 18px;
  }

  .multi-site-content {
    margin-top: 24px;
  }

  .multi-site-content h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .multi-site-content p {
    font-size: 17px;
    line-height: 24px;
  }

  .multi-site-content p br {
    display: none;
  }

  .multi-site-points {
    max-width: 100%;
    grid-template-columns: 1fr;
    row-gap: 12px;
    margin-top: 22px;
  }

  .multi-site-points li {
    font-size: 16px;
    line-height: 22px;
  }

  .multi-site-btn {
    height: 46px;
    margin-top: 24px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .multi-site-image {
    height: 300px;
  }

  .multi-site-content h2 {
    font-size: 29px;
    line-height: 35px;
  }
}

.trusted-platform-section {
  width: 100%;
  min-height: 575px;
  height: auto;
  padding: 72px 20px 58px;
  background: #0a0a0a;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.trusted-platform-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.trusted-platform-wrap {
  width: 100%;
  max-width: 1132px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 510px 1fr;
  column-gap: 148px;
  row-gap: 34px;
  align-items: center;
  animation: trustedFadeUp 0.9s ease forwards;
}

.trusted-platform-left {
  padding-top: 6px;
}

.trusted-platform-left h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  line-height: 52px;
  font-weight: 800;
  letter-spacing: 0;
}

.trusted-platform-left p {
  margin: 17px 0 0;
  color: #bcbcbc;
  font-size: 19px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
}

.trusted-platform-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trusted-platform-right li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 31px;
}

.trusted-platform-right li:last-child {
  margin-bottom: 0;
}

.trusted-check {
  width: 29px;
  height: 29px;
  min-width: 29px;
  border-radius: 50%;
  background: #2d2d2d;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  margin-top: 0;
}

.trusted-platform-right p {
  margin: -4px 0 0;
  color: #ffffff;
  font-size: 27px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 0;
}

.trusted-platform-cta-wrap {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trusted-platform-btn {
  min-width: 230px;
  height: 52px;
  padding: 0 26px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 28px rgba(239, 79, 18, 0.22);
}

.trusted-platform-btn span {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.trusted-platform-btn:hover {
  background: #ffffff;
  color: #ef4f12;
  transform: translateY(-2px);
}

@keyframes trustedFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1200px) {
  .trusted-platform-section {
    min-height: 0;
    height: auto;
    padding: 90px 40px 70px;
  }

  .trusted-platform-wrap {
    max-width: 960px;
    grid-template-columns: 1fr 1fr;
    column-gap: 70px;
  }

  .trusted-platform-left h2 {
    font-size: 40px;
    line-height: 47px;
  }

  .trusted-platform-right p {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trusted-platform-section {
    min-height: 0;
    height: auto;
    padding: 70px 22px 60px;
  }

  .trusted-platform-wrap {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .trusted-platform-left h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .trusted-platform-left p {
    font-size: 17px;
    line-height: 24px;
  }

  .trusted-platform-left p br {
    display: none;
  }

  .trusted-platform-right li {
    gap: 14px;
    margin-bottom: 24px;
  }

  .trusted-platform-right p {
    font-size: 22px;
    line-height: 29px;
  }

  .trusted-platform-cta-wrap {
    margin-top: 4px;
  }

  .trusted-platform-btn {
    width: 100%;
    max-width: 280px;
    height: 50px;
    padding: 0 22px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .trusted-platform-left h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .trusted-platform-right p {
    font-size: 20px;
    line-height: 27px;
  }
}	


.trusted-org-section {
  width: 100%;
  background: #ffffff;
  padding: 44px 20px 52px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.trusted-org-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.trusted-org-container {
  width: 100%;
  max-width: 1128px;
  margin: 0 auto;
  text-align: center;
  animation: trustedOrgFadeUp 0.9s ease forwards;
}

.trusted-org-title {
  margin: 0;
  color: #000000;
  font-size: 41px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.trusted-org-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.trusted-org-tag {
  min-height: 47px;
  padding: 0 28px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: #ffffff;
}

.tag-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #000000;
  flex: 0 0 11px;
}

.trusted-org-tag span:last-child {
  color: #000000;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.trusted-logo-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 42px;
  position: relative;
}

.trusted-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: trustedLogoRun 24s linear infinite;
}

.trusted-logo-marquee:hover .trusted-logo-track {
  animation-play-state: paused;
}

.trusted-logo-item {
  width: 160px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-right: 24px;
}

.trusted-logo-item img {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.95;
  transition: 0.3s ease;
}

.trusted-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

@keyframes trustedLogoRun {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

@keyframes trustedOrgFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .trusted-org-section {
    padding: 40px 20px 48px;
  }

  .trusted-org-title {
    font-size: 35px;
  }

  .trusted-org-tags {
    gap: 16px;
    margin-top: 34px;
  }

  .trusted-org-tag {
    padding: 0 22px;
  }

  .trusted-org-tag span:last-child {
    font-size: 16px;
  }

  .trusted-logo-item {
    width: 145px;
    height: 88px;
    margin-right: 20px;
  }

  .trusted-logo-item img {
    max-height: 70px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .trusted-org-section {
    padding: 36px 18px 44px;
  }

  .trusted-org-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .trusted-org-tags {
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .trusted-org-tag {
    width: 100%;
    max-width: 320px;
    min-height: 46px;
    padding: 0 18px;
  }

  .trusted-org-tag span:last-child {
    font-size: 16px;
  }

  .trusted-logo-marquee {
    margin-top: 30px;
  }

  .trusted-logo-track {
    animation-duration: 18s;
  }

  .trusted-logo-item {
    width: 125px;
    height: 74px;
    margin-right: 18px;
  }

  .trusted-logo-item img {
    max-height: 58px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .trusted-org-title {
    font-size: 27px;
  }

  .trusted-logo-item {
    width: 110px;
    margin-right: 16px;
  }

  .trusted-logo-item img {
    max-height: 52px;
  }
}


.configure-experience-section {
  width: 100%;
  height: 564px;
  background: #0b2b28;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 64px;
}

.configure-experience-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.configure-experience-wrap {
  width: 100%;
  max-width: 884px;
  margin: 0 auto;
  text-align: center;
  animation: configureFadeUp 0.9s ease forwards;
}

.configure-experience-wrap h2 {
  margin: 0;
  color: #ffffff;
  font-size: 45px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.configure-experience-wrap > p {
  margin: 22px 0 0;
  color: #b5bfc0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0;
}

.configure-card-row {
  width: 100%;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.configure-card {
  height: 131px;
  background: #173936;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 22px;
  transition: all 0.3s ease;
}

.configure-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 79, 18, 0.45);
  background: #1b403c;
}

.configure-icon {
  width: 39px;
  height: 39px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.configure-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.icon-blue {
  background: rgba(39, 168, 183, 0.16);
  color: #29bfd0;
}

.icon-orange {
  background: rgba(239, 147, 28, 0.16);
  color: #ef941c;
}

.configure-card h3 {
  margin: 13px 0 0;
  color: #b5bfc0;
  font-size: 19px;
  line-height: 19px;
  font-weight: 400;
  letter-spacing: 0;
}

.configure-btn {
  width: auto;
  height: 52px;
  margin-top: 38px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
  padding:0 20px;
}

.configure-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.configure-btn:hover {
  background: #ffffff;
  color: #ef4f12;
  transform: translateY(-2px);
}

@keyframes configureFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .configure-experience-section {
    height: auto;
    padding: 72px 24px 70px;
  }

  .configure-experience-wrap {
    max-width: 720px;
  }

  .configure-experience-wrap h2 {
    font-size: 40px;
    line-height: 49px;
  }

  .configure-card-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 34px;
  }

  .configure-card {
    height: 132px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .configure-experience-section {
    padding: 64px 18px 62px;
  }

  .configure-experience-wrap h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .configure-experience-wrap > p {
    font-size: 16px;
    line-height: 23px;
    margin-top: 18px;
  }

  .configure-experience-wrap > p br {
    display: none;
  }

  .configure-card-row {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 30px auto 0;
  }

  .configure-card {
    height: 122px;
  }

  .configure-card h3 {
    font-size: 18px;
    line-height: 19px;
  }

  .configure-btn {
    width: 100%;
    max-width: 292px;
    height: 52px;
    margin-top: 30px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .configure-experience-wrap h2 {
    font-size: 29px;
    line-height: 36px;
  }

  .configure-btn {
    font-size: 13px;
  }
}

.transform-reception-section {
  width: 100%;
  height: 317px;
  background: #ffffff;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px 40px;
}

.transform-reception-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.transform-reception-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: transformFadeUp 0.9s ease forwards;
}

.transform-reception-wrap h2 {
  margin: 0;
  color: #000000;
  font-size: 46px;
  line-height: 56px;
  font-weight: 800;
  letter-spacing: 0;
}

.transform-reception-wrap p {
  margin: 12px 0 0;
  color: #252525;
  font-size: 21px;
  line-height: 29px;
  font-weight: 400;
  letter-spacing: 0;
}

.transform-reception-btn {
  width: 172px;
  height: 52px;
  margin-top: 38px;
  border-radius: 50px;
  background: #ef4f12;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.transform-reception-btn span {
  font-size: 21px;
  line-height: 1;
  font-weight: 400;
  margin-top: -1px;
}

.transform-reception-btn:hover {
  background: #0c1838;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes transformFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .transform-reception-section {
    height: auto;
    padding: 56px 22px 62px;
  }

  .transform-reception-wrap h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .transform-reception-wrap p {
    font-size: 19px;
    line-height: 27px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .transform-reception-section {
    padding: 52px 18px 58px;
  }

  .transform-reception-wrap h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .transform-reception-wrap p {
    font-size: 17px;
    line-height: 25px;
    margin-top: 14px;
  }

  .transform-reception-wrap p br {
    display: none;
  }

  .transform-reception-btn {
    width: 172px;
    height: 52px;
    margin-top: 30px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .transform-reception-wrap h2 {
    font-size: 29px;
    line-height: 36px;
  }

  .transform-reception-wrap p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* =========================
   Header CTA + Mobile Menu Fix
   ========================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.is-loading,
body.mobile-menu-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #062b27;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-inner {
  text-align: center;
  animation: loaderPop 0.7s ease forwards;
}

.loader-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loader-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5a12;
  display: block;
  animation: loaderBounce 0.8s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.24s;
}

.page-loader-inner p {
  margin: 14px 0 0;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

@keyframes loaderBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  40% {
    transform: translateY(-9px);
    opacity: 1;
  }
}

@keyframes loaderPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.header-cta,
.main-nav .header-cta {
  width: 132px;
  height: 39px;
  border-radius: 50px;
  background: #ff5a12 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(255, 90, 18, 0.22);
  transition: 0.3s ease;
}

.header-cta:hover,
.main-nav .header-cta:hover {
  background: #ffffff !important;
  color: #ff5a12 !important;
  transform: translateY(-2px);
}

.mobile-header-cta {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    width: 100%;
    max-width: 100vw;
    height: 72px;
    overflow: visible;
  }

  .header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    gap: 10px;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }

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

  .mobile-header-cta {
    width: 118px;
    height: 36px;
    border-radius: 50px;
    background: #ff5a12;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 90, 18, 0.24);
    transition: 0.3s ease;
  }

  .mobile-header-cta:hover {
    background: #ffffff;
    color: #ff5a12;
  }

  .menu-toggle {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: #062b27;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 34px 20px 38px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s ease;
    z-index: 1000;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a,
  .language-btn {
    width: 100%;
    max-width: 280px;
    font-size: 20px;
    padding: 16px 0;
    text-align: center;
    justify-content: center;
  }

  .main-nav .header-cta {
    display: none !important;
  }

  .language-wrap {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .language-btn {
    margin: 0 auto;
  }

  .language-dropdown {
    position: static;
    width: 180px;
    margin: 0 auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 12px;
  }

  .language-wrap:hover .language-dropdown,
  .language-wrap:focus-within .language-dropdown {
    display: block;
  }

  .hero-section {
    width: 100%;
    max-width: 100vw;
    min-height: calc(100vh - 700px);
    height: calc(100vh - 700px);
    background-size: cover;
    background-position: 40% center;
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .header-container {
    padding: 0 14px;
    gap: 8px;
  }

  .logo img {
    width: 96px;
  }

  .mobile-header-cta {
    width: 108px;
    height: 34px;
    font-size: 12px;
  }

  .hero-section {
    min-height: 180px;
    height: 180px;
    background-position: 39% center;
  }
}


/* Click-to-open feature information panels */
.platform-section,
.ai-automation-section,
.live-video-section,
.secure-management-section,
.integration-section,
.accessible-reception-section,
.multi-site-section {
  overflow: visible;
}

.platform-card-row,
.ai-automation-card,
.live-video-card,
.secure-management-card,
.integration-card,
.accessible-reception-card,
.multi-site-wrap {
  position: relative;
}

.feature-title-with-toggle {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-title-with-toggle h3 {
  flex: 1 1 auto;
}

.feature-info-toggle {
  border: 0;
  outline: 0;
  background: transparent;
  color: #ef4f12;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  padding: 5px 0 0;
  white-space: nowrap;
  transition: 0.25s ease;
}

.feature-info-toggle:hover,
.feature-info-toggle.is-active {
  color: #0c1838;
}

.feature-info-toggle-dark:hover,
.feature-info-toggle-dark.is-active {
  color: #ffffff;
}

.feature-info-panel {
  position: absolute;
  top: 88px;
  right: -18px;
  width: 432px;
  max-height: 520px;
  overflow-y: auto;
  display: none;
  background: #ffffff;
  color: #1d1d1d;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 26px 28px 24px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  z-index: 50;
}

.feature-info-panel.is-open {
  display: block;
  animation: featurePanelOpen 0.28s ease forwards;
}

.feature-panel-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #ef4f12;
  color: #ffffff;
  font-size: 21px;
  line-height: 28px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.25s ease;
}

.feature-panel-close:hover {
  background: #0c1838;
}

.feature-info-panel h4 {
  margin: 0 36px 12px 0;
  color: #000000;
  font-size: 22px;
  line-height: 26px;
  font-weight: 800;
}

.feature-info-panel p {
  width: auto !important;
  margin: 0 0 12px !important;
  color: #34415b !important;
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 400 !important;
}

.feature-info-block {
  margin-top: 14px;
}

.feature-info-block strong {
  display: block;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  margin-bottom: 7px;
}

.feature-info-panel ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.feature-info-panel li {
  position: relative;
  padding-left: 21px !important;
  margin: 0 0 7px !important;
  color: #30415f !important;
  font-size: 14px !important;
  line-height: 19px !important;
  font-weight: 400 !important;
}

.feature-info-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #006dff;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  font-size: 12px;
  line-height: 19px;
  font-weight: 800;
}

.live-video-content .feature-info-panel,
.accessible-reception-content .feature-info-panel {
  right: -18px;
}

.multi-site-title-with-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.multi-site-title-with-toggle h2 {
  margin: 0;
}

.multi-site-info-panel {
  top: 715px;
  right: -38px;
  width: 446px;
}

@keyframes featurePanelOpen {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1200px) {
  .feature-info-panel {
    right: 18px;
    width: min(430px, calc(100vw - 56px));
  }

  .multi-site-info-panel {
    top: 650px;
    right: 18px;
  }
}

@media (max-width: 767px) {
  .feature-title-with-toggle,
  .multi-site-title-with-toggle {
    display: block;
  }

  .feature-info-toggle {
    display: inline-block;
    margin-top: 8px;
    padding-top: 0;
    font-size: 13px;
  }

  .feature-info-panel,
  .multi-site-info-panel {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    margin-top: 18px;
    padding: 24px 22px 22px;
  }

  .feature-info-panel h4 {
    font-size: 21px;
    line-height: 25px;
  }

  .feature-info-panel p {
    font-size: 14px !important;
    line-height: 21px !important;
  }

  .feature-info-panel li {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

/* =========================================================
   FIX: More info panels should open inline, not on the right
   This keeps the original design closed, and expands only the
   selected card when a toggle is opened.
========================================================= */
.feature-info-panel,
.live-video-content .feature-info-panel,
.accessible-reception-content .feature-info-panel,
.multi-site-info-panel {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  margin: 18px 0 0 !important;
  z-index: 1 !important;
  display: none !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12) !important;
}

.feature-info-panel.is-open,
.multi-site-info-panel.is-open {
  display: block !important;
  animation: featurePanelOpen 0.28s ease forwards;
}

/* Allow the active card/section to grow when the info box opens */
.platform-card-row:has(.feature-info-panel.is-open),
.ai-automation-card:has(.feature-info-panel.is-open),
.live-video-card:has(.feature-info-panel.is-open),
.secure-management-card:has(.feature-info-panel.is-open),
.integration-card:has(.feature-info-panel.is-open),
.accessible-reception-card:has(.feature-info-panel.is-open),
.multi-site-wrap:has(.feature-info-panel.is-open) {
  height: auto !important;
  align-items: start !important;
}

.platform-content-box:has(.feature-info-panel.is-open) {
  height: auto !important;
  min-height: 432px !important;
}

.ai-automation-content:has(.feature-info-panel.is-open),
.secure-management-content:has(.feature-info-panel.is-open),
.accessible-reception-content:has(.feature-info-panel.is-open) {
  height: auto !important;
  min-height: 396px !important;
}

.live-video-content:has(.feature-info-panel.is-open),
.integration-content:has(.feature-info-panel.is-open) {
  height: auto !important;
  min-height: 431px !important;
}

.multi-site-content:has(.multi-site-info-panel.is-open) {
  height: auto !important;
}

.multi-site-info-panel {
  max-width: 720px !important;
  margin: 22px auto 0 !important;
}

/* Keep the close button inside the opened panel */
.feature-panel-close {
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
}

/* Mobile: panel opens full-width under the button */
@media (max-width: 767px) {
  .feature-info-panel,
  .live-video-content .feature-info-panel,
  .accessible-reception-content .feature-info-panel,
  .multi-site-info-panel {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 16px !important;
    padding: 24px 22px 22px !important;
  }
}

/* =========================================================
   FINAL FIX: More info opens as overlay on the same card
   - Keeps previous card design/height unchanged
   - Does not push content down
   - Does not float too far on the right side
========================================================= */
.platform-card-row:has(.feature-info-panel.is-open),
.ai-automation-card:has(.feature-info-panel.is-open),
.live-video-card:has(.feature-info-panel.is-open),
.secure-management-card:has(.feature-info-panel.is-open),
.integration-card:has(.feature-info-panel.is-open),
.accessible-reception-card:has(.feature-info-panel.is-open) {
  align-items: stretch !important;
}

.platform-card-row:has(.feature-info-panel.is-open) {
  height: 432px !important;
}

.live-video-card:has(.feature-info-panel.is-open),
.integration-card:has(.feature-info-panel.is-open) {
  height: 431px !important;
}

.ai-automation-card:has(.feature-info-panel.is-open),
.secure-management-card:has(.feature-info-panel.is-open),
.accessible-reception-card:has(.feature-info-panel.is-open) {
  height: 396px !important;
}

.platform-content-box:has(.feature-info-panel.is-open) {
  height: 432px !important;
  min-height: 432px !important;
}

.live-video-content:has(.feature-info-panel.is-open),
.integration-content:has(.feature-info-panel.is-open) {
  height: 431px !important;
  min-height: 431px !important;
}

.ai-automation-content:has(.feature-info-panel.is-open),
.secure-management-content:has(.feature-info-panel.is-open),
.accessible-reception-content:has(.feature-info-panel.is-open) {
  height: 396px !important;
  min-height: 396px !important;
}

.feature-info-panel,
.live-video-content .feature-info-panel,
.accessible-reception-content .feature-info-panel,
.multi-site-info-panel {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 430px !important;
  max-width: calc(100vw - 48px) !important;
  max-height: 520px !important;
  overflow-y: auto !important;
  margin: 0 !important;
  z-index: 100 !important;
  display: none !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18) !important;
  transform: translate(-50%, -50%) scale(0.98) !important;
}

.feature-info-panel.is-open,
.multi-site-info-panel.is-open {
  display: block !important;
  animation: featureOverlayOpen 0.28s ease forwards !important;
}

.multi-site-wrap:has(.multi-site-info-panel.is-open) {
  height: auto !important;
}

.multi-site-info-panel {
  width: 446px !important;
  max-width: calc(100vw - 48px) !important;
  top: 50% !important;
  left: 50% !important;
}

@keyframes featureOverlayOpen {
  from {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 767px) {
  .platform-card-row:has(.feature-info-panel.is-open),
  .ai-automation-card:has(.feature-info-panel.is-open),
  .live-video-card:has(.feature-info-panel.is-open),
  .secure-management-card:has(.feature-info-panel.is-open),
  .integration-card:has(.feature-info-panel.is-open),
  .accessible-reception-card:has(.feature-info-panel.is-open) {
    height: auto !important;
  }

  .feature-info-panel,
  .live-video-content .feature-info-panel,
  .accessible-reception-content .feature-info-panel,
  .multi-site-info-panel {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    width: calc(100vw - 32px) !important;
    max-width: 430px !important;
    max-height: calc(100vh - 90px) !important;
    overflow-y: auto !important;
    margin: 0 !important;
    z-index: 9999 !important;
  }
}

/* =========================================================
   FINAL USER FIX: More info panel opens directly under the
   clicked "More info +" button on every card/side.
   - Does not push the layout down
   - Does not float far right
   - Works for left cards, right cards, dark cards and multi-site
========================================================= */
.feature-title-with-toggle,
.multi-site-title-with-toggle {
  position: relative !important;
  overflow: visible !important;
  z-index: 30 !important;
}

.feature-title-with-toggle .feature-info-toggle,
.multi-site-title-with-toggle .feature-info-toggle {
  position: relative !important;
  z-index: 31 !important;
}

.feature-title-with-toggle .feature-info-panel,
.multi-site-title-with-toggle .feature-info-panel,
.live-video-content .feature-title-with-toggle .feature-info-panel,
.accessible-reception-content .feature-title-with-toggle .feature-info-panel,
.multi-site-title-with-toggle .multi-site-info-panel {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;
  width: 430px !important;
  max-width: min(430px, calc(100vw - 34px)) !important;
  max-height: 520px !important;
  overflow-y: auto !important;
  margin: 0 !important;
  z-index: 9999 !important;
  display: none !important;
  transform: none !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18) !important;
}

.feature-title-with-toggle .feature-info-panel.is-open,
.multi-site-title-with-toggle .feature-info-panel.is-open,
.multi-site-title-with-toggle .multi-site-info-panel.is-open {
  display: block !important;
  animation: featureUnderButtonOpen 0.24s ease forwards !important;
}

/* Keep original card heights. The panel is a dropdown overlay below the button. */
.platform-card-row:has(.feature-info-panel.is-open) {
  height: 432px !important;
}

.live-video-card:has(.feature-info-panel.is-open),
.integration-card:has(.feature-info-panel.is-open) {
  height: 431px !important;
}

.ai-automation-card:has(.feature-info-panel.is-open),
.secure-management-card:has(.feature-info-panel.is-open),
.accessible-reception-card:has(.feature-info-panel.is-open) {
  height: 396px !important;
}

.platform-content-box:has(.feature-info-panel.is-open) {
  height: 432px !important;
  min-height: 432px !important;
}

.live-video-content:has(.feature-info-panel.is-open),
.integration-content:has(.feature-info-panel.is-open) {
  height: 431px !important;
  min-height: 431px !important;
}

.ai-automation-content:has(.feature-info-panel.is-open),
.secure-management-content:has(.feature-info-panel.is-open),
.accessible-reception-content:has(.feature-info-panel.is-open) {
  height: 396px !important;
  min-height: 396px !important;
}

.multi-site-title-with-toggle .multi-site-info-panel {
  width: 446px !important;
  max-width: min(446px, calc(100vw - 34px)) !important;
}

@keyframes featureUnderButtonOpen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .feature-title-with-toggle,
  .multi-site-title-with-toggle {
    display: block !important;
  }

  .feature-title-with-toggle .feature-info-panel,
  .multi-site-title-with-toggle .feature-info-panel,
  .live-video-content .feature-title-with-toggle .feature-info-panel,
  .accessible-reception-content .feature-title-with-toggle .feature-info-panel,
  .multi-site-title-with-toggle .multi-site-info-panel {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    right: auto !important;
    left: 0 !important;
    width: min(430px, calc(100vw - 36px)) !important;
    max-width: calc(100vw - 36px) !important;
    max-height: 440px !important;
    overflow-y: auto !important;
  }
}

/* =========================================================
   FINAL FIX: keep More info dropdown above the next image/section
   Opens under its own button, but always stays on top.
========================================================= */
.platform-section,
.ai-automation-section,
.live-video-section,
.secure-management-section,
.integration-section,
.accessible-reception-section,
.multi-site-section {
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
}

.platform-card-row,
.ai-automation-card,
.live-video-card,
.secure-management-card,
.integration-card,
.accessible-reception-card,
.multi-site-wrap,
.platform-content-box,
.ai-automation-content,
.live-video-content,
.secure-management-content,
.integration-content,
.accessible-reception-content,
.multi-site-content {
  position: relative !important;
  overflow: visible !important;
}

.platform-section:has(.feature-info-panel.is-open),
.ai-automation-section:has(.feature-info-panel.is-open),
.live-video-section:has(.feature-info-panel.is-open),
.secure-management-section:has(.feature-info-panel.is-open),
.integration-section:has(.feature-info-panel.is-open),
.accessible-reception-section:has(.feature-info-panel.is-open),
.multi-site-section:has(.feature-info-panel.is-open) {
  z-index: 9999 !important;
}

.platform-card-row:has(.feature-info-panel.is-open),
.ai-automation-card:has(.feature-info-panel.is-open),
.live-video-card:has(.feature-info-panel.is-open),
.secure-management-card:has(.feature-info-panel.is-open),
.integration-card:has(.feature-info-panel.is-open),
.accessible-reception-card:has(.feature-info-panel.is-open),
.multi-site-wrap:has(.feature-info-panel.is-open) {
  z-index: 10000 !important;
}

.feature-title-with-toggle,
.multi-site-title-with-toggle {
  position: relative !important;
  z-index: 10001 !important;
  overflow: visible !important;
}

.feature-title-with-toggle .feature-info-panel,
.multi-site-title-with-toggle .feature-info-panel,
.multi-site-title-with-toggle .multi-site-info-panel {
  z-index: 10002 !important;
}

.feature-title-with-toggle .feature-info-panel.is-open,
.multi-site-title-with-toggle .feature-info-panel.is-open,
.multi-site-title-with-toggle .multi-site-info-panel.is-open {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}


/* =========================================================
   HOMEPAGE LAPTOP HERO + ANIMATED SCROLL INDICATOR FIX
   Add-on CSS: keeps existing layout, improves first-screen view
   ========================================================= */

.hero-section {
  position: relative !important;
  min-height: 88vh !important;
  height: 88vh !important;
  max-height: 760px !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  z-index: 25;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(0,0,0,0.45);
}

.scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.scroll-arrows i {
  width: 15px;
  height: 15px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(45deg);
  opacity: 0;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.45));
}

.scroll-arrows i:nth-child(1) {
  animation: scrollArrow 1.6s ease-in-out infinite;
}

.scroll-arrows i:nth-child(2) {
  animation: scrollArrow 1.6s ease-in-out 0.25s infinite;
}

.scroll-indicator:hover {
  color: #ff5a12;
}

.scroll-indicator:hover .scroll-arrows i {
  border-color: #ff5a12;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-6px, -6px);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(8px, 8px);
  }
}

/* Laptop balance: show hint of second banner */
@media (min-width: 769px) and (max-height: 820px) {
  .hero-section {
    min-height: 82vh !important;
    height: 82vh !important;
    max-height: 690px !important;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 84vh !important;
    height: 84vh !important;
    max-height: 690px !important;
    background-position: center center !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: 560px !important;
    height: 560px !important;
    max-height: none !important;
    background-position: 42% center !important;
  }

  .scroll-indicator {
    bottom: 24px;
    gap: 8px;
  }

  .scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .scroll-arrows i {
    width: 12px;
    height: 12px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 520px !important;
    height: 520px !important;
    background-position: 40% center !important;
  }
}


/* Video Popup */
.video-modal{position:fixed;inset:0;background:rgba(0,0,0,.82);display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:.3s;z-index:99999;padding:20px}
.video-modal.active{opacity:1;visibility:visible}
.video-overlay{position:absolute;inset:0}
.video-box{position:relative;width:min(1100px,95vw);background:#000;border-radius:16px;overflow:hidden;transform:scale(.9);transition:.3s;z-index:2;box-shadow:0 30px 80px rgba(0,0,0,.45)}
.video-modal.active .video-box{transform:scale(1)}
.video-box video{display:block;width:100%;height:auto;max-height:85vh;background:#000}
.video-close{position:absolute;top:12px;right:12px;width:42px;height:42px;border:none;border-radius:50%;background:#fff;color:#111;font-size:28px;cursor:pointer;z-index:3}
.video-close:hover{background:#ef4f12;color:#fff}

/* ===== SECURE VISITOR MANAGEMENT VIDEO POPUP ===== */

.secure-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 17px;
  flex-wrap: wrap;
}

.secure-btn-group .secure-management-btn {
  margin-top: 0;
}

.secure-video-btn {
  width: 175px;
  background: #0c1838;
}

.secure-video-btn:hover {
  background: #ef4f12;
  color: #ffffff;
}

.secure-video-popup-open {
  overflow: hidden;
}

.secure-video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.secure-video-modal.active {
  display: flex !important;
}

.secure-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 16, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.secure-video-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 94vw);
  border-radius: 22px;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(239, 79, 18, 0.35);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
  animation: secureVideoPopupZoom 0.28s ease forwards;
}

.secure-video-content video {
  width: 100%;
  max-height: 82vh;
  display: block;
  background: #000000;
}

.secure-video-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(239, 79, 18, 0.96);
  color: #ffffff;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.secure-video-close:hover {
  background: #ffffff;
  color: #ef4f12;
  transform: rotate(90deg);
}

@keyframes secureVideoPopupZoom {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .secure-btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .secure-btn-group .secure-management-btn {
    width: 100%;
    max-width: 230px;
  }

  .secure-video-modal {
    padding: 14px;
  }

  .secure-video-content {
    width: 96vw;
    border-radius: 16px;
  }

  .secure-video-close {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
    font-size: 27px;
  }
}



	.container-fluid.footer-white-bg {padding-bottom:190px;}
	.footer-white-bg .bottom-nav ul li.nav-item ul.dropdown-menu li {float: none; margin:0 10px; padding: 3px 0;}
	.footer-white-bg .bottom-nav ul li.nav-item ul.dropdown-menu{min-width:200px;}
	.fac {font-size:16px; display: inline-block; text-align:center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 36px;
  background-color: #39579a;
  color: #fff;
  margin: 0 0px 3px 0;}
  .fac:hover { background-color: #4268bc;}
  .footer-grey-bg .icon-back a {margin: 0 0 0 5px!important;}
  
.footer-link-bg hr {
	background: #ed7d31;
	height: 4px;
	width: 40px;
	margin: 20px 0;
	border: none;
}

.footer-link-bg {
	background: #313131;
	padding: 65px 15px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-link-bg ul li a {
    font-size: 15px;
    font-weight: 400;
    color: #d7d7d7;
    padding: 0;
    display: inline-block;
}

.footer-link-bg ul li {
    font-size: 15px;
    font-weight: 400;
    display: block;
    color: #d7d7d7;
    padding: 5px 0;
}

.footer-link-bg ul.contact li a {
    color: #ed7d31;
}

.footer-link-bg h3 {
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
}

.container-fluid.footer-white-bg {
    padding-bottom: 60px;
}
.footer-grey-bg span {
    font-size: 17px;
    font-weight: 600;
    color: #094a9c;
    line-height: 24px;
    max-width: 600px;
}
.footer-white-bg p {
    margin: 0;
    padding: 0;
    font-size: 13px!important;
    color: #666;
}
.footer-white-bg .bottom-nav ul li a {
    font-size: 14px;
    color: #094a9c;
}

.footer-white-bg .bottom-nav ul li {
    float: left;
    margin: 0 15px 0 0;
}

.footer-grey-bg {
    background: #eaeaea;
    padding: 25px 15px;
}
.footer-grey-bg .bottom-top-arrow {
    margin: -60px 0 0 0;
}


.bn-xd button {
	background: #eb4f0c;
	/* padding-left: 33px; */
	/* padding-right: 11px; */
	padding-bottom: 10px;
	color: white;
	font-size: 15px;
	font-family: Montserrat;
	margin-top: 0px;
	padding-top: 10px;
	border: none;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 53px;
}
.footer-white-bg {
    background: #FFF;
    padding: 15px;
}

// .modal-open      - body class for killing the scroll
// .modal           - container to scroll within
// .modal-dialog    - positioning shell for the actual modal
// .modal-content   - actual modal w/ bg and corners and stuff


.modal-open {
  // Kill the scroll on the body
  overflow: hidden;

  .modal {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

// Container that the modal scrolls within
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: $zindex-modal;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  // Prevent Chrome on Windows from adding a focus outline. For details, see
  // https://github.com/twbs/bootstrap/pull/10951.
  outline: 0;
  // We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
  // gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
  // See also https://github.com/twbs/bootstrap/issues/17695
}

// Shell div to position the modal with bottom padding
.modal-dialog {
  position: relative;
  width: auto;
  margin: $modal-dialog-margin;
  // allow clicks to pass through for custom click handling to close modal
  pointer-events: none;

  // When fading in the modal, animate it to slide down
  .modal.fade & {
    @include transition($modal-transition);
    transform: $modal-fade-transform;
  }
  .modal.show & {
    transform: $modal-show-transform;
  }

  // When trying to close, animate focus to scale
  .modal.modal-static & {
    transform: $modal-scale-transform;
  }
}

.modal-dialog-scrollable {
  display: flex; // IE10/11
  max-height: subtract(100%, $modal-dialog-margin * 2);

  .modal-content {
    max-height: subtract(100vh, $modal-dialog-margin * 2); // IE10/11
    overflow: hidden;
  }

  .modal-header,
  .modal-footer {
    flex-shrink: 0;
  }

  .modal-body {
    overflow-y: auto;
  }
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: subtract(100%, $modal-dialog-margin * 2);

  // Ensure `modal-dialog-centered` extends the full height of the view (IE10/11)
  &::before {
    display: block; // IE10
    height: subtract(100vh, $modal-dialog-margin * 2);
    height: min-content; // Reset height to 0 except on IE
    content: "";
  }

  // Ensure `.modal-body` shows scrollbar (IE10/11)
  &.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%;

    .modal-content {
      max-height: none;
    }

    &::before {
      content: none;
    }
  }
}

// Actual modal
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%; // Ensure `.modal-content` extends the full width of the parent `.modal-dialog`
  // counteract the pointer-events: none; in the .modal-dialog
  color: $modal-content-color;
  pointer-events: auto;
  background-color: $modal-content-bg;
  background-clip: padding-box;
  border: $modal-content-border-width solid $modal-content-border-color;
  @include border-radius($modal-content-border-radius);
  @include box-shadow($modal-content-box-shadow-xs);
  // Remove focus outline from opened modal
  outline: 0;
}

// Modal background
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: $zindex-modal-backdrop;
  width: 100vw;
  height: 100vh;
  background-color: $modal-backdrop-bg;

  // Fade for backdrop
  &.fade { opacity: 0; }
  &.show { opacity: $modal-backdrop-opacity; }
}



// Modal header
// Top section of the modal w/ title and dismiss
.modal-header {
  display: flex;
  align-items: flex-start; // so the close btn always stays on the upper right corner
  justify-content: space-between; // Put modal header elements (title and dismiss) on opposite ends
  padding: $modal-header-padding;
  border-bottom: $modal-header-border-width solid $modal-header-border-color;
  @include border-top-radius($modal-content-inner-border-radius);

  .close {
    padding: $modal-header-padding;
    // auto on the left force icon to the right even when there is no .modal-title
    margin: (-$modal-header-padding-y) (-$modal-header-padding-x) (-$modal-header-padding-y) auto;
  }
}

// Title text within header
.modal-title {
  margin-bottom: 0;
  line-height: $modal-title-line-height;
}

// Modal body
// Where all modal content resides (sibling of .modal-header and .modal-footer)
.modal-body {
  position: relative;
  // Enable `flex-grow: 1` so that the body take up as much space as possible
  // when there should be a fixed height on `.modal-dialog`.
  flex: 1 1 auto;
  padding: $modal-inner-padding;
}

// Footer (for actions)
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center; // vertically center
  justify-content: flex-end; // Right align buttons with flex property because text-align doesn't work on flex items
  padding: $modal-inner-padding - $modal-footer-margin-between * .5;
  border-top: $modal-footer-border-width solid $modal-footer-border-color;
  @include border-bottom-radius($modal-content-inner-border-radius);

  // Place margin between footer elements
  // This solution is far from ideal because of the universal selector usage,
  // but is needed to fix https://github.com/twbs/bootstrap/issues/24800
  > * {
    margin: $modal-footer-margin-between * .5;
  }
}

// Measure scrollbar width for padding body during modal show/hide
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

// Scale up the modal
@include media-breakpoint-up(sm) {
  // Automatically set modal's width for larger viewports
  .modal-dialog {
    max-width: $modal-md;
    margin: $modal-dialog-margin-y-sm-up auto;
  }

  .modal-dialog-scrollable {
    max-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);

    .modal-content {
      max-height: subtract(100vh, $modal-dialog-margin-y-sm-up * 2);
    }
  }

  .modal-dialog-centered {
    min-height: subtract(100%, $modal-dialog-margin-y-sm-up * 2);

    &::before {
      height: subtract(100vh, $modal-dialog-margin-y-sm-up * 2);
      height: min-content;
    }
  }

  .modal-content {
    @include box-shadow($modal-content-box-shadow-sm-up);
  }

  .modal-sm { max-width: $modal-sm; }
}

@include media-breakpoint-up(lg) {
  .modal-lg,
  .modal-xl {
    max-width: $modal-lg;
  }
}

@include media-breakpoint-up(xl) {
  .modal-xl { max-width: $modal-xl; }
}

/* =========================================================
   CLIENT HOMEPAGE UPDATES - HERO + NEW RESPONSIVE BANNERS
   Added from the renewed Dutch homepage instructions.
========================================================= */

/* Reworked first banner */
.hero-title-overlay {
  top: 58%;
  padding: 0 20px;
}

.hero-title-box {
  width: min(1040px, calc(100% - 40px));
  border-radius: 18px;
  padding: 34px 44px 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.hero-title-box h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  color: #0b174c;
  text-shadow: none;
  letter-spacing: -1.5px;
}

.hero-title-box p {
  max-width: 900px;
  margin: 18px auto 0;
  color: #172452;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  font-weight: 500;
}

/* Shared full-width image banner styling */
.client-banner-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.client-banner-section-first {
  scroll-margin-top: 90px;
}

.client-banner-image {
  width: 100%;
  max-width: 1536px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.client-banner-image-wide {
  max-width: 1672px;
}

.client-banner-heading-wrap {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 66px 42px 28px;
}

.client-banner-heading-wrap h2 {
  margin: 0;
  color: #0b174c;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
}

.why-teleportel-section {
  padding-bottom: 20px;
}

.faq-banner-section {
  padding: 0;
}

.client-banner-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 991px) {
  .hero-title-overlay {
    top: 52%;
    padding: 0 16px;
  }

  .hero-title-box {
    width: min(900px, calc(100% - 24px));
    padding: 30px 30px 28px;
  }

  .hero-title-box h1 {
    font-size: clamp(39px, 6vw, 58px);
  }

  .client-banner-heading-wrap {
    padding: 50px 28px 22px;
  }
}

@media (max-width: 767px) {
  .hero-title-overlay {
    top: 50%;
    padding: 0 10px;
  }

  .hero-title-box {
    width: calc(100% - 20px);
    border-radius: 14px;
    padding: 24px 18px 22px;
  }

  .hero-title-box h1 {
    font-size: clamp(31px, 9vw, 43px);
    line-height: 1.1;
    letter-spacing: -0.8px;
  }

  .hero-title-box p {
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.45;
  }

  .client-banner-heading-wrap {
    padding: 40px 20px 18px;
  }

  .client-banner-heading-wrap h2 {
    font-size: 34px;
  }

  .why-teleportel-section {
    padding-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title-box {
    padding: 21px 15px 19px;
  }

  .hero-title-box h1 {
    font-size: 29px;
  }

  .hero-title-box p {
    font-size: 14px;
    line-height: 1.42;
  }

  .client-banner-heading-wrap {
    padding: 34px 16px 14px;
  }

  .client-banner-heading-wrap h2 {
    font-size: 30px;
  }
}



/* =========================================================
   SEO-READABLE VISUAL SECTIONS
   Replaces image-only banners with semantic HTML text.
========================================================= */
.seo-visual-section,
.seo-faq-section {
  --seo-navy: #071348;
  --seo-blue: #0865f5;
  --seo-soft: #f3f7ff;
  --seo-border: #e4ecfb;
  width: 100%;
  background: #fff;
  color: var(--seo-navy);
  font-family: "Urbanist", sans-serif;
}

.seo-visual-section *,
.seo-faq-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.seo-visual-shell {
  width: min(1450px, calc(100% - 64px));
  margin: 0 auto;
}

.seo-visual-shell-split {
  display: grid;
  grid-template-columns: minmax(360px, 39%) 1fr;
  gap: 28px;
  align-items: stretch;
}

.hybrid-reception-seo {
  padding: 54px 0 0;
  scroll-margin-top: 90px;
}

.seo-intro-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.seo-section-copy {
  padding: 0 12px 26px 2px;
}

.seo-section-copy h2,
.seo-section-copy h3,
.seo-heading-wrap h2,
.seo-faq-copy h2 {
  margin: 0;
  color: var(--seo-navy);
  font-weight: 800;
  letter-spacing: -1.2px;
}

.seo-section-copy h2 {
  font-size: clamp(39px, 3.35vw, 62px);
  line-height: 1.07;
}

.seo-section-copy h2 span,
.seo-section-copy h3 span,
.seo-faq-copy h2 span {
  color: var(--seo-blue);
}

.seo-section-copy h3 {
  font-size: clamp(29px, 2.55vw, 48px);
  line-height: 1.13;
}

.seo-title-line,
.seo-card-line {
  display: block;
  height: 3px;
  width: 58px;
  border-radius: 10px;
  background: var(--seo-blue);
}

.seo-title-line {
  margin: 22px 0 18px;
}

.seo-section-copy p {
  margin: 0 0 15px;
  max-width: 610px;
  color: #111c4d;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.seo-scene-card {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f6fb;
  box-shadow: 0 12px 38px rgba(13, 43, 91, .09);
}

.seo-scene-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.seo-scene-card-tall,
.seo-scene-card-tall img {
  min-height: 520px;
}

.seo-benefit-grid {
  display: grid;
  gap: 14px;
}

.seo-benefit-grid-eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-benefit-card,
.why-card {
  min-width: 0;
  border: 1px solid var(--seo-border);
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 24px rgba(20, 73, 148, .08);
  text-align: center;
}

.seo-benefit-card {
  min-height: 310px;
  padding: 37px 18px 25px;
}

.seo-icon-circle {
  width: 118px;
  height: 118px;
  margin: 0 auto 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 45%, #fff 0 38%, #edf4ff 39% 100%);
  color: var(--seo-blue);
  font-size: 53px;
}

.seo-benefit-card h3,
.why-card h3 {
  margin: 0;
  color: var(--seo-navy);
  font-weight: 800;
}

.seo-benefit-card h3 {
  min-height: 46px;
  font-size: 17px;
  line-height: 1.25;
}

.seo-card-line {
  width: 36px;
  height: 2px;
  margin: 17px auto 20px;
}

.seo-benefit-card p,
.why-card p {
  margin: 0;
  color: #0d194a;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

.seo-feature-strip {
  width: min(1450px, calc(100% - 64px));
  margin: 30px auto 0;
  padding: 20px 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 16px;
  background: linear-gradient(90deg, #f5f8ff 0%, #fbfdff 50%, #f5f8ff 100%);
}

.seo-strip-item {
  min-width: 0;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #cbd8ef;
}

.seo-strip-item:last-child { border-right: 0; }

.seo-strip-item > i {
  flex: 0 0 auto;
  color: var(--seo-blue);
  font-size: 52px;
}

.seo-strip-item p { margin: 0; }
.seo-strip-item strong,
.seo-strip-item span { display: block; }
.seo-strip-item strong { font-size: 17px; line-height: 1.25; }
.seo-strip-item span { margin-top: 6px; color: #13204c; font-size: 14px; line-height: 1.35; }

/* Why Teleportel */
.why-teleportel-seo { padding: 65px 0 0; }
.seo-heading-wrap { width: min(1450px, calc(100% - 64px)); margin: 0 auto 38px; }
.seo-heading-wrap h2 { font-size: clamp(40px, 4vw, 62px); line-height: 1.08; }
.seo-section-copy-compact { padding-bottom: 24px; }

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  grid-column: span 3;
  min-height: 272px;
  padding: 26px 16px 22px;
}

.why-card-bottom { grid-column: span 4; }

.why-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--seo-blue);
  font-size: 47px;
}

.why-icon strong { font-size: 28px; }
.why-card h3 { min-height: 44px; font-size: 16px; line-height: 1.22; }
.why-card p { font-size: 13.5px; line-height: 1.48; }
.why-card .seo-card-line { margin: 14px auto 16px; }

/* FAQ */
.seo-faq-section { padding: 0 0 55px; }

.seo-faq-hero {
  min-height: 455px;
  display: grid;
  grid-template-columns: 39% 61%;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #f7faff 36%, #eef4fd 100%);
}

.seo-faq-copy {
  position: relative;
  z-index: 2;
  padding: 48px 34px 34px max(44px, calc((100vw - 1580px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seo-eyebrow {
  margin: 0 0 14px !important;
  color: var(--seo-blue) !important;
  text-transform: uppercase;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
}

.seo-faq-copy h2 { font-size: clamp(45px, 4.4vw, 72px); line-height: 1.03; }
.seo-faq-copy > p:not(.seo-eyebrow) { margin: 0; max-width: 590px; color: #15204c; font-size: 18px; line-height: 1.5; }

.seo-faq-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 27px;
}

.seo-faq-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0c1748;
  font-size: 15px;
  font-weight: 700;
}

.seo-faq-trust i { color: var(--seo-blue); font-size: 27px; }

.seo-faq-visual { min-width: 0; margin: 0; overflow: hidden; }
.seo-faq-visual img { width: 100%; height: 100%; min-height: 455px; display: block; object-fit: cover; object-position: center; }

.seo-faq-service-strip {
  width: min(980px, calc(100% - 64px));
  margin: -38px 44px 24px auto;
  position: relative;
  z-index: 4;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 13px 32px rgba(10, 42, 91, .16);
}

.seo-faq-service-strip span {
  min-width: 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  border-right: 1px solid #d8e1f1;
  color: #111b48;
  font-size: 12px;
  line-height: 1.25;
}
.seo-faq-service-strip span:last-child { border-right: 0; }
.seo-faq-service-strip i { grid-row: 1 / 3; color: var(--seo-blue); font-size: 28px; }
.seo-faq-service-strip strong { display: block; font-size: 13px; }

.seo-faq-list {
  width: min(1450px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  gap: 7px;
}

.seo-faq-row {
  min-height: 72px;
  padding: 14px 22px;
  display: grid;
  grid-template-columns: 86px 280px 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid #e2eaf8;
  border-radius: 10px;
  background: #fff;
}

.seo-faq-icon {
  height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid #e1e8f5;
  color: var(--seo-blue);
  font-size: 34px;
}

.seo-faq-row h3 { margin: 0; color: #0c174b; font-size: 19px; line-height: 1.24; font-weight: 800; }
.seo-faq-row p { margin: 0; color: #17224f; font-size: 14px; line-height: 1.48; font-weight: 500; }

@media (max-width: 1250px) {
  .seo-visual-shell-split { grid-template-columns: 34% 1fr; }
  .seo-benefit-grid-eight { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-benefit-card { min-height: 270px; }
  .why-card { grid-column: span 4; }
  .why-card-bottom { grid-column: span 4; }
  .seo-feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }
  .seo-strip-item:nth-child(2) { border-right: 0; }
  .seo-faq-hero { grid-template-columns: 45% 55%; }
  .seo-faq-service-strip { width: calc(100% - 64px); margin-right: auto; }
  .seo-faq-row { grid-template-columns: 75px 240px 1fr; }
}

@media (max-width: 991px) {
  .seo-visual-shell,
  .seo-heading-wrap,
  .seo-feature-strip { width: min(100% - 40px, 900px); }
  .seo-visual-shell-split { grid-template-columns: 1fr; }
  .seo-scene-card,
  .seo-scene-card img,
  .seo-scene-card-tall,
  .seo-scene-card-tall img { min-height: 400px; max-height: 560px; }
  .why-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-card,
  .why-card-bottom { grid-column: auto; }
  .seo-faq-hero { grid-template-columns: 1fr; }
  .seo-faq-copy { padding: 54px 30px 40px; }
  .seo-faq-visual img { min-height: 380px; max-height: 520px; }
  .seo-faq-service-strip { margin-top: -24px; grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .seo-faq-service-strip span:nth-child(2n) { border-right: 0; }
  .seo-faq-service-strip span:last-child { grid-column: 1 / -1; }
  .seo-faq-list { width: calc(100% - 40px); }
  .seo-faq-row { grid-template-columns: 58px 1fr; gap: 12px 18px; }
  .seo-faq-row > div { grid-column: 2; }
  .seo-faq-icon { grid-row: 1 / 3; height: 100%; }
}

@media (max-width: 767px) {
  .hybrid-reception-seo,
  .why-teleportel-seo { padding-top: 45px; }
  .seo-visual-shell,
  .seo-heading-wrap,
  .seo-feature-strip { width: calc(100% - 28px); }
  .seo-section-copy { padding-right: 0; }
  .seo-section-copy h2 { font-size: 37px; }
  .seo-section-copy h3 { font-size: 31px; }
  .seo-section-copy p { font-size: 16px; }
  .seo-scene-card,
  .seo-scene-card img,
  .seo-scene-card-tall,
  .seo-scene-card-tall img { min-height: 300px; }
  .seo-benefit-grid-eight,
  .why-card-grid { grid-template-columns: 1fr; }
  .seo-benefit-card { min-height: auto; padding: 30px 20px; }
  .seo-icon-circle { width: 100px; height: 100px; font-size: 44px; }
  .why-card { min-height: auto; }
  .seo-feature-strip { grid-template-columns: 1fr; padding: 20px 18px; }
  .seo-strip-item { padding: 16px 8px; border-right: 0; border-bottom: 1px solid #d5e0f2; }
  .seo-strip-item:last-child { border-bottom: 0; }
  .seo-heading-wrap { margin-bottom: 28px; }
  .seo-heading-wrap h2 { font-size: 38px; }
  .seo-faq-copy { padding: 43px 20px 35px; }
  .seo-faq-copy h2 { font-size: 43px; }
  .seo-faq-copy > p:not(.seo-eyebrow) { font-size: 16px; }
  .seo-faq-trust { flex-direction: column; gap: 13px; }
  .seo-faq-visual img { min-height: 300px; }
  .seo-faq-service-strip { width: calc(100% - 28px); margin-bottom: 20px; grid-template-columns: 1fr; }
  .seo-faq-service-strip span,
  .seo-faq-service-strip span:nth-child(2n),
  .seo-faq-service-strip span:last-child { grid-column: auto; padding: 11px 10px; border-right: 0; border-bottom: 1px solid #d8e1f1; }
  .seo-faq-service-strip span:last-child { border-bottom: 0; }
  .seo-faq-list { width: calc(100% - 28px); }
  .seo-faq-row { padding: 18px 16px; grid-template-columns: 42px 1fr; }
  .seo-faq-icon { border-right: 0; font-size: 28px; }
  .seo-faq-row h3 { font-size: 18px; }
  .seo-faq-row p { font-size: 14px; }
}

@media (max-width: 420px) {
  .seo-section-copy h2 { font-size: 32px; }
  .seo-section-copy h3 { font-size: 28px; }
  .seo-heading-wrap h2 { font-size: 34px; }
  .seo-faq-copy h2 { font-size: 37px; }
  .seo-faq-row { grid-template-columns: 1fr; }
  .seo-faq-icon { display: none; }
  .seo-faq-row > div { grid-column: 1; }
}

/* =========================================================
   ALIGNMENT CORRECTIONS — 21 JULY 2026
   Keeps the SEO text as real HTML while aligning the visuals.
========================================================= */

/* Keep the scene image directly below its heading/copy. */
.seo-scene-card {
  margin: 0;
}

/* Why Teleportel: remove the large empty gap and preserve the full photo. */
.why-teleportel-seo .seo-intro-column {
  height: 100%;
}

.why-teleportel-seo .seo-scene-card-tall {
  flex: 1 1 auto;
  min-height: 520px;
  display: flex;
  align-items: stretch;
  background: #ffffff;
}

.why-teleportel-seo .seo-scene-card-tall img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  background: #ffffff;
}

/* FAQ visual: use the clean image crop and keep the assistant panel visible. */
.seo-faq-hero {
  min-height: clamp(380px, 28.5vw, 455px);
  align-items: stretch;
}

.seo-faq-visual {
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #17130f;
}

.seo-faq-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #17130f;
}

@media (max-width: 1250px) and (min-width: 992px) {
  .seo-faq-hero {
    min-height: 390px;
  }
}

@media (max-width: 991px) {
  .why-teleportel-seo .seo-scene-card-tall {
    min-height: 0;
    flex: none;
  }

  .why-teleportel-seo .seo-scene-card-tall img {
    height: auto;
    max-height: 620px;
  }

  .seo-faq-hero {
    min-height: 0;
  }

  .seo-faq-visual {
    background: #17130f;
  }

  .seo-faq-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .why-teleportel-seo .seo-scene-card-tall img {
    max-height: none;
  }
}

/* =========================================================
   INTELLIGENT RECEPTION PLATFORM — NEW PAGE
   Content moved from the Dutch homepage
========================================================= */

.intelligent-platform-page {
  background: #ffffff;
}

/* The new page starts directly with the platform introduction. */
.intelligent-platform-page .platform-section {
  padding-top: 92px;
  padding-bottom: 22px;
}

/* The introduction is now the page H1. */
.intelligent-platform-page .platform-heading h1 {
  margin: 0;
  color: #0c1838;
  font-size: 46px;
  line-height: 52px;
  font-weight: 800;
  letter-spacing: 0;
}

.intelligent-platform-page .platform-heading h1 span {
  color: #ef4f12;
  letter-spacing: 0;
}

/* Give the six modules a consistent page rhythm. */
.intelligent-platform-page .platform-section,
.intelligent-platform-page .ai-automation-section,
.intelligent-platform-page .live-video-section,
.intelligent-platform-page .secure-management-section,
.intelligent-platform-page .integration-section,
.intelligent-platform-page .accessible-reception-section {
  scroll-margin-top: 90px;
}

.intelligent-platform-page .accessible-reception-section {
  padding-bottom: 82px;
}

/* Prevent old homepage-only hero spacing from affecting the new page. */
.intelligent-platform-page > .hero-section,
.intelligent-platform-page > .hybrid-reception-seo,
.intelligent-platform-page > .future-reception-section,
.intelligent-platform-page > .multi-site-section,
.intelligent-platform-page > .trusted-platform-section,
.intelligent-platform-page > .why-teleportel-seo,
.intelligent-platform-page > .trusted-org-section,
.intelligent-platform-page > .configure-experience-section,
.intelligent-platform-page > .seo-faq-section,
.intelligent-platform-page > .transform-reception-section {
  display: none !important;
}

@media (max-width: 991px) {
  .intelligent-platform-page .platform-section {
    padding-top: 74px;
  }

  .intelligent-platform-page .platform-heading h1 {
    font-size: 40px;
    line-height: 46px;
  }

  .intelligent-platform-page .accessible-reception-section {
    padding-bottom: 66px;
  }
}

@media (max-width: 767px) {
  .intelligent-platform-page .platform-section {
    padding-top: 58px;
  }

  .intelligent-platform-page .platform-heading h1 {
    font-size: 34px;
    line-height: 39px;
  }

  .intelligent-platform-page .accessible-reception-section {
    padding-bottom: 54px;
  }
}

@media (max-width: 420px) {
  .intelligent-platform-page .platform-heading h1 {
    font-size: 30px;
    line-height: 35px;
  }
}

