* {
      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:80%;
    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:30px 20px;
    text-align:center;
}

.hero-title-box h1{
    margin:0;
    font-family:"Urbanist",sans-serif;
    font-size:20px;
    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: 100vh !important;
    height: 90vh !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: 69%;
  padding: 0 20px;
}

.hero-title-box {
  width: min(1040px, calc(100% - 40px));
  border-radius: 18px;
  padding: 34px 20px 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, 50px);
  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: 14px;
  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;
  }

}


/* =========================================================
   HOMEPAGE CONTENT SPLIT — CLIENT INSTRUCTIONS
   Added 23 July 2026
========================================================= */

/* Combined dark banner:
   "Automatiseer waar het kan" + "Eén Intelligent Receptieplatform" */
.homepage-platform-overview-section {
  width: 100%;
  padding: 88px 24px 82px;
  background:
    radial-gradient(circle at 50% -30%, rgba(40, 111, 103, 0.32), transparent 48%),
    #071f1d;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
}

.homepage-platform-overview-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.homepage-platform-overview-wrap {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.homepage-platform-kicker {
  margin: 0 0 12px;
  color: #a8b8b7;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 800;
}

.homepage-platform-overview-wrap h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(39px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 800;
}

.homepage-platform-overview-wrap h2 span {
  color: #ffffff;
}

.homepage-platform-description {
  width: min(100%, 790px);
  margin: 23px auto 0;
  color: #b9c5c4;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
}

.homepage-platform-divider {
  display: block;
  width: 68px;
  height: 3px;
  margin: 34px auto 31px;
  border-radius: 99px;
  background: #ef4f12;
}

.homepage-platform-overview-wrap h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.12;
  font-weight: 800;
}

.homepage-platform-overview-wrap h3 span {
  color: #ef4f12;
}

.homepage-platform-subdescription {
  width: min(100%, 790px);
  margin: 18px auto 0;
  color: #b9c5c4;
  font-size: 18px;
  line-height: 1.5;
}

.homepage-platform-buttons {
  margin-top: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.homepage-platform-demo-btn,
.homepage-platform-possibilities-btn {
  min-width: 214px;
  height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.homepage-platform-demo-btn {
  width: auto;
  max-width: none;
  margin: 0;
  background: #ffffff;
  color: #253442;
}

.homepage-platform-demo-btn:hover {
  background: #ef4f12;
  color: #ffffff;
  transform: translateY(-2px);
}

.homepage-platform-possibilities-btn {
  background: #ef4f12;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(239, 79, 18, .23);
}

.homepage-platform-possibilities-btn span {
  font-size: 22px;
  line-height: 1;
}

.homepage-platform-possibilities-btn:hover {
  background: #ffffff;
  color: #ef4f12;
  transform: translateY(-2px);
}

/* Bring the multi-site banner closer to the new combined banner. */
.homepage-platform-overview-section + .multi-site-section {
  padding-top: 34px;
}

/* Reworked trusted-organisations banner with dark contrast. */
.trusted-org-section-dark {
  padding: 68px 20px 62px;
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 97, 91, .28), transparent 50%),
    #071f1d;
}

.trusted-org-section-dark .trusted-org-title {
  width: min(100%, 920px);
  margin-inline: auto;
  color: #ffffff;
}

.trusted-org-section-dark .trusted-org-tag {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
}

.trusted-org-section-dark .trusted-org-tag span:last-child {
  color: #edf4f3;
}

.trusted-org-section-dark .tag-dot {
  background: #ef4f12;
}

.trusted-org-section-dark .trusted-logo-marquee {
  margin-top: 38px;
  padding: 18px 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);

  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

/* Reused platform button below "Waarom Teleportel?". */
.why-teleportel-platform-cta {
  width: min(1450px, calc(100% - 64px));
  margin: 35px auto 0;
  padding-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-teleportel-platform-btn:hover {
  background: #0c1838;
  color: #ffffff;
}

/* The following dark configuration banner now sits directly after the
   "Waarom Teleportel?" content and its retained platform button. */
.why-teleportel-seo + .configure-experience-section {
  margin-top: 0;
}

@media (max-width: 991px) {
  .homepage-platform-overview-section {
    padding: 72px 22px 68px;
  }

  .homepage-platform-description,
  .homepage-platform-subdescription {
    font-size: 17px;
  }

  .trusted-org-section-dark {
    padding: 56px 20px 54px;
  }

  .why-teleportel-platform-cta {
    width: calc(100% - 40px);
  }
}

@media (max-width: 767px) {
  .homepage-platform-overview-section {
    padding: 62px 18px 58px;
  }

  .homepage-platform-kicker {
    font-size: 19px;
  }

  .homepage-platform-overview-wrap h2 {
    font-size: 36px;
  }

  .homepage-platform-overview-wrap h3 {
    font-size: 32px;
  }

  .homepage-platform-description,
  .homepage-platform-subdescription {
    font-size: 16px;
    line-height: 1.55;
  }

  .homepage-platform-buttons {
    flex-direction: column;
    gap: 13px;
  }

  .homepage-platform-demo-btn,
  .homepage-platform-possibilities-btn {
    width: min(100%, 310px);
  }

  .homepage-platform-overview-section + .multi-site-section {
    padding-top: 24px;
  }

  .trusted-org-section-dark .trusted-org-title {
    font-size: 32px;
  }

  .trusted-org-section-dark .trusted-org-tags {
    margin-top: 30px;
  }

  .trusted-org-section-dark .trusted-org-tag {
    width: min(100%, 360px);
    min-height: 52px;
  }

  .why-teleportel-platform-cta {
    width: calc(100% - 28px);
    margin-top: 28px;
    padding-bottom: 45px;
  }
}

@media (max-width: 420px) {
  .homepage-platform-overview-wrap h2 {
    font-size: 32px;
  }

  .homepage-platform-overview-wrap h3 {
    font-size: 29px;
  }
}

/* =========================================================
   FAQ + CLOSING BANNER SIZE CORRECTIONS
   - FAQ presentation is smaller and fully contained.
   - Final call-to-action banner is larger and more prominent.
========================================================= */

/* Smaller FAQ presentation banner */
.seo-faq-section {
  padding-top: 38px;
}

.seo-faq-hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 350px;
  margin: 0 auto;
  grid-template-columns: 37% 63%;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(10, 42, 91, 0.10);
}

.seo-faq-copy {
  padding: 34px 28px 30px 38px;
}

.seo-faq-copy h2 {
  font-size: clamp(38px, 3.4vw, 55px);
  line-height: 1.04;
}

.seo-faq-copy > p:not(.seo-eyebrow) {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.48;
}

.seo-faq-trust {
  margin-top: 22px;
  gap: 13px 20px;
}

.seo-faq-trust span {
  font-size: 13px;
}

.seo-faq-trust i {
  font-size: 22px;
}

.seo-faq-visual {
  min-width: 0;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.seo-faq-visual img {
  width: 100%;
  height: 350px;
  min-height: 0;
  max-height: 350px;
  object-fit: contain;
  object-position: center center;
}

/* Keep the floating service strip aligned with the reduced banner width */
.seo-faq-service-strip {
  width: min(980px, calc(100% - 80px));
  margin-top: -28px;
  margin-right: auto;
  margin-left: auto;
}

/* Larger final closing banner */
.transform-reception-section {
  height: auto;
  min-height: 470px;
  padding: 88px 24px 92px;
  align-items: center;
}

.transform-reception-wrap {
  max-width: 980px;
}

.transform-reception-wrap h2 {
  font-size: 56px;
  line-height: 1.08;
}

.transform-reception-wrap p {
  margin-top: 20px;
  font-size: 23px;
  line-height: 1.45;
}

.transform-reception-btn {
  width: 190px;
  height: 56px;
  margin-top: 40px;
  font-size: 17px;
}

@media (max-width: 1250px) and (min-width: 992px) {
  .seo-faq-hero {
    width: min(1080px, calc(100% - 40px));
    min-height: 330px;
  }

  .seo-faq-visual img {
    height: 330px;
    max-height: 330px;
  }
}

@media (max-width: 991px) {
  .seo-faq-section {
    padding-top: 30px;
  }

  .seo-faq-hero {
    width: min(900px, calc(100% - 40px));
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .seo-faq-copy {
    padding: 46px 34px 36px;
  }

  .seo-faq-visual {
    border-radius: 0 0 18px 18px;
  }

  .seo-faq-visual img {
    width: 100%;
    height: auto;
    max-height: 390px;
    object-fit: contain;
  }

  .transform-reception-section {
    min-height: 420px;
    padding: 76px 22px 80px;
  }

  .transform-reception-wrap h2 {
    font-size: 47px;
  }

  .transform-reception-wrap p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .seo-faq-hero {
    width: calc(100% - 28px);
  }

  .seo-faq-copy {
    padding: 38px 22px 30px;
  }

  .seo-faq-copy h2 {
    font-size: 38px;
  }

  .seo-faq-service-strip {
    width: calc(100% - 28px);
    margin-top: -18px;
  }

  .transform-reception-section {
    min-height: 390px;
    padding: 68px 18px 72px;
  }

  .transform-reception-wrap h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .transform-reception-wrap p {
    font-size: 18px;
    line-height: 1.5;
  }

  .transform-reception-btn {
    width: 184px;
    height: 54px;
    margin-top: 32px;
  }
}

@media (max-width: 420px) {
  .seo-faq-copy h2 {
    font-size: 33px;
  }

  .transform-reception-section {
    min-height: 360px;
    padding: 60px 16px 64px;
  }

  .transform-reception-wrap h2 {
    font-size: 33px;
  }

  .transform-reception-wrap p {
    font-size: 16px;
  }
}

/* =========================================================
   FINAL CLOSING BANNER — FULL WIDTH DARK BACKGROUND
   Client update:
   Make the last banner visually stronger with a full-width
   dark blue / near-black background.
========================================================= */

.transform-reception-section {
  width: 100%;
  min-height: 500px;
  padding: 96px 24px 100px;
  background:
    radial-gradient(circle at 50% -10%, rgba(48, 99, 206, 0.26), transparent 42%),
    linear-gradient(135deg, #07111f 0%, #0b1f46 55%, #050b16 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transform-reception-wrap {
  max-width: 980px;
  text-align: center;
}

.transform-reception-wrap h2 {
  color: #ffffff;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 800;
}

.transform-reception-wrap p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 20px;
  font-size: 23px;
  line-height: 1.48;
}

.transform-reception-btn {
  width: 196px;
  height: 56px;
  margin-top: 40px;
  background: #ef4f12;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(239, 79, 18, 0.26);
}

.transform-reception-btn:hover {
  background: #ffffff;
  color: #0b1f46;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .transform-reception-section {
    min-height: 440px;
    padding: 80px 22px 84px;
  }

  .transform-reception-wrap h2 {
    font-size: 48px;
  }

  .transform-reception-wrap p {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .transform-reception-section {
    min-height: 400px;
    padding: 70px 18px 74px;
  }

  .transform-reception-wrap h2 {
    font-size: 39px;
    line-height: 1.12;
  }

  .transform-reception-wrap p {
    font-size: 18px;
    line-height: 1.5;
  }

  .transform-reception-btn {
    width: 188px;
    height: 54px;
    margin-top: 32px;
  }
}

@media (max-width: 420px) {
  .transform-reception-section {
    min-height: 370px;
    padding: 62px 16px 66px;
  }

  .transform-reception-wrap h2 {
    font-size: 34px;
  }

  .transform-reception-wrap p {
    font-size: 16px;
  }
}

/* =========================================================
   HOMEPAGE PLATFORM CONTENT — FINAL CLIENT CHANGE
   Replaces the previous dark platform banner with:
   heading, introductory copy, supplied reception image,
   supporting copy and the two existing CTA buttons.
========================================================= */

.homepage-platform-content-section {
  width: 100%;
  padding: 86px 24px 88px;
  background: #000000;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
}

.homepage-platform-content-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.homepage-platform-content-wrap {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.homepage-platform-content-copy {
  width: min(100%, 1030px);
  margin: 0 auto;
  text-align: left;
}

.homepage-platform-content-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.homepage-platform-content-copy h2 span {
  display: inline;
  color: #ffffff;
}

.homepage-platform-content-copy p,
.homepage-platform-content-bottom-copy {
  color: #d4d4d4;
  font-size: 21px;
  line-height: 1.58;
  font-weight: 400;
}

.homepage-platform-content-copy p {
  margin: 27px 0 0;
}

.homepage-platform-content-image {
  width: 100%;
  margin: 42px auto 0;
  overflow: hidden;
  border-radius: 22px;
  background: #e8edf2;
  box-shadow: 0 22px 58px rgba(13, 33, 65, 0.15);
}

.homepage-platform-content-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.homepage-platform-content-bottom-copy {
  width: min(100%, 1030px);
  margin: 36px auto 0;
  text-align: left;
}

.homepage-platform-content-buttons {
  margin-top: 34px;
}

.homepage-platform-content-buttons .homepage-platform-demo-btn {
  background: #ffffff;
  color: #253442;
  border: 1px solid #dfe5ec;
  box-shadow: 0 10px 28px rgba(12, 24, 56, 0.10);
}

.homepage-platform-content-buttons .homepage-platform-demo-btn:hover {
  background: #0c1838;
  color: #ffffff;
}

.homepage-platform-content-buttons .homepage-platform-possibilities-btn {
  background: #ef4f12;
  color: #ffffff;
}

.homepage-platform-content-buttons .homepage-platform-possibilities-btn:hover {
  background: #0c1838;
  color: #ffffff;
}

/* Keep the next section comfortably separated from the larger image section. */
.homepage-platform-content-section + .multi-site-section {
  padding-top: 46px;
}

@media (max-width: 991px) {
  .homepage-platform-content-section {
    padding: 72px 22px 74px;
  }

  .homepage-platform-content-copy p,
  .homepage-platform-content-bottom-copy {
    font-size: 19px;
  }

  .homepage-platform-content-image {
    margin-top: 34px;
    border-radius: 18px;
  }
}

@media (max-width: 767px) {
  .homepage-platform-content-section {
    padding: 58px 18px 62px;
  }

  .homepage-platform-content-copy h2 {
    font-size: 35px;
    line-height: 1.14;
  }

  .homepage-platform-content-copy p,
  .homepage-platform-content-bottom-copy {
    font-size: 17px;
    line-height: 1.56;
  }

  .homepage-platform-content-copy p {
    margin-top: 22px;
  }

  .homepage-platform-content-image {
    margin-top: 28px;
    border-radius: 15px;
  }

  .homepage-platform-content-image img {
    aspect-ratio: 4 / 3;
  }

  .homepage-platform-content-bottom-copy {
    margin-top: 28px;
  }

  .homepage-platform-content-buttons {
    margin-top: 28px;
  }

  .homepage-platform-content-section + .multi-site-section {
    padding-top: 28px;
  }
}

@media (max-width: 420px) {
  .homepage-platform-content-copy h2 {
    font-size: 31px;
  }

  .homepage-platform-content-copy p,
  .homepage-platform-content-bottom-copy {
    font-size: 16px;
  }
}

/* =========================================================
   HOMEPAGE PLATFORM SECTION — LEFT IMAGE / RIGHT CONTENT
========================================================= */
.homepage-platform-content-section {
  padding: 82px 24px 86px;
}

.homepage-platform-content-grid {
  width: min(100%, 1320px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 5vw, 78px);
}

.homepage-platform-content-image {
  width: 100%;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8edf2;
  box-shadow: 0 22px 58px rgba(13, 33, 65, 0.15);
}

.homepage-platform-content-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  object-position: center;
}

.homepage-platform-content-right { min-width: 0; }

.homepage-platform-content-copy {
  width: 100%;
  margin: 0;
  text-align: left;
}

.homepage-platform-content-copy h2 {
  font-size: clamp(38px, 3.35vw, 54px);
  line-height: 1.08;
}

.homepage-platform-content-copy p,
.homepage-platform-content-bottom-copy {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: 19px;
  line-height: 1.55;
}

.homepage-platform-content-copy p { margin-top: 24px; }
.homepage-platform-content-bottom-copy { margin-top: 20px !important; }

.homepage-platform-content-buttons {
  margin-top: 30px;
  justify-content: flex-start;
}

.homepage-platform-content-buttons .homepage-platform-demo-btn,
.homepage-platform-content-buttons .homepage-platform-possibilities-btn {
  min-width: 200px;
}

@media (max-width: 1100px) {
  .homepage-platform-content-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
    gap: 42px;
  }
  .homepage-platform-content-copy h2 { font-size: 42px; }
  .homepage-platform-content-copy p,
  .homepage-platform-content-bottom-copy { font-size: 18px; }
}

@media (max-width: 900px) {
  .homepage-platform-content-section { padding: 66px 22px 70px; }
  .homepage-platform-content-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .homepage-platform-content-image {
    order: 1;
    max-width: 780px;
    margin: 0 auto;
  }
  .homepage-platform-content-right { order: 2; }
  .homepage-platform-content-copy h2 { font-size: 42px; }
}

@media (max-width: 767px) {
  .homepage-platform-content-section { padding: 56px 18px 60px; }
  .homepage-platform-content-grid { gap: 30px; }
  .homepage-platform-content-image { border-radius: 15px; }
  .homepage-platform-content-image img { aspect-ratio: 4 / 3; }
  .homepage-platform-content-copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }
  .homepage-platform-content-copy p,
  .homepage-platform-content-bottom-copy {
    font-size: 17px;
    line-height: 1.55;
  }
  .homepage-platform-content-buttons { justify-content: center; }
}

@media (max-width: 520px) {
  .homepage-platform-content-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .homepage-platform-content-buttons .homepage-platform-demo-btn,
  .homepage-platform-content-buttons .homepage-platform-possibilities-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .homepage-platform-content-copy h2 { font-size: 30px; }
  .homepage-platform-content-copy p,
  .homepage-platform-content-bottom-copy { font-size: 16px; }
}



/* =========================================================
   HOMEPAGE BANNER 2 — LIVE VIDEO INTERACTION
   Added 2026-09-09
   ========================================================= */
.lvi-banner {
  --lvi-deep: #062b27;
  --lvi-deep-2: #0b3b36;
  --lvi-orange: #ff5a12;
  --lvi-cream: #f7f7f3;
  --lvi-muted: #b8c7c4;
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,90,18,.16), transparent 26%),
    radial-gradient(circle at 88% 34%, rgba(79,149,174,.12), transparent 28%),
    var(--lvi-deep);
  color: #fff;
  font-family: "Urbanist", sans-serif;
  padding: 92px 24px 34px;
}

.lvi-banner * { box-sizing: border-box; }
.lvi-shell { width: min(1180px, 100%); margin: 0 auto; }
.lvi-header { max-width: 980px; margin: 0 auto 64px; text-align: center; }
.lvi-eyebrow { margin: 0 0 12px; color: var(--lvi-orange); font-size: 15px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.lvi-header h2 { margin: 0; color: #fff; font-size: clamp(38px, 4.6vw, 62px); line-height: 1.04; font-weight: 800; letter-spacing: -.035em; }
.lvi-header h2 span { color: #91c6d8; }
.lvi-intro { max-width: 920px; margin: 24px auto 0; color: #d7e1df; font-size: 18px; line-height: 1.68; }

.lvi-technologies { display: grid; gap: 24px; }
.lvi-section-title { margin: 0 0 14px; text-align: center; color: #fff; font-size: clamp(30px, 3vw, 43px); line-height: 1.12; font-weight: 800; }

.lvi-tech-row {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}
.lvi-tech-copy { min-width: 0; padding: 6px 4px; }
.lvi-tech-number { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--lvi-orange); font-size: 14px; font-weight: 800; }
.lvi-tech-copy h4 { margin: 0; color: #fff; font-size: clamp(25px, 2.4vw, 35px); line-height: 1.12; font-weight: 800; }
.lvi-tech-copy h4 small { display: block; margin-top: 5px; color: #92aaa6; font-size: .52em; font-weight: 700; }
.lvi-tech-copy p { margin: 18px 0 0; color: #c9d7d4; font-size: 16px; line-height: 1.62; }
.lvi-tech-copy a { color: #fff; font-weight: 700; text-decoration: underline; text-decoration-color: var(--lvi-orange); text-underline-offset: 4px; }

.lvi-video-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 16px; background: #000; box-shadow: 0 18px 50px rgba(0,0,0,.3); }
.lvi-video-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); border-radius: inherit; pointer-events: none; }
.lvi-video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; background: #000; }

.lvi-conversion-actions { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin: 38px 0 72px; }
.lvi-conversion-actions a { min-height: 58px; padding: 10px 20px; border-radius: 999px; background: var(--lvi-orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 12px; text-align: center; text-decoration: none; font-size: 16px; font-weight: 800; box-shadow: 0 10px 26px rgba(255,90,18,.18); transition: transform .25s ease, background .25s ease, color .25s ease; }
.lvi-conversion-actions a span { font-size: 21px; line-height: 1; }
.lvi-conversion-actions a:hover { transform: translateY(-2px); background: #fff; color: var(--lvi-deep); }

.lvi-peripherals { padding: 54px 0 56px; border-top: 1px solid rgba(255,255,255,.12); }
.lvi-peripherals > h3 { max-width: 880px; margin: 0 auto 36px; color: #fff; text-align: center; font-size: clamp(28px, 3vw, 42px); line-height: 1.16; font-weight: 800; }
.lvi-peripheral-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.lvi-peripheral-card { margin: 0; overflow: hidden; border-radius: 18px; background: #fff; color: #152623; box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.lvi-peripheral-image { height: 300px;  place-items: center; overflow: hidden; background: #f4f3ef;}
.lvi-peripheral-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.lvi-peripheral-card:nth-child(1) .lvi-peripheral-image img { object-position: center 58%; }
.lvi-peripheral-card:nth-child(2) .lvi-peripheral-image img { object-position: center 52%; }
.lvi-peripheral-card:nth-child(3) .lvi-peripheral-image img { object-position: center 67%; }
.lvi-peripheral-card:nth-child(4) .lvi-peripheral-image img { object-position: center 45%; }
.lvi-peripheral-card figcaption { min-height: 72px; padding: 18px 14px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 16px; line-height: 1.25; font-weight: 800; }

.lvi-scroll-transition { width: min(900px, 100%); margin: 8px auto 0; padding: 24px 20px 6px; display: flex; flex-direction: column; align-items: center; gap: 14px; color: #d6e2df; text-align: center; text-decoration: none; font-size: 15px; line-height: 1.5; }
.lvi-scroll-transition:hover { color: #fff; text-decoration: none; }
.lvi-scroll-arrows { position: relative; width: 28px; height: 28px; display: block; }
.lvi-scroll-arrows i { position: absolute; left: 7px; width: 12px; height: 12px; border-right: 2px solid var(--lvi-orange); border-bottom: 2px solid var(--lvi-orange); transform: rotate(45deg); animation: lviArrow 1.8s infinite; }
.lvi-scroll-arrows i:first-child { top: 0; }
.lvi-scroll-arrows i:last-child { top: 8px; animation-delay: .2s; }
@keyframes lviArrow { 0%,100% { opacity: .25; transform: translateY(-2px) rotate(45deg); } 50% { opacity: 1; transform: translateY(3px) rotate(45deg); } }

@media (max-width: 980px) {
  .lvi-banner { padding-top: 78px; }
  .lvi-tech-row { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .lvi-tech-copy { order: 1; }
  .lvi-video-frame { order: 2; }
  .lvi-conversion-actions { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .lvi-peripheral-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lvi-peripheral-image { height: 300px; }
}

@media (max-width: 640px) {
  .lvi-banner { padding: 64px 16px 28px; }
  .lvi-header { margin-bottom: 46px; }
  .lvi-header h2 { font-size: 38px; }
  .lvi-intro { font-size: 16px; line-height: 1.58; }
  .lvi-section-title { font-size: 31px; }
  .lvi-tech-row { padding: 18px; border-radius: 16px; }
  .lvi-tech-copy h4 { font-size: 27px; }
  .lvi-tech-copy p { font-size: 15px; line-height: 1.56; }
  .lvi-conversion-actions { margin-top: 28px; margin-bottom: 54px; }
  .lvi-conversion-actions a { min-height: 54px; font-size: 15px; }
  .lvi-peripherals { padding-top: 44px; }
  .lvi-peripherals > h3 { font-size: 30px; margin-bottom: 28px; }
  .lvi-peripheral-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lvi-peripheral-image { height: 210px; }
  .lvi-peripheral-card figcaption { min-height: 70px; padding: 14px 9px; font-size: 14px; }
  .lvi-scroll-transition { font-size: 14px; padding-inline: 6px; }
}

@media (max-width: 420px) {
  .lvi-header h2 { font-size: 34px; }
  .lvi-tech-row { padding: 14px; }
  .lvi-peripheral-grid { grid-template-columns: 1fr; }
  .lvi-peripheral-image { height: 300px; }
}

/* Updated Live Video Reception banner — 11 Sep 2026 */
.lvi-banner-v2{background:#000352;color:#fff;padding:82px 20px 74px;font-family:"Urbanist",sans-serif;overflow:hidden}
.lvi-banner-v2 *{box-sizing:border-box}
.lvi-banner-v2 .lvi-shell{width:min(1120px,100%);margin:0 auto}
.lvi-v2-header{text-align:center;max-width:940px;margin:0 auto 54px}
.lvi-banner-v2 .lvi-eyebrow{margin:0 0 13px;color:#ff6a21;font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.lvi-banner-v2 .lvi-header h2{margin:0;color:#fff;font-size:clamp(34px,4vw,54px);line-height:1.08;font-weight:800;letter-spacing:-.02em}
.lvi-banner-v2 .lvi-header h2 span{color:#8bc5d7}
.lvi-banner-v2 .lvi-intro{max-width:900px;margin:20px auto 0;color:rgba(255,255,255,.78);font-size:17px;line-height:1.6}
.lvi-specialist-btn{display:inline-flex;align-items:center;gap:12px;margin-top:28px;min-height:50px;padding:0 25px;border-radius:999px;background:#ff5a12;color:#fff!important;text-decoration:none!important;font-weight:800;box-shadow:0 12px 28px rgba(0,0,0,.15);transition:.25s ease}
.lvi-specialist-btn:hover{background:#fff;color:#ff5a12!important;transform:translateY(-2px)}
.lvi-banner-v2 .lvi-section-title{text-align:center;margin:0 0 34px;font-size:clamp(28px,3vw,40px);line-height:1.15;color:#fff;font-weight:800}
.lvi-v2-tech-row{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(360px,.92fr)!important;gap:42px!important;align-items:center!important;margin:0 0 24px!important;padding:32px!important;border:1px solid rgba(255,255,255,.09)!important;border-radius:18px!important;background:rgb(28 14 100 / 82%)!important;box-shadow:0 18px 45px rgba(0,0,0,.12)!important}
.lvi-v2-tech-row:nth-of-type(even){background:rgb(28 14 100 / 82%)!important}
.lvi-banner-v2 .lvi-tech-copy{min-width:0}
.lvi-banner-v2 .lvi-tech-number{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;margin:0 0 14px;background:#ff5a12;color:#fff;font-size:13px;font-weight:800;box-shadow:0 0 0 5px rgba(255,90,18,.11)}
.lvi-banner-v2 .lvi-tech-copy h4{margin:0 0 13px;color:#fff;font-size:27px;line-height:1.15;font-weight:800}
.lvi-banner-v2 .lvi-tech-copy h5{margin:23px 0 11px;color:#fff;font-size:18px;font-weight:800}
.lvi-banner-v2 .lvi-tech-copy p{margin:0 0 14px;color:rgba(255,255,255,.78);font-size:15px;line-height:1.55}
.lvi-banner-v2 .lvi-tech-copy a{color:#a9d7e5;text-decoration:underline;text-underline-offset:3px}
.lvi-emphasis{color:#fff!important;font-weight:800}
.lvi-feature-list{margin:14px 0 0;padding:0;list-style:none}
.lvi-feature-list li{position:relative;margin:0 0 10px;padding-left:20px;color:rgba(255,255,255,.82);font-size:14px;line-height:1.48}
.lvi-feature-list li::before{content:"";position:absolute;left:1px;top:.65em;width:7px;height:7px;border-radius:50%;background:#ff6a21}
.lvi-feature-list strong{color:#fff}
.lvi-v2-media{display:flex;flex-direction:column;align-items:center;min-width:0}
.lvi-video-thumb{position:relative;display:block;width:100%;padding:0;border:0;border-radius:15px;overflow:hidden;background:#062e2a;cursor:pointer;box-shadow:0 14px 34px rgba(0,0,0,.24)}
.lvi-video-thumb img{display:block;width:100%;aspect-ratio:16/10;object-fit:cover;transition:transform .35s ease,filter .35s ease}
.lvi-video-thumb:hover img{transform:scale(1.025);filter:brightness(.9)}
.lvi-thumb-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:70px;height:70px;border-radius:50%;display:grid;place-items:center;background:rgba(255,90,18,.96);box-shadow:0 10px 28px rgba(0,0,0,.28),0 0 0 8px rgba(255,255,255,.13);transition:.25s ease}
.lvi-thumb-play i{width:0;height:0;border-top:10px solid transparent;border-bottom:10px solid transparent;border-left:16px solid #fff;margin-left:5px}
.lvi-video-thumb:hover .lvi-thumb-play{transform:translate(-50%,-50%) scale(1.08);background:#fff}
.lvi-video-thumb:hover .lvi-thumb-play i{border-left-color:#ff5a12}
.lvi-watch-demo{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:46px;margin-top:15px;padding:0 22px;border:0;border-radius:999px;background:#ff5a12;color:#fff;font:800 15px/1 "Urbanist",sans-serif;cursor:pointer;transition:.25s ease}
.lvi-watch-demo:hover{background:#fff;color:#ff5a12;transform:translateY(-2px)}
.lvi-watch-icon{font-size:12px}
.lvi-video-note{margin:12px 0 0!important;padding:12px 14px;border-left:3px solid #ff6a21;background:rgba(255,255,255,.06);border-radius:0 8px 8px 0;color:rgba(255,255,255,.72)!important;font-size:13px!important;line-height:1.45!important;text-align:left;width:100%}
.lvi-hardware{display:grid;grid-template-columns:1fr 1fr;gap:38px;align-items:center;margin:54px 0 0;padding:34px;border-radius:18px;background:rgb(28 14 100 / 82%)!important;border:1px solid rgba(255,255,255,.08)}
.lvi-hardware h3,.lvi-worldwide h3{margin:0 0 14px;color:#fff;font-size:clamp(26px,3vw,36px);line-height:1.15;font-weight:800}
.lvi-hardware p,.lvi-worldwide p{margin:0;color:rgba(255,255,255,.78);font-size:15px;line-height:1.6}
.lvi-hardware-visual{margin:0;background:#fff;border-radius:14px;overflow:hidden}
.lvi-hardware-visual img{display:block;width:100%;height:auto}
.lvi-hardware-list{margin-top:16px}
.lvi-worldwide{max-width:930px;margin:54px auto 0;text-align:center}
.lvi-v2-conversion-actions{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:14px!important;margin:34px auto 0!important;max-width:930px!important}
.lvi-v2-conversion-actions a{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;min-height:50px!important;padding:8px 18px!important;border-radius:999px!important;background:#ff5a12!important;color:#fff!important;text-decoration:none!important;font-weight:800!important;font-size:14px!important;text-align:center!important;transition:.25s ease!important}
.lvi-v2-conversion-actions a:hover{background:#fff!important;color:#ff5a12!important;transform:translateY(-2px)!important}
@media (max-width:900px){
  .lvi-banner-v2{padding:68px 18px 60px}
  .lvi-v2-tech-row{grid-template-columns:1fr!important;gap:26px!important;padding:25px!important}
  .lvi-v2-media{max-width:680px;width:100%;margin:0 auto}
  .lvi-hardware{grid-template-columns:1fr;gap:28px;padding:26px}
}
@media (max-width:640px){
  .lvi-banner-v2{padding:56px 14px 50px}
  .lvi-v2-header{margin-bottom:40px}
  .lvi-banner-v2 .lvi-intro{font-size:15px}
  .lvi-v2-tech-row{padding:18px!important;border-radius:14px!important;margin-bottom:16px!important}
  .lvi-banner-v2 .lvi-tech-copy h4{font-size:23px}
  .lvi-banner-v2 .lvi-tech-copy p,.lvi-feature-list li{font-size:14px}
  .lvi-thumb-play{width:58px;height:58px}
  .lvi-v2-conversion-actions{grid-template-columns:1fr!important;max-width:340px!important}
  .lvi-specialist-btn{width:100%;max-width:340px;justify-content:center}
}

/* =========================================================
   HOMEPAGE LIVE VIDEO RECEPTION SUMMARY BANNER
   Based on the supplied layout reference
   ========================================================= */
.lvr-home-banner {
  width: 100%;
  background: #f5f5f3;
  padding: 72px 20px 40px;
  font-family: "Urbanist", sans-serif;
  color: #101817;
}
.lvr-home-banner * { box-sizing: border-box; }

.lvr-home-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.lvr-home-card {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  min-height: 590px;
  background: #fff;
  border: 1px solid #e8e9e7;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(19, 45, 42, .10);
}

.lvr-home-visual {
  margin: 0;
  min-height: 590px;
  overflow: hidden;
  background: #e8e4dc;
}
.lvr-home-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center center;
}

.lvr-home-content {
  padding: 58px 58px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lvr-home-eyebrow {
  margin: 0 0 14px;
  color: #42a7bf;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.lvr-home-content h2 {
  margin: 0;
  max-width: 650px;
  color: #141414;
  font-size: clamp(34px, 3.2vw, 51px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.035em;
}
.lvr-home-content h2 span { color: #141414; }

.lvr-home-intro {
  margin: 22px 0 30px;
  max-width: 650px;
  color: #485252;
  font-size: 17px;
  line-height: 1.55;
}

.lvr-home-features {
  display: grid;
  gap: 18px;
}

.lvr-home-feature {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.lvr-home-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #f0edff;
  color: #6d63cc;
  font-size: 17px;
}
.lvr-home-feature h3 {
  margin: 0 0 2px;
  color: #151515;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}
.lvr-home-feature p {
  margin: 0;
  color: #606868;
  font-size: 14px;
  line-height: 1.35;
}

.lvr-home-cta {
  width: fit-content;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: #ff5a12;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 12px 27px rgba(255, 90, 18, .22);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.lvr-home-cta span { font-size: 21px; line-height: 1; }
.lvr-home-cta:hover {
  transform: translateY(-2px);
  background: #0b2526;
  color: #fff !important;
}

.lvr-home-benefits {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px 30px 0;
  color: #33403f;
}
.lvr-home-benefits span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}
.lvr-home-benefits i {
  color: #6670b8;
  font-size: 16px;
}

@media (max-width: 991px) {
  .lvr-home-banner { padding: 58px 18px 32px; }
  .lvr-home-card {
    grid-template-columns: .88fr 1.12fr;
    min-height: 540px;
    border-radius: 24px;
  }
  .lvr-home-visual,
  .lvr-home-visual img { min-height: 540px; }
  .lvr-home-content { padding: 44px 38px; }
  .lvr-home-content h2 { font-size: 38px; }
  .lvr-home-intro { font-size: 16px; margin-bottom: 25px; }
}

@media (max-width: 767px) {
  .lvr-home-banner { padding: 34px 14px 24px; }
  .lvr-home-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 20px;
  }
  .lvr-home-visual {
    min-height: 0;
    height: min(110vw, 600px);
  }
  .lvr-home-visual img {
    min-height: 0;
    height: 100%;
    object-position: center 42%;
  }
  .lvr-home-content { padding: 34px 24px 32px; }
  .lvr-home-content h2 { font-size: 34px; line-height: 1.08; }
  .lvr-home-intro { font-size: 15px; line-height: 1.52; }
  .lvr-home-feature { grid-template-columns: 38px 1fr; gap: 12px; }
  .lvr-home-icon { width: 36px; height: 36px; border-radius: 9px; }
  .lvr-home-feature h3 { font-size: 16px; }
  .lvr-home-feature p { font-size: 13.5px; }
  .lvr-home-cta {
    width: 100%;
    margin-top: 28px;
    padding-inline: 20px;
  }
  .lvr-home-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 10px 4px;
  }
  .lvr-home-benefits span { justify-content: flex-start; max-width: 300px; width: 100%; margin: 0 auto; }
}

@media (max-width: 420px) {
  .lvr-home-visual { height: 480px; }
  .lvr-home-content { padding: 30px 20px; }
  .lvr-home-content h2 { font-size: 30px; }
}

/* =========================================================
   LIVE VIDEO RECEPTION TECHNOLOGIES — 14 SEP 2026 REVISION
   Visual rhythm required by "changes to the new webpage.docx":
   dark hero -> light 01/02 -> dark flagship 03 -> light hardware -> dark CTA
   ========================================================= */

.lvi-page {
  width: 100%;
  padding: 0 !important;
  background: #ffffff !important;
  color: #17211f;
  overflow: hidden;
  font-family: "Urbanist", sans-serif;
}

.lvi-page .lvi-shell {
  width: min(1128px, calc(100% - 40px));
  margin: 0 auto;
}

/* Hero: retain premium dark navy treatment */
.lvi-hero-band {
  background: #07084f;
  color: #ffffff;
  padding: 88px 20px 82px;
}
.lvi-page .lvi-v2-header {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.lvi-page .lvi-eyebrow {
  margin: 0 0 13px;
  color: #ff5a12;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lvi-page .lvi-v2-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.025em;
}
.lvi-page .lvi-v2-header h2 span { color: #8bc5d7; }
.lvi-page .lvi-v2-header .lvi-intro {
  max-width: 890px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.62;
}
.lvi-page .lvi-specialist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ff5a12;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255,90,18,.22);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.lvi-page .lvi-specialist-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #ff5a12 !important;
}

/* Light intro + solutions 01 and 02 */
.lvi-solutions-band {
  background: #f5f6f4;
  padding: 82px 20px 76px;
}
.lvi-page .lvi-technologies { margin: 0; }
.lvi-page .lvi-section-title {
  margin: 0 0 38px;
  text-align: center;
  color: #0d1d1b;
  font-size: clamp(32px, 3.1vw, 43px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
}

.lvi-page .lvi-light-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr) !important;
  gap: 42px !important;
  align-items: center !important;
  margin: 0 0 26px !important;
  padding: 34px !important;
  border: 1px solid #e3e6e4 !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: 0 14px 36px rgba(18, 44, 41, .07) !important;
}
.lvi-page .lvi-light-card:last-child { margin-bottom: 0 !important; }

.lvi-page .lvi-light-card .lvi-tech-copy h4 {
  margin: 0 0 14px;
  color: #111b1a !important;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}
.lvi-page .lvi-light-card .lvi-tech-copy p {
  margin: 0 0 14px;
  color: #5a6462 !important;
  font-size: 15px;
  line-height: 1.58;
}
.lvi-page .lvi-light-card .lvi-tech-copy a {
  color: #14758a !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lvi-page .lvi-light-card .lvi-feature-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.lvi-page .lvi-light-card .lvi-feature-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 20px;
  color: #55605e !important;
  font-size: 14px;
  line-height: 1.48;
}
.lvi-page .lvi-light-card .lvi-feature-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5a12;
}
.lvi-page .lvi-light-card .lvi-feature-list strong { color: #17211f !important; }
.lvi-page .lvi-light-card .lvi-video-note {
  width: 100%;
  margin: 13px 0 0 !important;
  padding: 12px 14px;
  border-left: 3px solid #ff5a12;
  border-radius: 0 8px 8px 0;
  background: #f3f5f3;
  color: #5a6462 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  text-align: left;
}

/* Common number + media */
.lvi-page .lvi-tech-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 0 15px;
  border-radius: 50%;
  background: #ff5a12;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(255,90,18,.10);
}
.lvi-page .lvi-v2-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.lvi-page .lvi-video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #0b2526;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.lvi-page .lvi-video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.lvi-page .lvi-video-thumb:hover img { transform: scale(1.025); filter: brightness(.90); }
.lvi-page .lvi-thumb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,90,18,.97);
  box-shadow: 0 10px 28px rgba(0,0,0,.25), 0 0 0 8px rgba(255,255,255,.16);
  transition: .25s ease;
}
.lvi-page .lvi-thumb-play i {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 5px;
}
.lvi-page .lvi-video-thumb:hover .lvi-thumb-play { transform: translate(-50%,-50%) scale(1.07); background: #fff; }
.lvi-page .lvi-video-thumb:hover .lvi-thumb-play i { border-left-color: #ff5a12; }
.lvi-page .lvi-watch-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 15px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: #ff5a12;
  color: #ffffff;
  font: 800 15px/1 "Urbanist", sans-serif;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.lvi-page .lvi-watch-demo:hover {
  background: #0b2526;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Section 03: premium flagship feature */
.lvi-flagship-band {
  background:
    radial-gradient(circle at 82% 18%, rgba(67,123,201,.20), transparent 34%),
    linear-gradient(135deg, #08094f 0%, #0a0d63 52%, #070843 100%);
  padding: 82px 20px;
}
.lvi-page .lvi-flagship-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr) !important;
  gap: 48px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 42px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.035) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
}
.lvi-page .lvi-flagship-card .lvi-tech-copy h4 {
  margin: 0 0 14px;
  color: #ffffff !important;
  font-size: clamp(31px, 3vw, 43px);
  line-height: 1.08;
  font-weight: 800;
}
.lvi-flagship-label {
  margin: 0 0 9px !important;
  color: #ff6a21 !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 800;
  letter-spacing: .09em;
}
.lvi-page .lvi-flagship-card .lvi-tech-copy h5 {
  margin: 24px 0 12px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
}
.lvi-page .lvi-flagship-card .lvi-tech-copy p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.80) !important;
  font-size: 15px;
  line-height: 1.58;
}
.lvi-page .lvi-flagship-card .lvi-emphasis {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 800;
}
.lvi-page .lvi-flagship-card .lvi-feature-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.lvi-page .lvi-flagship-card .lvi-feature-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 20px;
  color: rgba(255,255,255,.82) !important;
  font-size: 14px;
  line-height: 1.5;
}
.lvi-page .lvi-flagship-card .lvi-feature-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5a12;
}
.lvi-page .lvi-flagship-card .lvi-feature-list strong { color: #fff !important; }
.lvi-page .lvi-flagship-card .lvi-tech-copy a { color: #9ed9e6 !important; }
.lvi-page .lvi-flagship-card .lvi-watch-demo:hover {
  background: #ffffff;
  color: #ff5a12;
}

/* Hardware: return to light Teleportel card language */
.lvi-hardware-band {
  background: #f5f6f4;
  padding: 78px 20px;
}
.lvi-page .lvi-hardware {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  gap: 42px;
  align-items: center;
  margin: 0 !important;
  padding: 36px;
  border: 1px solid #e3e6e4;
  border-radius: 22px;
  background: #ffffff !important;
  box-shadow: 0 14px 36px rgba(18,44,41,.07);
}
.lvi-page .lvi-hardware h3 {
  margin: 0 0 15px;
  color: #111b1a !important;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 800;
}
.lvi-page .lvi-hardware p {
  margin: 0;
  color: #5a6462 !important;
  font-size: 15px;
  line-height: 1.58;
}
.lvi-page .lvi-hardware .lvi-feature-list {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}
.lvi-page .lvi-hardware .lvi-feature-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 20px;
  color: #55605e !important;
  font-size: 14px;
  line-height: 1.48;
}
.lvi-page .lvi-hardware .lvi-feature-list li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5a12;
}
.lvi-page .lvi-hardware .lvi-feature-list strong { color: #17211f !important; }

/* Original four-photo/caption artwork stays intact and is presented landscape. */
.lvi-page .lvi-hardware-visual {
  margin: 0;
  width: 100%;
  overflow: hidden;
  border: 1px solid #e3e6e4;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18,44,41,.08);
}
.lvi-page .lvi-hardware-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
}

/* Final dark close + CTAs */
.lvi-final-band {
  background: #07084f;
  color: #ffffff;
  padding: 78px 20px 86px;
}
.lvi-page .lvi-worldwide {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.lvi-page .lvi-worldwide h3 {
  margin: 0 0 15px;
  color: #ffffff !important;
  font-size: clamp(31px, 3.2vw, 44px);
  line-height: 1.1;
  font-weight: 800;
}
.lvi-page .lvi-worldwide p {
  margin: 0;
  color: rgba(255,255,255,.78) !important;
  font-size: 16px;
  line-height: 1.62;
}
.lvi-page .lvi-v2-conversion-actions {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: 14px !important;
  max-width: 940px !important;
  margin: 34px auto 0 !important;
}
.lvi-page .lvi-v2-conversion-actions a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 52px !important;
  padding: 8px 18px !important;
  border-radius: 999px !important;
  background: #ff5a12 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-align: center !important;
  transition: transform .25s ease, background .25s ease, color .25s ease !important;
}
.lvi-page .lvi-v2-conversion-actions a:hover {
  transform: translateY(-2px) !important;
  background: #ffffff !important;
  color: #ff5a12 !important;
}

/* Tablet */
@media (max-width: 980px) {
  .lvi-hero-band { padding: 74px 18px 68px; }
  .lvi-solutions-band,
  .lvi-flagship-band,
  .lvi-hardware-band,
  .lvi-final-band { padding-left: 18px; padding-right: 18px; }

  .lvi-page .lvi-light-card,
  .lvi-page .lvi-flagship-card {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .lvi-page .lvi-v2-media {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
  .lvi-page .lvi-hardware {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .lvi-page .lvi-hardware-visual { max-width: 760px; margin: 0 auto; }
}

/* Mobile */
@media (max-width: 640px) {
  .lvi-page .lvi-shell { width: min(100% - 28px, 1128px); }
  .lvi-hero-band { padding: 58px 0 54px; }
  .lvi-solutions-band { padding: 56px 0 52px; }
  .lvi-flagship-band { padding: 56px 0; }
  .lvi-hardware-band { padding: 54px 0; }
  .lvi-final-band { padding: 56px 0 62px; }

  .lvi-page .lvi-v2-header h2 { font-size: 34px; }
  .lvi-page .lvi-v2-header .lvi-intro { font-size: 15px; line-height: 1.55; }
  .lvi-page .lvi-specialist-btn { width: 100%; max-width: 340px; }

  .lvi-page .lvi-section-title { font-size: 31px; margin-bottom: 28px; }
  .lvi-page .lvi-light-card,
  .lvi-page .lvi-flagship-card {
    padding: 20px !important;
    border-radius: 16px !important;
    gap: 22px !important;
  }
  .lvi-page .lvi-light-card .lvi-tech-copy h4,
  .lvi-page .lvi-flagship-card .lvi-tech-copy h4 { font-size: 25px; }

  .lvi-page .lvi-hardware { padding: 20px; border-radius: 16px; }
  .lvi-page .lvi-hardware h3 { font-size: 29px; }
  .lvi-page .lvi-hardware-visual img { max-height: none; aspect-ratio: auto; }

  .lvi-page .lvi-v2-conversion-actions {
    grid-template-columns: 1fr !important;
    max-width: 350px !important;
  }
}



.lvi-hardware-visual.lvi-hardware-four-grid{
    margin:0;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    align-self:center;
    width:100%;
  }
  .lvi-hardware-four-grid .lvi-hardware-item{
    margin:0;
    background:#fff;
    border:1px solid #dfe4e2;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(8,43,39,.07);
  }
  .lvi-hardware-four-grid .lvi-hardware-item img{
    display:block;
    width:100%;
    aspect-ratio:1.12 / 1;
    object-fit:cover;
    object-position:center;
  }
  .lvi-hardware-four-grid .lvi-hardware-item figcaption{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px 10px;
    text-align:center;
    color:#082b27;
    background:#fff;
    font-family:"Urbanist",sans-serif;
    font-size:14px;
    line-height:1.25;
    font-weight:700;
  }
  @media (max-width: 900px){
    .lvi-hardware-visual.lvi-hardware-four-grid{
      margin-top:28px;
    }
  }
  @media (max-width: 560px){
    .lvi-hardware-visual.lvi-hardware-four-grid{
      gap:10px;
    }
    .lvi-hardware-four-grid .lvi-hardware-item{
      border-radius:13px;
    }
    .lvi-hardware-four-grid .lvi-hardware-item figcaption{
      min-height:52px;
      padding:10px 7px;
      font-size:12px;
    }
  }
  @media (max-width: 390px){
    .lvi-hardware-visual.lvi-hardware-four-grid{
      grid-template-columns:1fr;
    }
    .lvi-hardware-four-grid .lvi-hardware-item figcaption{
      font-size:14px;
    }
  }