/* OMTech Custom Styles */
/* Follows Bullion Pack design system: variables, spacing, typography, component patterns */

:root{
  --theme-color: #089981;
}

.main-header .logo-box figure.logo img,
.sticky-header .logo-box figure.logo img{
  max-height: 45px;
  width: auto;
}

.mobile-menu .nav-logo img{
  max-height: 40px;
  width: auto;
}


/** hero-section — full viewport height **/

.hero-section{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: calc(100vh - 70px);
  background: #ffffff;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section .pattern-layer{
  display: none;
}

.hero-dashed-grid{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section .auto-container{
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-section .content-column{
  position: relative;
}

.hero-section .hero-content{
  position: relative;
  display: block;
  padding-right: 40px;
}

.hero-section .hero-content h2{
  position: relative;
  display: block;
  font-size: 46px;
  line-height: 60px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 25px;
}

.hero-section .hero-content h2 span{
  color: var(--theme-color);
}

.hero-section .hero-content p{
  font-size: 18px;
  line-height: 32px;
  color: var(--text-color);
  margin-bottom: 40px;
}

.hero-section .btn-box{
  position: relative;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-section .btn-box .theme-btn{
  padding: 15px 35px;
}

.hero-section .btn-box .theme-btn.btn-two{
  border-color: var(--title-color);
  color: var(--title-color);
}

.hero-section .btn-box .theme-btn.btn-two:hover{
  background: var(--title-color);
  color: #fff;
}

.hero-section .image-column{
  position: relative;
  background: transparent;
}

.hero-section .hero-image{
  position: relative;
  display: block;
  margin-left: -60px;
  margin-right: -120px;
}

.hero-section .hero-image .image-box{
  position: relative;
  display: block;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.hero-section .hero-image .image-box img{
  width: 115%;
  max-width: none;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  border-radius: 20px;
}

.hero-section .hero-image .image-box:before{
  display: none;
}

.hero-image-mobile{
  display: none;
}

/** hero-section responsive **/

@media only screen and (max-width: 1200px){
  .hero-section .hero-content h2{
    font-size: 38px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 991px){
  .hero-section{
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 60px 0px;
    align-items: center;
  }

  .hero-section .hero-content{
    padding-right: 0px;
    margin-bottom: 0px;
    text-align: center;
  }

  .hero-section .hero-content h2{
    text-align: center;
  }

  .hero-section .hero-content p{
    text-align: center;
  }

  .hero-section .btn-box{
    justify-content: center;
  }

  .hero-section .image-column{
    display: none;
  }

  .hero-image-mobile{
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 30px;
  }

  .hero-image-mobile .image-box{
    display: block;
    text-align: center;
  }

  .hero-image-mobile .image-box img{
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
  }
}

@media only screen and (max-width: 767px){
  .hero-section{
    padding: 40px 0px;
  }

  .hero-section .hero-content h2{
    font-size: 28px;
    line-height: 38px;
  }

  .hero-section .hero-content p{
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .hero-image-mobile{
    margin-bottom: 24px;
  }

  .hero-section .btn-box{
    flex-direction: column;
    align-items: center;
  }

  .hero-section .btn-box .theme-btn{
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 480px){
  .hero-section .hero-content h2{
    font-size: 24px;
    line-height: 34px;
  }
}


/** services-section **/

.services-section{
  position: relative;
  overflow: hidden;
}

.services-section.bg-color-1{
  background: #f4f4f4;
}

/** primary service cards **/

.services-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 30px 30px 30px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}

.services-block-one .inner-box:hover{
  transform: translateY(-8px);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.12);
}

.services-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  margin-bottom: 14px;
}

.services-block-one .inner-box p{
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 26px;
}

.services-block-one .inner-box .link-box a{
  color: var(--theme-color);
  font-weight: 600;
  font-family: var(--title-font);
}

.services-block-one .inner-box .link-box a:hover{
  color: var(--title-color);
}

/** services-section responsive **/

@media only screen and (max-width: 767px){
  .services-section .sec-title h2{
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 480px){
  .services-section .sec-title h2{
    font-size: 24px;
    line-height: 34px;
  }
}


/** section spacing — match Bullion Pack standard (~112px) **/

.services-section.sec-pad{
  padding: 112px 0;
}

.platform-style-two{
  padding: 112px 0;
}

.about-section{
  padding: 112px 0;
  background: #eef6f4;
}

.about-section > .auto-container > .row{
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}

.about-section > .auto-container > .row > .crm-image-column,
.about-section > .auto-container > .row > .content-column{
  float: none;
}

.crm-image-column{
  position: relative;
  overflow: hidden;
}

.crm-image-box{
  position: relative;
}

.crm-image-box img{
  width: 140%;
  max-width: none;
  margin-left: -20%;
}

.brush-highlight{
  position: relative;
  display: inline;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 153, 129, 0.18) 30%, rgba(8, 153, 129, 0.18) 95%, transparent 95%);
  padding: 0 4px;
  font-weight: 600;
  color: var(--title-color);
}

.crm-features-row{
  margin-top: 60px;
}

.crm-features-row .single-item{
  margin-bottom: 10px;
}

.crm-features-row .single-item .static-content{
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border: 1px solid #eae8e5;
  border-radius: 5px;
  background: #fff;
}

.crm-features-row .single-item .static-content h4{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  width: 100%;
  white-space: nowrap;
}

.crm-features-row .single-item .static-content h4 .platform-check{
  font-size: 12px;
  color: #fff;
  background: var(--theme-color);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.crm-features-row .single-item .static-content h4 span{
  margin-left: auto;
  font-size: 14px;
  color: #a6a4a1;
}


/** pricing-section-v2 **/

.pricing-section-v2{
  padding: 100px 0;
  background: #fff;
}

.pricing-v2-sub{
  font-size: 17px;
  line-height: 28px;
  color: var(--text-color);
  margin-top: 15px;
}

.pricing-card{
  position: relative;
  background: #fff;
  border: 1px solid #eae8e5;
  border-radius: 8px;
  padding: 40px 35px;
  transition: all 500ms ease;
}

.pricing-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured{
  border-color: var(--theme-color);
  border-width: 2px;
  box-shadow: 0 10px 30px rgba(8, 153, 129, 0.12);
}

.pricing-card .popular-tag{
  position: absolute;
  top: -1px;
  right: 30px;
  background: var(--theme-color);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--title-font);
  padding: 5px 16px;
  border-radius: 0 0 5px 5px;
}

.pricing-header{
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eae8e5;
}

.pricing-header h4{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--text-color);
  margin-bottom: 10px;
}

.pricing-header .price{
  font-size: 48px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color);
  line-height: 1;
}

.pricing-header .price .currency{
  font-size: 28px;
  vertical-align: super;
  margin-right: 2px;
}

.pricing-header .price .period{
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.pricing-features{
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 26px;
  color: var(--title-color);
  padding: 8px 0;
  border-bottom: 1px solid #f4f4f4;
}

.pricing-features li:last-child{
  border-bottom: none;
}

.pricing-features li i.fa-check{
  color: var(--theme-color);
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-features li.disabled{
  color: #b0b0b0;
}

.pricing-features li.disabled i.fa-times{
  color: #d0d0d0;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-footer{
  text-align: center;
}

.pricing-footer .theme-btn{
  width: 100%;
  text-align: center;
}

.pricing-footer .theme-btn.btn-two{
  border-color: var(--title-color);
  color: var(--title-color);
}

.pricing-footer .theme-btn.btn-two:hover{
  background: var(--title-color);
  color: #fff;
}

/** pricing — desktop: 3-column grid, slider controls hidden **/

.pricing-v2-controls{
  display: none;
}

.pricing-v2-dots{
  display: none;
}

.pricing-v2-track-wrapper{
  overflow: visible;
}

.pricing-v2-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.pricing-v2-slide{
  min-width: 0;
}

/** pricing — mobile: single-card slider **/

@media only screen and (max-width: 991px){
  .pricing-section-v2{
    padding: 70px 0;
  }

  .pricing-v2-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
  }

  .pricing-v2-arrow{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: var(--title-color);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: opacity 200ms;
    flex-shrink: 0;
  }

  .pricing-v2-arrow:disabled{
    opacity: 0.2;
    cursor: default;
  }

  .pricing-v2-label{
    font-size: 18px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--title-color);
    min-width: 120px;
    text-align: center;
  }

  .pricing-v2-track-wrapper{
    overflow: hidden;
  }

  .pricing-v2-track{
    display: flex;
    grid-template-columns: none;
    gap: 0;
    transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(calc(var(--active) * -100%));
  }

  .pricing-v2-slide{
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 0 4px;
  }

  .pricing-v2-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .pricing-v2-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: background 200ms, transform 200ms;
  }

  .pricing-v2-dot.active{
    background: var(--theme-color);
    transform: scale(1.3);
  }
}

@media only screen and (max-width: 767px){
  .pricing-section-v2{
    padding: 50px 0;
  }

  .pricing-header .price{
    font-size: 38px;
  }

  .pricing-v2-arrow{
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .pricing-card{
    padding: 30px 24px;
  }
}


/** platform-style-two overrides **/

.platform-style-two .upper-box > .row{
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
}

.platform-style-two .upper-box > .row > .image-column,
.platform-style-two .upper-box > .row > .content-column{
  float: none;
}

.platform-style-two .image-column{
  position: relative;
  min-height: 300px;
}

.platform-style-two .image-box{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.platform-style-two .image-box img{
  width: 130%;
  max-width: none;
  margin-left: -15%;
}

.platform-style-two .upper-box{
  margin-bottom: 0;
}

.platform-style-two .content-box .sec-title{
  margin-bottom: 15px;
}

.platform-style-two .content-box .text-box{
  margin-bottom: 15px;
}

.platform-style-two .lower-box{
  margin-top: 80px;
}

.platform-style-two .single-item{
  margin-bottom: 10px;
}

.platform-style-two .single-item .static-content{
  display: flex;
  align-items: center;
  padding: 15px 20px;
}

.platform-style-two .single-item .static-content h4{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
}

.platform-style-two .single-item .static-content h4 .platform-check{
  font-size: 12px;
  color: #fff;
  background: var(--theme-color);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.platform-style-two .single-item .static-content h4 span{
  position: relative;
  top: auto;
  right: auto;
  margin-left: auto;
  font-size: 14px;
}


/** news-style-two (blog section) **/

.news-style-two.sec-pad{
  padding: 112px 0;
  background: #f4f4f4;
}

.news-style-two .news-block-one .inner-box .lower-content .author-box{
  padding-left: 0;
}

/** page-title overrides **/

.page-title{
  background: var(--secondary-color, #1b1e31);
  padding: 80px 0 60px;
  text-align: center;
}

.page-title .bg-layer{
  display: none;
}

.page-title p{
  margin-bottom: 20px;
}

.page-title .bread-crumb{
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.page-title .bread-crumb li{
  float: none;
}

/** blog-details **/

.blog-details .content-side:before{
  display: none;
}

.blog-details.sec-pad{
  padding: 80px 0 112px;
}

.blog-details-content{
  max-width: 800px;
  margin: 0 auto;
}

.blog-details-content .content-one{
  margin-top: 30px;
}

.blog-details-content .content-one h2{
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 15px;
  margin-top: 30px;
}

.blog-details-content .content-one h3{
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 12px;
  margin-top: 25px;
}

.blog-details-content .content-one p{
  margin-bottom: 18px;
  line-height: 28px;
}

.blog-details-content .content-one ul,
.blog-details-content .content-one ol{
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-details-content .content-one li{
  margin-bottom: 8px;
  line-height: 28px;
}

.blog-details-content .content-one strong{
  font-weight: 600;
  color: var(--title-color);
}

/** contact-style-two — icon overrides (Font Awesome instead of images) **/

.info-block-one .inner-box .icon-box i{
  font-size: 36px;
  color: var(--theme-color);
}

.info-block-one .inner-box .link-box a,
.info-block-one .inner-box .link-box button{
  color: var(--theme-color);
  font-weight: 600;
  font-family: var(--title-font);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
}

.info-block-one .inner-box .link-box a:hover,
.info-block-one .inner-box .link-box button:hover{
  color: var(--title-color);
}

/** contact form — country code picker **/

.contact-section .form-group input[type='tel']{
  position: relative;
  display: block;
  width: 100%;
  height: 72px;
  text-align: left;
  font-size: 17px;
  color: #6e6e6e;
  padding: 10px 30px 10px 30px;
  transition: all 500ms ease;
}

.phone-group{
  position: relative;
  display: flex !important;
  align-items: stretch;
}

.country-code-picker{
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-right: 1px solid #e8e8e8;
  background: #f9f9f9;
}

.picker-toggle{
  display: flex;
  align-items: center;
  gap: 6px;
  height: 72px;
  padding: 0 12px 0 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--text-font);
  font-weight: 500;
  color: #6e6e6e;
  white-space: nowrap;
}

.picker-toggle:focus{
  outline: none;
}

.picker-flag{
  font-size: 20px;
  line-height: 1;
}

.picker-code{
  font-size: 15px;
}

.picker-arrow{
  font-size: 10px;
  margin-left: 2px;
  opacity: 0.6;
}

.picker-dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 320px;
  max-height: 300px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.picker-search{
  padding: 6px 8px;
  border-bottom: 1px solid #f0f0f0;
}

.picker-search input{
  width: 100%;
  height: 30px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--text-font);
  color: #6e6e6e;
  outline: none;
}

.picker-search input:focus{
  border-color: var(--theme-color);
}

.picker-list{
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

.picker-list li{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--text-font);
  color: #6e6e6e;
  transition: background 150ms ease;
}

.picker-list li:hover{
  background: #f4f4f4;
}

.picker-list li.active{
  background: rgba(8, 153, 129, 0.08);
  color: var(--theme-color);
}

.picker-list li .picker-flag{
  font-size: 18px;
}

.picker-list li .picker-country{
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.picker-list li .picker-dial{
  font-size: 13px;
  color: #999;
  flex-shrink: 0;
}

.phone-group input[type="tel"]{
  flex: 1;
  min-width: 0;
  border: none !important;
  padding-left: 20px !important;
}

.contact-section.alternat-2 .right-content,
.contact-section.alternat-2 .right-content .form-group{
  height: 100%;
}

.contact-section.alternat-2 .form-group textarea{
  height: 100%;
  min-height: 293px;
}

.contact-section.alternat-2 .row{
  display: flex !important;
  flex-wrap: wrap;
}

.contact-section.alternat-2 .left-column,
.contact-section.alternat-2 .right-column{
  float: none;
  display: flex;
  flex-direction: column;
}

.contact-section.alternat-2 .message-btn .theme-btn{
  padding: 15px 50px;
}

@media only screen and (max-width: 767px){
  .picker-toggle{
    padding: 0 8px 0 12px;
  }

  .picker-code{
    font-size: 13px;
  }

  .picker-dropdown{
    width: 280px;
  }
}

/** landing-pages solution page **/

.lp-hero-section{
  background: #fff;
}

.lp-hero-section .crm-image-column{
  overflow: visible;
}

.lp-hero-section .crm-image-column{
  display: flex;
  align-items: stretch;
}

.lp-hero-section .crm-image-box{
  width: 100%;
  height: 100%;
}

.lp-hero-section .crm-image-box img{
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: 0;
  border: 1px solid #e2e3e6;
  border-radius: 20px;
}

.lp-hero-section .content-box .btn-box{
  margin-top: 30px;
}

.lp-hero-section .content-box .btn-box .theme-btn{
  padding: 15px 40px;
}

.lp-subtitle{
  font-size: 17px;
  line-height: 28px;
  color: var(--text-color);
  margin-top: 15px;
}

.lp-icon-box{
  margin-bottom: 18px;
}

.lp-icon-box i{
  font-size: 30px;
  color: var(--title-color);
}

/* working-section overrides — no icons, grow on hover */

.working-section .working-block-one .inner-box{
  transition: all 500ms ease;
}

.working-section .working-block-one .inner-box .static-content{
  padding-top: 70px;
}

.working-section .working-block-one .inner-box:hover{
  width: 340px;
  height: 340px;
  margin: -24px;
  z-index: 2;
}

.working-section .working-block-one .inner-box .overlay-content{
  padding: 55px 35px 0;
}

.working-section .working-block-one .inner-box .overlay-content p{
  font-size: 14px;
  line-height: 22px;
}

/* use-cases section — content-three / reason-for-choose pattern */


.lp-usecases-section .content-three .single-item{
  position: relative;
  display: block;
  max-width: 420px;
  margin: 0 auto 35px;
  text-align: center;
}

.lp-usecases-section .content-three .single-item .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border: 1px solid #e2e3e6;
  border-radius: 50%;
  text-align: center;
  margin: 0 auto 23px;
  transition: all 500ms ease;
}

.lp-usecases-section .content-three .single-item:hover .icon-box{
  border-color: var(--theme-color);
}

.lp-usecases-section .content-three .single-item .icon-box .shape{
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 65px;
  background-repeat: no-repeat;
  z-index: -1;
}

.lp-usecases-section .content-three .single-item .icon-box .icon{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lp-usecases-section .content-three .single-item .icon-box .icon i{
  font-size: 28px;
  color: var(--theme-color);
}

.lp-usecases-section .content-three .single-item .title-text h3{
  position: relative;
  display: inline-block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  padding-right: 30px;
  margin-bottom: 9px;
}

.lp-usecases-section .content-three .single-item .title-text h3 span{
  position: absolute;
  top: -13px;
  right: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
}

.lp-usecases-section .content-three .single-item p{
  font-size: 15px;
  line-height: 26px;
  color: var(--text-color);
}

@media only screen and (max-width: 767px){
  .lp-usecases-section .content-three .text-box h3{
    font-size: 24px;
    line-height: 34px;
  }
}

/* integration section tweaks */

.lp-integration-section{
  padding: 112px 0;
}

.lp-integration-section .single-item .static-content h4{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.platform-check-icon{
  font-size: 14px;
  color: #fff;
  background: var(--theme-color);
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* why choose us / reasons */

.lp-chooseus-section{
  background: #fff;
}

.lp-chooseus-section .row{
  display: flex !important;
  flex-wrap: wrap;
}

.lp-chooseus-section .lp-reason-block{
  float: none;
  display: flex;
  margin-bottom: 30px;
}

.lp-reason-inner{
  position: relative;
  padding: 40px 30px;
  background: #fff;
  border: 1px solid #eae8e5;
  border-radius: 8px;
  text-align: center;
  height: 100%;
  transition: all 500ms ease;
}

.lp-reason-inner:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--theme-color);
}

.lp-reason-icon{
  margin: 0 auto 20px;
}

.lp-reason-icon i{
  font-size: 32px;
  color: var(--title-color);
}

.lp-reason-inner h4{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 14px;
}

.lp-reason-inner p{
  font-size: 15px;
  line-height: 26px;
  color: var(--text-color);
}

/* CTA section */

.lp-cta-section{
  padding: 0 0 112px;
  text-align: center;
}

.lp-cta-inner{
  max-width: 100%;
  margin: 0 auto;
  background: var(--secondary-color, #1b1e31);
  border-radius: 12px;
  padding: 80px 60px;
}

.lp-cta-inner h2{
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  font-family: var(--title-font);
  color: #fff;
  margin-bottom: 18px;
}

.lp-cta-inner h2 span{
  color: var(--theme-color);
}

.lp-cta-inner p{
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
}

.lp-cta-inner .btn-box{
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-cta-inner .btn-box .theme-btn{
  padding: 15px 40px;
}

.lp-cta-inner .btn-box .theme-btn.btn-two{
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.lp-cta-inner .btn-box .theme-btn.btn-two:hover{
  background: #fff;
  border-color: #fff;
  color: var(--title-color);
}

/* landing page responsive */

@media only screen and (max-width: 991px){
  .lp-cta-inner h2{
    font-size: 30px;
    line-height: 40px;
  }

  .lp-integration-section{
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px){
  .lp-cta-inner{
    padding: 50px 25px;
    border-radius: 8px;
  }

  .lp-cta-inner h2{
    font-size: 26px;
    line-height: 36px;
  }

  .lp-process-inner{
    padding: 30px 15px 20px;
  }
}

/** blog responsive **/

@media only screen and (max-width: 991px){
  .page-title h1{
    font-size: 36px;
    line-height: 46px;
  }
}

@media only screen and (max-width: 767px){
  .page-title h1{
    font-size: 28px;
    line-height: 38px;
  }

  .page-title{
    padding: 100px 0 25px;
  }

  .news-style-two.sec-pad{
    padding: 80px 0;
  }

  .blog-details.sec-pad{
    padding: 60px 0 80px;
  }
}


/** platform page — trade execution section **/

.pl-execution{
  padding-top: 100px;
  padding-bottom: 80px;
}

.pl-execution .sec-title{
  margin-bottom: 50px;
}

.pl-execution-desc{
  max-width: 720px;
  margin: 10px auto 0;
  color: #6e6e6e;
  font-size: 16px;
  line-height: 26px;
}

.pl-execution-cta{
  margin-top: 15px;
}


/** platform page — chooseus grid (replaces owl-carousel) **/

.pl-chooseus .pl-chooseus-row{
  display: flex !important;
  flex-wrap: wrap;
}

.pl-chooseus .chooseus-block-one{
  margin-bottom: 30px;
}

.pl-chooseus .chooseus-block-one .inner-box{
  padding: 40px 30px 35px;
}

.pl-chooseus .chooseus-block-one .inner-box .icon-box{
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(8, 153, 129, 0.12);
  margin-bottom: 22px;
}

.pl-chooseus .chooseus-block-one .inner-box .icon-box i{
  font-size: 26px;
  color: var(--theme-color);
}

.pl-chooseus .chooseus-block-one .inner-box .shape .shape-2,
.pl-chooseus .chooseus-block-one .inner-box .shape .shape-3{
  display: none;
}

@media only screen and (max-width: 991px){
  .pl-chooseus .pl-chooseus-row > div{
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media only screen and (max-width: 767px){
  .pl-chooseus .pl-chooseus-row > div{
    max-width: 100%;
    flex: 0 0 100%;
  }
}


/** website page — hero highlight cards **/

.ws-hero-cards{
  margin-top: 30px;
}

.ws-hero-card{
  position: relative;
  padding: 25px 20px;
  border: 1px solid #eae8e5;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  transition: all 500ms ease;
  margin-bottom: 15px;
}

.ws-hero-card:hover{
  border-color: var(--theme-color);
  transform: translateY(-4px);
}

.ws-hero-card-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(8, 153, 129, 0.12);
  margin-bottom: 14px;
}

.ws-hero-card-icon i{
  font-size: 22px;
  color: var(--theme-color);
}

.ws-hero-card h4{
  font-size: 17px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 6px;
}

.ws-hero-card p{
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color);
  margin: 0;
}


/** platform page — platform tools feature cards **/

section.pl-tools{
  padding: 100px 0 70px;
}

section.pl-tools .feature-block{
  margin-bottom: 30px;
}

section.pl-tools .feature-block-one .inner-box{
  min-height: 300px;
  border-color: #e4e4e4;
}

section.pl-tools .feature-block-one .inner-box:before{
  background: -webkit-linear-gradient(-90deg, var(--theme-color) 0%, #06c78d 100%) !important;
  background: linear-gradient(180deg, var(--theme-color) 0%, #06c78d 100%) !important;
}

section.pl-tools .feature-block-one .inner-box .icon-box{
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.pl-tools .feature-block-one .inner-box .icon-box i{
  font-size: 28px;
  color: var(--theme-color);
}

section.pl-tools .feature-block-one .inner-box:hover .icon-box i{
  color: var(--theme-color);
}

section.pl-tools .feature-block-one .inner-box h6{
  color: var(--theme-color);
  letter-spacing: 1px;
}

section.pl-tools .feature-block-one .inner-box h3{
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

section.pl-tools .feature-block-one .inner-box p{
  font-size: 15px;
  line-height: 24px;
}


/** backoffice page — trading-section card adaptation **/

.bo-modules .trading-block{
  margin-bottom: 30px;
}

.bo-modules .trading-block-one .inner-box .text{
  padding: 33px 40px 33px 40px;
}

.bo-modules .trading-block-one .inner-box .text:before{
  display: none;
}

.bo-modules .trading-block-one .inner-box .link-box{
  position: relative;
  right: auto;
  bottom: auto;
  writing-mode: horizontal-tb;
  transform: none;
  padding: 0 40px 25px;
}

.bo-modules .trading-block-one .inner-box .link-box a.theme-btn{
  padding: 10px 28px;
  font-size: 14px;
}

.bo-modules .trading-block-one .inner-box .link-box a.theme-btn span{
  position: relative;
  padding: 0;
}

.bo-modules .trading-block-one .inner-box .link-box a.theme-btn span:before{
  display: none;
}


/** backoffice page — feature-section overrides **/

section.bo-features{
  padding: 100px 0 70px;
}

section.bo-features .feature-block{
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

section.bo-features .feature-block-one .inner-box{
  min-height: 300px;
  border-color: #e4e4e4;
}

section.bo-features .feature-block-one .inner-box:before{
  background: -webkit-linear-gradient(-90deg, var(--theme-color) 0%, #06c78d 100%) !important;
  background: linear-gradient(180deg, var(--theme-color) 0%, #06c78d 100%) !important;
}

section.bo-features .feature-block-one .inner-box .icon-box{
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 26px;
  color: var(--theme-color);
}

section.bo-features .feature-block-one .inner-box:hover .icon-box{
  color: var(--theme-color);
}

section.bo-features .feature-block-one .inner-box h6{
  color: var(--theme-color);
  letter-spacing: 1px;
}

section.bo-features .feature-block-one .inner-box h3{
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

section.bo-features .feature-block-one .inner-box p{
  font-size: 15px;
  line-height: 24px;
}

section.bo-features .bo-features-cta{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding: 30px 40px;
  background: var(--secondary-color);
  border-radius: 8px;
}

section.bo-features .bo-features-cta h4{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

section.bo-features .bo-features-cta .theme-btn.btn-one{
  flex-shrink: 0;
}

/** footer contact list **/

.footer-contact-list{
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-contact-list li{
  margin-bottom: 10px;
}

.footer-contact-list li a{
  color: #a0a0a0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 300ms ease;
}

.footer-contact-list li a:hover{
  color: var(--theme-color);
}

.footer-contact-list li a i{
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}


