* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Urbanist", sans-serif;
  background: #0b2b28;
}

/* Header */

.tp-header {
  width: 100%;
  height: 80px;
  background: #0b2b28;
  position: relative;
  z-index: 1000;
  animation: tpHeaderDown 0.8s ease forwards;
}

.tp-header-container {
  width: 100%;
  max-width: 1218px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.tp-logo img {
  width: 122px;
  height: auto;
  display: block;
}

.tp-nav {
  display: flex;
  align-items: center;
  gap: 68px;
  margin-left: 70px;
}

.tp-nav a,
.tp-language button {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.tp-nav a:hover,
.tp-language button:hover {
  color: #ff4f0f;
}

.tp-language {
  position: relative;
}

.tp-language button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tp-language button span {
  font-size: 11px;
  margin-top: 2px;
}

.tp-language-dropdown {
  position: absolute;
  top: 30px;
  left: 0;
  width: 145px;
  padding: 10px 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.tp-language:hover .tp-language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tp-language-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #0b2b28;
  font-size: 14px;
}

.tp-language-dropdown a:hover {
  color: #ff4f0f;
  background: #f5f5f5;
}

.tp-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tp-header-btn {
  width: 132px;
  height: 38px;
  border-radius: 50px;
  background: #ff4f0f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.tp-header-btn:hover {
  background: #ffffff;
  color: #ff4f0f;
  transform: translateY(-2px);
}

.tp-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.tp-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: 6px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.tp-menu-toggle span:nth-child(1) {
  top: 11px;
}

.tp-menu-toggle span:nth-child(2) {
  top: 18px;
}

.tp-menu-toggle span:nth-child(3) {
  top: 25px;
}

.tp-menu-toggle.active span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.tp-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.tp-menu-toggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* Hero */

.tp-hero-section {
  width: 100%;
  min-height: 644px;
  background:
    radial-gradient(circle at 50% 55%, rgba(37, 76, 70, 0.42), rgba(11, 43, 40, 0.2) 34%, rgba(11, 43, 40, 1) 74%),
    #0b2b28;
  overflow: hidden;
  padding: 96px 20px 90px;
}

.tp-hero-container {
  width: 100%;
  max-width: 1218px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 565px;
  gap: 90px;
  align-items: center;
}

.tp-hero-content {
  animation: tpFadeLeft 0.9s ease forwards;
}

.tp-hero-badge {
  width: fit-content;
  min-height: 29px;
  padding: 0 14px;
  border: 1px solid rgba(28, 202, 194, 0.55);
  border-radius: 14px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(0, 129, 118, 0.2);
  margin-bottom: 4px;
}

.tp-hero-badge span {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

.tp-hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.23;
  font-weight: 900;
}

.tp-hero-content h1 span {
  color: #fff09a;
}

.tp-hero-content p {
  margin-top: 42px;
  color: #b9c3c1;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.tp-hero-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 43px;
}

.tp-primary-btn {
  width: 164px;
  height: 47px;
  border-radius: 50px;
  background: #ff4f0f;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.tp-primary-btn:hover {
  background: #ffffff;
  color: #ff4f0f;
  transform: translateY(-2px);
}

.tp-secondary-btn {
  width: 179px;
  height: 47px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.tp-secondary-btn:hover {
  border-color: #ff4f0f;
  color: #ff4f0f;
  transform: translateY(-2px);
}

.tp-small-play {
  width: 0;
  height: 0;
  border-left: 8px solid currentColor;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  display: inline-block;
}

.tp-hero-media {
  animation: tpFadeRight 0.9s ease forwards;
}

.tp-video-box {
  width: 100%;
  height: 404px;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
}

.tp-video-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tp-play-button {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(5px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.3s ease;
}

.tp-play-button span {
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  display: block;
  margin-left: 29px;
}

.tp-play-button:hover {
  background: #ff4f0f;
  transform: translate(-50%, -50%) scale(1.06);
}

.tp-hero-media p {
  margin-top: 13px;
  color: #b9c3c1;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

/* Animations */

@keyframes tpHeaderDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tpFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.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;
  padding: 0 15px;
}

.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 {
  width: auto;
  background: #ea4f0c;
  color: #ffffff;
  gap: 12px;
}

.future-btn-white {
  width: auto;
  background: #ffffff;
  color: #253442;
  gap: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}


@keyframes tpFadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tablet */

@media (max-width: 1100px) {
  .tp-hero-container {
    grid-template-columns: 1fr 500px;
    gap: 50px;
  }

  .tp-hero-content h1 {
    font-size: 46px;
  }

  .tp-video-box {
    height: 330px;
  }
}

@media (max-width: 900px) {
  .tp-nav {
    gap: 38px;
    margin-left: 30px;
  }

  .tp-hero-section {
    padding: 70px 20px 80px;
  }

  .tp-hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tp-hero-content,
  .tp-hero-media {
    text-align: center;
  }

  .tp-hero-badge,
  .tp-hero-buttons {
    margin-left: auto;
    margin-right: auto;
  }

  .tp-hero-content p br,
  .tp-hero-media p br {
    display: none;
  }

  .tp-video-box {
    max-width: 620px;
    margin: 0 auto;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .tp-header {
    height: 72px;
  }

  .tp-header-container {
    padding: 0 16px;
  }

  .tp-logo img {
    width: 108px;
  }

  .tp-menu-toggle {
    display: block;
  }

  .tp-header-btn {
    width: 118px;
    height: 36px;
    font-size: 14px;
  }

  .tp-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    width: auto;
    margin: 0;
    padding: 22px;
    background: #103834;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.3s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  }

  .tp-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .tp-nav a,
  .tp-language button {
    font-size: 18px;
  }

  .tp-language-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 12px;
    display: none;
  }

  .tp-language:hover .tp-language-dropdown {
    display: block;
  }

  .tp-hero-section {
    min-height: auto;
    padding: 54px 18px 64px;
  }

  .tp-hero-content h1 {
    font-size: 38px;
    line-height: 1.18;
  }

  .tp-hero-content p {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.5;
  }

  .tp-hero-buttons {
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }

  .tp-primary-btn,
  .tp-secondary-btn {
    width: 100%;
    max-width: 240px;
    height: 48px;
  }

  .tp-video-box {
    height: 290px;
  }

  .tp-play-button {
    width: 64px;
    height: 64px;
  }

  .tp-play-button span {
    border-left-width: 15px;
    border-top-width: 10px;
    border-bottom-width: 10px;
    margin-left: 25px;
  }

  .tp-hero-media p {
    font-size: 15px;
  }
}

/* Small Mobile */

@media (max-width: 420px) {
  .tp-logo img {
    width: 96px;
  }

  .tp-header-btn {
    width: 108px;
    height: 34px;
    font-size: 13px;
  }

  .tp-hero-content h1 {
    font-size: 33px;
  }

  .tp-hero-content p {
    font-size: 16px;
  }

  .tp-video-box {
    height: 245px;
  }
}





.key-benefits-section {
  width: 100%;
  background: #ffffff;
  padding: 112px 20px 116px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.key-benefits-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.key-benefits-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.key-benefits-container h2 {
  margin: 0;
  color: #10172b;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  animation: benefitsFadeUp 0.8s ease forwards;
}

.key-benefits-grid {
  width: 100%;
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-card {
  min-height: 285px;
  background: #ffffff;
  border-radius: 18px;
  padding: 44px 32px 31px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.07);
  animation: benefitsFadeUp 0.9s ease forwards;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 85px rgba(15, 23, 42, 0.11);
}

.benefit-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.benefit-number {
  color: #ff4f0f;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.benefit-arrow {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff2ed;
  color: #ff4f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s ease;
}

.benefit-arrow:hover {
  background: #ff4f0f;
  color: #ffffff;
  transform: translateY(-2px);
}

.benefit-card h3 {
  margin: 48px 0 0;
  color: #10172b;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

.benefit-card p {
  margin: 20px 0 0;
  color: #777777;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 310px;
}

.benefit-line {
  width: calc(100% - 64px);
  height: 1px;
  position: absolute;
  left: 32px;
  bottom: 32px;
}

.line-blue {
  background: linear-gradient(90deg, #9bb8ff, rgba(155, 184, 255, 0));
}

.line-purple {
  background: linear-gradient(90deg, #caa6ff, rgba(202, 166, 255, 0));
}

.line-cyan {
  background: linear-gradient(90deg, #8ccfe0, rgba(140, 207, 224, 0));
}

@keyframes benefitsFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .key-benefits-section {
    padding: 86px 22px 90px;
  }

  .key-benefits-container h2 {
    font-size: 40px;
  }

  .key-benefits-grid {
    gap: 20px;
  }

  .benefit-card {
    padding: 38px 26px 30px;
  }

  .benefit-card h3 {
    margin-top: 40px;
    font-size: 20px;
  }

  .benefit-line {
    width: calc(100% - 52px);
    left: 26px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .key-benefits-section {
    padding: 64px 18px 70px;
  }

  .key-benefits-container h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .key-benefits-grid {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card {
    min-height: 260px;
    padding: 34px 24px 30px;
    border-radius: 16px;
  }

  .benefit-card h3 {
    margin-top: 36px;
    font-size: 21px;
  }

  .benefit-card p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 100%;
  }

  .benefit-line {
    width: calc(100% - 48px);
    left: 24px;
    bottom: 28px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .key-benefits-container h2 {
    font-size: 30px;
  }

  .benefit-card {
    min-height: 250px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }
}


.work-process-section {
  width: 100%;
  background: #0b2b28;
  padding: 68px 20px 76px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.work-process-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.work-process-container {
  width: 100%;
  max-width: 1218px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 535px 1fr;
  gap: 106px;
  align-items: center;
}

.work-process-left {
  animation: workFadeLeft 0.9s ease forwards;
}

.work-process-left h2 {
  margin: 0 0 26px;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
}

.work-process-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.work-process-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.work-process-right {
  position: relative;
  padding-left: 64px;
  animation: workFadeRight 0.9s ease forwards;
}

.process-line {
  position: absolute;
  left: 21px;
  top: 32px;
  width: 1px;
  height: calc(100% - 64px);
  background: rgba(35, 202, 189, 0.45);
}

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 58px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #233d3b;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ff4f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  position: absolute;
  left: -64px;
  top: -2px;
  z-index: 2;
}

.process-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.process-content p {
  margin: 13px 0 0;
  color: #b9c3c1;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

@keyframes workFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes workFadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .work-process-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .work-process-left h2 {
    font-size: 44px;
  }

  .work-process-image {
    height: 280px;
  }

  .process-step {
    margin-bottom: 44px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .work-process-section {
    padding: 62px 18px 68px;
  }

  .work-process-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .work-process-left h2 {
    font-size: 36px;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 24px;
  }

  .work-process-image {
    height: 260px;
    border-radius: 10px;
  }

  .work-process-right {
    padding-left: 56px;
  }

  .process-line {
    left: 20px;
    top: 28px;
    height: calc(100% - 56px);
  }

  .process-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    left: -56px;
  }

  .process-step {
    margin-bottom: 38px;
  }

  .process-content h3 {
    font-size: 18px;
  }

  .process-content p {
    font-size: 15px;
    line-height: 1.5;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .work-process-left h2 {
    font-size: 32px;
  }

  .work-process-image {
    height: 220px;
  }

  .work-process-right {
    padding-left: 50px;
  }

  .process-number {
    left: -50px;
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .process-line {
    left: 19px;
  }
}



.use-cases-section {
  width: 100%;
  background: #ffffff;
  padding: 105px 20px 64px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.use-cases-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.use-cases-container {
  width: 100%;
  max-width: 1034px;
  margin: 0 auto;
  text-align: center;
}

.use-cases-container h2 {
  margin: 0;
  color: #10172b;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  animation: useCasesFadeUp 0.8s ease forwards;
}

.use-cases-grid {
  width: 100%;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px 18px;
}

.use-case-card {
  height: 84px;
  background: #fafbfc;
  border: 1px solid #e6e8ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0 25px;
  gap: 17px;
  transition: all 0.3s ease;
  animation: useCasesFadeUp 0.9s ease forwards;
}

.use-case-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(255, 79, 15, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.use-case-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: #fff0eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: #ff4f0f;
}

.use-case-card h3 {
  margin: 0;
  color: #172033;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.use-cases-btn {
  width: 346px;
  height: 60px;
  margin-top: 27px;
  border-radius: 10px;
  background: #ff4f0f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  transition: all 0.3s ease;
}

.use-cases-btn:hover {
  background: #10172b;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes useCasesFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .use-cases-section {
    padding: 82px 22px 64px;
  }

  .use-cases-container {
    max-width: 720px;
  }

  .use-cases-container h2 {
    font-size: 40px;
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .use-cases-section {
    padding: 64px 18px 56px;
  }

  .use-cases-container h2 {
    font-size: 34px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .use-case-card {
    height: auto;
    min-height: 82px;
    padding: 18px 20px;
  }

  .use-case-card h3 {
    font-size: 17px;
  }

  .use-cases-btn {
    width: 100%;
    max-width: 346px;
    height: 56px;
    margin-top: 24px;
    font-size: 16px;
    padding: 0 18px;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .use-cases-container h2 {
    font-size: 30px;
  }

  .use-case-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .use-case-card h3 {
    font-size: 16px;
  }

  .use-cases-btn {
    font-size: 15px;
  }
}


.faq-section {
  width: 100%;
  background: #ffffff;
  padding: 48px 20px 64px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.faq-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.faq-container {
  width: 100%;
  max-width: 1218px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 128px;
  align-items: flex-start;
}

.faq-left {
  padding-top: 1px;
  animation: faqFadeLeft 0.9s ease forwards;
}

.faq-left h2 {
  margin: 0;
  color: #10172b;
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.faq-image-wrap {
  width: 386px;
  margin-top: 73px;
}

.faq-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-right {
  width: 100%;
  animation: faqFadeRight 0.9s ease forwards;
}

.faq-item {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 79, 15, 0.25);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.05);
}

.faq-question {
  width: 100%;
  min-height: 84px;
  padding: 0 30px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Urbanist", sans-serif;
}

.faq-question span:first-child {
  color: #000000;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.faq-icon {
  color: #000000;
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 30px 28px;
  color: #777777;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 590px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question {
  min-height: 68px;
  padding-top: 15px;
}

@keyframes faqFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes faqFadeRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .faq-container {
    grid-template-columns: 330px 1fr;
    gap: 60px;
  }

  .faq-image-wrap {
    width: 310px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .faq-section {
    padding: 58px 18px 58px;
  }

  .faq-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-left {
    text-align: center;
  }

  .faq-left h2 {
    font-size: 40px;
  }

  .faq-image-wrap {
    width: 260px;
    margin: 34px auto 0;
  }

  .faq-question {
    min-height: 76px;
    padding: 0 20px;
  }

  .faq-question span:first-child {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 20px 24px;
    font-size: 15px;
  }

  .faq-item.active .faq-question {
    min-height: 64px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .faq-left h2 {
    font-size: 34px;
  }

  .faq-image-wrap {
    width: 220px;
  }

  .faq-question {
    gap: 14px;
  }

  .faq-icon {
    font-size: 20px;
  }
}




.human-touch-section {
  width: 100%;
  background: #ffffff;
  padding: 45px 20px 105px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.human-touch-section * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.human-touch-container {
  width: 100%;
  max-width: 1214px;
  height: 403px;
  margin: 0 auto;
  background: #0b2b28;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: humanTouchFadeUp 0.9s ease forwards;
}

.human-touch-container h2 {
  margin: 0;
  color: #ffffff;
  font-size: 50px;
  line-height: 1.22;
  font-weight: 900;
  text-align: center;
}

.human-touch-container p {
  margin: 17px 0 0;
  color: #b9c3c1;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}

.human-touch-btn {
  width: auto;
  height: 60px;
  margin-top: 28px;
  padding: 0 20px;
  border-radius: 10px;
  background: #ff4f0f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
  transition: all 0.3s ease;
}

.human-touch-btn:hover {
  background: #ffffff;
  color: #ff4f0f;
  transform: translateY(-2px);
}

@keyframes humanTouchFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 991px) {
  .human-touch-section {
    padding: 40px 22px 80px;
  }

  .human-touch-container {
    height: 360px;
    border-radius: 22px;
  }

  .human-touch-container h2 {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .human-touch-section {
    padding: 36px 18px 64px;
  }

  .human-touch-container {
    height: auto;
    min-height: 330px;
    padding: 60px 24px;
    border-radius: 20px;
  }

  .human-touch-container h2 {
    font-size: 34px;
    line-height: 1.22;
  }

  .human-touch-container p {
    font-size: 16px;
    line-height: 1.5;
  }

  .human-touch-btn {
    width: 170px;
    height: 56px;
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 420px) {
  .human-touch-container h2 {
    font-size: 30px;
  }

  .human-touch-container {
    padding: 52px 20px;
  }
}

/* ==========================================================
   SHARED CSS FOR ALL 3 PAGES
   Rolling Sections:
   1) Typical Features
   2) Typical Integrations
   Use this same css/style.css file on all pages.
========================================================== */

/* Main dark animated background for both sections */
.typical-features-section,
.integration-features-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 79, 15, 0.18), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(28, 202, 194, 0.20), transparent 26%),
    linear-gradient(135deg, #0b2b28 0%, #103834 48%, #091f1d 100%);
  padding: 105px 0 112px;
  overflow: hidden;
}

.typical-features-section::before,
.integration-features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.65;
  animation: rollingSectionGridMove 24s linear infinite;
  pointer-events: none;
}

.typical-features-section::after,
.integration-features-section::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -220px;
  bottom: -270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 15, 0.24), transparent 66%);
  filter: blur(2px);
  pointer-events: none;
}

/* Full-width container for rolling section */
.typical-features-container,
.integration-features-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* Heading area */
.typical-features-heading,
.integration-features-heading {
  width: min(92%, 860px);
  margin: 0 auto;
}

.typical-features-badge,
.integration-features-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(28, 202, 194, 0.45);
  background: rgba(28, 202, 194, 0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.typical-features-heading h2,
.integration-features-heading h2 {
  color: #ffffff;
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  margin: 0;
}

.typical-features-heading p,
.integration-features-heading p {
  margin: 16px auto 0;
  max-width: 760px;
  color: #b9c3c1;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

/* Rolling slider wrapper */
.typical-features-slider,
.integration-features-slider {
  width: 100%;
  margin-top: 52px;
  overflow: hidden;
  padding: 18px 0 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Rolling track */
.typical-features-track,
.integration-features-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 18px;
  will-change: transform;
  animation: rollingLeftToRight 38s linear infinite;
}

/* Pause on hover */
.typical-features-slider:hover .typical-features-track,
.integration-features-slider:hover .integration-features-track {
  animation-play-state: paused;
}

/* Cards for both sections */
.typical-feature-card,
.integration-feature-card {
  width: 335px;
  min-width: 335px;
  height: 112px;
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.085);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  display: flex;
  align-items: center;
  text-align: left;
  gap: 17px;
  transition: all 0.3s ease;
}

.typical-feature-card:hover,
.integration-feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 79, 15, 0.65);
  box-shadow: 0 28px 70px rgba(255, 79, 15, 0.18);
}

/* Card icon */
.typical-feature-card .use-case-icon,
.integration-feature-card .use-case-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.5), transparent 36%),
    linear-gradient(135deg, #ff4f0f, #ff7b42);
  box-shadow: 0 12px 30px rgba(255, 79, 15, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.typical-feature-card .use-case-icon svg,
.integration-feature-card .use-case-icon svg {
  fill: #ffffff;
  width: 24px;
  height: 24px;
  display: block;
}

/* Card title */
.typical-feature-card h3,
.integration-feature-card h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.23;
  font-weight: 800;
  margin: 0;
}

/* Optional button used on Secure Visitor + Integrations page */
.typical-features-btn,
.integration-features-btn {
  margin-top: 32px;
  background: #ff4f0f;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(255, 79, 15, 0.22);
}

.typical-features-btn:hover,
.integration-features-btn:hover {
  background: #ffffff;
  color: #ff4f0f;
}

/* Animation */
@keyframes rollingLeftToRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes rollingSectionGridMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 124px 124px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .typical-features-section,
  .integration-features-section {
    padding: 82px 0 88px;
  }

  .typical-features-heading h2,
  .integration-features-heading h2 {
    font-size: 42px;
  }

  .typical-features-heading p,
  .integration-features-heading p {
    font-size: 17px;
  }

  .typical-feature-card,
  .integration-feature-card {
    width: 305px;
    min-width: 305px;
  }

  .typical-features-track,
  .integration-features-track {
    animation-duration: 34s;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .typical-features-section,
  .integration-features-section {
    padding: 68px 0 74px;
  }

  .typical-features-heading,
  .integration-features-heading {
    width: min(90%, 620px);
  }

  .typical-features-heading h2,
  .integration-features-heading h2 {
    font-size: 34px;
  }

  .typical-features-heading p,
  .integration-features-heading p {
    font-size: 16px;
  }

  .typical-features-slider,
  .integration-features-slider {
    margin-top: 36px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }

  .typical-feature-card,
  .integration-feature-card {
    width: 280px;
    min-width: 280px;
    height: 104px;
    padding: 0 18px;
    gap: 14px;
  }

  .typical-feature-card .use-case-icon,
  .integration-feature-card .use-case-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  .typical-feature-card h3,
  .integration-feature-card h3 {
    font-size: 16px;
  }

  .typical-features-track,
  .integration-features-track {
    animation-duration: 30s;
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  .typical-features-track,
  .integration-features-track,
  .typical-features-section::before,
  .integration-features-section::before {
    animation: none;
  }

  .typical-features-slider,
  .integration-features-slider {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ==========================================================
   3D Holographic Reality Showcase Section
   Added under Use Cases on Live Video Reception page
========================================================== */

.holographic-reality-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 42%, rgba(28, 202, 194, 0.18), transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(87, 189, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #061f1e 0%, #0b2b28 50%, #071817 100%);
  padding: 92px 20px;
  font-family: "Urbanist", sans-serif;
}

.holographic-reality-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 202, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 202, 194, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: holographicGridMove 24s linear infinite;
  opacity: 0.75;
  pointer-events: none;
}

.holographic-reality-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 30, 0.95) 0%, rgba(6, 31, 30, 0.72) 46%, rgba(6, 31, 30, 0.24) 100%);
  pointer-events: none;
}

.holographic-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.holographic-bg-orb-1 {
  width: 340px;
  height: 340px;
  left: -130px;
  top: 50px;
  background: rgba(28, 202, 194, 0.22);
  animation: holographicOrbFloat 8s ease-in-out infinite;
}

.holographic-bg-orb-2 {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -160px;
  background: rgba(87, 189, 255, 0.20);
  animation: holographicOrbFloat 9s ease-in-out infinite reverse;
}

.holographic-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1218px;
  min-height: 450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.holographic-content {
  position: relative;
  z-index: 3;
  animation: holographicFadeLeft 0.9s ease forwards;
}

.holographic-badge {
  width: fit-content;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(28, 202, 194, 0.58);
  background: rgba(0, 129, 118, 0.16);
  color: #19e2d4;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(28, 202, 194, 0.16);
  margin-bottom: 24px;
}

.holographic-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.6px;
}

.holographic-content h2 span {
  color: #fff09a;
}

.holographic-content h3 {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.holographic-content p {
  max-width: 580px;
  margin: 30px 0 0;
  color: #d0dcda;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 500;
}

.holographic-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.holographic-primary-btn,
.holographic-secondary-btn {
  height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  transition: all 0.3s ease;
}

.holographic-primary-btn {
  background: #ff4f0f;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(255, 79, 15, 0.28);
  gap: 12px;
}

.holographic-primary-btn span {
  width: 0;
  height: 0;
  border-left: 10px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.holographic-primary-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #ff4f0f;
}

.holographic-secondary-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.holographic-secondary-btn:hover {
  transform: translateY(-3px);
  border-color: #19e2d4;
  color: #19e2d4;
}

.holographic-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  animation: holographicFadeRight 0.9s ease forwards;
}

.holographic-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 92%;
  right: 4%;
  top: 4%;
  border: 1px solid rgba(87, 189, 255, 0.38);
  box-shadow:
    0 0 28px rgba(87, 189, 255, 0.18),
    inset 0 0 34px rgba(87, 189, 255, 0.10);
  border-radius: 8px;
  transform: perspective(900px) rotateY(-7deg);
  animation: hologramPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.holographic-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

@keyframes holographicGridMove {
  from { background-position: 0 0; }
  to { background-position: 128px 128px; }
}

@keyframes holographicOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.08); }
}

@keyframes holographicFadeLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes holographicFadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hologramPulse {
  0%, 100% {
    opacity: 0.72;
    transform: perspective(900px) rotateY(-7deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: perspective(900px) rotateY(-7deg) scale(1.025);
  }
}

@media (max-width: 991px) {
  .holographic-reality-section {
    padding: 78px 22px;
  }

  .holographic-container {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .holographic-badge,
  .holographic-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .holographic-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .holographic-visual {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }

  .holographic-visual img {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .holographic-reality-section {
    padding: 64px 18px;
  }

  .holographic-content h3 {
    font-size: 19px;
  }

  .holographic-content p {
    font-size: 17px;
    line-height: 1.55;
  }

  .holographic-actions {
    flex-direction: column;
    gap: 14px;
  }

  .holographic-primary-btn,
  .holographic-secondary-btn {
    width: 100%;
    max-width: 280px;
    height: 54px;
  }

  .holographic-visual img {
    height: 290px;
    border-radius: 14px;
  }

  .holographic-visual::before {
    width: 78%;
    height: 86%;
    right: 0;
  }
}

@media (max-width: 420px) {
  .holographic-badge {
    font-size: 12px;
    padding: 0 13px;
    text-align: center;
  }

  .holographic-content h2 {
    font-size: 40px;
  }

  .holographic-visual img {
    height: 240px;
  }
}

/* ==========================================================
   Hero Banner Video Popup
========================================================== */

.video-popup-ready {
  cursor: pointer;
}

.video-popup-ready::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), transparent 42%),
    linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 48%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-popup-ready:hover::after {
  opacity: 1;
}

.video-popup-play {
  z-index: 5;
}

.video-popup-open {
  overflow: hidden;
}

.video-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-popup-modal.active {
  display: flex;
}

.video-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 16, 0.82);
  backdrop-filter: blur(10px);
}

.video-popup-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 94vw);
  border-radius: 22px;
  overflow: hidden;
  background: #061f1e;
  border: 1px solid rgba(28, 202, 194, 0.25);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.45),
    0 0 45px rgba(28, 202, 194, 0.16);
  animation: videoPopupZoom 0.28s ease forwards;
}

.video-popup-content video {
  width: 100%;
  max-height: 82vh;
  display: block;
  background: #000000;
}

.video-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 79, 15, 0.95);
  color: #ffffff;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.video-popup-close:hover {
  background: #ffffff;
  color: #ff4f0f;
  transform: rotate(90deg);
}

@keyframes videoPopupZoom {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .video-popup-modal {
    padding: 14px;
  }

  .video-popup-content {
    width: 96vw;
    border-radius: 16px;
  }

  .video-popup-close {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
    font-size: 27px;
  }
}


/* ===== VIDEO POPUP FIX ===== */
.video-popup-ready {
  cursor: pointer;
}

.video-popup-open {
  overflow: hidden;
}

.video-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-popup-modal.active {
  display: flex !important;
}

.video-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 16, 0.86);
  backdrop-filter: blur(10px);
}

.video-popup-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 94vw);
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(28, 202, 194, 0.25);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
  animation: videoPopupZoom 0.28s ease forwards;
}

.video-popup-content video {
  width: 100%;
  max-height: 82vh;
  display: block;
  background: #000;
}

.video-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 79, 15, 0.95);
  color: #fff;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.video-popup-close:hover {
  background: #fff;
  color: #ff4f0f;
  transform: rotate(90deg);
}

@keyframes videoPopupZoom {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 767px) {
  .video-popup-modal {
    padding: 14px;
  }

  .video-popup-content {
    width: 96vw;
    border-radius: 16px;
  }

  .video-popup-close {
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
    font-size: 27px;
  }
}

/* ===== HERO WATCH IN ACTION VIDEO POPUP ===== */

.video-popup-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: min(1100px, 94vw);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000000;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
  animation: videoPopupZoom 0.28s ease forwards;
}

.video-modal video {
  width: 100%;
  max-height: 82vh;
  display: block;
  background: #000000;
}

.video-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ff4f0f;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.video-close:hover {
  background: #ffffff;
  color: #ff4f0f;
  transform: rotate(90deg);
}

@keyframes videoPopupZoom {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .video-modal {
    padding: 14px;
  }

  .video-modal-content {
    width: 96vw;
    border-radius: 14px;
  }

  .video-close {
    width: 38px;
    height: 38px;
    right: 10px;
    top: 10px;
    font-size: 26px;
  }
}



	.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; }
}
