* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Exo 2', sans-serif;
}

*::after,
*::before {
    box-sizing: border-box;
}

:root {
    --body-font: #333333;
    --primary: #FCAF3E;
    --primary-light: #FFFAF3;
    --primary-dark: #da942c;
    --secondary: #19B4ED;
    --secondary-dark: #0782AF;
    --white: #ffffff;
    --black: #000000;
    --grey-300: #CCCCCC;
    --grey-200: #e4e4e4;
    --grey-100: #F5F5F5;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --section-padding: 70px 0 0 0;
    --container: 1310px;
    --container-padding: 0 15px;
    --linear: linear-gradient(180deg,rgba(255, 237, 231, 0.5) 0%,#ffffff 100%);
    --linear1 : linear-gradient(90deg,#3882E6 0%,#22D3EE 100% );
    --linear2 : linear-gradient(90deg, #F97316 0%,#FBBF24 100%);
    --linear3 : linear-gradient( 90deg, rgba(244, 63, 94, 0.5) 0%, rgba(244, 114, 182, 0.5) 100%);
    --linear4 :linear-gradient( 90deg, #22C55E 0%, #34D399 100%);
    --linear5 :linear-gradient(  90deg,#A855F7 0%,#818CF8 100%);
     --accent: #00c8ff;
    --accent-glow: rgba(0, 200, 255, 0.18);
    --accent-dim: rgba(0, 200, 255, 0.08);
    --bg-deep: #050c14;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --bg-icon: rgba(0, 200, 255, 0.1);
    --border: rgba(255,255,255,0.08);
    --border-accent: rgba(0, 200, 255, 0.3);
    --text-primary: #f0f6ff;
    --text-secondary: rgba(200, 220, 240, 0.65);
    --text-muted: rgba(180, 200, 220, 0.45);
}
img{
  max-width: 100%;
}
@keyframes pulse-me {
    0% {
        transform: scale(.9);
        opacity: .2;
        -webkit-transform: scale(.9);
        -moz-transform: scale(.9);
        -ms-transform: scale(.9);
        -o-transform: scale(.9)
    }

    50% {
        opacity: .5
    }

    70% {
        opacity: .09
    }

    100% {
        transform: scale(2.1);
        opacity: 0;
        -webkit-transform: scale(2.1);
        -moz-transform: scale(2.1);
        -ms-transform: scale(2.1);
        -o-transform: scale(2.1)
    }
}
a:hover,
a:focus,
a:active,
a:valid,
a {
    text-decoration: none;
}
/************************************************************/
.cmn-primary-btn {
    background-color: var(--secondary-dark);
    height: 46px;
    padding: 0 8px 0 12px;
    text-transform: uppercase;
    font-weight: var(--font-medium);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary-dark);
    font-size: 16px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
}
.cmn-primary-btn:hover {
  background: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
}
.cmn-primary-btn:hover span {
    background-color: var(--white);
    color: var(--secondary);
}
/*******************************************/
.cmn-primary-btn.app-flow-button {
    background: #00a9b7;
    border-color:#00a9b7;
}
.cmn-primary-btn.app-flow-button:hover {
    background: #00a9b7;
    border-color:#00a9b7;
    color: #fff;
}
.cmn-primary-btn.app-flow-button:hover span {
    background-color: var(--white);
    color: var(--secondary-dark);
}
.cmn-primary-btn.app-flow-button:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #007883;
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
/*******************************************/
.cmn-primary-btn.introvideo-btn {
    background: var(--primary);
    border-color:var(--primary);
    padding: 0 7px 0 12px;
}
.cmn-primary-btn.introvideo-btn:hover {
    background: var(--primary);
    border-color:var(--primary);
    color: #fff;
}

.cmn-primary-btn.introvideo-btn:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-dark);
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.cmn-primary-btn i {
    font-size: 32px;
    margin-left: 10px;
}
/****************************************/
/*******************************************/
.cmn-primary-btn.demovideo-btn {
    background: #0fb158;
    border-color:#0fb158;
}
.cmn-primary-btn.demovideo-btn:hover {
    background: #0fb158;
    border-color:#0fb158;
    color: #fff;
}
.cmn-primary-btn.demovideo-btn:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #058f43;
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
/*******************************************/
/*******************************************/
.cmn-primary-btn.buy-now {
    background: #ffd615;
    border-color:#ffd615;
    color: #000;
}
.cmn-primary-btn.buy-now:hover {
    background: #ffd615;
    border-color:#ffd615;
}
.cmn-primary-btn.buy-now:hover span {
    background-color: #fff;
    color: var(--secondary-dark);
}
.cmn-primary-btn.buy-now:after {
    content: '';
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #e4ba00;
    z-index: -1;
    border-radius: 0;
    transition: all 0.5s ease 0s;
    animation: buttonanim 2s infinite;
    -webkit-animation: buttonanim 2s infinite;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
/*******************************************/
@keyframes buttonanim {
    0% {
        width: 0%
    }
    100% {
        width: 100%
    }
}
.cmn-primary-btn span {
  background-color: var(--white);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  margin-left: 10px;
  font-size: 14px;
  color: var(--secondary-dark);
}
.cmn-primary-btn span:after{
    content: '\e9cf';
    font-family: 'icomoon';
    font-weight: 500;
}
.cmn-primary-btn.havevideo i {
    width: 32px;
    height: 32px;
    font-size: 32px;
    margin-left: 10px;
}
.cmn-primary-btn:hover span {
  background-color: var(--white);
  color: var(--secondary);
}
.cmn-primary-btn.demovideo-btn:hover span {
    background-color: var(--white);
    color: var(--secondary-dark);
}
.btn__div{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}
.btn__div.center{
    justify-content: center;
}


button {
    outline: none;
    border: none;
}
a{
    color: #000;
}
#main {
    float: none;
}

main {
    margin: 80px auto 0 auto;
    max-width: 1920px;
}

main>* {
    padding: 40px 0;
}
 .d-block {
    display: block;
}

.heading-area {
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
}

.main-title {
    color: var(--black);
    font-size: 37.08px;
    font-weight: 700;
    line-height: 1.1em;
    font-weight: bold;
    text-transform: capitalize;
    margin-top: -8px;
}

.sub-title {
    color: var(--black);
    font-size: 18.54px;
    font-weight: 700;
    line-height: 1.2em;
    display: block;
    margin: 5px 0 15px 0;
}

.heading-area.center>* {
    text-align: center;
}

.heading-area.white>* {
    color: #fff;
}

.heading-area.white .main-title>* {
    color: #fff;
}
.heading-area > .m-color{
    color: var(--primary);
}
.heading-area>p {
    margin-top: 5px;
    margin-bottom: 0;
}
.heading-area > .sub-title{
    margin-bottom: 0;
}
.m-color {
    color: var(--primary);
}



/*____________________________________________________________ */
  .banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0 80px;
  }
.banner__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

  /* Background blobs */
  .blob-orange {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #ffe8c2 0%, #ffd59e 40%, transparent 70%);
    filter: blur(64px);
    opacity: 0.20;
    z-index: 0;
    -webkit-filter: blur(64px);
}

  .blob-teal {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #14B8A6;
    filter: blur(64px);
    opacity: 0.20;
    z-index: 0;
    -webkit-filter: blur(64px);
}

  .blob-peach-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 70% 30%, #fde8d0 0%, #fbd5b0 50%, transparent 70%);
    filter: blur(20px);
    opacity: 0.5;
    z-index: 0;
  }

  /* Left content */
.left {
    width: 43%;
    position: relative;
    z-index: 2;
}

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 10px;
    background-color: #FFF9F2;
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
}

  .eyebrow-icon {
    font-size: 13px;
  }

  .heading {
    font-size: 47px;
    font-weight: bold;
    line-height: 1.12;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
  }

  .heading .highlight {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
  }

  p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    color: var(--black);
    font-weight: 400;
    text-align: justify;
}
p:last-child{
    margin-bottom: 0;
}
  .cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }

  .btn-primary:hover {
    background: #e09510;
    transform: translateY(-1px);
  }

  .btn-secondary {
    background: transparent;
    color: #111;
    border: 1.5px solid #ccc;
    border-radius: 50px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }

  .btn-secondary:hover {
    border-color: #999;
    transform: translateY(-1px);
  }

  /* Right visual */
  .right {
    width: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Large rounded square */

  /* Floating feature card */
.feature-card {
    width: 270px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 0px 0px 8px rgba(255, 255, 255, 0.5),    0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: absolute;
    left: -50px;
    bottom: 35%;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(225, 245, 238, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 34px;
    text-align: center;
}

.card-title {
  font-size: 19px;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-align: left;
}


.highlight {
  color: #E8932A;
  font-weight: 600;
}
  .feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e8f5f2, #d0ede8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
  }

  .feature-title {
    font-size: 14px;
    font-weight: 700;
    color: #111;
  }

  .feature-desc .accent {
    color: var(--primary);
    font-weight: 600;
  }


/* _____________________________________________ */
.stats-section {
    width: 100%;
    background: #FFFBF0;
    padding: 40px 0;
    display: flex;
    justify-content: center;
  }

  .stats-inner {
    max-width: 1310px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 60px;
    padding: 0 15px;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .stat-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background-color: #fff;
  }

  .stat-icon-wrap.orange { border:2px solid #fef3e2; }
  .stat-icon-wrap.teal   { border:2px solid #e4f6f3; }
  .stat-icon-wrap.pink   { border:2px solid #fce8f1; }
  .stat-icon-wrap.indigo { border:2px solid #eeedf6; }

  .stat-icon-wrap svg {
    width: 28px;
    height: 28px;
    display: block;
  }

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
    line-height: 22px;
    text-transform: capitalize;
}

  .stat-sub {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    color: var(--black);
    font-weight: 400;
}

  .stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  /* __________________________________________________ */
  .people-section {
    width: 100%;
    background: #fff;
    padding: 45px 0;
  }
  .people__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
  }
.people-row {
    display: grid;
    gap: 30px;
    grid-template-columns: 1.5fr 1fr;
    margin-bottom: 30px;
    align-items: center;
}
.grid_column_1_1{
    grid-template-columns: 1fr 1fr !important;
}
.people-row:last-child{
    margin-bottom: 0;
}
  .people-row-reverse {
    grid-template-columns: 1fr 1.5fr;
  }

  .people-img-placeholder {
    width: 100%;
  }

  .people-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #5446C7;
    margin-bottom: 14px;
  }
.people-image-wrap {
    position: relative;
    background-color: #fff;
    border-radius: 24px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
    overflow: hidden;
    border: 6px solid #ccc;

}
.people-image-wrap img{
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.people-heading {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1em;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.svg_overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
    width: 83%;
    justify-content: flex-end;
    margin-left: auto;
}

/* DEFAULT */
.people-text {
  --accent: #5446C7;
}
/* THEMES */
.theme-purple { --accent: #5446C7; }
.theme-teal   { --accent: #14B8A6; }
.theme-orange { --accent: #f5a623; }
.theme-green  { --accent: #22C55E; }
.theme-pink   { --accent: #E91E8C; }
.theme-cyan   { --accent: #06B6D4; }
.theme-fuchsia{ --accent: #D946EF; }
.theme-aqua   { --accent: #00A9AA; }

.people-eyebrow {
  color: var(--accent);
}

.people-accent {
   color: #5446C7;
}
.pink-accent {
  color: #E91E8C;
}
.green-accent{
  color: #22C55E;
}
.cyan-accent{
  color: #06B6D4;
}
.orange-accent {
  color: #f5a623;
}
.teal-accent{
  color: #14B8A6;
}
.fuchsia-accent{
  color: #D946EF;
}

.theme-text {
  color: var(--accent);
}

/* ICON COLOR AUTO */
.people-text .theme-icon {
  background-color: var(--accent);
}
  .theme-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #F6F5FC;
    border-radius: 12px;
    padding: 15px 15px;
    border: 1px solid #F6F5FC;
  }
  .theme-teal{
    background: #F3FBFA;
    border: 1px solid #F3FBFA;
  }
.theme-teal .theme-icon{
    background-color: #14B8A6;
}
.theme-orange{
    background-color: #FEFAF2;
    border: 1px solid #FEFAF2;
}
.theme-orange .theme-icon{
    background-color: var(--primary);
}

.theme-pink .theme-icon{
    background-color: #E91E8C;
}
.pink-eyebrow{
  color: #E91E8C;
}
.theme-pink{
    background-color: #FDF2F8;
    border: 1px solid #FDF2F8;
}

.theme-green .theme-icon{
    background-color: #22C55E;
}
.theme-green{
    background-color: #F0FDF4;
    border: 1px solid #F0FDF4;
}

.theme-cyan .theme-icon{
    background-color: #06B6D4;
}
.theme-cyan{
    background-color: #ECFEFF;
    border: 1px solid #ECFEFF;
}

.theme-amber .theme-icon{
    background-color: #F59E0B;
}
.theme-amber{
    background-color: #FFFBEB;
    border: 1px solid #FFFBEB;
}
.theme-fuchsia .theme-icon{
    background-color: #D946EF;
}
.theme-fuchsia{
    background-color: #FDF4FF;
    border: 1px solid #FDF4FF;
}
.theme-aqua .theme-icon{
    background-color: #00A9AA;
}
.theme-aqua .theme-card{
    background-color: #E6F7F7;
    border: 1px solid #E6F7F7;
}
  .theme-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
  }
.theme-icon .icon-whatsapp:before{
  color: #fff;
}
  .theme-icon svg {
    width: 18px;
    height: 18px;
  }

.theme-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
}

/* __________________________________________________ */
.features-section {
    width: 100%;
    background: #f8f8f8;
    padding: 40px 0;
  }
  .features__inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .features-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .features-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .features-sub {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
  }

  .feat-card {
    background: #fff;
    border-radius: 48px;
    padding: 36px 32px 38px;
    box-shadow: 0px 10px 30px -10px rgba(245, 158, 11, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -ms-border-radius: 48px;
    -o-border-radius: 48px;
}

  .feat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .feat-icon-wrap svg {
    width: 24px;
    height: 24px;
  }

.feat-name {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fet_card {
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.feature-card3 {
    left: auto;
    right: -80px;
    bottom: auto;
    top: 20%;
}
.feature-card4 {
    left: auto;
    right: -80px;
    bottom: auto;
    top: 70%;
}
/* Card 1 - Fraud Shield: dark navy */
.card-fraud {
  background: #0f1b35;
}

/* Card 2 - Route IQ: vivid teal/cyan */
.card-route {
  background: #0ea5e9;
}

/* Card 3 - Voice: warm orange-red */
.card-voice {
  background: #ff5c35;
}

.fet_card_body {
  padding: 28px 26px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.fet_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}

.card-fraud .fet_badge { background: rgba(255,255,255,0.1); color: #7dd3fc; }
.card-route .fet_badge { background: rgba(255,255,255,0.2); color: #fff; }
.card-voice .fet_badge { background: rgba(255,255,255,0.18); color: #fff; }

.fet_title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #fff;
}

.fet_card_body p{
  color: #fff;
}

.fet_visual {
  height: 120px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-card2{
    top: 0;
    bottom: auto;
}
/* ___________________________________________________________ */
/* Video walkthrough section */
  .walkthrough-section {
    padding: 45px 0;
  }
  .walkthrough_inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
  }

  .walkthrough-container {
    width: 100%;
    max-width: 1080px;
    background: #3d3b2e;
    border-radius: 24px;
    padding: 40px 44px 44px;
    position: relative;
    overflow: hidden;
    min-height: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  /* Dashboard mockup columns */
  .dashboard-mock {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
  }

  .dash-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .dash-col-label {
    font-size: 10px;
    color: #a09880;
    text-align: center;
    margin-bottom: 4px;
    letter-spacing: 0.06em;
  }

  .dash-field {
    background: #f5f0e0;
    border-radius: 8px;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .dash-field-text {
    font-size: 11px;
    color: #8a8060;
    font-family: 'Manrope', sans-serif;
  }

  .dash-field-sub {
    font-size: 10px;
    color: #a09878;
    padding: 0 12px;
    font-family: 'Manrope', sans-serif;
  }

  .dash-radio-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 4px;
  }

  .dash-radio {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b6548;
    flex-shrink: 0;
  }

  .dash-radio-label {
    font-size: 11px;
    color: #b0a880;
    font-family: 'Manrope', sans-serif;
  }

  .dash-btn {
    background: #f5f0e0;
    border-radius: 8px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dash-btn-text {
    font-size: 11px;
    color: #8a8060;
    font-family: 'Manrope', sans-serif;
  }

  /* Play button */
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    z-index: 10;
    transition: transform 0.2s;
  }

  .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.07);
  }

  .play-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
  }

  /* Floating info card */
  .walkthrough-card {
    position: absolute;
    bottom: 32px;
    left: 40px;
    background: #f5f0e0;
    border-radius: 16px;
    padding: 22px 24px;
    max-width: 310px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 10;
  }

  .walkthrough-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
  }

  /* Dot indicator on card */
  .walkthrough-dot {
    position: absolute;
    top: -6px;
    left: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f5a623;
    border: 3px solid #fff;
  }

/* ____________________________________________________ */
  /* Creating Value section */
  .value-section {
    background: #FFFBF0;
    padding: 40px 0;
  }
.value_inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
  }

  .value-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px 38px;
    position: relative;
    overflow: hidden;
    border:2px solid #FFEDD5;
  }

  .value-card.card-teal { border-color: #CCFBF1; }
  .value-card.card-pink { border-color: #FCE7F3; }

.value-card-blob {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

  .value-card.card-orange .value-card-blob { background: #FEFAF2; }
  .value-card.card-teal .value-card-blob   { background: #F3FBFA; }
  .value-card.card-pink .value-card-blob   { background: #FDF2F8; }

  .value-card-icon {
    font-size: 28px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }

  .value-card-icon svg {
    width: 40px;
    height: 40px;
  }

.value-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 15px;
}

  .value-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
  }

  .value-checklist li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: #000;
    text-align: justify;
  }

  .value-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .value-check svg {
    width: 11px;
    height: 11px;
  }

  .check-orange { background: #FEFAF2; }
  .check-teal   { background: #F3FBFA; }
  .check-pink   { background: #FDF2F8; }
  /* ____________________________________________________ */
  .reviews {
      position: relative;
      background: #FFFBF0;
}

.reviews-inner {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

.reviews .heading-area {
  width: 100%;
}

.all-reviews {
  padding: 20px 50px;
  background-color: var(--primary);
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  border-radius: 50px;
  font-size: 30px;
  font-weight: 600;
}

.all-reviews:hover {
  background-color: #1c5879;
  color: #fff;
}

ul.reviews-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
ul.reviews-list li a {
  display: block;
  background-color: #fff;
  position: relative;
  border-radius: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.20);
  transition: all 0.5s ease 0s;
  overflow: hidden;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  width: 100%;
  border: 8px solid #fff;
}

ul.reviews-list li a img {
  width: 100%;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  vertical-align: top;
}

ul.reviews-list li a::after {
  content: '\e9c2';
  font-family: 'icomoon';
  position: absolute;
  right: 10px;
  top: 10px;
  width: 46px;
  height: 46px;
  padding: 3px;
  font-size: 40px;
  line-height: 40px;
  background-color: var(--primary) !important;
  color: #fff;
  box-shadow: 0 0 8px 0 rgb(0 0 0 / 40%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

ul.reviews-list li.morereview a {
  min-height: 100%;
  font-size: 28px;
  font-weight: bold;
  line-height: 34px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: #fff;
  padding: 15px;
  text-align: center;
  border: 0;
}

ul.reviews-list li.morereview a:hover {
  background-color: var(--primary-dark);
}

ul.reviews-list li.morereview a:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #fff;
  border-radius: 20px 0 0 0;
  -webkit-border-radius: 20px 0 0 0;
  -moz-border-radius: 20px 0 0 0;
  -ms-border-radius: 20px 0 0 0;
  -o-border-radius: 20px 0 0 0;
}

ul.reviews-list li.morereview a:after {
  content: '';
  position: absolute;
  top: auto;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: #fff;
  background-image: none;
  background-color: transparent !important;
  box-shadow: none;
  border-radius: 0 0 20px 0;
  -webkit-border-radius: 0 0 20px 0;
  -moz-border-radius: 0 0 20px 0;
  -ms-border-radius: 0 0 20px 0;
  -o-border-radius: 0 0 20px 0;
}

/* _______________________________________________________ */
.faq {
  padding: 40px 0;
}

.faq-container {
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;

}

.faq-column {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.faq__list{
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 15px;
}
.faq-question {
  width: 100%;
  padding: 12px;
  background-color: #000;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  text-align: justify;
  position: relative;
  font-weight: 600;
  margin-bottom: 10px;
}
.faq__list p {
  padding: 0 15px;

}

.__list {
  padding-left: 20px;
}

.__list span {
  display: block;
  font-size: 16px;
  color: #000;
  text-align: justify;
  line-height: normal;
  position: relative;
  margin: 0 0 6px 0;
}

.__list span::before {
  content: '';
  width: 100%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 2px;
}
/* _______________________________________________________ */

.price-inner {
    max-width: 1310px;
    padding: 0 15px;
    margin: auto;
}
.torn-pricing {
    margin-bottom: 15px;
    position: relative;
}
.price .common-btn {
    font-size: 22px;
    background-color: #FE9B00;
    font-weight: 600;
    color: #ffffff;
    padding: 11px 30px 15px 30px;
    box-sizing: border-box;
    display: inline-block;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.price .common-btn:hover{
    background-color: #c58319;
}

/* _____________________________________ */
.companystats_inner{
  max-width: 1310px;
  padding: 0 15px;
  margin: 0 auto;
}
ul.compaystats-count {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
ul.compaystats-count li {
  list-style-type: none;
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 26px;
  transition: all 0.5s ease 0s;
}
ul.compaystats-count li:hover{
  transform: translateY(5px);
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
}
ul.compaystats-count li:nth-child(1) {
    background: #fff5e6;
}
ul.compaystats-count li:nth-child(2) {
    background: #e8f8f4;
}
ul.compaystats-count li:nth-child(3) {
    background: #eef0ff;
}
ul.compaystats-count li:nth-child(4) {
    background: #fde8f1;
}
ul.compaystats-count li:nth-child(4) {
    background: #fde8f1;
}
ul.compaystats-count li:nth-child(5) {
    background: #e8f5ff;
}
ul.compaystats-count li span {
  display: block;
  margin-bottom: 10px;
  font-size: 54px;
  font-weight: var(--font-bold);
  color: var(--black);
  line-height: 1em;
}
ul.compaystats-count li:nth-child(1) .trusted-number {
    color: #e07b00;
}
ul.compaystats-count li span em {
  font-style: normal;
  font-size: 36px;
  vertical-align: top;
}
/* _________________________________________________ */
.business {
    position: relative;
    padding: 40px 0 40px 0;
    overflow: hidden;
    background: var(--bg-deep);
}
 /* Background grid lines */
  .business::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* Glow orb */
  .business::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,200,255,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .business-inner{
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
  }

.business-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}
.img-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-accent);
    box-shadow: 0 0 40px rgba(0,200,255,0.08), inset 0 0 30px rgba(0,0,0,0.4);
  }

  .img-block img {
    width: 100%;
    display: block;
    border-radius: 16px;
    filter: brightness(0.9) saturate(1.1);
  }

  /* Corner accents */
  .img-block::before,
  .img-block::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
  }
  .img-block::before {
    top: 10px; left: 10px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-radius: 3px 0 0 0;
  }
  .img-block::after {
    bottom: 10px; right: 10px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-radius: 0 0 3px 0;
  }
.right-col {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
.right-col p{
  color: #fff;
  margin-bottom: 0;
}
  .feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 20px 11px 0;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.22s, border-color 0.22s, transform 0.2s, box-shadow 0.22s;
    cursor: default;
    position: relative;
    overflow: hidden;
    align-items: center;
  }

  /* Left accent bar */


  /* Icon box */
  .feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--bg-icon);
    border: 1px solid var(--border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.22s, background 0.22s;
  }

  .feature-icon-wrap svg {
    width: 19px;
    height: 19px;
    color: var(--accent);
  }

  .feature-title {
    font-family: var(--font);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: 0.005em;
  }

  .feature-desc {
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
  }

  /* Hairline divider */
  .feature-divider {
    height: 1px;
    background: var(--border);
    margin: 0 22px;
    opacity: 0.5;
  }


/* ── Large screens (≤1200px) ─────────────────────────────── */
@media (max-width: 1200px) {
  ul.reviews-list li.morereview a{
    font-size: 2.5vw;
    line-height: 3.5vw;
  }
  /* Banner */
  .heading {
    font-size: 38px;
  }
.feature-card {
    scale: 0.8;
}
.feature-card3,
.feature-card4 {
    right: 0;
}
  /* Feature cards that float outside container */
  /* Stats */
  .stats-inner {
    gap: 30px;
  }

  /* Company stats */
  ul.compaystats-count {
    grid-template-columns: repeat(3, 1fr);
  }
  ul.compaystats-count li:nth-child(4),
  ul.compaystats-count li:nth-child(5) {
    grid-column: span 1;
  }
}

/* ── Medium screens (≤992px) ─────────────────────────────── */
@media (max-width: 992px) {

  /* ── Global ── */
  .main-title {
    font-size: 28px;
  }
  .sub-title {
    font-size: 16px;
  }

  /* ── Banner ── */
  .banner {
   padding-bottom: 40px;
  }
  .banner__inner {
    flex-direction: column;
    gap: 40px;
  }
  .left,
  .right {
    width: 100%;
  }
  .heading {
    font-size: 34px;
  }
  .cta-row {
    flex-wrap: wrap;
  }

  /* Floating feature cards — pull them back in-flow on tablets */
  .feature-card {
    position: static;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  }
  .feature-card3,
  .feature-card4 {
    position: static;
    width: 100%;
  }

  /* ── Stats ── */
  .stats-inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .stat-item {
    flex: 0 0 calc(50% - 24px);
  }

  /* ── People / Feature rows ── */
  .people-row,
  .people-row.people-row-reverse,
  .people-row.grid_column_1_1 {
    grid-template-columns: 1fr !important;
  }
  .people-row-reverse .people-image-wrap {
    order: -1; /* image always on top when stacked */
  }
  .people-heading {
    font-size: 28px;
  }

  /* ── Feature cards grid ── */
  .features-grid,
  .top-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Value grid ── */
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Reviews ── */
  ul.reviews-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ── FAQ ── */
  .faq__list {
    grid-template-columns: 1fr;
  }

  /* ── Company stats ── */
  ul.compaystats-count {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Walkthrough ── */
  .walkthrough-container {
    padding: 30px 20px 200px; /* extra bottom for the floating card */
    min-height: 360px;
  }
  .walkthrough-card {
    left: 20px;
    right: 20px;
    max-width: 100%;
    bottom: 20px;
  }
.svg_overlay {
    width: 53%;
}
  /* ── Buttons ── */
  .cmn-primary-btn {
    font-size: 14px;
    height: 42px;
  }
  .business-inner {
    grid-template-columns: 100%;
}
}

/* ── Small screens / tablets-portrait (≤768px) ──────────── */
@media (max-width: 768px) {

  /* ── Global ── */
  .main-title {
    font-size: 24px;
  }

  /* ── Banner ── */
  .heading {
    font-size: 28px;
  }
  .eyebrow {
    font-size: 13px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cta-row {
    flex-direction: column;
    gap: 10px;
  }

  /* ── Stats ── */
  .stat-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  /* ── People section ── */
  .people-heading {
    font-size: 22px;
  }
  .theme-card {
    flex-direction: row; /* keep icon + text side by side */
  }
.people-image-wrap{
  margin-bottom: 15px;
  text-align: center;
}
.people-section {
    padding: 40px 0;
}
  /* ── Features grid ── */

  .features-grid,
  .top-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .features-title {
    font-size: 28px;
  }
  .feat-card {
    border-radius: 24px;
    padding: 24px 20px;
  }

  /* ── Value grid ── */
  .value-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .value-card {
    padding: 24px 20px;
  }

  /* ── Reviews ── */
  /* ── FAQ ── */
  .faq-question {
    font-size: 15px;
  }

  /* ── Company stats ── */
  ul.compaystats-count {
    grid-template-columns: 1fr 1fr;
  }
  ul.compaystats-count li span {
    font-size: 40px;
  }

  /* ── Walkthrough ── */
  .dashboard-mock {
    flex-direction: column;
  }
  .dash-col {
    width: 100%;
  }

  /* ── Button div ── */
  .price .common-btn {
    font-size: 18px;
    padding: 10px 20px;
  }
  .blob-teal{
    display: none;
  }
  .blob-peach-right{
    display: none;
  }
}

/* ── Extra-small phones (≤480px) ────────────────────────── */
@media (max-width: 480px) {

  /* ── Banner ── */
  .heading {
    font-size: 24px;
  }
  .eyebrow {
    font-size: 12px;
    padding: 6px 8px;
  }

  /* ── Stats ── */
  .features-title {
    font-size: 22px;
  }
  /* ── Value ── */
  .value-card-name {
    font-size: 17px;
  }

  /* ── Company stats ── */
  ul.compaystats-count {
    grid-template-columns: 1fr;
  }
  ul.compaystats-count li {
    padding: 20px 15px;
  }
  ul.compaystats-count li span {
    font-size: 36px;
  }

  /* ── FAQ ── */
  .faq {
    padding: 24px 0;
  }
  .faq-question {
    font-size: 14px;
    padding: 10px;
  }
  .__list span {
    font-size: 14px;
  }

  /* ── Walkthrough ── */
  .walkthrough-section {
    padding: 24px 0;
  }
  .walkthrough-container {
    border-radius: 16px;
    padding: 20px 14px 220px;
    min-height: 300px;
  }
  .play-btn {
    width: 56px;
    height: 56px;
  }
  .walkthrough-card {
    padding: 14px 16px;
  }
  .walkthrough-card-title {
    font-size: 14px;
  }

  /* ── Reviews ── */
  ul.reviews-list li a {
    border-width: 4px;
  }

  /* ── Buttons ── */
  .cmn-primary-btn {
    font-size: 13px;
    height: 40px;
    padding: 0 6px 0 10px;
  }
  .cmn-primary-btn span {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-left: 6px;
  }

  /* ── General text ── */
  p {
    font-size: 15px;
    line-height: 22px;
  }
  ul.reviews-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
  ul.reviews-list li.morereview a{
    font-size: 4.5vw;
    line-height: 5vw;
  }
  ul.reviews-list li.morereview a:before {
    width: 30px;
    height: 30px;
    border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -ms-border-radius: 10px 0 0 0;
    -o-border-radius: 10px 0 0 0;
}
ul.reviews-list li.morereview a:after {
    width: 30px;
    height: 30px;
    border-radius: 0 0 10px 0;
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    -ms-border-radius: 0 0 10px 0;
    -o-border-radius: 0 0 10px 0;
}
.stats-inner {
    flex-wrap: wrap;
    gap: 17px;
    justify-content: center;
}
ul.reviews-list li a::after {
    scale: 0.8;
}
}