  /* heading sizes css starts */

  .banercc h1.title {
      font-size: 52px;
      line-height: 66px;
  }

  @media (max-width: 576px) {
      .banercc h1.title {
          font-size: 27px;
      }
  }

  @media (min-width: 576px) and (max-width: 767px) {
      .banercc h1.title {
          font-size: 27px;
      }

      .recp-num {
          font-size: 45px !important;
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .banercch1.title {
          font-size: 34px;
      }
  }

  @media (min-width: 992px) and (max-width: 1199px) {
      .banercch1.title {
          font-size: 42px;
      }
  }

  h2.mtitle2 {
      font-size: 44px;
  }

  @media (max-width: 576px) {
      h2.mtitle2 {
          font-size: 25px;
      }
  }

  @media (min-width: 576px) and (max-width: 767px) {
      h2.mtitle2 {
          font-size: 25px;
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      h2.mtitle2 {
          font-size: 32px;
      }
  }

  @media (min-width: 992px) and (max-width: 1199px) {
      h2.mtitle2 {
          font-size: 38px;
      }
  }

  /* heading sizes css ends */

  /* integration css starts */
  .integrations-marquee-card {
      width: 100px;
      height: 100px;
  }

  /* integration css ends */

  /* banner chat animation starts  */

  .img-chat-wrapper {
      position: relative;
      display: inline-block;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
      text-align: center;
  }

  .chat-overlay {
      position: absolute;
      bottom: 60px;
      left: 16px;
      /* right: 16px; */
      display: flex;
      gap: 8px;
      flex-direction: column;
  }

  .chat-bubble {
      background: linear-gradient(33deg, rgb(238 117 29 / 72%), rgb(30 21 17 / 54%));
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 10px;
      padding: 10px 14px;
      color: #fff;
      font-size: 13px;
      line-height: 1.5;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      box-sizing: border-box;
      width: 100%;
  }

  .chat-bubble.visible {
      opacity: 1;
      transform: translateY(0);
  }

  .bubble-label {
      font-size: 14px;
      color: #fff;
      margin-bottom: 3px;
      font-weight: 300;
  }

  .bubble-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 6px;
  }

  .bubble-key {
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
  }

  .badge {
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 20px;
      font-weight: 500;
      white-space: nowrap;
  }

  .badge-green {
      background: rgba(29, 158, 117, 0.25);
      color: #5dcaa5;
  }

  .badge-blue {
      background: rgba(55, 138, 221, 0.20);
      color: #85b7eb;
  }

  .badge-orange {
      background: rgba(239, 159, 39, 0.20);
      color: #ef9f27;
  }

  .badge-red {
      background: rgba(226, 75, 74, 0.20);
      color: #f09595;
  }

  /* banner chat animation ends */

  /* heading animation starts */
  .vg-heading-reveal .vg-heading-word {
      display: inline-flex;
      flex-wrap: nowrap;
      white-space: nowrap;
      vertical-align: baseline;
  }

  .vg-heading-reveal .vg-heading-char {
      display: inline-flex;
      overflow: visible;
      vertical-align: baseline;
      margin-right: -0.035em;
  }

  .vg-heading-reveal .vg-heading-char:last-child {
      margin-right: 0;
  }

  .vg-heading-reveal .vg-heading-space {
      display: inline;
      width: auto;
      flex: 0 1 auto;
      white-space: normal;
  }

  .vg-heading-reveal .vg-heading-char-inner {
      display: block;
      opacity: 0;
      transform: translate3d(-0.08em, 0, 0);
      will-change: transform, opacity;
      backface-visibility: hidden;
  }

  .vg-heading-reveal.is-visible .vg-heading-char-inner {
      animation: vg-heading-char-reveal 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--char-index, 0) * 18ms);
  }

  @keyframes vg-heading-char-reveal {
      0% {
          opacity: 0;
          transform: translate3d(-0.08em, 0, 0);
      }

      100% {
          opacity: 1;
          transform: translate3d(0, 0, 0);
      }
  }

  /* heading animation ends */

  /* table for support page starts */
  .support-compare {
      background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  }

  .support-compare__intro p {
      /* color: #4d5562;
      font-size: 17px; */
      line-height: 1.8;
      margin: 0;
  }

  .support-compare__table-wrap {
      border: 1px solid #ece7df;
      border-radius: 28px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 18px 40px rgba(16, 39, 70, 0.08);
  }

  .support-compare__table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      table-layout: fixed;
  }

  .support-compare__table th,
  .support-compare__table td {
      padding: 22px 24px;
      border-bottom: 1px solid #ece7df;
      vertical-align: middle;
      text-align: left;
  }

  .support-compare__table tbody tr:last-child td {
      border-bottom: 0;
  }

  .support-compare__metric {
      /* width: 34%; */
      font-weight: 600;
      color: #1f2937;
      background: #fff;
  }
  .support-compare__metric svg{
    vertical-align: top;
    margin-right: 10px;
    float: left;
    margin-right: 10px !important;
    margin-top: 2px;
  }
  .support-compare__head th {
      font-size: 15px;
      font-weight: 700;
      color: #111827;
  }

  .support-compare__head th:first-child {
      background: #fff;
  }

  .support-compare__head th:nth-child(2),
  .support-compare__table td:nth-child(2) {
      background: linear-gradient(180deg, #ecf9e9 0%, #f7fcf5 100%);
  }

  .support-compare__head th:nth-child(3),
  .support-compare__table td:nth-child(3) {
      /* background: linear-gradient(180deg, #fdeaea 0%, #fff7f7 100%); */
  }
.omni-ind.support-compare .support-compare__head th:nth-child(3), .omni-ind.support-compare .support-compare__table td:nth-child(3){
    border-left: 1px solid rgba(255, 255, 255, .12) !important;
}
  .support-compare__brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
  }

  .support-compare__badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      flex: 0 0 22px;
  }

  .support-compare__badge--yes {
      background: #2f9e67;
  }

  .support-compare__badge--no {
      background: #2b2b2b;
  }

  .support-compare__cell {
      color: #253041;
      font-weight: 500;
  }

  .support-compare__cell strong {
      color: #111827;
      font-weight: 700;
  }

  .barry-solution-compact .support-compare__table-wrap {
      width: min(100%, 900px);
      margin: 0 auto;
  }

  .barry-solution-compact .support-compare__table {
      table-layout: auto;
  }

  @media (max-width: 991px) {

      .ai-agents-how-it-works .step-heading {
          font-size: 20px !important;
          color: #000053 !important;
      }

      .ai-agents-how-it-works .step-number-wrap {
          width: 40px !important;
          height: 40px !important;
      }

      .ai-agents-how-it-works .step-item::before {
          left: 20px !important;
      }

      .ai-agents-how-it-works .step-item{
            padding: 36px 0 0px 0px !important;
      }

      .support-compare__table th,
      .support-compare__table td {
          padding: 18px 16px;
      }

      .support-compare__metric {
          /* width: 30%; */
      }

      .solutions-modern-businesses-header {
          display: flex;
          align-items: flex-start !important;
      }
  }

  @media (max-width: 767px) {
      .aichatagent-banner .hero-checks {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          font-size: 16px;
      }

      .receptionist-feature {
          padding: 0px !important;
          gap: 8px !important;
      }

      .receptionist-feature-text {
          font-size: 20px !important;
      }

      .receptionist-feature-icon {
          min-width: 30px !important;
          min-height: 30px !important;
      }

      .receptionist-features {
          padding: 10px !important;
          margin-bottom: 30px !important;
      }

      .res-h4 {
          font-size: 19px;
      }

      .support-compare__table-wrap {
          border-radius: 22px;
          border: 0;
          box-shadow: none;
          background: transparent;
      }

      .support-compare__table,
      .support-compare__table tbody,
      .support-compare__table tr,
      .support-compare__table td {
          display: block;
          width: 100%;
      }

      .support-compare__table thead {
          display: none;
      }

      .support-compare__table tr {
          margin-bottom: 18px;
          border: 1px solid #ece7df;
          border-radius: 22px;
          overflow: hidden;
          background: #fff;
          box-shadow: 0 12px 28px rgba(16, 39, 70, 0.08);
      }

      .support-compare__table td {
          border-bottom: 1px solid #ece7df;
      }

      .support-compare__table td:last-child {
          border-bottom: 0;
      }

      .support-compare__metric {
          width: 100%;
          background: #fff7f0;
          font-size: 17px;
      }

      .support-compare__table td:nth-child(2),
      .support-compare__table td:nth-child(3) {
          padding-top: 14px;
      }

      .support-compare__table td:nth-child(2)::before,
      .support-compare__table td:nth-child(3)::before {
          content: attr(data-label);
          display: block;
          margin-bottom: 8px;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.08em;
          text-transform: uppercase;
      }

      .support-compare__table td:nth-child(2)::before {
          color: #237a4d;
      }

      .support-compare__table td:nth-child(3)::before {
          color: #b23a48;
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .receptionist-feature {
          padding: 0px !important;
          gap: 8px !important;
      }

      .receptionist-feature-text {
          font-size: 20px !important;
      }

      .receptionist-feature-icon {
          min-width: 30px !important;
          min-height: 30px !important;
      }

      .receptionist-features {
          grid-template-columns: repeat(3, 1fr) !important;
          padding: 10px !important;
          margin-bottom: 0px !important;
      }
  }

  .support-compare__cell small {
      font-weight: 300;
  }

  /* table for support page ends */


  /* tabs changing section */

  .nav-tabs {
      border-bottom: none;
  }

  .nav-tabs .fs-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1280px;
      margin: 0 auto;
      align-items: center;
  }

  @media (max-width:991px) {
      .nav-tabs .fs-section {
          display: block;
      }
  }

  .nav-tabs .fs-left {
      display: flex;
      flex-direction: column;
  }

  .nav-tabs .fs-tab {
      border-bottom: 1px solid #ccc;
      padding: 15px 0 15px 0;
      cursor: pointer;
      position: relative;
  }

  .nav-tabs .fs-tab h4 {
      font-size: 18px;
  }

  .nav-tabs .fs-tab__progress-bar {
      position: absolute;
      top: -1px;
      left: 0;
      height: 2px;
      width: 0%;
      background: #ee751d;
      transition: none;
  }

  /* .nav-tabs .fs-tab>h3 {
            font-size: 28px;
            font-weight: 600;
            color: #111;
            margin-bottom: 24px;
            transition: color 0.2s;
        } */

  .nav-tabs .fs-tab--active>h4 {
      /* color: #ee751d; */
      margin-bottom: 12px;
      /* background: linear-gradient(106deg, #ee751d 10%, #000053 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
      color: #ee751d;
  }

  .nav-tabs .fs-tab__body {
      display: none;
      padding-bottom: 0px;
  }

  .nav-tabs .fs-tab--active .fs-tab__body {
      display: block;
      padding-bottom: 0px;
  }

  .nav-tabs .fs-tab__body p {
      font-size: 0.95rem;
      line-height: 1.65;
      color: #444;
  }

  .nav-tabs .fs-right {
      position: relative;
  }

  .nav-tabs .fs-panel-wrapper {
      position: relative;
      width: 100%;
      height: 520px;
      border-radius: 24px;
      overflow: hidden;
  }

  .nav-tabs .fs-panel {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.5s ease;
      pointer-events: none;
  }

  .nav-tabs .fs-panel--active {
      opacity: 1;
      pointer-events: auto;
  }

  .nav-tabs .fs-panel img {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 24px;
  }

  /** tabs changing section ends **/


  /** linear gradient text css **/
  .recp-num {
      /* background-image: linear-gradient(113deg, #000053, #000053, #00005373, #f08717, #000053, #f19213);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 0 transparent; */
      color: #ee751d;
      font-size: 60px;
      font-weight: 800;
  }



  /* comparison  starts*/

  .emp-compare .ai-emp {
      width: 100%;
      background: rgb(238 117 29 / 8%);
      border: 1px solid rgba(238, 117, 29, 0.3);
      border-radius: 16px;
      padding: 35px;
      box-shadow: 0 4px 20px rgb(0 0 0 / .1);
  }

  .emp-compare .ai-emp.human {
      border: 1px solid #dadfff;
      background: #edeffead;
  }

  .emp-compare .vitelul {
      padding-left: 0;
      list-style: none;
  }

  .emp-compare .vitelul li {
      display: flex;
      justify-content: flex-start;
      gap: 12px;
      margin-bottom: 14px;
  }

  .emp-compare .vitelul li div {
      min-width: 20px;
      /* FIX: keeps all icons aligned */
  }

  .emp-compare .vitelul li svg {
      width: 16px;
      height: 16px;
      margin-top: 4px;
  }

  .emp-compare .vitelul li p {
      margin: 0;
  }

  /* comparison  ends*/



  /** how it works start **/
  /* work process section */
  .sapc {
      position: relative;
  }

  /* ── Header ── */
  .sapc__header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 72px;
      position: relative;
      z-index: 1;
  }

  .sapc__header-left {
      flex: 1;
  }

  .sapc__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ee751d;
      margin-bottom: 16px;
      opacity: 0;
      transform: translateX(-20px);
      animation: sapc-slide-right 0.6s 0.1s ease forwards;
  }

  .sapc__eyebrow-line {
      display: inline-block;
      width: 28px;
      height: 2px;
      background: #ee751d;
      border-radius: 2px;
  }

  .sapc__heading-accent {
      color: #ee751d;
  }

  .sapc__header-right {
      flex-shrink: 0;
      max-width: 340px;
      text-align: right;
      opacity: 0;
      transform: translateY(16px);
      animation: sapc-fade-up 0.7s 0.4s ease forwards;
  }

  /* ── Rows ── */
  .sapc__rows {
      display: flex;
      flex-direction: column;
      gap: 60px;
      position: relative;
      z-index: 1;
  }

  .sapc__row-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, #e0e3f0 20%, #e0e3f0 80%, transparent);
  }

  /* ── Steps grid ── */
  .sapc__steps {
      display: grid;
      gap: 60px;
      grid-template-columns: repeat(3, 1fr);
  }

  /* ── Single step ── */
  .sapc__step {
      padding-right: 36px;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .sapc__step.sapc--visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* ── Number pill ── */
  .sapc__step-num {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
  }

  .sapc__step-pill {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #000053;
      color: #ffffff;
      font-size: 17px;
      font-weight: 600;
      flex-shrink: 0;
      transition: background 0.25s, transform 0.25s;
      z-index: 0;
  }

  /* .sapc__step-pill::before {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1.5px solid rgba(238, 117, 29, 0);
            transition: border-color 0.3s, transform 0.3s;
            transform: scale(0.8);
        } */

  .sapc__step:hover .sapc__step-pill {
      background: #ee751d;
      transform: scale(1.12);
  }

  /* .sapc__step:hover .sapc__step-pill::before {
            border-color: rgba(238, 117, 29, 0.45);
            transform: scale(1);
        } */

  /* .sapc__step-pill::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: rgba(238, 117, 29, 0.25);
            opacity: 0;
        }

        .sapc__step:hover .sapc__step-pill::after {
            animation: sapc-pulse-ring 1s ease-out infinite;
        } */

  @keyframes sapc-pulse-ring {
      0% {
          transform: scale(1);
          opacity: 0.5;
      }

      100% {
          transform: scale(2.4);
          opacity: 0;
      }
  }

  .sapc__step-title {
      font-size: 18px;
      line-height: 28px;
      color: #000053;
      font-weight: 600;
      margin-bottom: 0px;
  }

  /* ══════════════════════════════════════
   LINE ANIMATIONS
══════════════════════════════════════ */

  .sapc__step-line {
      position: relative;
      display: flex;
      align-items: center;
      margin: 14px 0 20px;
      height: 12px;
      /* enough room for dot traveler */
  }

  /* 1. Solid navy segment (draws left→right on scroll) */
  .sapc__line-solid {
      height: 1.5px;
      width: 40px;
      flex-shrink: 0;
      background: #000053;
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
  }

  .sapc__step.sapc--visible .sapc__line-solid {
      transform: scaleX(1);
  }

  /* Shimmer sweep on solid line after draw */
  .sapc__line-solid::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(238, 117, 29, 0.7), transparent);
      opacity: 0;
  }

  .sapc__step.sapc--visible .sapc__line-solid::after {
      animation: sapc-line-shimmer 1.5s 0.6s ease forwards;
  }

  @keyframes sapc-line-shimmer {
      0% {
          left: -60%;
          opacity: 1;
      }

      100% {
          left: 120%;
          opacity: 1;
      }
  }

  /* 2. Dotted segment (draws after solid) */
  .sapc__line-dot {
      height: 1.5px;
      flex: 1;
      background: repeating-linear-gradient(to right,
              #a0a3c0 0px, #a0a3c0 5px,
              transparent 5px, transparent 11px);
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 0.7s 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
  }

  .sapc__step.sapc--visible .sapc__line-dot {
      transform: scaleX(1);
  }

  /* 3. Arrowhead — bounces in */
  .sapc__arrow {
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 9px solid #000053;
      flex-shrink: 0;
      opacity: 0;
      transform: scaleX(0.4);
      transition: opacity 0.2s 0.9s, transform 0.35s 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .sapc__step.sapc--visible .sapc__arrow {
      opacity: 1;
      transform: scaleX(1);
  }


  /* Last step — remove dot/arrow */
  .sapc__step--last .sapc__line-dot,
  .sapc__step--last .sapc__arrow {
      display: none;
  }

  .sapc__step--last .sapc__line-solid {
      width: 60px;
  }

  .sapc__step--last {
      padding-right: 0;
  }

  /* Ghost placeholder */
  .sapc__step--ghost {
      visibility: hidden;
      pointer-events: none;
  }

  /* ── Step icon ── */
  .sapc__step-icon {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      background: rgba(238, 117, 29, 0.08);
      border: 1px solid rgba(238, 117, 29, 0.16);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 12px;
      transition: background 0.25s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
  }

  .sapc__step:hover .sapc__step-icon {
      background: rgba(238, 117, 29, 0.15);
      transform: scale(1.12) rotate(-6deg);
      box-shadow: 0 6px 18px rgba(238, 117, 29, 0.2);
  }

  /* ── Step description ── */
  .sapc__step-desc {
      font-size: 15px;
  }

  /* ── Entrance animations ── */
  @keyframes sapc-fade-up {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes sapc-slide-right {
      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  /* ── Number pill shimmer after draw ── */
  .sapc__step.sapc--visible .sapc__step-pill {
      animation: sapc-pill-pop 0.4s ease forwards;
  }

  @keyframes sapc-pill-pop {
      0% {
          box-shadow: none;
      }

      40% {
          box-shadow: 0 0 0 5px rgba(238, 117, 29, 0.2);
          background: #ee751d;
      }

      100% {
          box-shadow: none;
          background: #000053;
      }
  }

  /* ── Responsive ── */
  @media (max-width: 960px) {
      .sapc {
          padding: 60px 32px 80px;
      }

      .sapc__header {
          flex-direction: column;
      }

      .sapc__header-right {
          text-align: left;
          max-width: 100%;
      }

      .sapc__steps {
          grid-template-columns: repeat(2, 1fr);
      }

      .sapc__step--ghost {
          display: none;
      }
  }

  @media (max-width: 560px) {
      .sapc {
          padding: 48px 0px 60px;
      }

      .sapc__steps {
          grid-template-columns: 1fr;
          gap: 10px;
      }

      .sapc__step {
          padding-right: 0;
          /* border-left: 3px solid #ee751d; */
          padding-left: 0px;
          margin-bottom: 10px;
      }

      .sapc__step-line {
          display: none;
      }

      .sapc__step--ghost {
          display: none;
      }
  }

  @media (max-width: 768px) {
      .sapc__rows {
          gap: 10px;
      }
  }

  /** how it works end **/

  /** features tick boxes **/
  /* seo and smm */
  .whycho-seosmm {
      position: relative;
      background:
          radial-gradient(circle at top left, rgba(238, 117, 29, 0.14), transparent 28%),
          radial-gradient(circle at bottom right, rgba(0, 0, 83, 0.08), transparent 32%),
          linear-gradient(180deg, #fffaf5 0%, #ffffff 52%, #f8fbff 100%);
  }


  .whychoose-ai__heading h2 {
      margin-bottom: 12px;
  }

  .whychoose-ai__heading p {
      margin: 0;
      font-size: 16px;
      line-height: 1.75;
      /* color: #5f6476; */
  }

  /* .whychoose-ai__card {
            padding: 22px;
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(0, 0, 83, 0.08);
            box-shadow: 0 24px 60px rgba(0, 0, 83, 0.08);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        } */

  .whychoose-ai__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: 32px;
      align-items: center;
  }

  /* .whychoose-ai__media {
            position: relative;
            min-height: 360px;
            border-radius: 26px;
            overflow: hidden;
            background: linear-gradient(135deg, #fff3e6 0%, #eef4ff 100%);
        } */

  .whychoose-ai__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .whychoose-ai__content {
      padding: 8px 6px 8px 0;
  }

  .whychoose-ai__content h3 {
      margin: 0 0 18px;
      font-size: 30px;
      color: #000053;
  }

  .whychoose-ai__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
      height: 100%;
  }

  .whychoose-ai__list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 16px;
      background: #f7f8fb;
      border: 1px solid rgba(0, 0, 83, 0.06);
  }

  .whychoose-ai__icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(238, 117, 29, 0.14);
      color: #ee751d;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      margin-top: 1px;
  }

  .whychoose-ai__text {
      font-size: 16px;
      line-height: 1.55;
      color: #202743;
      font-weight: 500;
  }

  @media (max-width: 991px) {
      .whychoose-ai__grid {
          grid-template-columns: 1fr;
      }

      .whychoose-ai__media {
          min-height: 300px;
      }

      .whychoose-ai__content {
          padding: 0;
      }

      .whycho-seosmm .wcs-grid {
          grid-template-columns: 1fr;
          grid-template-rows: auto;
          gap: 20px;
      }

      .wcs-heading {
          margin-bottom: 14px !important;
      }

      .wcs-col {
          gap: 20px !important;
      }

      .wcs-center {
          grid-row: auto;
          grid-column: auto;
          order: -1;
      }

      .whycho-seosmm .wcs-bottom-row {
          grid-column: 1;
          margin-top: 0;
      }

      .wcs-bottom-card {
          max-width: 100% !important;
      }
  }

  @media (max-width: 575px) {
      .recp-num {
          font-size: 40px;
      }

      .whychoose-ai__card {
          /* padding: 16px; */
          /* border-radius: 24px; */
      }

      .whychoose-ai__media {
          min-height: 240px;
          border-radius: 20px;
      }

      .whychoose-ai__content h3 {
          font-size: 26px;
      }

      .whychoose-ai__list li {
          padding: 14px 14px;
      }
  }

  /** features tick boxes end **/


  /** industry carousel **/
  .solutions-modern-businesses-section {
      padding: 110px 0 90px;
      overflow: hidden;
      /* background: #F8F8F8; */
      /* background-image: url(https://demo.casethemes.net/aimo/wp-content/uploads/2025/03/bg-ss2-h5.webp); */
      background: linear-gradient(166deg, rgb(238 117 29 / 11%) 50%, rgb(238 117 29 / 15%) 100%);
      background-size: cover;
      background-position: center center;
      position: relative;
      z-index: 0;
  }

  .solutions-modern-businesses-section .icon-bg {
      background: #fff6f3;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .solutions-modern-businesses-section .solu-modern-bg {
      position: absolute;
      left: 0;
      top: 0;
      width: 50%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
  }

  .solutions-modern-businesses-section .container {
      position: relative;
      z-index: 2;
  }



  .solutions-modern-businesses-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 700;
      text-transform: uppercase;
      color: #6a40ff;
      margin-bottom: 18px;
  }

  .solutions-modern-businesses-eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7c4dff 0%, #b832ff 100%);
  }

  .solutions-modern-businesses-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 42px;
  }

  /* .solutions-modern-businesses-title {
            margin: 0;
            max-width: 620px;
            font-size: 58px;
            line-height: 1.1;
            color: #0c1b4d;
        } */

  .solutions-modern-businesses-controls {
      display: inline-flex;
      gap: 14px;
  }
    /* Hover */
.solutions-modern-businesses-arrow:hover:not(:disabled) {
    background: var(--orange); /* Orange */
    border-color: var(--orange);
    color: #fff; /* Arrow becomes white */
}

/* While clicking */
.solutions-modern-businesses-arrow:active:not(:disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(0.95);
}

/* Keyboard focus */
.solutions-modern-businesses-arrow:focus-visible {
    outline: none;
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* Disabled */
.solutions-modern-businesses-arrow.is-disabled,
.solutions-modern-businesses-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #9ca3af;
}
  .solutions-modern-businesses-arrow {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 1px solid rgba(12, 27, 77, 0.16);
      background: rgba(255, 255, 255, 0.86);
      color: #5b6376;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  /* .solutions-modern-businesses-arrow:hover {
            transform: translateY(-2px);
            border-color: rgba(106, 64, 255, 0.42);
            color: #6a40ff;
            box-shadow: 0 12px 28px rgba(76, 86, 162, 0.16);
        } */

  .solutions-modern-businesses-slider {
      overflow: hidden;
      position: relative;
      z-index: 99;
  }

  .solutions-modern-businesses-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 54px) / 3);
      gap: 18px;
      transition: transform 0.45s ease;
      will-change: transform;
  }

  .solutions-modern-businesses-card {
      min-width: 0;
      border-radius: 16px;
      background: rgb(255 255 255 / 43%);
      border: 1px solid rgb(255 252 252);
      padding: 24px 32px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .solutions-modern-businesses-card p {
      font-size: 15px;
  }

  .solutions-modern-businesses-card.howworks-new .icon-bg svg {
      width: 30px;
      height: 30px;
  }

  .solutions-modern-businesses-media {
      border-radius: 20px;
      overflow: hidden;
      background: #eef2ff;
      aspect-ratio: 4 / 3;
  }

  .solutions-modern-businesses-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .solutions-modern-businesses-card-title {
      margin: 0;
      font-size: 22px;
      color: #1d2644;
      margin-top: 0px;
  }

  .solutions-modern-businesses-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 120px;
      padding: 12px 22px;
      border-radius: 12px;
      background: linear-gradient(135deg, #ce27ff 0%, #5f58ff 100%);
      color: #fff;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-card {
      padding: 0;
      gap: 0;
      border: 0;
      overflow: hidden;
      border-radius: 24px;
      background: transparent;
      box-shadow: 0 16px 40px rgba(0, 0, 83, 0.12);
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-media {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4 / 5;
      background: #dfe4f5;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 83, 0) 16%, rgba(0, 0, 83, 0.12) 44%, rgba(0, 0, 83, 0.28) 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-card:hover .solutions-modern-businesses-media::after,
  .solutions-modern-businesses-section--agents .solutions-modern-businesses-card:focus-within .solutions-modern-businesses-media::after {
      opacity: 1;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-overlay {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 2;
      padding: 18px 18px 18px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.35s ease, transform 0.35s ease;
      pointer-events: none;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(184, 120, 74, 0.78) 0%, rgba(135, 81, 56, 0.72) 58%, rgba(86, 52, 39, 0.68) 100%);
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 18px 44px rgba(36, 18, 12, 0.22);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-overlay-header {
      display: block;
      margin-bottom: 10px;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-card:hover .solutions-modern-businesses-overlay,
  .solutions-modern-businesses-section--agents .solutions-modern-businesses-card:focus-within .solutions-modern-businesses-overlay {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-card-title {
      margin: 0;
      font-size: 22px;
      line-height: 1.2;
      color: #fff;
      max-width: none;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-overlay-copy {
      margin: 0 0 16px;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.86);
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-hover-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.01em;
      pointer-events: auto;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-hover-link:hover {
      color: #fff;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-hover-arrow {
      width: 18px;
      height: 18px;
      min-width: 18px;
      min-height: 18px;
      flex: 0 0 18px;
      border-radius: 0;
      background: transparent;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: none;
      transition: transform 0.25s ease, color 0.25s ease;
      pointer-events: none;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-hover-link:hover .solutions-modern-businesses-hover-arrow {
      transform: translateX(3px);
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-hover-arrow svg {
      width: 18px;
      height: 18px;
  }

  .solutions-modern-businesses-section--agents .solutions-modern-businesses-track {
      grid-auto-columns: calc((100% - 54px) / 4);
  }

  @media (max-width: 600px) {
      .solutions-modern-businesses-track {
          grid-auto-columns: calc((100% - 18px) / 1) !important;
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-track {
          grid-auto-columns: calc((100% - 18px) / 1) !important;
      }
  }

  @media (max-width: 991px) {
      .solutions-modern-businesses-section {
          padding: 88px 0 72px;
      }

      .solutions-modern-businesses-header {
          align-items: flex-start;
          flex-direction: column;
      }

      .solutions-modern-businesses-track {
          grid-auto-columns: calc((100% - 18px) / 2);
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-track {
          grid-auto-columns: calc((100% - 18px) / 2);
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-media::after,
      .solutions-modern-businesses-section--agents .solutions-modern-businesses-overlay {
          opacity: 1;
          transform: translateY(0);
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-overlay {
          pointer-events: auto;
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-title {
          font-size: 38px;
          line-height: 1.15;
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-header p {
          font-size: 16px;
      }

      .solutions-modern-businesses-section--agents .solutions-modern-businesses-card-title {
          font-size: 20px;
          line-height: 1.15;
      }
  }

  /* industry carousel end **/


  /** blue bg tick card starts **/
  .privacy {
      padding-top: 100px;
      background: linear-gradient(135deg, #07072d 0%, #101066 100%);
  }

  .privacy-card {
      color: #fff;
      position: relative;
  }

  .privacy-card:before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 138, 0, .42), transparent 64%);
      top: -80px;
      right: -40px;
      filter: blur(6px);
  }

  .privacy-card:after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, .11), transparent 64%);
      bottom: -80px;
      left: -60px;
      filter: blur(10px);
  }

  .privacy-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: start;
  }

  .privacy h2 {
      /* margin: 0 0 18px;
            font-size: 45px;
            line-height: .98; */
      /* letter-spacing:-.05em; */
      /* max-width:10ch; */
  }

  .privacy p {
      margin: 0;
      color: rgba(255, 255, 255, .76);
      line-height: 1.85;
      font-size: 17px;
  }

  .privacy-panel {
      border-radius: 32px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
      padding: 26px;
      backdrop-filter: blur(12px);
  }

  .privacy-point {
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .privacy-point:last-child {
      border-bottom: 0
  }

  .privacy-point strong {
      display: block;
      font-size: 17px;
      margin-bottom: 6px;
  }

  .privacy-point span {
      color: rgba(255, 255, 255, .72);
      line-height: 1.65;
      font-size: 14px;
  }

  @media (max-width: 991px) {
      .privacy-inner {
          display: block;
      }
  }

  /* blue bg tick card ends **/


  /* cta */
  @media(max-width:991px){
    .digisuite-cta .bg-cta {
        background-position: left !important;
    }
  }

   @media (min-width:992px) and (max-width:1200px){
    .digisuite-cta .bg-cta {
       background-position: 85% 50% !important;
    }
  }
  .digisuite-cta .bg-cta {
      position: relative;
      z-index: 0;
      background-image: url('https://dqm77x662xl91.cloudfront.net/vitelcom-static/assets/vimages/voip-discover.webp');
      background-size: cover;
      background-position: right center;
  }

  .digisuite-cta .bg-cta:before {
      content: '';
      z-index: -1;
      background: rgb(9 23 58 / 60%);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      border-radius: 18px;
  }


  /* support page teams starts */

  .aisales-teams.bgblue-strip {
      background: #000053d4;
  }

  .aisales-teams.services .icon-box {
      border: 1px solid rgb(255 255 255 / 28%);
      background: rgb(255 255 255 / 14%);
  }

  .aisales-teams.services .icon-box p {
      color: #ffffffab;
  }

  /* support page teams ends */


  /** video agents page **/

  /** features block **/

  .avatar-feat .feature-block {
      border-radius: 20px;
      padding: 36px;
      /* box-shadow: 0 28px 80px rgba(33, 67, 103, 0.08); */
      border: 1px solid rgba(0, 0, 0, 0.04);
      overflow: hidden;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .avatar-feat .feature-block:hover {
      transform: translateY(-4px);
      box-shadow: 0 34px 100px rgba(33, 67, 103, 0.12);
  }

  .avatar-feat .feature-block .row {
      align-items: center;

  }

  .avatar-feat .feature-block h3 {
      font-size: 26px;
      line-height: 1.05;
      margin-bottom: 24px;
      color: #0f1f44;
  }

  .avatar-feat .sd-ser-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 18px;
  }

  .avatar-feat .sd-ser-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      padding: 0;
      background: transparent;
      border: none;
  }

  .avatar-feat .sd-ser-list li div:first-child {
      min-width: 24px;
      min-height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #0f1f44;
      margin-top: 3px;
  }

  .avatar-feat .sd-ser-list li p {
      margin: 0;
      font-size: 16px;
      line-height: 1.75;
      color: #25314d;
      font-weight: 500;
  }

  .avatar-feat .media-img {
      width: 100%;
      border-radius: 13px;
      display: block;
      box-shadow: 0 20px 40px rgba(18, 44, 87, 0.08);
  }

  .avatar-feat .btn-one {
      background: #ffffff;
      color: #000053;
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 9px 15px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 500;
      gap: 14px;
      justify-content: space-between;
      width: fit-content;
  }

  .avatar-feat .btn-one .icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #000053;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-left: 10px;
  }

  .avatar-feat .btn-one .icon svg {
      width: 20px;
      height: 20px;
      filter: invert(1);
  }

  .avatar-feat .bg-blu {
      background: #e9f6ff;
  }

  .avatar-feat .bg-yel {
      background: #fff3d5;
  }

  @media (max-width: 991px) {
      .ai-employee-tabs.aichat .benefits-mobile .benefits-dropdown {
          border: none !important;
      }

      .avatar-feat .feature-block {
          padding: 28px;
      }

      .avatar-feat .feature-block .row {
          display: block;
      }

      .avatar-feat .feature-block .col-xxl-6,
      .avatar-feat .feature-block .col-xl-12,
      .avatar-feat .feature-block .col-lg-6,
      .avatar-feat .feature-block .col-md-6 {
          width: 100%;
          max-width: 100%;
          flex: 0 0 100%;
      }

      .avatar-feat .feature-block .media-img {
          margin-top: 24px;
      }
  }

  /** fetures block ends **/


  /** video agent ticks starts **/
  .receptionist-features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-top: 32px;
  }

  .receptionist-feature {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 24px 20px;
      border-radius: 28px;
      background: #ffffff;
      /* box-shadow: 0 18px 40px rgba(15, 31, 68, 0.08);
            border: 1px solid rgba(15, 31, 68, 0.08); */
  }

  .receptionist-feature-icon {
      min-width: 50px;
      min-height: 50px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      box-shadow: 0 18px 40px rgba(15, 31, 68, 0.14);
  }

  .receptionist-feature-icon svg {
      width: 24px;
      height: 24px;
  }

  .receptionist-feature-icon.orange {
      background: #dd612e;
  }

  .receptionist-feature-icon.blue {
      background: #0f3f80;
  }

  .receptionist-feature-icon.green {
      background: #6c9f10;
  }

  .receptionist-feature-text {
      margin: 0;
      font-size: 26px;
      line-height: 1.4;
      font-weight: 600;
      color: #000053;
  }

  @media (max-width: 991px) {
      .receptionist-features {
          grid-template-columns: 1fr;
      }
  }

  /** video agent ticks ends **/

  /** process block dropdown **/
  .benefits-nav {
      gap: 35px;
      width: 100%;
      justify-content: center;
  }

  .benefits-nav .nav-item {
      position: relative;
  }

  .benefits-nav .benefits-link {
      border-radius: 999px;
      padding: 14px 28px;
      min-width: 180px;
      background: #ffffff;
      border: 1px solid rgba(14, 32, 76, 0.08);
      color: #0f1f44;
      font-size: 0.95rem;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
      box-shadow: 0 10px 25px rgba(25, 47, 77, 0.05);
  }

  .benefits-nav .benefits-link:hover {
      transform: translateY(-1px);
      border-color: rgba(14, 32, 76, 0.16);
  }

  .benefits-nav .benefits-link.active {
      background: #0f1f44;
      border-color: #0f1f44;
      color: #ffffff;
      box-shadow: 0 16px 40px rgba(15, 31, 68, 0.16);
  }

  .benefits-nav .nav-item:not(:last-child)::after {
      content: '→';
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      color: rgb(18 19 20);
      font-size: 35px;
  }

  .benefits-mobile {
      position: relative;
  }

  .benefits-dropdown {
      width: 100%;
      max-width: 100%;
      position: relative;
  }

  .benefits-dropdown .selected-tab {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 20px;
      background: #ffffff;
      border: 1px solid rgba(14, 32, 76, 0.16);
      border-radius: 999px;
      color: #000053;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(25, 47, 77, 0.06);
  }

  .benefits-dropdown .selected-tab:focus {
      outline: none;
      box-shadow: 0 0 0 4px rgba(15, 31, 68, 0.09);
  }

  .benefits-dropdown .arrow {
      display: inline-flex;
      transition: transform 0.2s ease;
  }

  .benefits-dropdown.open .arrow {
      transform: rotate(180deg);
  }

  .benefits-dropdown .dropdown-list {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: #ffffff;
      border: 1px solid rgba(14, 32, 76, 0.12);
      border-radius: 24px;
      box-shadow: 0 24px 60px rgba(25, 47, 77, 0.12);
      list-style: none;
      margin: 0;
      padding: 10px 8px;
      display: none;
      z-index: 20;
  }

  .benefits-dropdown.open .dropdown-list {
      display: block;
  }

  .benefits-dropdown .dropdown-list li {
      margin: 6px 8px;
  }

  .benefits-dropdown .dropdown-option {
      width: 100%;
      padding: 14px 18px;
      border-radius: 18px;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      color: #0f1f44;
      font-weight: 600;
      text-align: left;
  }

  .benefits-dropdown .dropdown-option:hover,
  .benefits-dropdown .dropdown-option.active {
      background: rgba(14, 32, 76, 0.08);
  }

  .benefits-dropdown .dropdown-option.active {
      color: #0f1f44;
      background: rgba(14, 32, 76, 0.12);
  }

  /* process block dropdown ends **/


  /** video agents industry carousel btn **/
  .video-play-btn {
      position: absolute;
      inset: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: rgba(0, 0, 0, 0.24);
      color: #fff;
      cursor: pointer;
      transition: background 0.2s ease;
      z-index: 2;
  }

  .video-play-btn:hover {
      background: rgba(0, 0, 0, 0.34);
  }

  .video-play-btn svg {
      width: 56px;
      height: 56px;
  }

  .video-play-btn.hidden {
      display: none;
  }




  /** ai receptionist 5 process block **/
  /* ── Heading ── */
  .wcs-heading {
      text-align: center;
      margin-bottom: 44px;
  }

  /* ── Main Grid: 3 columns ── */
  .wcs-grid {
      display: grid;
      grid-template-columns: 1fr 360px 1fr;
      grid-template-rows: auto auto auto;
      gap: 34px 34px;
      align-items: center;
      margin: 0 auto;
  }

  /* Left & Right columns */
  .wcs-col {
      display: grid;
      grid-template-rows: auto auto;
      gap: 54px;
      width: 100%;
  }

  /* ── Cards ── */
  .wcs-card {
      background: #fff;
      border-radius: 22px;
      padding: 30px 30px 26px;
      /* box-shadow: 0 14px 40px rgba(238, 117, 29, 0.14); */
      box-shadow: 0 4px 32px rgba(0, 0, 0, 0.05);
      position: relative;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      min-height: 152px;
  }

  .wcs-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(238, 117, 29, 0.14);
  }

  /* Sparkle icon top-left */
  .wcs-card::before {
      content: '';
      position: absolute;
      top: 16px;
      left: 18px;
      width: 18px;
      height: 18px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0L14.3 8.7L23 11L14.3 13.3L12 22L9.7 13.3L1 11L9.7 8.7L12 0Z' fill='%23ee751d'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
  }

  .wcs-card-body {
      margin-top: 10px;
  }

  .wcs-card-title {
      font-size: 20px;
      font-weight: 500;
      color: #000053;
      margin-bottom: 6px;
  }

  .wcs-card-desc {
      font-size: 15px;
  }

  /* ── Center Mascot ── */
  .wcs-center {
      display: flex;
      align-items: center;
      justify-content: center;
      grid-row: 1 / 3;
      grid-column: 2;
      align-self: center;
      position: relative;
  }

  .wcs-mascot-bg {
      width: 360px;
      height: 360px;
      background: #f18d4469;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .wcs-mascot-bg img {
      position: absolute;
      top: -24px;
  }

  /* ── Bottom card row ── */
  .wcs-bottom-row {
      grid-column: 2;
      display: flex;
      justify-content: center;
      margin-top: -92px;
      position: relative;
      z-index: 3;
  }

  .wcs-bottom-card {
      background: #fff;
      border-radius: 22px;
      padding: 30px 30px 26px;
      box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
      position: relative;
      max-width: 360px;
      width: 100%;
      transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .wcs-bottom-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(238, 117, 29, 0.14);
  }

  .wcs-bottom-card::before {
      content: '';
      position: absolute;
      top: 16px;
      left: 18px;
      width: 18px;
      height: 18px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0L14.3 8.7L23 11L14.3 13.3L12 22L9.7 13.3L1 11L9.7 8.7L12 0Z' fill='%23ee751d'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
  }

  .wcs-bottom-card .wcs-card-body {
      margin-top: 10px;
  }

  /* ── Mobile ── */
  @media (max-width: 780px) {
      .wcs-grid {
          grid-template-columns: 1fr;
          grid-template-rows: auto;
      }

      .wcs-center {
          grid-row: auto;
          grid-column: auto;
          order: -1;
      }

      .wcs-mascot-bg {
          width: 240px;
          height: 240px;
          margin-top: 0;
      }

      .wcs-bottom-row {
          grid-column: 1;
          margin-top: 0;
      }

      .wcs-bottom-card {
          max-width: 100%;
      }
  }

  sub {
      bottom: 0;
      font-size: 26px;
      margin-left: 2px;
  }


  /* ai agents how it works starts */

  .ai-agents-how-it-works.section-wrapper {
      display: flex;
      align-items: flex-start;
      margin: 0 auto;
      gap: 80px;
  }

  /* ── LEFT: STICKY PANEL ── */
  .ai-agents-how-it-works .left-panel {
      flex: 0 0 420px;
      position: static;
  }

  @media (min-width: 992px) {
      .ai-agents-how-it-works .row>.col-lg-5 {
          position: sticky;
          top: 60px;
          align-self: flex-start;
      }
  }

  .ai-agents-how-it-works .eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #ee751d;
      background: rgba(238, 117, 29, 0.10);
      border: 1px solid rgba(238, 117, 29, 0.25);
      border-radius: 30px;
      padding: 5px 16px;
      margin-bottom: 24px;
  }


  /* ── RIGHT: SCROLLABLE STEPS ── */
  .ai-agents-how-it-works .right-panel {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
  }

  .ai-agents-how-it-works .step-item {
      display: flex;
      gap: 28px;
      padding: 36px 0 10px 0px;
      position: relative;
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp 0.55s ease forwards;
      border-bottom: 0px;
  }

  .ai-agents-how-it-works .step-item:last-child {
      border-bottom: none;
  }

  .ai-agents-how-it-works .step-item:nth-child(1) {
      animation-delay: 0.05s;
  }

  .ai-agents-how-it-works .step-item:nth-child(2) {
      animation-delay: 0.15s;
  }

  .ai-agents-how-it-works .step-item:nth-child(3) {
      animation-delay: 0.25s;
  }

  .ai-agents-how-it-works .step-item:nth-child(4) {
      animation-delay: 0.35s;
  }

  .ai-agents-how-it-works .step-item:nth-child(5) {
      animation-delay: 0.45s;
  }

  .ai-agents-how-it-works .step-item:nth-child(6) {
      animation-delay: 0.55s;
  }

  @keyframes fadeUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Dotted vertical connector line between circles */
  .ai-agents-how-it-works .step-item::before {
      content: '';
      position: absolute;
      left: 25px;
      top: 0;
      bottom: 0;
      width: 0;
      border-left: 3px dotted #c0c0d0;
      z-index: 0;
  }

  .ai-agents-how-it-works .step-item:first-child::before {
      top: 30%;
  }

  .ai-agents-how-it-works .step-item:last-child::before {
      bottom: 72%;
  }

  .ai-agents-how-it-works .step-number-wrap {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #000053;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      color: #ffffff;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 16px rgba(0, 0, 83, 0.22);
      transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
      font-weight: 600;
  }

  .ai-agents-how-it-works .step-item:hover .step-number-wrap {
      background: #ee751d;
      box-shadow: 0 6px 22px rgba(238, 117, 29, 0.35);
      transform: scale(1.1);
  }

  .ai-agents-how-it-works .step-content {
      flex: 1;
      padding: 18px 24px;
      border: 1.5px solid rgba(0, 0, 83, 0.12);
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 2px 12px rgba(0, 0, 83, 0.05);
      position: relative;
      transition: border-color 0.25s, box-shadow 0.25s;
  }

  /* Left-pointing arrow connecting card to number badge */
  .ai-agents-how-it-works .step-content::before {
      content: '';
      position: absolute;
      left: -10px;
      top: 25px;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-right: 10px solid rgba(0, 0, 83, 0.12);
  }

  /* Inner arrow to fill white (covers border color) */
  .ai-agents-how-it-works .step-content::after {
      content: '';
      position: absolute;
      left: -8px;
      top: 25px;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-right: 9px solid #ffffff;
  }

  .ai-agents-how-it-works .step-item:hover .step-content {
      border-color: rgba(238, 117, 29, 0.35);
      box-shadow: 0 4px 20px rgba(238, 117, 29, 0.10);
  }

  .ai-agents-how-it-works .step-item:hover .step-content::before {
      border-right-color: rgba(238, 117, 29, 0.35);
  }

  .ai-agents-how-it-works .step-heading {
      font-size: 20px;
      font-weight: 600;
      color: #000053;
      margin-bottom: 8px;
      transition: color 0.2s;
  }

  .ai-agents-how-it-works .step-item:hover .step-heading {
      color: #ee751d;
  }

  .ai-agents-how-it-works .step-desc {
      font-size: 15px;
  }

  .ai-agents-how-it-works .step-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #ee751d;
      background: rgba(238, 117, 29, 0.09);
      border-radius: 20px;
      padding: 3px 11px;
      margin-bottom: 8px;
  }

  /* responsive */
  @media (max-width: 860px) {
      .ai-agents-how-it-works.section-wrapper {
          flex-direction: column;
          gap: 48px;
      }

      .ai-agents-how-it-works .left-panel {
          position: static;
          flex: none;
          width: 100%;
      }
  }


  /* ai agents how it works ends */




  /* ai receptionist bg video starts */

        .airec-banner {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .airec-banner .banner-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            filter: brightness(1);
        }

        .airec-banner .banner-overlay {
            position: absolute;
            inset: 0;
            /* background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 35%, rgba(255, 255, 255, 0.45) 55%, rgba(255, 255, 255, 0.10) 75%, rgba(255, 255, 255, 0) 100%); */
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0.92) 0%,
                    rgba(255, 255, 255, 0.82) 28%,
                    rgba(255, 255, 255, 0.55) 45%,
                    rgba(255, 255, 255, 0.18) 58%,
                    rgba(255, 255, 255, 0) 70%);
            z-index: 2;

            pointer-events: none;
        }

        .airec-banner .banner-overlay::before {
            content: "";
            position: absolute;
            inset: 0;

            background: linear-gradient(to bottom,
                    #ffffff 0%,
                    rgba(255, 255, 255, 0) 20%,
                    rgba(255, 255, 255, 0.08) 40%,
                    rgba(255, 255, 255, 0.18) 100%);

        }

        .airec-banner .container {
            position: relative;
            z-index: 3;
        }

        #topbar{
            background: transparent !important;
        }

      
        .airec-banner.img-chat-wrapper {
            z-index: 2;
            border-radius: 0px !important;
        }

        .airec-banner .chat-overlay {
            /* bottom: 160px;
            right: 420px !important; */
            inset: auto 480px 140px auto !important;
            z-index: 2;
        }

        .airec-banner .hero-wave-card{
            inset: auto 486px 550px auto !important;
        }

          @media (max-width: 991px) {

            .airec-banner {
                min-height: 100%;
                padding: 120px 0 60px;
                align-items: flex-start;
            }

            .airec-banner .banner-video {
                object-position: right center;
            }

            /* Reduce overlay */
            .airec-banner .banner-overlay {
                background: linear-gradient(to bottom, #ffffff 0%, #ffffffb0 35%, rgba(255, 255, 255, 0.05) 65%, rgba(255, 255, 255, 0) 100%);
            }

            .airec-banner .banner-overlay::before {
                display: none;
            }

             .airec-banner .hero-wave-card, .airec-banner .chat-overlay{
                display: none;
             }
        }


        @media (min-width: 992px) and (max-width: 1199px) {
            .airec-banner .hero-wave-card {
                inset: auto 186px 480px auto !important;
            }
            .airec-banner .chat-overlay {
                inset: auto 200px 140px auto !important;
            }
            .airec-banner .banner-video{
                object-position: 84% center;
            }
        }

        @media (min-width: 1200px) and (max-width: 1399px) {
            .airec-banner .hero-wave-card {
                inset: auto 366px 480px auto !important;
            }

            .airec-banner .chat-overlay {
                inset: auto 274px 140px auto !important;
                z-index: 2;
            }
            .airec-banner .banner-video{
                object-position: 96% center;
            }
        }



        /* ai receptionist bg video ends */


        .banner-spn{
            font-size:20px;
        }



        .whychoose-ai__icon svg { 
            width: 26px; 
            height: 26px; 
        }

        .ai-indus-svg svg{
            width: 35px;
            height: 35px;
            color: var(--orange);
        }

        /* ai receptionist workflow cards starts */

        .barry-call-workflows-section {
            background: #ffffff;
        }

        .barry-call-workflows-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }

        .barry-call-workflow-card {
            position: relative;
            display: grid;
            grid-template-columns: 80px 1px minmax(0, 1fr);
            align-items: center;
            gap: 18px;
            min-height: 174px;
            padding: 20px 24px 20px 28px;
            background: #ffffff;
            border: 1px solid #e8ecf3;
            border-left: 4px solid var(--blue);
            border-radius: 8px;
            box-shadow: 0 12px 34px rgba(14, 31, 66, 0.1);
            overflow: hidden;
        }

        .barry-call-workflow-number {
         
            position: absolute;
            top: 14px;
            left: 18px;
            width: 34px;
            height: 34px;
            border-radius: 7px;
            background: var(--orange);
            color: #ffffff;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            line-height: 1;
            font-weight: 800;
            box-shadow: 0 5px 12px rgba(255, 111, 26, 0.28);
        }

        .barry-call-workflow-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            /* padding-top: 18px; */
        }

        .barry-call-workflow-visual svg {
            width: 50px;
            height: 50px;
            display: block;
        }

        .barry-call-workflow-divider {
            width: 1px;
            height: 118px;
            background: #dde4ef;
        }

        .barry-call-workflow-content h3 {
            margin: 0 0 12px;
            color: #000053;
            font-size: 22px;
            line-height: 1.04;
            font-weight: 600;
        }

        .barry-call-workflow-content p {
            position: relative;
            margin: 0 0 9px;
            padding-left: 25px;
            color: #2d3340;
            font-size: 15px;
            line-height: 23px;
        }

        .barry-call-workflow-content p:last-child {
            margin-bottom: 0;
        }

        .barry-call-workflow-content p::before {
            content: "";
            position: absolute;
            left: 0;
            top: 1px;
            width: 16px;
            height: 16px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
        }

        .barry-call-workflow-content p:nth-of-type(1)::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='%23ff4f1f'%3E%3Ccircle cx='7' cy='6' r='3'/%3E%3Ccircle cx='14' cy='7' r='2.4'/%3E%3Cpath d='M2.5 16c.7-3.2 2.5-5.1 4.5-5.1s3.8 1.9 4.5 5.1zM11.2 16c.4-2 1.6-3.4 3-3.4s2.8 1.3 3.3 3.4z'/%3E%3C/g%3E%3C/svg%3E");
        }

        .barry-call-workflow-content p:nth-of-type(2)::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 5.5h12a2 2 0 0 1 2 2v4.5a2 2 0 0 1-2 2H9l-4.2 3v-3H4a2 2 0 0 1-2-2V7.5a2 2 0 0 1 2-2z' fill='%231d5cff'/%3E%3Ccircle cx='7' cy='9.8' r='1' fill='white'/%3E%3Ccircle cx='10' cy='9.8' r='1' fill='white'/%3E%3Ccircle cx='13' cy='9.8' r='1' fill='white'/%3E%3C/svg%3E");
        }

        .barry-call-workflow-content p:nth-of-type(3)::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='%231aa657'/%3E%3Cpath d='M5.8 10.2l2.7 2.7 5.8-6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        }

        .barry-call-workflow-label {
            font-weight: 800;
        }

        .barry-call-workflow-label--scenario {
            color: var(--orange);
        }

        .barry-call-workflow-label--help {
            color: #1d5cff;
        }

        .barry-call-workflow-label--outcome {
            color: #1aa657;
        }

        @media (max-width: 991px) {
            .barry-call-workflows-section {
                padding: 10px 0 60px;
            }

            .barry-call-workflows-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(min-width:767px) and (max-width:991px){
            .barry-call-workflows-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr))
            }
            .barry-call-workflow-card{
                display: block;
            }
            .barry-call-workflow-divider{
                display: none;
            }
            .barry-call-workflow-visual{
                justify-content: start;
            }
            .barry-call-workflow-visual svg{
                margin-bottom: 20px;
                width: 35px;
                height: 35px;
            }
            .barry-call-workflow-content h3{
                font-size: 20px;
            }
            .barry-setup-strip__grid,
            .barry-pricing-lane__grid {
                grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
                gap: 18px;
            }
        }

        @media (max-width: 575px) {
            .barry-call-workflow-card {
                grid-template-columns: 56px 1px minmax(0, 1fr);
                gap: 12px;
                min-height: auto;
                padding: 18px 14px 18px 16px;
            }

            .barry-call-workflow-number {
                top: 12px;
                left: 12px;
                width: 30px;
                height: 30px;
                font-size: 20px;
            }

            .barry-call-workflow-visual svg {
                width: 38px;
                height: 38px;
            }

            .barry-call-workflow-divider {
                height: 132px;
            }

            .barry-call-workflow-content h3 {
                font-size: 19px;
            }

            .barry-call-workflow-content p {
                font-size: 12px;
                padding-left: 22px;
            }
        }

        /* ai receptionist workflow cards ends */

        /* barry capabilities grid starts */

        .barry-capabilities-section {
            background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
            position: relative;
            overflow: hidden;
        }
        .barry-capabilities-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 10px;
        }

        .barry-capability-card {
            min-height: 132px;
            padding: 18px 10px 16px;
            background: #ffffff;
            border: 1px solid #e8edf5;
            border-radius: 8px;
            box-shadow: 0 7px 24px rgba(14, 31, 66, 0.07);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-align: center;
            color: #000053;
            transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
        }

        .barry-capability-card:hover {
            transform: translateY(-4px);
            border-color: rgba(238, 117, 29, 0.36);
            box-shadow: 0 14px 30px rgba(14, 31, 66, 0.1);
        }

        .barry-capability-icon {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #000053;
            flex: 0 0 48px;
        }

        .barry-capability-icon svg {
           width: 42px;
    height: 42px;
    display: block;
    stroke-width: 1 !important;
    stroke: inherit;
        }

        .barry-capability-card h3 {
            margin: 0;
            color: #000053;
            font-size: 15px;
            line-height: 1.25;
            font-weight: 500;
        
        }

        @media (max-width: 991px) {
            .barry-capabilities-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .barry-capabilities-intro {
                margin-left: 0;
                font-size: 15px;
            }

            .barry-capabilities-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .barry-capability-card {
                min-height: 124px;
                padding: 16px 8px 14px;
            }

            .barry-capability-icon,
            .barry-capability-icon svg {
                width: 42px;
                height: 42px;
            }

            .barry-capability-card h3 {
                font-size: 12px;
            }
        }

        @media (max-width: 380px) {
            .barry-capabilities-grid {
                grid-template-columns: 1fr;
            }

            .barry-capability-card {
                min-height: 112px;
            }
        }

        /* barry capabilities grid ends */

        /* barry setup and pricing blocks starts */

        .barry-setup-strip {
            background: #ffffff;
        }

        .barry-setup-strip__heading,
        .barry-pricing-lane__heading {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            margin-bottom: 26px;
            text-align: center;
        }

        .barry-setup-strip__heading::before,
        .barry-setup-strip__heading::after,
        .barry-pricing-lane__heading::before,
        .barry-pricing-lane__heading::after {
            content: "";
            height: 1px;
            flex: 1 1 auto;
            max-width: 300px;
            background: linear-gradient(90deg, rgba(222, 229, 240, 0), #dce5f1);
        }

        .barry-setup-strip__heading::after,
        .barry-pricing-lane__heading::after {
            background: linear-gradient(90deg, #dce5f1, rgba(222, 229, 240, 0));
        }

        .barry-setup-strip__heading h2,
        .barry-pricing-lane__heading h2 {
            margin: 0;
            color: #000053;
            font-size: 30px;
            line-height: 1.2;
            font-weight: 800;
        }

        .barry-setup-strip__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .barry-setup-strip__box {
            min-height: 150px;
            display: grid;
            grid-template-columns: 58px 1fr;
            align-items: center;
            gap: 16px;
            padding: 24px 22px;
            background: #ffffff;
            border: 1px solid #dde7f5;
            border-radius: 8px;
            box-shadow: 0 10px 26px rgba(18, 38, 74, 0.06);
        }

        .barry-setup-strip__icon {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #0d66d0;
            background: #f8fbff;
            border: 1px solid #dbe9fb;
        }

        .barry-setup-strip__icon svg {
            width: 32px;
            height: 32px;
            stroke-width: 1.8;
        }

        .barry-setup-strip__box h3 {
            margin: 0 0 8px;
            color: #000053;
            font-size: 18px;
            line-height: 1.22;
            font-weight: 600;
        }

        .barry-setup-strip__box p {
            margin: 0;
            color: #4a5a78;
            font-size: 14px;
            line-height: 1.55;
        }

        .barry-pricing-lane {
            background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
        }

        .barry-pricing-lane__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 34px;
            align-items: stretch;
        }

        .barry-pricing-lane__card {
            position: relative;
            /* min-height: 286px; */
            display: flex;
            flex-direction: column;
            padding: 38px 35px 32px;
            background: #ffffff;
            border: 1px solid #edf1f7;
            border-radius: 8px;
            box-shadow: 0 12px 32px rgba(17, 36, 68, 0.07);
        }

        .barry-pricing-lane__card--featured {
            border: 1px solid var(--orange);
            box-shadow: 0 16px 38px rgba(238, 117, 29, 0.13);
        }

        .barry-pricing-lane__ribbon {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            min-width: 150px;
            padding: 6px 18px;
            color: #ffffff;
            background: var(--orange);
            border-radius: 0 0 8px 8px;
            font-size: 13px;
            line-height: 1;
            font-weight: 800;
            text-align: center;
            text-transform: uppercase;
        }

        .barry-pricing-lane__icon {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
           margin-bottom: 9px;
    color: var(--orange);
    background: #ffba884d;
    border-radius: 6px;
        }

        .barry-pricing-lane__icon svg {
            width: 38px;
            height: 38px;
            stroke-width: 1.8;
        }

        .barry-pricing-lane__card h3 {
            margin: 0 0 4px;
            color: #000053;
            font-size: 26px;
            line-height: 1.15;
            font-weight: 600;
        }

        .barry-pricing-lane__subtitle {
            margin: 0 0 22px;
            font-size: 16px;
            line-height: 1.4;
        }

        .barry-pricing-lane__list {
            display: grid;
            gap: 10px;
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
            color: #1a2850;
            font-size: 15px;
            line-height: 1.45;
        }

        .barry-pricing-lane__list li {
            position: relative;
            padding-left: 22px;
        }

        .barry-pricing-lane__list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.58em;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #000053;
        }

        .barry-pricing-lane__button {
            width: fit-content;
            min-width: 170px;
            margin-top: auto;
            align-self: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            color: #ffffff !important;
            background: var(--orange);
            border: 1px solid var(--orange);
            border-radius: 8px;
            box-shadow: 0 8px 18px rgba(238, 117, 29, 0.22);
            font-size: 16px;
            font-weight: 800;
            line-height: 1.1;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .barry-pricing-lane__button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 22px rgba(238, 117, 29, 0.28);
        }

        .barry-pricing-lane__button--navy {
            background: #001b62;
            border-color: #001b62;
            box-shadow: 0 8px 18px rgba(0, 27, 98, 0.22);
        }

        @media (max-width: 991px) {
            .barry-setup-strip__grid,
            .barry-pricing-lane__grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .barry-pricing-lane__card {
                min-height: auto;
            }
        }

        @media (max-width: 767px) {
            .barry-setup-strip__heading,
            .barry-pricing-lane__heading {
                gap: 10px;
                margin-bottom: 20px;
            }

            .barry-setup-strip__heading::before,
            .barry-setup-strip__heading::after,
            .barry-pricing-lane__heading::before,
            .barry-pricing-lane__heading::after {
                max-width: 58px;
            }

            .barry-setup-strip__heading h2,
            .barry-pricing-lane__heading h2 {
                font-size: 24px;
            }

            .barry-setup-strip__box {
                grid-template-columns: 1fr;
                gap: 12px;
                min-height: auto;
                padding: 22px 18px;
                text-align: center;
                justify-items: center;
            }

            .barry-pricing-lane__card {
                padding: 34px 24px 28px;
            }

            .barry-pricing-lane__card h3 {
                font-size: 23px;
            }

            .barry-pricing-lane__button {
                width: 100%;
                min-width: 0;
            }
        }

        /* barry setup and pricing blocks ends */



        /** integration section new **/

        .ig-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.ig-logo {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    border: 0.5px solid light-dark(rgba(31, 30, 29, 0.15), rgba(222, 220, 209, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    overflow: hidden;
}

.ig-logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    border-radius: 4px;
}

.ig-logo {
            width: 35px;
            height: 35px;
            border-radius: 6px;
            border: 0.5px solid light-dark(rgba(31, 30, 29, 0.15), rgba(222, 220, 209, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 500;
            overflow: hidden;
        }


        .table-svg{
            width: 26px;
            height: 26px;
            margin-right: 4px;
        }


        .svg-div{
            background: #f8fbff !important;
    border: 1px solid #dbe9fb !important;
    box-shadow: none !important;
        }

        @media (max-width: 576px) {
    .nycfc, .services img {
        margin-bottom: 0px;
    }
}