/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #209DCD;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
    --SecondaryColor: #122939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
 font-family: "Plus Jakarta Sans", sans-serif;
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}




.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--BlackColor);
    font-size:3rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}


.same-heading h2 .highlight-text{background: var(--PrimaryColor); color: var(--BlackColor); padding: 0.2rem 0.6rem;}
.same-heading h2 .outline-text{ 
  color: #fff;
  -webkit-text-stroke: 1px var(--BlackColor);}

.same-heading h3 {
   
    color: #122939;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #1B1B1B;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}




.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
 

}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;flex-wrap: wrap;
    margin-top: 2rem;
}

.section-bottom-btn.text-center {
    justify-content: center;
}


/* =========================================
   UTILITIES
   ========================================= */
.tag {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #8D8D8D;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    /* Animation Properties */
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-primary .fluid-canvas,
.btn-secondary .fluid-canvas,
.btn-outline-primary .fluid-canvas,
.btn-white .fluid-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.btn-primary .btn-text,
.btn-secondary .btn-text,
.btn-outline-primary .btn-text,
.btn-white .btn-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-primary {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.btn-secondary {
    background: var(--BlackColor);
    border: solid 1px var(--BlackColor);
    color: var(--WhiteColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: #788E37;
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: relative;
    /* background: var(--WhiteColor); */
    padding: 0.5rem 0;
    transition: all 0.3s ease;z-index: 99;
}

.header.headerfix {
     background:var(--WhiteColor);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    top: 0;
    z-index: 100;
    position: fixed;
    left: 0; right: 0;
    padding: 0.8rem 0;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}
.header .nav-content .logo img{max-height: 4rem;}
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 2rem; display: flex; gap: 0.5rem;}


.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: #2A2A2A;
    padding: 0.2rem;
    position: relative;
}
.header .nav-links a:not(.btn)::before{ position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

/* .header .nav-links a:hover:before{    width: 100%;} */


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .header .nav-actions{margin-left: auto;} */

.header .mobile-toggle {
font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
display: inline-flex; align-items: center;
justify-content: center;
}
.header .mobile-toggle svg{width: 1.3rem;}
.header  .btn-sidebar-close{font-size: 1.5rem;
width: 2.6rem;
height: 2.6rem;
background: var(--PrimaryColor);
color: var(--WhiteColor);
border: solid 1px var(--PrimaryColor);
border-radius: 50%;
cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.header  .btn-sidebar-close svg{width: 1.3rem;}



.hero-section {
position: relative;
padding: 11rem 0rem 4rem;
margin-top: -4.2rem;
overflow: hidden;
display: flex; align-items: center;justify-content: center; 
background:
    radial-gradient(
      circle at 70% 40%,
      #72d2ff 0%,
      #b9e8ff 35%,
      #e4f6ff 70%,
      #f8fcff 100%
    );

}




/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  border-radius: 1rem;
}

/* Title */
.hero-section h1 {
  font-size: 5rem;
  font-weight: 600;
  color: var(--BlackColor);
  line-height: 1;margin-bottom: 1.5rem;
}

.hero-section h1 .primary-text{   color: var(--PrimaryColor);}

.hero-section .sub-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--BlackColor);
  line-height: 1.6;
  margin-bottom: 1.4rem;
  width: 100%; max-width: 80%;
}


/* Text */
.hero-section p {
  font-size: 1rem;
  color: #2C2C2C;
  width: 100%; max-width: 80%;
  line-height: 1.6;
}




.feature-stats-section {
  padding: 4rem 0;
  border-top: 1px solid #92929252;
}

.feature-stats-section .feature-box {
  text-align: left;
}

.feature-stats-section .feature-icon {
  margin-bottom: 1rem;
}

.feature-stats-section .feature-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke-width: 1;
  color: var(--BlackColor);
}

.feature-stats-section .feature-box h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--BlackColor);
  margin-bottom: 0.8rem;
}

.feature-stats-section .feature-box p {
  font-size: 1rem;
  color: #929292;
  margin-bottom: 0;
}


.bg-light-gradient{background: linear-gradient(to bottom, #209DCD08, #209DCD33);}


.commerce-section .commerce-card {
  background: linear-gradient(to top, #2BB7EC1A, #2BB7EC00);
  border: solid 1px #E6E6E6;
  border-radius: 30px;
  padding: 2rem 1.5rem;
  transition: all .2s ease;
}


.commerce-section .card-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 17px;
  background: #CCF0FE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;  transition: all .2s ease;
}


.commerce-section .card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--PrimaryColor);
  stroke-width: 2;
}

.commerce-section .commerce-card h3 {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  color:var(--BlackColor);  transition: all .2s ease;

}
.commerce-section .commerce-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: #747474;
  margin-bottom: 0;  transition: all .2s ease;
}

.commerce-section .commerce-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  height:510px;

}

.commerce-section .commerce-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-section .image-overlay-content {
  position: absolute;
  top: 2.4rem;
  left: 2.4rem;
}

.commerce-section .image-overlay-content h3 {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  max-width: 28rem;
  margin-bottom: 0;
}


.commerce-section .commerce-card:hover{background: #021821;}
.commerce-section .commerce-card:hover .card-icon{background: #CCF0FE0D;}
.commerce-section .commerce-card:hover h3{color: var(--WhiteColor);}
.commerce-section .commerce-card:hover p{color: #BFBFBF;}


.tap-scan-earn-section .payment-img {
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 1.6rem;
}

.tap-scan-earn-section .payment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tap-scan-earn-section .payment-content h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--BlackColor);
  margin-bottom: 0.5rem;
}

.tap-scan-earn-section .payment-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #747474;

}

.use-cases-section .usecase-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
}

.use-cases-section .usecase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-cases-section .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.46),
    rgba(0, 0, 0, 0.15)
  );
}

.use-cases-section .card-content {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
  max-width: 32rem;
}

.use-cases-section .card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 5rem;
  background: var(--PrimaryColor);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.use-cases-section .card-content h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 500;
  color: var(--WhiteColor);
  margin-bottom: 0.5rem;
}

.use-cases-section .card-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  width: 100%; max-width: 60%;
  margin-bottom: 0;

}



.connected-commerce-section{background: url(../images/connected-bg.png)no-repeat center center/cover, #020F14;}

/* ── Connected Commerce Flow Diagram ── */
.connected-commerce-section .commerce-flow {
    width: 100%;
    max-width: 55%;
    margin: 4rem auto 0; 
}

.connected-commerce-section .flow-grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
}

.connected-commerce-section .flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.connected-commerce-section .node-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background:#FFFFFF1A;
  border: 1px solid #FFFFFF1A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.connected-commerce-section .node-circle  svg{color: var(--PrimaryColor);}

.connected-commerce-section .node-circle.rewards-circle {
  background: rgba(61, 217, 235, 0.1);
  border-color: rgba(61, 217, 235, 0.4);
  box-shadow: 0 0 24px rgba(61, 217, 235, 0.12), 0 4px 24px rgba(0, 0, 0, 0.35);
}

.connected-commerce-section .node-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.connected-commerce-section .node-name {
  color: var(--WhiteColor);
  font-size: 1rem;
  font-weight: 500;
  display: block;

}

.connected-commerce-section .node-role {
  color:#ffffff57;
  font-size: 0.9rem;
  display: block;
}

.connected-commerce-section .flow-connector {
    width: 10rem;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}

.connected-commerce-section .connector-line {
  width: 100%;
  position: relative;
  border-top: 2px dashed rgba(61, 217, 235, 0.35);
}

.connected-commerce-section .connector-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(61, 217, 235, 0.55);
}

.connected-commerce-section .node-circle i[data-lucide] {
  width: 28px;
  height: 28px;
  stroke: #3dd9eb;
  stroke-width: 1.5;
}


.hardware-section .hardware-features {
  margin-top: 2rem;
}

.hardware-section .feature-row {
  display: flex;
  gap: 1rem;
 

}

.hardware-section .feature-item {
  width: 50%; padding: 1.2rem 0;
    border-top: 1px solid #e3e3e3;
}

.hardware-section .feature-item h3 {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.4rem;
}

.hardware-section .feature-item span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #888;
}

.hardware-section .pricing-text {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--PrimaryColor);
  text-decoration: none;
}

.hardware-section .pricing-text svg {

  color: var(--PrimaryColor);

}



.footer {
  background: #051B23;
 
}

.footer .footer-top-row {
  padding: 4rem 0;
}

.footer .footer-logo {
  max-width: 11rem;
  margin-bottom: 1.6rem;
  display: inline-block;
}



.footer .footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--WhiteColor);
  max-width: 28rem;
  margin-bottom: 0;
}

.footer .footer-links h4 {
  font-size: 1rem; font-weight: 400;
  color: #FFFFFFCC;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer .footer-links ul li {
padding: 0.5rem 0;
}

.footer .footer-links ul li a {
  font-size: 0.9rem;
  color: var(--WhiteColor);
  text-decoration: none;
  transition: 0.3s;
}

.footer .footer-links ul li a:hover {
  color: var(--PrimaryColor);
}

.footer .footer-bottom {
  padding: 1.3rem 0;
  border-top: 1px solid #FFFFFF4D;
  text-align: center;
}

.footer .footer-bottom p {
  font-size: 0.8rem;
  color: var(--WhiteColor);
  margin-bottom: 0;
}

.customer-operator-section{background: #EBF9FF;}
.customer-operator-section .quote-card{background: var(--WhiteColor); padding: 1.5rem; border-radius: 20px; width: 100%; max-width: 70%;}
.customer-operator-section .quote-icon{color: var(--PrimaryColor); margin-bottom: 1rem;}
.customer-operator-section .quote-icon svg{width: 2rem; height: 2rem;     transform: rotate(180deg);} 
.customer-operator-section p{font-size: 1.1rem; line-height: 1.8; color: var(--BlackColor); font-weight: 400;}
.customer-operator-section .quote-footer{border-top:1px solid #DADADA; padding: 1rem 0 0; margin-top: 2rem;}
.customer-operator-section .footer-content {display: flex; align-items: center; gap: 0.8rem; }
.customer-operator-section .footer-content .footer-icon{width: 2.5rem;}
.customer-operator-section .footer-content h3{color: var(--BlackColor); font-size: 1rem; line-height: normal; margin-bottom: 0.2rem;}
.customer-operator-section .footer-content p{color: #979797; font-size: 0.8rem; line-height: normal; margin-bottom: 0;}


.modern-payments-section{background: radial-gradient(circle at 70% 40%, #72d2ff 0%, #b9e8ff 35%, #e4f6ff 70%, #f8fcff 100%)}
.modern-payments-section .section-bottom-btn{margin-top: 3rem;}
.modern-payments-section .section-bottom-btn .talk-btn{color: var(--BlackColor);}



.Settlemen-section .img-bx{position: absolute; right: 0;  bottom: 0; width: 50%;}
.Settlemen-section .stats-wrapper{border-top: 1px solid #FFFFFF80; margin-top: 2rem; padding-top:1.5rem;}
.Settlemen-section .stats-wrapper h3{color: #000000B2; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.Settlemen-section .stats-wrapper p{color: #000000B2; font-size: 0.9rem; font-weight: 400;margin-bottom: 0; max-width: 100%;}



.commerce-brands-section .brands-wrapper{display: flex; align-items: center; justify-content: center; gap: 3rem;}
.commerce-brands-section .brands-wrapper .brand-logo img{    max-height: 1.8rem;}


.scan-pay-earn-section{background: url(../images/scan-pay-earn-layer-bg.png)no-repeat center top, #fff;    background-size: 100%;}
.scan-pay-earn-section .qr-card {
    background: var(--WhiteColor);
    border-radius: 1rem;
    padding: 1.3rem;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 80%;
    margin: auto;
}
.scan-pay-earn-section .qr-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.scan-pay-earn-section .qr-bottom{display: flex; align-items: center; padding: 1rem 0 0; justify-content: space-between;}
.scan-pay-earn-section .qr-bottom strong{  font-size: 1.1rem;
  color: var(--BlackColor);
  font-weight: 600;}

.scan-pay-earn-section .qr-bottom span {
  font-size: 0.9rem;
  color: #686868;
  font-weight: 400;
}

 .scan-pay-earn-section .flow-cards {
background: url(../images/dashboard-arrow.svg)no-repeat left center;  
padding-left: 11rem;
width: 100%;
max-width: 70%;
margin-left: auto;
} 

.scan-pay-earn-section .flow-card {
  background: #fff;
  border: 0.1rem solid var(--PrimaryColor);
  border-radius: 10px;
  padding: 1.3rem;
  margin: 1rem 0;
}

.scan-pay-earn-section .flow-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: #171717;
}

.scan-pay-earn-section .flow-card p {
  font-size: 1rem;
  color: #818181;
  font-weight: 600;
  margin-bottom: 1rem;
}

.scan-pay-earn-section .flow-card ul {
  padding-left: 1.6rem;
  margin-bottom: 0;
  list-style-type: disc;
}

.scan-pay-earn-section .flow-card ul li {
  font-size: 0.9rem;
  color: #818181;
  padding: 0.3rem 0;
}

.scan-pay-earn-section .payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;    width: 100%;
    max-width: 81%;
}

.scan-pay-earn-section .payment-tags .badge {
     font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5rem;
    font-weight: 400;
    line-height: normal;
    background: #eef9ff;
    border: 1px solid var(--PrimaryColor);
    color: var(--PrimaryColor);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.scan-pay-earn-section .payment-tags .badge .dot{width: 0.3rem; height: 0.3rem;border-radius: 50%; background: var(--PrimaryColor); display: inline-block;}



.scan-pay-earn-section .bottom-content {
  text-align: center;
  margin-top: 4rem;
}

.scan-pay-earn-section .bottom-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.6rem;
}

.scan-pay-earn-section .bottom-content p {
  font-size: 1.2rem;
  color: #00a3ff;
  margin-bottom: 0;
}





.settlement-flow .settlement-card {
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid #bde7ff;
  background: linear-gradient(to bottom, #CEF2FF80, #FFFFFF);
}

.settlement-flow .settlement-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--BlackColor);
}

.settlement-flow .settlement-card p {
  font-size: 1rem;
  color: #00000099;

}

.settlement-flow .settlement-card ul {
 list-style: disc;
 padding-left: 1rem;
}

.settlement-flow .settlement-card ul li {
  font-size: 1rem;
  color: #00000099;
  padding: 0.3rem 0;
}

.settlement-flow .card-bottom {
  display: block;
  margin-top: 1rem;
  padding-top: 1.2rem;
  border-top: 0.1rem solid #00000014;
  font-size: 0.9rem;
  color: #00000099;
}

/* ── Clean System Section ── */
.clean-system-section .system-card {
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid #bde7ff;
  /* background: linear-gradient(to bottom, #CEF2FF80, #FFFFFF); */
  display: flex;
  flex-direction: column;
}

.clean-system-section .system-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.clean-system-section .system-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--PrimaryColor);
}

.clean-system-section .system-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: #CCF0FE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean-system-section .system-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--PrimaryColor);
  stroke-width: 2;
}

.clean-system-section .system-card h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--BlackColor);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.clean-system-section .system-card > p {
  font-size: 0.9rem;
  color: #00000099;
  margin-bottom: 1rem;
}

.clean-system-section .dash-list {
  flex: 1;
  padding: 0;
  margin-bottom: 0;
}

.clean-system-section .dash-list li {
  font-size: 0.9rem;
  color: #00000099;
  padding: 0.25rem 0;
}

.clean-system-section .dash-list li::before {
  content: '– ';
}

.clean-system-section .system-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid #00000014;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--BlackColor);
  width: 100%;
  transition: color 0.2s ease;
}

.clean-system-section .system-explore-link svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
}

.clean-system-section .system-explore-link:hover {
  color: var(--PrimaryColor);
}

/* ── Retail Hardware Section ── */
.retail-hardware-section {
  background: var(--PrimaryColor);
}



.retail-hardware-section .hardware-list {
  padding: 0;
  margin-bottom: 2rem;
}

.retail-hardware-section .hardware-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0;
}

.retail-hardware-section .hardware-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.retail-hardware-section .hardware-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: #FFFFFF;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.9rem;
  padding: 1rem 1.2rem;
  max-width: 26rem;
}

.retail-hardware-section .badge-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--PrimaryColor);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.retail-hardware-section .badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.retail-hardware-section .badge-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--BlackColor);
}

.retail-hardware-section .badge-text span {
  font-size: 0.8rem;
  color: #646464;
}

.retail-hardware-section .retail-img-bx img {
  max-height: 28rem;
  object-fit: contain;
}


/* ── Three Audiences Section ── */
.three-audiences-section {
  background: #F3F7F8;
}

.three-audiences-section .same-heading h2 {
  font-size: 2.6rem;
}

.three-audiences-section .audience-card {
  background: #fff;
  border: 1px solid #e2eaf0;
  border-radius: 1.2rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.three-audiences-section .audience-card:hover {
  background: var(--PrimaryColor);
  border-color: var(--PrimaryColor);
}

.three-audiences-section .audience-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #979797;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.three-audiences-section .audience-card:hover .audience-label {
  color: rgba(255, 255, 255, 0.75);
}

.three-audiences-section .audience-list {
  flex: 1;
  padding: 0;
  /* margin-bottom: 1.8rem; */
}

.three-audiences-section .audience-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #1B1B1B;
  padding: 0.35rem 0;
  transition: color 0.3s ease;
}

.three-audiences-section .audience-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--PrimaryColor);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.three-audiences-section .audience-card:hover .audience-list li {
  color: rgba(255, 255, 255, 0.9);
}

.three-audiences-section .audience-card:hover .audience-list li::before {
  background: rgba(255, 255, 255, 0.7);
}

.three-audiences-section .audience-card-footer {
  /* border-top: 1px solid #e2eaf0; */
  padding-top: 1.2rem;
  margin-top: auto;
  transition: border-color 0.3s ease;
}

.three-audiences-section .audience-card:hover .audience-card-footer {
  border-color: rgba(255, 255, 255, 0.25);
}

.three-audiences-section .audience-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--PrimaryColor);
  border: 1px solid var(--PrimaryColor);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;}

.three-audiences-section .audience-link svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke-width: 2;
}

.three-audiences-section .audience-card:hover .audience-link {
  color: var(--PrimaryColor);
  background: #fff;
  border-color: #fff;
}

/* ── ClearPayments Moves Section ── */
.clearpayments-moves-section h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--BlackColor);
  margin-bottom: 1rem;
}


.clearpayments-moves-section .moves-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--PrimaryColor);
  transition: gap 0.2s ease;
}

.clearpayments-moves-section .moves-explore-link svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
}

.clearpayments-moves-section .moves-explore-link:hover {
  gap: 0.7rem;
}

/* ── Transparent Pricing Section ── */
.transparent-pricing-section {
  background: #0d0d0d;
}



.transparent-pricing-section .quote-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #2BB7EC33;
  border-radius: 0.5rem;
  padding: 1rem 1.4rem;
  max-width: 22rem;
  margin-top: 3rem;
}

.transparent-pricing-section .quote-block svg {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--PrimaryColor);
    flex-shrink: 0;
    stroke-width: 1.5;
    position: relative;
    top: -8px;
    transform: rotate(180deg);
}

.transparent-pricing-section .quote-block span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.transparent-pricing-section .pricing-list {
  padding: 0;
  margin: 0;
}

.transparent-pricing-section .pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.transparent-pricing-section .pricing-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transparent-pricing-section .pricing-num {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--PrimaryColor);
  min-width: 1.8rem;
  padding-top: 0.15rem;
  letter-spacing: 0.03em;
}

.transparent-pricing-section .pricing-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.transparent-pricing-section .pricing-info strong {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.transparent-pricing-section .pricing-info span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Choose Settlement Model Section ── */

.choose-model-section .model-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--BlackColor);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.choose-model-section .model-card:hover {
  border-color: var(--PrimaryColor);
  box-shadow: 0 2px 12px rgba(32, 157, 205, 0.1);
  color: var(--BlackColor);
}

.choose-model-section .model-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.choose-model-section .model-arrow svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
  color: #333;
}

.choose-model-section .model-card:hover .model-arrow {
  background: var(--PrimaryColor);
}

.choose-model-section .model-card:hover .model-arrow svg {
  color: #fff;
}

.choose-model-section .contact-sales-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--PrimaryColor);
  transition: gap 0.2s ease;
  margin-top: 5rem;
}

.choose-model-section .contact-sales-link svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
}

.choose-model-section .contact-sales-link:hover {
  gap: 0.7rem;
}

.light-title{font-weight: 300;}
.primary-text{color: #209dcd !important;}

.settlement-flow{background: #F3F7F8;}
.settlement-flow .settlement-rails{margin: 3rem 0 5rem; }


.Settlemen-section{background: url(../images/Settlemen-section-bg.jpg)no-repeat center top/cover;}


/* Wrapper */
.dw-cookie-wrapper {

   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;



}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem; /* 1200px */
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}

.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
     background: #5ec6ec17;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}

.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #f5f9ff;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}


.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #f5f9ff;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}

.inner-banner{    padding: clamp(5rem, 7vw, 5rem) 0;    background: radial-gradient(circle at 70% 40%, #72d2ff 0%, #b9e8ff 35%, #e4f6ff 70%, #f8fcff 100%);}
.inner-banner h1{    color: var(--BlackColor);
    font-size: 2.3rem;
    font-weight: 500;}