.site-content {
            container-type: inline-size;

            width: 100%;
            margin: 0 auto;
            box-sizing: border-box;
        }

body {
        margin-left: 0vw;
        margin-right: 0vw;
    }

    :root {
      --primary-color: #000000;
      --accent-color: #096DF2;
      --text-color: #444;
      --bg-color: #ffffff;
       --nfs-logo-h:40px;
    }

header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .pos-header-inner {
            width: 100%;
    margin: 0 auto;
    padding: 8px min(min(80px, calc(100% * (80 / 1440))), 80px);
    display: flex;
      align-items: center;
      justify-content: space-between;
min-height: calc(var(--nfs-logo-h) + 30px);
 
    }

    .pos-logo {
      display: flex;
      align-items: center;
      font-weight: 700;
      font-size: 23px;
      letter-spacing: 1px;
    }

    .pos-nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
 justify-self: center;
    }


    .pos-nav-links a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      font-size: 14px;
      transition: color 0.2s ease;
    }

.pos-nav-links a:hover {
      color: var(--accent-color);
    }


.pos-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
   margin-left: 220px;
}

.pos-divider {
      width: 1.5px;
      height: 24px;
      background: #D3D3D3;
    }

.pos-nav-right a {
      font-weight: 500;
      text-decoration: none;
      color: #000;
    }

.pos-btn-primary {
      background: #000;
      color: #fff !important;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      transition: background 0.3s ease;
    }

    .pos-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  @media (max-width: 1300px) {
.pos-nav-right {
    margin-left: 100px;
}
  }

    @media (max-width: 1150px) {
.pos-nav-right {
    margin-left: 70px;
}
.pos-nav-links {
    gap: 14px;
}
    }

@media (max-width: 940px) {
  .pos-menu-toggle {
    display: flex;
   z-index: 2100;
    position: relative;
  }

  .pos-nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 24px 40px;
    gap: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 2000;
  }

  .pos-nav-links.show {
    right: 0;
  }

  .pos-nav-links a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
  }

  .pos-nav-right {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column; 
    align-items: baseline; 
  justify-content: flex-start;
    gap: 16px;   
    background: none;
    box-shadow: none;
    padding: 0;

    margin-left: 0;
  }

  .pos-nav-right {
  align-items: stretch;
}

.pos-nav-right a {
  width: 100%;
  text-align: center;
}

  .pos-divider {
    display: none;
  }

  .pos-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6.5px, 6.5px);
  }
  .pos-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .pos-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .pos-menu-toggle span {
     background: #888;
    height: 3px;
    width: 25px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  body.pos-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1500;
    transition: opacity 0.3s ease;

    pointer-events: none;
  }

}

/* HERO */
section.pos-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
	padding: 170px 24px 80px;
      gap: 50px;
    }

    .pos-hero-text {
      flex: 1 1 50%;
    }

    .pos-hero-text,
.pos-hero-image {
  flex: 0 0 50%;
}

	.pos-hero-category {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .pos-hero-category .pos-line {
      width: 2px;
      height: 15px;
      background: var(--accent-color);
      border-radius: 2px;
    }

    .pos-hero-category span {
      color: var(--accent-color);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.32px;
      text-transform: uppercase;
    }


    .pos-hero-text h1 {
      font-size: 50px;
      line-height: 1.2;
      color: #000;
      font-weight: 700;
      margin-bottom: 20px;
	  letter-spacing: -2px;
    }

    .pos-hero-text p {
      font-size: 18px;
      color: #191513;
	  margin-bottom: 25px;
      line-height: 1.6;
	  letter-spacing: -0.48px;

     white-space: pre-line;
    }

    .pos-hero-text p span {
        font-weight: 600;
    }

    .pos-building-hero-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-building-hero-buttons a {
      font-weight: 700;
      text-decoration: none;
       font-size: 19px;
      padding: 17px 40px;
      transition: all 0.25s ease;
    }

    .pos-building-hero-buttons .pos-start-btn {
      background: #1e6bff; 
      color: #fff;
      border-radius: 999px;
    }

.pos-building-hero-buttons .pos-start-btn:hover {
   background: #1556d8;
  transform: translateY(-2px);
}

    .pos-building-hero-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

  
.pos-hero-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-end;

    }

    .pos-hero-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
  section.pos-hero {
        flex-direction: column;
        
        padding-top: 140px;
      }
      .pos-hero-image {
       
        text-align: center;
      }
      .pos-hero-text {
        max-width: 100%;
      }
      .pos-building-hero-buttons {
        justify-content: center;
      }
    }

    @media (max-width: 600px) {
  .pos-building-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

   .pos-building-hero-buttons a {
    width: 100%;
    text-align: center;
  } 
    }

    @media (max-width: 480px) {
  .pos-building-hero-buttons a {
       padding: 16px 0; 
    font-size: 16px;
  }

  .pos-hero-text p {
    font-size: 16px;
  }

.pos-hero-text h1 {
      font-size: 36px;
      
    }
}

/*INFO*/
.pos-info-section {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto 40px;
      padding: 110px 24px 5px;
      gap: 60px;
    }

    .pos-info-section.reverse {
      flex-direction: row-reverse;
    }

    .pos-info-text {
      flex: 1;
    }

    .pos-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-info-text {
 margin-bottom: 20px;
    }

    .pos-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      line-height: 25.2px;
      white-space: pre-line;
    }
    .pos-info-text p:first-of-type {
     margin-bottom: 25px;
   }
    .pos-info-text p span {
      font-weight: 600;
    }

    .pos-info-text ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-info-text ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
    }

    .pos-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-info-text ul li::before {
      content: "✓";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-info-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-info-buttons a {
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      padding: 12px 22px;
     transition: all 0.25s ease;
    }

    .pos-info-buttons .pos-start-btn {
      background: #000;
      color: #fff;
      border-radius: 999px;
    }

.pos-info-buttons .pos-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #222;
}

    .pos-info-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

    .pos-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-info-image img {
      width: 100%;
     height: auto;
     max-height: 600px;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      section.pos-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-section  {
    gap: 40px;
}

      section.pos-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-info-text h2 {
font-size: 28px;
    }

    .pos-info-image img {
    max-width: 100%; 
    width: 100%;

  }
}

/* Building features */
 .pos-building-features {
  padding: 80px 10% 20px;
  text-align: center;
}

.pos-building-features h2 {
   font-size: 40px;
      font-weight: 600;
      color: #000;
    max-width: 900px;
     margin: 0 auto 60px;
      line-height: 45.6px;
}

.pos-building-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.pos-building-features__item {
  max-width: 420px;
  margin: 0 auto;
}

.pos-building-features__icon {
  color: #000;
  margin-bottom: 24px;
}

.pos-building-features__item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.pos-building-features__item p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  color: #000;
}

@media (max-width: 768px) {
  .pos-building-features__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 430px) {
.pos-building-features h2 {
font-size: 28px;
    }
}

.pos-info-section-2 {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1250px;
      margin: 0 auto 30px;
      padding: 90px 24px 5px;
      gap: 60px;
    }

    .pos-info-section-2.reverse {
      flex-direction: row-reverse;
    }

    .pos-info-text {
      flex: 1;
    }

    .pos-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-info-text {
 margin-bottom: 20px;
    }

    .pos-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      line-height: 25.2px;
      white-space: pre-line;
    }
    .pos-info-text p:first-of-type {
   margin-bottom: 25px;
  }
    .pos-info-text p span {
      font-weight: 600;
    }

    .pos-info-text ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-info-text ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
    }

    .pos-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-info-text ul li::before {
      content: "✓";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-info-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-info-buttons a {
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      padding: 12px 22px;
     transition: all 0.25s ease;
    }

    .pos-info-buttons .pos-start-btn {
      background: #000;
      color: #fff;
      border-radius: 999px;
    }

.pos-info-buttons .pos-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #222;
}

    .pos-info-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

    .pos-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-info-image img {
      width: 100%;
     height: auto;

      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      section.pos-info-section-2 {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-section-2  {
    gap: 40px;
}

      section.pos-info-section-2.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-info-text h2 {
font-size: 28px;
    }

    .pos-info-image img {
    max-width: 100%; 
    width: 100%;

  }
}

/* CTA */

.cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
  margin-top: 80px;
}

.cta h2 {
  font-size: 40px;
   color: #fff;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
   color: #fff;
}

.cta p span {
  font-weight: 600;
  color: #fff;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.cta-button.primary {
  background: #1e6bff;
  color: #fff;
}

.cta-button.primary:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.cta-button.outline {
  background: transparent;
  color: #1e6bff;
  border: 2px solid #1e6bff;
}

.cta-button.outline:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 580px) {
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .cta h2 {
  font-size: 32px;
}
}

/* LOGOS */

.pos-logos {
  text-align: center;
  background: #fff;
}

.pos-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.pos-logo-row img {
  height: 121px;        
  width: auto;
}

.pos-logo-item {
  text-align: center;
}

.pos-logo-item img.pos-logo-capterra{
    width: 130px;
    height: 40px;
}

.pos-logo-item img.pos-logo-techradar {
    width: 130px;
    height: 40px;
}

.pos-logo-item img.pos-logo-PCMag {
    width: 130px;
    height: 38px;
}

.pos-logo-item img.pos-logo-trustRadius{
    width: 135px;
    height: 38px;
}

.pos-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
 margin-top: 5px;  
 transform: translateY(-60px);
}

.pos-logo-item .pos-logo-capterra + .pos-stars {
  transform: translateY(-7px); 
}

.pos-logo-item .pos-logo-techradar + .pos-stars {
  transform: translateY(-7px); 
}

.pos-logo-item .pos-logo-PCMag + .pos-stars {
  transform: translateY(-6px); 
}

.pos-logo-item .pos-logo-trustRadius + .pos-stars {
  transform: translateY(-7px); 
}

.pos-star {
  font-size: 25px;
  color: #ffcc00;
  position: relative;
  display: inline-block;
  -webkit-text-stroke: 1px #ffcc00;
}

.pos-star.half {
  color: #fff; 
  -webkit-text-stroke: 1px #ffcc00;
}

.pos-star.empty {
  color: #fff; 
  -webkit-text-stroke: 1px #ffcc00; 
}

.pos-star.half::before {
  content: '★';
  color: #ffcc00;
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
}

@media (max-width: 430px) {
  .pos-logo-item {
    flex: 1 1 100%;
    text-align: center;
  }

  .pos-logo-row {
    gap: 50px;
    margin-top: 50px;
  }

}


/* FOOTER */
footer {
    border-top: 1px solid #e6e6e6;
    padding: 40px 20px;
    color: #f9f9f9;
    font-size: .9em;
    text-align: center;
    background-color: #fff;
  }

  footer a,
  footer p {
    color: #808080;
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    text-decoration: underline;
    color: #808080;
  }

  .footer-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 20px;
    gap: 20px;
  }

  .footer-column {
    flex: 1;
    min-width: 180px;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: left;
  }

  .footer-column.left {
    flex-basis: 20%;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column.middle {
    flex-basis: 40%;
    text-align: left;
  }

  .footer-column.right {
    flex-basis: 25%;
    text-align: left;
  }

  .footer-column.right ul {
    display: block;
    text-align: left;
  }

  .footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-companyName {
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-logo {
    margin-bottom: 20px;
    max-width: 120px;
  }

  .footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .footer-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 12px;
  }

  .footer-socials a svg {
    width: 24px;
    height: 24px;
    fill: #808080;
    transition: fill .2s ease;
  }

  .footer-socials a:hover svg {
    fill: #808080;
  }

  .footer-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
    width: 100%;
    text-align: center;
    font-size: 0.85em;
    
  }

  .copyright-text {
color: #808080;
  }

   .footer-legal {
  margin-bottom: 8px;
  color: #808080;
  font-size: 12px;
  line-height: 1.4;
}

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
    }

    .footer-column {
      min-width: 90%;
      max-width: 350px;
      padding: 0 10px;
      margin-bottom: 30px;
      flex-basis: auto !important;
      text-align: center !important;
      align-items: center !important;
    }

    .footer-column ul {
      display: inline-block;
      text-align: center;
    }

    .footer-column.right ul {
      text-align: center;
    }

    .footer-socials {
      justify-content: center;
    }
  }

  /* */
  .pos-compare-hero-text {
      flex: 1 1 50%;
    }

    .pos-compare-hero-text,
.pos-hero-image {
  flex: 0 0 50%;
}

.pos-compare-hero-text h1 {
      font-size: 50px;
      line-height: 1.2;
      color: #000;
      font-weight: 700;
      margin-bottom: 30px;
	  letter-spacing: -2px;
    }

    .pos-compare-hero-text p {
      font-size: 18px;
      color: #191513;
	  margin-bottom: 25px;
      line-height: 1.6;
	  letter-spacing: -0.48px;

     white-space: pre-line;
    }

    .pos-compare-hero-text p span {
        font-weight: 600;
    }

	.pos-hero-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-hero-buttons a {
      font-weight: 700;
      text-decoration: none;
      font-size: 19px;
      padding: 17px 40px;
      transition: all 0.25s ease;
    }

    .pos-hero-buttons .pos-start-btn {
      background: #1e6bff; 
      color: #fff;
      border-radius: 999px;
    }

.pos-hero-buttons .pos-start-btn:hover {
   background: #1556d8;
  transform: translateY(-2px);
}

    .pos-hero-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

	@media (max-width: 900px) {

      .pos-compare-hero-text {
        max-width: 100%;
      }
   
    }

     @media (max-width: 600px) {
  .pos-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .pos-hero-buttons a {
    width: 100%;
    text-align: center;
  }
     }

    @media (max-width: 480px) {

		.pos-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .pos-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 16px 0; 
    font-size: 16px;
  }

  .pos-compare-hero-text p {
    font-size: 16px;
  }

.pos-compare-hero-text h1 {
      font-size: 36px;
      
    }
}


/*Comparison intro*/
.comparison-intro-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 20px;
  box-sizing: border-box;
}

.comparison-intro-wrap {
  display: flex;
  gap: 0;
  background: #000;
  overflow: hidden;        
  box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

.comparison-intro-image {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.comparison-intro-image-pad{
  width: 100%;
  height: 100%;
  box-sizing: border-box;                          
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-intro-image-pad img {
  display: block;
  width: 100%;
  height: 100%;           
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.comparison-intro-content {
  width: 50%;
  padding: 40px 30px 5px; 
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-intro-title {
  margin: 0 0 18px 0;
  line-height: 1;
  font-weight: 900;
  font-size: 35px;         
  color: #ffffff;
  margin-bottom: 25px;
  max-width: 600px;
  text-align: center;
}

.comparison-intro-sub {
  margin: 0 0 28px 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.1;
  max-width: 600px;
  text-align: center;
}

.comparison-intro-button {
  display: inline-block;
  padding: 12px 28px;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  width: max-content;
  transition: transform .12s ease, opacity .12s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.comparison-intro-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

@media (max-width: 1200px) {
  .comparison-intro-image,
  .comparison-intro-content {
    width: 100%;
  }
  .comparison-intro-content {
    padding: 40px 36px;
  }

  .comparison-intro-wrap {
    flex-direction: column;
  }

  .comparison-intro-content {
    align-items: center;
  }
}

@media (max-width: 1200px) {
  .comparison-intro-wrap {
    flex-direction: column-reverse;
  }

  .comparison-intro-image,
  .comparison-intro-content {
    width: 100%;
  }

  .comparison-intro-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-intro-content {
    padding: 28px 20px;
    text-align: center;
  }

  .comparison-intro-title {
    font-size: 30px;
    line-height: 1.05;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .comparison-intro-sub {
 font-size: 18px;
  }
}

@media (max-width: 550px) {
  .comparison-intro-image-pad img {
    height: 260px;
  }
  .comparison-intro-button {
    padding: 10px 18px;
  }
  .comparison-intro-title {
    font-size: 26px;
    line-height: 1.05;
  }
  .comparison-intro-sub  {
    font-size: 15px;
  }
}

/*best*/
 .pos-comparison-features {
  padding: 80px 10% 20px;
  text-align: center;
}

.pos-comparison-features h2 {
   font-size: 40px;
      font-weight: 600;
      color: #000;
    max-width: 900px;
     margin: 0 auto 60px;
      line-height: 45.6px;
}

.pos-comparison-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.pos-comparison-features__item {
  max-width: 500px;
  margin: 0 auto;
}

.pos-comparison-features__icon {
  color: #000;
  margin-bottom: 20px;
}

.pos-comparison-features__item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.pos-comparison-features__item p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  color: #000;
}

.pos-comparison-features__item ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-comparison-features__item ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
       text-align: left;
    }

    .pos-comparison-features__item ul li:last-child {
  border-bottom: none; 
}

    .pos-comparison-features__item ul li::before {
      content: "✓";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

@media (max-width: 768px) {
  .pos-comparison-features__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 430px) {
.pos-comparison-features h2 {
font-size: 32px;
    margin: 0 auto 40px;
    }
}


.comparison-cta {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 50px 10%;
}

.comparison-cta h2 {
  font-size: 40px;
   color: #000;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.comparison-cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
 color: #000;
}

.comparison-cta p span {
  font-weight: 600;
  color: #fff;
}

.comparison-cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.comparison-cta-button {
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.comparison-cta-button.primary {
  background: #1e6bff;
  color: #fff;
}

.comparison-cta-button.primary:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.comparison-cta-button.outline {
  background: transparent;
  color: #1e6bff;
  border: 2px solid #1e6bff;
}

.comparison-cta-button.outline:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 580px) {
  .comparison-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
    .comparison-cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .comparison-cta h2 {
  font-size: 32px;
}
}

.comparison-accordion-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}
.comparison-accordion-container {
  max-width: 1300px;
  width: 100%;
  display: flex;
  gap: 60px;
}

.comparison-accordion-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comparison-accordion-image-wrapper {
  flex: 1;
  min-height: 500px;

}
.comparison-accordion-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
   transition: opacity .5s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}



.comparison-item {
  border-bottom: 1px solid #ddd;
  position: relative;
  box-sizing: border-box;
}
.comparison-item.active {
  border: 1px solid #ddd;
   border-radius: 5px;
   background: #f5f5f6;


}

.comparison-item:has(+ .comparison-item.active) {
  border-bottom: none;
}

.comparison-header {
  width: 100%;
  background: none;
  border: none;
   padding: 18px 16px; 
  font-size: 20px;
  font-weight: 600;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: #000;
}
.comparison-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: .25s ease;
}
.comparison-item.active .comparison-arrow {
  transform: rotate(-135deg);
}

.comparison-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .5s cubic-bezier(.4,0,.2,1);
}
.comparison-item.active .comparison-content {
  grid-template-rows: 1fr;
}


.comparison-inner {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease;
}

.comparison-item.active .comparison-inner {
  opacity: 1;
  visibility: visible;
}



.comparison-inner {
  padding-bottom: 12px;
    padding: 0 16px 12px;
}

.comparison-inner p {
font-size: 16px;
color: #111;
padding-bottom: 15px;
}

.comparison-cta-button-2 {
  display: inline-block;
  padding: 12px 0;
color: #0062fe;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, opacity .12s ease;
font-size: 16px;
}
.comparison-cta-button-2:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.mobile-comparison-image {
  width: 100%;
  margin-top: 16px;
  border-radius: 12px;
  display: none;
  transition: opacity .35s ease;
}


@media (max-width: 900px) {
  .comparison-accordion-image-wrapper {
    display: none;
  }

  .mobile-comparison-image {
    display: block;
  }
  .comparison-accordion-section {
  padding: 20px 20px 60px;
}
}


  .comparison-main {
  padding: 70px 0 40px;
  background: #fff;
}

.comparison-main__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-main__title {
  font-size: 40px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
}

.comparison-main__table {

     border-top: none;
}


.comparison-main__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.comparison-main__row:last-child {
  border-bottom: 1px solid #ddd;
}

.comparison-main__row:first-child {
  border: none;
}

.comparison-main__row--header {
  border-top: none;
  font-weight: 600;
  border: none;
}


.comparison-main__cell {
  padding: 18px 20px;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.comparison-main__feature {
  font-weight: 600;
  font-size: 26px;
}

.comparison-main__brand {
  justify-content: center;
  font-size: 18px;
}

.comparison-main__brand--erply {
  background: #eaf3ff;
border-radius: 12px 12px 0 0;
}
.comparison-main__row .comparison-main__cell:nth-child(2) {
  background: #eaf3ff;
}

.comparison-main__yes {
  color: #1e6bff;
  font-weight: 600;
  justify-content: center;
}

.comparison-main__no {
  color: #c62828;
  font-weight: 600;
  justify-content: center;
}

.comparison-main__partial,
.comparison-main__limited,
.comparison-main__basic,
.comparison-main__note {
  color: #555;
  font-weight: 500;
  justify-content: center;
}

@media (max-width: 768px) {
  .comparison-main__row {
    grid-template-columns: 1fr;
  }
  .comparison-main__row--header {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }

  .comparison-main__cell {
    justify-content: flex-start;
    border-top: 1px solid #eee;
  }

   .comparison-main__row .comparison-main__cell:nth-child(2)::before {
    content: "Erply";
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-right: 20px;
  }

    .comparison-main__row .comparison-main__cell:nth-child(3)::before {
    content: "Lightspeed";
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #777;
margin-right: 20px;
  }
  .comparison-main__cell {
    padding: 12px 16px;
  }

  .comparison-main__cell:first-child {
    font-weight: 600;
    background: #f9f9f9;
  }
}

@media (max-width: 430px) {
    .comparison-main__title {
        font-size: 32px;
    }
}


 .comparison-cta {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 50px 10%;
}

.comparison-cta h2 {
  font-size: 40px;
   color: #000;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.comparison-cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
 color: #000;
}

.comparison-cta p span {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 430px) {
  .comparison-cta h2 {
  font-size: 32px;
}
}


.comparison-black-cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
}

.comparison-black-cta h2 {
  font-size: 40px;
   color: #fff;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.comparison-black-cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
   color: #fff;
}

.comparison-black-cta p span {
  font-weight: 600;
  color: #fff;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.cta-button.primary {
  background: #1e6bff;
  color: #fff;
}

.cta-button.primary:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.cta-button.outline {
  background: transparent;
  color: #1e6bff;
  border: 2px solid #1e6bff;
}

.cta-button.outline:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 580px) {
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .comparison-black-cta h2 {
  font-size: 32px;
}
}


/* Contact page */
.pos-contact {
  background: radial-gradient(1200px 600px at 20% 20%, #2a2f16 0%, #0f1205 60%);
 
  color: #fff;
  padding: 140px 60px 80px;
  min-height: 100vh;
  display: flex;
  gap: 80px;
  align-items: flex-start;
   justify-content: center;
  box-sizing: border-box;
}

.pos-side {
  max-width: 520px;
}

.pos-side h1 {
  color: #fff;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 20px;
}

.pos-side-desc {
  font-size: 18px;
  color: #fff;
  max-width: 500px;
}

.pos-skip-card {
  margin-top: 60px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(8px);
 
}

.pos-skip-card h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pos-skip-card p {
  color: #fff;
      opacity: .7;
  margin-bottom: 18px;
  font-size: 18px;
}

.pos-skip-link {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.pos-skip-link:hover {
  opacity: 0.7;
}

.pos-contact-wrapper {
  
  border-radius: 22px;
  padding: 20px 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

#captchaConsult {
  margin-top: 12px;
}

.pos-form-header {
  display: none;
}

.pos-contact input,
.pos-contact textarea,
.pos-contact select {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  padding: 16px 18px;
  font-size: 16px;
}

.pos-contact label {
  color: #111;
  font-weight: 500;
}

.pos-contact button {
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}

.pos-contact button:hover {
  background: #f2f2f2;
}

  .pos-contact label {
  position: absolute;
  left: -9999px;
}

.pos-form-group {
  margin-bottom: 16px;
   
}

.pos-contact input,
.pos-contact textarea,
.pos-contact select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  color: #111;
  background: #fff;
  box-shadow: none;
}

.pos-contact textarea {
  height: 96px;
  padding: 16px 18px;
  resize: none;
}

.pos-contact input::placeholder,
.pos-contact textarea::placeholder,
.pos-contact select::placeholder {
  color: #6b7280;
  font-size: 15px;
}
.pos-contact input:focus,
.pos-contact textarea:focus,
.pos-contact select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
  transform: none;
}

.pos-captcha-section {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 10px;
}

.pos-captcha-section img,
.pos-captcha-section canvas {
  margin: 10px 0 12px;
  display: block;
  background: #f1f1f1;
  border-radius: 4px;
}

#captchaConsult {
  height: 56px;
  border-radius: 4px;
}

.pos-contact button {
  margin-top: 24px;
  width: auto;
  padding: 14px 28px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: none;
  font-size: 18px;
}

.pos-contact button:hover {
  background: #f3f4f6;
  transform: none;
  box-shadow: none;
}

.pos-contact-wrapper form {
  display: flex;
  flex-direction: column;
}

.pos-form-group:has(select) {
  position: relative;
}
.pos-form-group:has(select)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23111' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}
.pos-contact label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 15px;
  color: #6B7280;
  pointer-events: none;
  transition: all 0.2s ease;
  background: #fff;
  padding: 0;
}
.pos-contact select:focus + label,
.pos-contact select:valid + label {
  top: 6px;
  font-size: 12px;
  color: #6B7280;
}

@media (min-width: 768px) {
  .pos-contact button {
    width: auto;
    display: inline-block;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .pos-contact button {
    width: 100%;
  }
}

  .pos-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .pos-modal-overlay.active {
    display: flex;
  }

  .pos-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .pos-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
  }

  .pos-modal-content p {
    margin-bottom: 30px;
    color: #424242;
    font-size: 16px;
    line-height: 1.6;
  }

  .pos-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .pos-modal-close:hover {
    color: #000;
  }

  .pos-primary-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .pos-primary-btn:hover {
    transform: translateY(-2px);
    color: #fff;
  }

  .pos-alert {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    padding: 18px 25px;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .pos-alert--error {
    background: linear-gradient(135deg, #ff5252 0%, #f44336 100%);
    color: #ffffff;
    border: 1px solid rgba(244, 67, 54, 0.3);
  }

  .pos-alert.active {
    display: flex;
  }

  .pos-alert .pos-modal-close {
    position: static;
    font-size: 28px;
    color: #ffffff;
    opacity: 0.8;
  }

  .pos-alert .pos-modal-close:hover {
    opacity: 1;
    color: #ffffff;
  }

  .pos-mobile-trial {
  display: none;
  color: #fff;
}

.pos-mobile-trial a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.pos-mobile-trial a:hover {
  opacity: 0.7;
}

  @media (max-width: 870px) {
  .pos-contact {
    flex-direction: column;
    padding: 60px 24px;
     align-items: center;
    text-align: center;
        gap: 10px;
  }

  .pos-contact-wrapper {
    padding: 20px 0;
  }

   .pos-mobile-trial {
    display: inline;
  }

  .pos-side h1 {
    font-size: 38px;
    margin-top: 50px;
  }

  .pos-skip-card {
    display: none;
  }
}

/*Thank you*/
  .pos-thank {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 40px 20px;
}

.pos-thank-inner {
  max-width: 720px;
  text-align: center;
}

.pos-thank-logo {
  margin-bottom: 12px;
}

.pos-thank-logo span {
  display: inline-flex;
  align-items: center;
  transform: scale(2);
}

.pos-thank-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #02091D;
  margin-bottom: 16px;
}

.pos-thank-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4F5C;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .pos-thank-title {
    font-size: 26px;
  }

  .pos-thank-text {
    font-size: 16px;
  }
  .pos-thank-logo span {
    transform: scale(1.25);
  }
}

/*FRanchise*/

section.pos-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
	padding: 170px 24px 80px;
      gap: 50px;
    }

    .pos-hero-text {
      flex: 1 1 50%;
    }

    .pos-hero-text,
.pos-hero-image {
  flex: 0 0 50%;
}

	.pos-hero-category {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .pos-hero-category .pos-line {
      width: 2px;
      height: 15px;
      background: var(--accent-color);
      border-radius: 2px;
    }

    .pos-hero-category span {
      color: var(--accent-color);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.32px;
      text-transform: uppercase;
    }


    .pos-hero-text h1 {
      font-size: 50px;
      line-height: 1.2;
      color: #000;
      font-weight: 700;
      margin-bottom: 20px;
	  letter-spacing: -2px;
    }

    .pos-hero-text p {
      font-size: 18px;
      color: #191513;
	  margin-bottom: 25px;
      line-height: 1.6;
	  letter-spacing: -0.48px;

     white-space: pre-line;
    }

    .pos-hero-text p span {
        font-weight: 600;
    }

    .pos-franchise-hero-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-franchise-hero-buttons a {
      font-weight: 700;
      text-decoration: none;
      font-size: 19px;
      padding: 17px 40px;
      transition: all 0.25s ease;
    }

    .pos-franchise-hero-buttons .pos-franchise-start-btn {
      background: #1e6bff; 
      color: #fff;
      border-radius: 999px;
    }

.pos-franchise-hero-buttons .pos-franchise-start-btn:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

    .pos-franchise-hero-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

  
.pos-hero-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-end;

    }

    .pos-hero-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
  section.pos-hero {
        flex-direction: column;
        
        padding-top: 140px;
      }
      .pos-hero-image {
       
        text-align: center;
      }
      .pos-hero-text {
        max-width: 100%;
      }
      .pos-franchise-hero-buttons {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
  .pos-franchise-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .pos-franchise-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 16px 0; 
    font-size: 16px;
  }

  .pos-hero-text p {
    font-size: 16px;
  }

.pos-hero-text h1 {
      font-size: 36px;
      
    }
}


.generic-trust {
  background: #000;
  padding: 70px 20px;
  color: #fff;
}

.generic-trust-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.generic-trust-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 46px;
  color: #fff;
}

.generic-trust-subtitle {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 48px;
    color: #fff;
}

.generic-trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.generic-trust-logo-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.generic-trust-logo-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
}



@media (max-width: 1024px) {
  .generic-trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .generic-trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .generic-trust-logos {
    grid-template-columns: 1fr;
  }

  .generic-trust-logos {
    justify-items: center; 
  }

  .generic-trust-logo-card {
    max-width: 260px;     
    width: 100%;
  }
}


.pos-franchise-info-section {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto 40px;
      padding: 110px 24px 5px;
      gap: 60px;
    }

    .pos-franchise-info-section.reverse {
      flex-direction: row-reverse;
    }

    .pos-info-text {
      flex: 1;
    }

    .pos-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-info-text {
 margin-bottom: 20px;
    }

    .pos-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      margin-bottom: 25px;
      line-height: 25.2px;
      white-space: pre-line;
    }

    .pos-info-text ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-info-text ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
    }

    .pos-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-info-text ul li::before {
      content: "✓";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-info-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-info-buttons a {
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      padding: 12px 22px;
     transition: all 0.25s ease;
    }

    .pos-info-buttons .pos-start-btn {
      background: #000;
      color: #fff;
      border-radius: 999px;
    }

.pos-info-buttons .pos-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #222;
}

    .pos-info-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

    .pos-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-info-image img {
      width: 100%;
     height: auto;
 
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      section.pos-franchise-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-franchise-info-section  {
    gap: 20px;
}

      section.pos-franchise-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-info-text h2 {
font-size: 28px;
    }

    .pos-info-image img {
    max-width: 100%; 
    width: 100%;

  }
}



 .franchise-pos-logos {
  background: #fff;
  padding: 40px 0 50px;
}

.pos-logo-row-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.franchise-logo-card {
  width: 220px;
  height: 100px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

.franchise-logo-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.franchise-logo-card img {
  max-width: 140px;
  max-height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.pos-stars-2 {
  display: flex;
  gap: 2px;
}

.pos-star {
  font-size: 18px;
  color: #ffcc00;
  position: relative;
  -webkit-text-stroke: 1px #ffcc00;
}

.pos-star.half {
  color: #fff;
}

.pos-star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #ffcc00;
}

@media (max-width: 480px) {
  .franchise-logo-card {
    width: 100%;
    max-width: 280px;
  }
}


.cta-franchise {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
}

.cta-franchise h2 {
  font-size: 40px;
   color: #fff;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.cta-franchise p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
   color: #fff;
}

.cta-franchise-button {
  display: inline-block;
  margin-top: 30px;
  padding: 17px 36px;
  background: #1e6bff; 
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px; 
  transition: background 0.25s ease, transform 0.2s ease;
}

.cta-franchise-button:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cta-franchise-button {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .cta h2 {
  font-size: 32px;
}
}

/*GENERIC */
.generic-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("https://cdn.erply.com/images/558691/generic-gero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 24px 200px;
}

.generic-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.generic-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #fff;

  padding-top: 60px;
}

.generic-hero-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.generic-hero-line {
  width: 2px;
  height: 16px;
  background: #fff;
}

.generic-hero-category span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.generic-hero-content h1 {
  font-size: 56px;
  max-width: 600px;
  line-height: 1.15;
  font-weight: 700;
      margin-bottom: 30px;
  letter-spacing: -2px;
    color: #fff;
}

.generic-hero-content p {
      font-size: 18px;
      color: #191513;
	  margin-bottom: 30px;
      line-height: 1.6;
	  letter-spacing: -0.48px;
    color: #fff;
     white-space: pre-line;
    }

.generic-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.generic-hero-btn {
  font-weight: 700;
  font-size: 19px;
      padding: 17px 40px;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.generic-hero-btn.primary {
  background: #1e6bff;
  color: #fff;
}

.generic-hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.generic-hero-btn.secondary {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.generic-hero-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .generic-hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .generic-hero-content h1 {
    font-size: 32px;
  }

  .generic-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .generic-hero-btn {
    text-align: center;
    padding: 16px 0; 
    font-size: 16px;
  }

  .generic-hero-btn {
    width: 100%;
    text-align: center;
  }
}


.generic-carousel {
  max-width: 1400px;
  margin: -130px auto 0;
  padding: 80px 24px;
  position: relative;
  z-index: 10;
}

.generic-carousel-track--static {
  display: block;
  transform: none !important;
}

.generic-carousel-item {
  min-width: auto;
  padding: 0;
}

.generic-carousel-content--info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 48px 56px;
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 4px 8px rgba(0, 0, 0, 0.04);
  height: auto;
}

.generic-carousel-text {
  width: 100%;
  padding: 0;
}

.generic-carousel-text h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 26px;
  color: #000;
}

.generic-carousel-text p {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}

@media (max-width: 900px) {
  .generic-carousel-content--info {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
    text-align: center;
  }
}

.generic-info-section {
max-width: 1300px;
margin: 0 auto;
padding: 120px 24px 80px;
display: flex;
flex-direction: column;
gap: 140px;
}

.generic-info-row {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 80px;
}

.generic-info-row--reverse {
direction: rtl;
}

.generic-info-row--reverse > * {
direction: ltr;
}

.generic-info-overlap {
margin-top: 10px;
}

.generic-info-media {
border-radius: 22px;
overflow: hidden;
}

.generic-info-media img {
width: 100%;
display: block;
max-height: 730px;
}

.generic-info-text h2 {
font-size: 38px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    line-height: 45.6px;
}

.generic-info-text p {
font-weight: 400;
    font-size: 18px;
    color: #000;
    line-height: 25.2px;
    white-space: pre-line;
}

.retail-scene {
  position: relative;
  width: 100%;
  background: #f8f9fa;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.retail-svg {
  width: 100%;
  height: auto;
  display: block;
}

.offline-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  max-width: 280px;
  width: calc(100% - 60px);
animation: cardFloat 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.offline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.offline-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #555;
  margin: 0;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ecfdf5;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.offline-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offline-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.offline-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.growth-card {
  background: #f0f7ff;
  border: 1px solid rgba(30, 107, 255, 0.08);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.06);
  max-width: 640px;
}

.growth-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #ecfdf5;
  color: #166534;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.growth-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #444;
}

.growth-sub {
  font-size: 15px;
  line-height: 22px;
  color: #555;
  margin-bottom: 32px;
  max-width: 420px;
}

.growth-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.growth-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  background: #e6f0ff;
  border: 1px solid rgba(30, 107, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.growth-row:hover {
  border-color: #1e6bff;
  transform: translateY(-2px);
}

.growth-icon {
  width: 24px;
  height: 24px;
  color: #111;
}

.growth-icon svg {
  width: 100%;
  height: 100%;
}

.growth-label {
  color: #444;
}

.growth-value {
  font-weight: 600;
  color: #555;
}

@media (max-width: 1024px) {
  .generic-info-row {
    gap: 48px;
  }
  
  .generic-info-overlap {
    margin-top: -50px;
  }
}

@media (max-width: 768px) {
  .generic-info-row,
  .generic-info-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .generic-info-row .generic-info-media {
    order: 2;
  }
  
  .generic-info-section {
    gap: 100px;
  }
  
  .generic-info-overlap {
    margin-top: 0;
  }
  
  .offline-card {
    max-width: 240px;
    padding: 20px;
  }
  
  .offline-header h3 {
    font-size: 18px;
  }
  
  .offline-item {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .generic-info-text h2 {
    font-size: 28px;
  }
  .growth-card {
  padding: 25px 20px 20px 20px;
}

.growth-badge  {
  top: 8px;
}
  
  .growth-title {
    font-size: 20px;
  }
  
  .growth-label, .growth-value {
    font-size: 12px;
  }
  
  .generic-info-section {
    padding: 100px 40px 80px;
  }
  
  .offline-card {
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
}

.backoffice-circles {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.backoffice-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.orbit-icon {
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-icon:hover {
  transform: translateZ(25px) scale(1.08);
}

.backoffice-text {
  flex: 1;
  min-width: 320px;
}

.backoffice-text h2 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
  line-height: 45px;
}

.backoffice-text p {
  font-size: 18px;
  color: #000;
  line-height: 26px;
  margin-bottom: 16px;
}

.circle-back {
    transform: scale(1.3); 
    transform-origin: center;
}

@media (max-width: 900px) {
  .backoffice-circles {
    order: 1;
  }
  .backoffice-text {
    order: 2;
  }
}

.retail-scene .retail-svg image {
  transition: transform 0.7s ease;
  transform-origin: center;
}

.retail-scene:hover .retail-svg image {
  transform: scale(1.06);
}



.generic-pos-logos {
  background: #fff;
  padding: 0 0 50px;
}

.pos-logo-row-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.generic-logo-card {
  width: 220px;
  height: 100px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

.generic-logo-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.generic-logo-card img {
  max-width: 140px;
  max-height: 40px;
  object-fit: contain;
  margin-bottom: 5px;
}

.pos-stars-2 {
  display: flex;
  gap: 2px;
}

.pos-star {
  font-size: 18px;
  color: #ffcc00;
  position: relative;
  -webkit-text-stroke: 1px #ffcc00;
}

.pos-star.half {
  color: #fff;
}

.pos-star.half::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #ffcc00;
}

@media (max-width: 480px) {
  .generic-logo-card {
    width: 100%;
    max-width: 280px;
  }
}

.cta-generic {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
}

.cta-generic h2 {
  font-size: 40px;
   color: #fff;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.cta-generic p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
   color: #fff;
}

.cta-generic-button {
  display: inline-block;
  margin-top: 20px;
    padding: 17px 36px;
  background: #1e6bff; 
  color: #fff;
 font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px; 
  transition: background 0.25s ease, transform 0.2s ease;
}

.cta-generic-button:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cta-generic-button {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .cta-generic h2 {
  font-size: 32px;
}
}

.footer-legal {
  margin-bottom: 8px;
  color: #808080;
  font-size: 12px;
  line-height: 1.4;
}


section.features {
      max-width: 1300px;
      margin: 50px auto 80px;
      padding: 0 24px;
      text-align: center;
    }

    .features h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 50px;
        line-height: 45.6px;
    }

    .features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
       
    }


    .feature-card {
      flex: 1 1 calc(25% - 40px);
      text-align: center;
      box-sizing: border-box;
    }

    .feature-card img {
        width: 100%;
  max-width: 235px;
height: 200px;

      margin-bottom: 20px;
      border-radius: 15px;
    }

    .feature-card h3 {
      white-space: pre-line;

      font-size: 18px;
      font-weight: 600;
      color: #000;
      margin-bottom: 15px;
       min-height: 2.5em;
       display: flex;              
  align-items: center;         
  justify-content: center;
    }

    .feature-card p {
        font-weight: 400;
      font-size: 16px;
      color: #000;
      line-height: 25.2px;
    }
    .icon-square {
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
     transition: all 0.25s ease;
     border: 1px solid transparent;
}
.icon-square:hover{
background: #f0f7ff;
 border: 1px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(30, 107, 255, 0.3); 
}

.feature-card svg {
    width: 40px;
    height: 40px;
}

    @media (max-width: 1200px) {
  .features-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
 .feature-card {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 430px) {

  .features-grid {
    justify-content: center; 
    gap: 50px; 
  }

  .feature-card {
    flex: 1 1 100%;
  }

   .features h2 {
      font-size: 28px;
    }
}


.pos-info-section {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto 40px;
      padding: 110px 24px 5px;
      gap: 60px;
    }

    .pos-info-section.reverse {
      flex-direction: row-reverse;
    }

    .pos-info-text {
      flex: 1;
    }

    .pos-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-info-text {
 margin-bottom: 20px;
    }

    .pos-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      margin-bottom: 25px;
      line-height: 25.2px;
      white-space: pre-line;
    }

    .pos-info-text ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-info-text ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
    }

    .pos-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-info-text ul li::before {
      content: "✓";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-info-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-info-buttons a {
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      padding: 12px 22px;
     transition: all 0.25s ease;
    }

    .pos-info-buttons .pos-start-btn {
      background: #000;
      color: #fff;
      border-radius: 999px;
    }

.pos-info-buttons .pos-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #222;
}

    .pos-info-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

    .pos-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-info-image img {
      width: 100%;
     height: auto;

      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      section.pos-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-section  {
    gap: 50px;
}

      section.pos-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-info-text h2 {
font-size: 28px;
    }

    .pos-info-image img {
    max-width: 100%; 
    width: 100%;

  }
}

.cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
  margin-top: 80px;
}

.cta h2 {
  font-size: 40px;
   color: #fff;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
   color: #fff;
}

.cta-party-button {
  display: inline-block;
  margin-top: 30px;
    padding: 17px 36px;
  background: #1e6bff; 
  color: #fff;
 font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px; 
  transition: background 0.25s ease, transform 0.2s ease;
}

.cta-party-button:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cta-party-button {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .cta h2 {
  font-size: 32px;
}
}




/*NetSuite page*/
.pos-netsuite-background {
    background: #f3b38f;
  }
 
.pos-netsuite-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
	padding: 160px 24px 80px;
      gap: 70px;
    }

    .pos-netsuite-hero-text {
      flex: 1 1 50%;
    }

    .pos-netsuite-hero-text,
.pos-netsuite-hero-image {
  flex: 0 0 50%;
}

	.pos-netsuite-hero-category {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .pos-netsuite-hero-category .pos-netsuite-line {
      width: 2px;
      height: 15px;
      background: #000;
      border-radius: 2px;
    }

    .pos-netsuite-hero-category span {
      color: #000;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.32px;
      text-transform: uppercase;
    }


    .pos-netsuite-hero-text h1 {
      font-size: 50px;
      line-height: 1.2;
      color: #000;
      font-weight: 700;
      margin-bottom: 25px;
	  letter-spacing: -2px;
    }

    .pos-netsuite-hero-text p {
      font-size: 18px;
      color: #000;
	  margin-bottom: 35px;
      line-height: 1.6;
	  letter-spacing: -0.48px;

     white-space: pre-line;
    }

    .pos-netsuite-hero-bold {
      color: #000;
      font-weight: 700;
    }

    .pos-netsuite-hero-text p span {
        font-weight: 600;
    }

    .pos-netsuite-hero-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-netsuite-hero-buttons a {
      font-weight: 700;
      text-decoration: none;
         font-size: 19px;
    padding: 17px 40px;
      transition: all 0.25s ease;
    }

    .pos-netsuite-hero-buttons .pos-netsuite-start-btn {
          background-color: #000;
    color: #fff;
      border-radius: 10px;
    }

.pos-netsuite-hero-buttons .pos-netsuite-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #222;
}

    .pos-netsuite-hero-buttons .pos-netsuite-demo-btn {
      color: var(--accent-color);
    }

  
.pos-netsuite-hero-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-end;

    }

    .pos-netsuite-hero-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
  .pos-netsuite-hero {
        flex-direction: column;
        
        padding-top: 140px;
      }
      .pos-netsuite-hero-image {
       
        text-align: center;
      }
      .pos-netsuite-hero-text {
        max-width: 100%;
      }
      .pos-netsuite-hero-buttons {
        justify-content: center;
      }

      .pos-netsuite-hero {
	padding: 160px 24px 40px;
      gap: 20px;
    }
    }

    @media (max-width: 480px) {
  .pos-netsuite-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .pos-netsuite-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 16px 0; 
    font-size: 16px;
  }

  .pos-netsuite-hero-text p {
    font-size: 16px;
  }

.pos-netsuite-hero-text h1 {
      font-size: 36px;
      
    }
}

.pos-netsuite-hero-image-hover img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.pos-netsuite-hero-image-hover img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.pos-netsuite-primary:hover {
   color: #333 !important;
  }

  .pos-netsuite-features {
  padding: 70px 10% 80px;
  text-align: center;
 background-color: #e7e5e2;
}

.pos-netsuite-features h2 {
  font-size: 40px;
  font-weight: 600;
  color: #000;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 45.6px;
}

.pos-netsuite-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.pos-netsuite-features__item {
  max-width: 450px;
  margin: 0 auto;
    border-radius: 10px;
    background: #b4c5cb;
    box-shadow: 0 4px 20px rgba(139, 255, 46, 0.04);
    color: #000;
    padding: 2rem;
    transition: all 0.3s;
}

.pos-netsuite-features__item:hover {
   transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  filter: brightness(0.95);
}

.pos-netsuite-features__icon {
  color: #000;
  margin-bottom: 24px;
}

.pos-netsuite-features__item h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.pos-netsuite-features__item p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.pos-netsuite-features-bold {
      color: #000;
      font-weight: 700;
    }

@media (max-width: 1024px) {
  .pos-netsuite-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pos-netsuite-features__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 430px) {
  .pos-netsuite-features h2 {
    font-size: 28px;
  }
}

.pos-netsuite-info-background {
    background-color: #ced8a3;
  }
    .pos-netsuite-info-section {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      padding: 110px 24px 40px;
      gap: 60px;
    }

    .pos-netsuite-info-section.reverse {
      flex-direction: row-reverse;
    }

    .pos-info-text {
      flex: 1;
    }

    .pos-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-info-text {
 margin-bottom: 20px;
    }

    .pos-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      margin-bottom: 25px;
      line-height: 25.2px;
      white-space: pre-line;
    }

    .pos-info-text-netsuite ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #596d67;
       color: #000;
  
    }

    .pos-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-info-text-netsuite ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #596d67;
    }

    .pos-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-info-text-netsuite ul li::before {
      content: "✓";
      color: #596d67;
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-info-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-info-buttons a {
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      padding: 12px 22px;
     transition: all 0.25s ease;
    }

    .pos-info-buttons .pos-start-btn {
      background: #000;
      color: #fff;
      border-radius: 999px;
    }

.pos-info-buttons .pos-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #222;
}

    .pos-info-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

    .pos-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-info-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      .pos-netsuite-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-netsuite-info-section  {
    gap: 50px;
}

      .pos-netsuite-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-info-text h2 {
font-size: 28px;
    }

    .pos-info-image img {
    max-width: 100%; 
    width: 100%;

  }

   .pos-netsuite-info-section {
      gap: 20px;
    }

}

.pos-info-image-2 {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }
.pos-stack-cards {
  position: relative;
  width: 480px;
  height: 560px;
}

.pos-stack-card {
  position: absolute;
  border-radius: 32px;
  padding: 36px 40px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}

.pos-stack-card:hover {
  transform: translateY(-8px);
}


.netsuite-card-1 {
  width: 480px;
  height: 240px;
    background: linear-gradient(135deg, #596d67, #4f5c55);
  color: #fff;
  top: 0;
  left: 0;
  z-index: 3;
}

.pos-card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.pos-badge {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.pos-badge-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

.pos-mini-icons {
  display: flex;
  gap: 6px;
}

.mini-square {
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 3px;
}

.pos-card-content h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 8px;
}

.pos-card-content p {
  color: #fff;
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

.netsuite-card-2 {
  width: 440px;
  height: 220px;
  background: #b4c5cb;
  color: #111;
  top: 150px;
  left: 20px;
  z-index: 2;

  display: flex;
  justify-content: center;
  align-items: flex-end;  
  gap: 24px;
}

.netsuite-card-3 {
  width: 400px;
  height: 210px;
  background: #fff;
  color: #111;
  top: 290px;
  left: 40px;
  z-index: 1;

   display: flex;
  justify-content: center;
  align-items: flex-end;  
  gap: 24px;
}

.pos-stack-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.netsuite-card-2 .pos-stack-icon {
  background: #a8b9bf; 
}

.netsuite-card-3 .pos-stack-icon {
  background: #f0f1f3; 
}

.netsuite-card-2 h3,
.netsuite-card-3 h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
}

.netsuite-card-2 p,
.netsuite-card-3 p {
  font-size: 14px;
  margin: 0;
  color: #555;
}



@media (max-width: 900px) {
 .pos-stack-cards {
    height: 480px;
     margin: 0 auto; 
  }
  .pos-stack-cards {
    transform: scale(0.85);
    transform-origin: top center;
  }

  .pos-info-image-2 { order: 1; justify-content: center; align-items: center; }

}

@media (max-width: 600px) {

  .pos-stack-cards {
    height: 420px;
  }

  .pos-stack-card {
    padding: 28px 26px;
  }

  .netsuite-card-1 {
    height: 170px;
  }

  .netsuite-card-2 {
    height: 160px;
    top: 130px;
  }

  .netsuite-card-3 {
    height: 160px;
    top: 240px;
  }

  .pos-card-content h3 {
    font-size: 20px;
  }

  .netsuite-card-2 h3,
  .netsuite-card-3 h3 {
    font-size: 17px;
  }

}

@media (max-width: 550px) {
   .pos-stack-cards {
    width: 370px;       
    margin: 0 auto;        
    height: 400px;         
  }

  .netsuite-card-1 {
  width: 370px;
}

  .netsuite-card-2 {
   width: 340px;
  }

  .netsuite-card-3 {
    width: 300px;
  }

}

.netsuite-trust {
  background: #e7e5e2;
  padding: 70px 20px;
  color: #fff;
}

.netsuite-trust-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.netsuite-trust-category {
font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(0 0 0 / .5);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.netsuite-trust-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 46px;
color: #000;
line-height: 1.1;
}

.netsuite-trust-subtitle {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 48px;
    color: #fff;
}

.netsuite-trust-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
    justify-items: center;
}

.netsuite-trust-logo-card {
 width: 78px;
    height: 78px;
    background: linear-gradient(135deg, #181818 60%, #232323 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 6px 32px #8BFF2E14, 0 1px 2px #0008;
    transition: all 0.18s;
    cursor: pointer;
    position: relative;
    border: 2px solid #232323;
    overflow: hidden;
}

.netsuite-trust-logo-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.10);
  border-color: rgb(0 0 0 / .5);
}

.netsuite-trust-logo-card img {
     width: 44px;
    height: 44px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.1) drop-shadow(0 2px 8px #8BFF2E22);
}



@media (max-width: 800px) {
  .netsuite-trust-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .netsuite-trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 550px) {
  .netsuite-trust-title {
    font-size: 32px;
  }
}

.netsuite-cta {
  background: #e7e5e2;
  color: #000;
  text-align: center;
  padding: 10px 10% 50px;
}

 .netsuite-cta-container {
  max-width: 900px;
    margin: 0 auto;
background: #b4c5cb;
border-radius: 10px;
  color: #000;
  text-align: center;
  padding: 50px 10%;
}

.netsuite-cta-container h2 {
  font-size: 40px;
   color: #000;
  line-height: 1.1;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.netsuite-cta-container p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
 color: #000;
}

.netsuite-cta-container p span {
  font-weight: 600;
  color: #fff;
}


@media (max-width: 550px) {
  .netsuite-cta-container h2 {
  font-size: 32px;
}
}

.netsuite-black-cta {
  background: #596d67;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
}

.netsuite-black-cta h2 {
  font-size: 42px;
   color: #ced8a3;
  line-height: 1.1;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.netsuite-black-cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 19px;
   color: #fff;
}

.netsuite-black-cta p span {
  font-weight: 600;
  color: #fff;
}

.cta-netsuite-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-netsuite-button {
  padding: 17px 40px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.cta-netsuite-button.primary {
  background-color: #000;
  color: #fff;
}

.cta-netsuite-button.primary:hover {
 box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #222;
}

@media (max-width: 580px) {
  .cta-netsuite-buttons {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .netsuite-black-cta h2 {
  font-size: 32px;
}
}

@media (max-width: 480px) {
    .cta-netsuite-buttons a {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

.template-netsuite-section {
    padding: 40px 20px;
    color: #fff;
    font-size: .9em;
    text-align: center;
    background-color: #010409;
        border-top: none;
  }

  .template-netsuite-section a,
  .template-netsuite-section p {
    color: #fff;
    text-decoration: none;
    line-height: 1.6;
  }

  .template-netsuite-section a:hover {
    text-decoration: underline;
    color: #e6e6e6;
  }

  .footer-netsuite-privacy-link {
    color: #D1D0D0;
  }

  .footer-netsuite-content-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .footer-netsuite-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 20px;
    gap: 20px;
  }

  .footer-netsuite-column {
    flex: 1;
    min-width: 180px;
    padding: 0 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
    text-align: left;
  }

  .footer-netsuite-column.left {
    flex-basis: 20%;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-netsuite-column.middle {
    flex-basis: 40%;
    text-align: left;
  }

  .footer-netsuite-column.right {
    flex-basis: 25%;
    text-align: left;
  }

  .footer-netsuite-column.right ul {
    display: block;
    text-align: left;
  }

  .footer-netsuite-column h3 {
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .footer-netsuite-companyName {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
  }

  .footer-netsuite-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-netsuite-column ul li {
    margin-bottom: 8px;
  }

  .footer-netsuite-logo {
    margin-bottom: 20px;
    max-width: 120px;
  }

  .footer-netsuite-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .footer-netsuite-socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 12px;
  }

  .footer-netsuite-socials a svg {
    width: 24px;
    height: 24px;
    fill: #fff !important;
    transition: fill .2s ease;
  }

  .footer-netsuite-socials a:hover svg {
    fill: #f9f9f9;
  }

  .footer-netsuite-copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / .5);
    width: 100%;
    text-align: center;
    font-size: 0.85em;
    
  }

  .footer-netsuite-legal {
  margin-bottom: 8px;
  color: #808080;
  font-size: 12px;
  line-height: 1.4;
}

  .copyright-netsuite-text {
color: #808080;
  }

  @container (max-width: 768px) {
    .footer-netsuite-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
    }

    .footer-netsuite-column {
      min-width: 90%;
      max-width: 350px;
      padding: 0 10px;
      margin-bottom: 30px;
      flex-basis: auto !important;
      text-align: center !important;
      align-items: center !important;
    }

    .footer-netsuite-column ul {
      display: inline-block;
      text-align: center;
    }

    .footer-netsuite-column.right ul {
      text-align: center;
    }

    .footer-netsuite-socials {
      justify-content: center;
    }
  }



  /*Erply vs Shopify*/
  section.pos-shopify-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
	padding: 170px 24px 80px;
      gap: 50px;
    }

    .pos-shopify-hero-text {
      flex: 1 1 50%;
    }

    .pos-shopify-hero-text,
.pos-shopify-hero-image {
  flex: 0 0 50%;
}

	.pos-shopify-hero-category {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .pos-shopify-hero-category .pos-shopify-line {
      width: 2px;
      height: 15px;
      background: var(--accent-color);
      border-radius: 2px;
    }

    .pos-shopify-hero-category span {
      color: var(--accent-color);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: -0.32px;
      text-transform: uppercase;
    }


    .pos-shopify-hero-text h1 {
      font-size: 50px;
      line-height: 1.2;
      color: #000;
      font-weight: 700;
      margin-bottom: 20px;
	  letter-spacing: -2px;
    }

    .pos-shopify-hero-text p {
      font-size: 18px;
      color: #191513;
	  margin-bottom: 25px;
      line-height: 1.6;
	  letter-spacing: -0.48px;

     white-space: pre-line;
    }

    .pos-shopify-hero-text p span {
        font-weight: 600;
    }

     .pos-vs-hero-bold {
      color: #000;
      font-weight: 700;
    }

    .pos-shopify-hero-buttons {
      display: flex;
 flex-direction: column;   
  align-items: flex-start;
      gap: 18px;
    }

    .pos-shopify-hero-buttons a {
      font-weight: 700;
      text-decoration: none;
      font-size: 19px;
      padding: 17px 40px;
      transition: all 0.25s ease;
    }

    .pos-shopify-hero-buttons .pos-shopify-start-btn {
      background: #1e6bff; 
      color: #fff;
      border-radius: 999px;
    }

.pos-shopify-hero-buttons .pos-shopify-start-btn:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

    .pos-shopify-hero-buttons .pos-shopify-demo-btn {
      color: var(--accent-color);

       background: #fff; 
       border: 2px solid #1e6bff;
  border-radius: 999px;
  transition: all 0.25s ease;
    }

    .pos-shopify-hero-buttons .pos-shopify-demo-btn:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}

  
.pos-shopify-hero-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-end;

    }

    .pos-shopify-hero-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
  section.pos-shopify-hero {
        flex-direction: column;
        
        padding-top: 140px;
      }
      .pos-hero-image {
       
        text-align: center;
      }
      .pos-shopify-hero-text {
        max-width: 100%;
        text-align: center;
      }

      .pos-shopify-hero-category {
    justify-content: center;
  }

  .pos-shopify-hero-buttons {
    align-items: center; 
  }
      .pos-shopify-hero-buttons {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
  .pos-shopify-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .pos-shopify-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 16px 0; 
    font-size: 16px;
  }

.pos-shopify-hero-text h1 {
      font-size: 36px;
      
    }
}


.erply-network-scene-shopify {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.erply-network-scene-shopify::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 190px;
  background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.erply-network-scene-shopify::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 150px;
  background: linear-gradient(180deg, #1e6bff 0%, #1556d8 100%);
  border-radius: 6px;
  opacity: 0.9;
}

.erply-info-card-shopify {
   position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;

  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  width: 360px;
  animation: erplyFloatShopify 4s ease-in-out infinite;
}

@keyframes erplyFloatShopify {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.erply-card-header-shopify {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.erply-store-name-shopify {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.erply-store-id-shopify {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.erply-status-badge-shopify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d1fae5;
  color: #065f46;
  padding: 6px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.erply-status-dot-shopify {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: erplyPulseShopify 2s ease-in-out infinite;
}

@keyframes erplyPulseShopify {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(30,107,255,0.5); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(30,107,255,0); }
}

.erply-stats-shopify {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.erply-stat-row-shopify {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.erply-stat-shopify {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.erply-stat-label-shopify {
  font-size: 12px;
  color: #777;
  font-weight: 600;
}

.erply-stat-value-shopify {
 font-size: 13px;
  font-weight: 600;
  color: #333;
}

.erply-highlight-shopify {
  font-size: 16px;
  font-weight: 700;
  color: #1e6bff;
}

.erply-stat-label-shopify {
  font-size: 12px;
  color: #777;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.erply-rotate-icon-shopify {
  animation: erplyRotateShopify 2s linear infinite;
}

@keyframes erplyRotateShopify {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .pos-shopify-hero-image-vs {
        width: 100%;
    }
    .erply-network-scene-shopify {
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .erply-info-card-shopify {
    position: static;
    width: 350px;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0;
  }
 
}

@media (max-width: 480px) {
    .erply-info-card-shopify {
        width: calc(100% - 40px);
        padding: 16px;
    }
}

.pos-shopify-info-section {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto 40px;
      padding: 100px 24px 5px;
      gap: 60px;
    }

    .pos-shopify-info-section.reverse {
      flex-direction: row-reverse;
    }

    .pos-shopify-info-text {
      flex: 1;
    }

    .pos-shopify-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-shopify-info-text {
 margin-bottom: 20px;
    }

    .pos-shopify-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-shopify-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      margin-bottom: 25px;
      line-height: 25.2px;
      white-space: pre-line;
    }

    .pos-shopify-info-text ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-shopify-info-text ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
    }

    .pos-shopify-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-shopify-info-text ul li::before {
      content: "✓";
      color: var(--accent-color);
      font-weight: 600;
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-info-buttons {
      display: flex;
      gap: 18px;
    }

    .pos-info-buttons a {
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      padding: 12px 22px;
     transition: all 0.25s ease;
    }

    .pos-info-buttons .pos-start-btn {
      background: #000;
      color: #fff;
      border-radius: 999px;
    }

.pos-info-buttons .pos-start-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #222;
}

    .pos-info-buttons .pos-demo-btn {
      color: var(--accent-color);
    }

    .pos-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-info-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      section.pos-shopify-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 70px;
      }

      .pos-shopify-info-section  {
    gap: 20px;
}

      section.pos-shopify-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-shopify-info-text h2 {
font-size: 28px;
    }

    .pos-info-image img {
    max-width: 100%; 
    width: 100%;

  }
}

/*Quote*/
.pos-shopify-quote {
  max-width: 720px;
  margin: 80px auto 10px;
padding: 0 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: #111;
}

.pos-shopify-quote-role {
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  color: #666;
  letter-spacing: 0.2px;
}

@media (max-width: 480px) {
.pos-shopify-quote {
    font-size: 18px;
}
}




.pos-info-cards-shopify {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pos-card-shopify {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: #fff;
    border-radius: 16px;
    padding: 42px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(30,107,255,0.08);
    transition: all 0.3s ease;
}

.pos-card-shopify:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30,107,255,0.12);
}

.pos-card-shopify-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.pos-card-shopify h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    text-align: left;
}

.pos-card-shopify-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

.pos-card-shopify-1 {
    background: #cce0ff;
    z-index: 3;
}
.pos-card-shopify-2 {
    background: #e6f0ff;
    margin-top: -40px;
    z-index: 2;
}
.pos-card-shopify-3 {
    background: #f8fbff;
    margin-top: -40px;
    z-index: 1;
}


@media (max-width: 900px) {
    .pos-info-cards-shopify {
        flex-direction: column;
        order: 1;
    }
}

@media (max-width: 480px) {
    .pos-card-shopify {
    padding: 22px 24px;
}
}



.pos-image-wrapper-shopify {
  position: relative;
  width: 100%;
  display: inline-block; 
  border-radius: 6px;
  overflow: hidden;
}

.pos-image-wrapper-shopify img {
  width: 100%;
  height: auto; 
  display: block; 
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.pos-image-wrapper-shopify:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.pos-image-wrapper-shopify .overlay-dark-layer-shopify {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.pos-image-wrapper-shopify .overlay-live-card-shopify {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 320px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 2;
  animation: overlayFloat 3s ease-in-out infinite;
}

.overlay-live-card-shopify .overlay-icon-shopify {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0a60ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-live-card-shopify .overlay-icon-shopify svg {
  width: 40px;
  height: 40px;
}

.overlay-live-card-shopify .overlay-card-header-shopify {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: left;
}

.overlay-live-card-shopify .overlay-card-subtitle-shopify {
  font-size: 14px;
  color: #555;
  margin-top: 2px;
  text-align: left;
}

@keyframes overlayFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 480px) {
.pos-image-wrapper-shopify .overlay-live-card-shopify {
  max-width: 290px;
    min-width: 240px;
}
}


.erply-vs-shopify-feature {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 50px 10%;
}

.erply-vs-shopify-feature h2 {
  font-size: 40px;
   color: #000;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.erply-vs-shopify-feature p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
 
 color: #000;
}

.erply-vs-shopify-feature p span {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 430px) {
  .erply-vs-shopify-feature h2 {
  font-size: 32px;
}
}

.comparison-main {
  padding: 70px 0 40px;
  background: #fff;
}

.comparison-main__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-main-shopify__title {
  font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
}

.comparison-main__table {
     border-top: none;
}


.comparison-main__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.comparison-main__row:last-child {
  border-bottom: 1px solid #ddd;
}

.comparison-main__row:first-child {
  border: none;
}

.comparison-main__row--header {
  border-top: none;
  font-weight: 600;
  border: none;
}


.comparison-main__cell {
  padding: 18px 20px;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.comparison-main__feature {
  font-weight: 600;
  font-size: 26px;
}

.comparison-main__brand {
  justify-content: center;
  font-size: 18px;
}

.comparison-main__brand--shopify {
    font-size: 20px;
}

.comparison-main__brand--erply {
  background: #eaf3ff;
border-radius: 12px 12px 0 0;
}
.comparison-main__row .comparison-main__cell:nth-child(2) {
  background: #eaf3ff;
}

.comparison-main__yes {
  color: #1e6bff;
  font-weight: 600;
  justify-content: center;
}

.comparison-main__no {
  color: #c62828;
  font-weight: 600;
  justify-content: center;
}

.comparison-main__partial,
.comparison-main__limited,
.comparison-main__basic,
.comparison-main__note {
  color: #555;
  font-weight: 500;
  justify-content: center;
}

.comparison-main__black {
  color: #000;
  font-weight: 500;
  justify-content: center;
}

@media (max-width: 768px) {
  .comparison-main__row {
    grid-template-columns: 1fr;
  }
  .comparison-main__row--header {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }

  .comparison-main__cell {
    justify-content: flex-start;
    border-top: 1px solid #eee;
  }

   .comparison-main__row .comparison-main__cell:nth-child(2)::before {
    content: "Erply";
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-right: 20px;
  }

    .comparison-main__row .comparison-main__cell:nth-child(3)::before {
    content: "Shopify";
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    opacity: 0.8;
margin-right: 20px;
  }
  .comparison-main__cell {
    padding: 12px 16px;
  }

  .comparison-main__cell:first-child {
    font-weight: 600;
    background: #f9f9f9;
  }
}

@media (max-width: 430px) {
    .comparison-main-shopify__title {
        font-size: 32px;
    }
}

.pos-shopify-quote-2 {
  max-width: 720px;
  margin: 60px auto 70px;
padding: 0 20px;
  text-align: center;
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: #111;
}

.pos-shopify-quote-role-2 {
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  color: #666;
  letter-spacing: 0.2px;
}

@media (max-width: 480px) {
.pos-shopify-quote-2 {
    font-size: 18px;
}
}

.erply-vs-shopify-practise {
  max-width: 1300px;
    margin: 0 auto;
background: #eaf3ff;
border-radius: 10px;
  color: #000;
  text-align: center;
  padding: 50px 10%;
}

.erply-vs-shopify-practise h2 {
  font-size: 40px;
   color: #000;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.erply-vs-shopify-practise p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
 
 color: #000;
}

.erply-vs-shopify-practise p span {
  font-weight: 600;
  color: #fff;
}

.vs-cta-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.vs-cta-button {
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.vs-cta-button.primary {
  background: #1e6bff;
  color: #fff;
}

.vs-cta-button.primary:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.vs-cta-button.outline {
  background: transparent;
  color: #1e6bff;
  border: 2px solid #1e6bff;
}

.vs-cta-button.outline:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}
@media (max-width: 1300px) {
  .erply-vs-shopify-practise {
    margin-left: 20px;
    margin-right: 20px;
    padding: 50px 18px;
  }
}

@media (max-width: 580px) {
  .vs-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
    .vs-cta-buttons a {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .erply-vs-shopify-practise h2 {
  font-size: 32px;
}
}

.pos-vs-info-section {
      display: flex;
        align-items: center;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      padding: 80px 24px 110px;
      gap: 60px;
    }

    .pos-vs-info-section.reverse {
      flex-direction: row-reverse;
    }

    .pos-vs-info-text {
      flex: 1;
    }

    .pos-vs-info-text h2 {
      font-size: 38px;
      font-weight: 600;
      color: #000;
      margin-bottom: 25px;
      line-height: 45.6px;
    }

    .pos-vs-info-text {
 margin-bottom: 20px;
    }

    .pos-vs-info-text .pos-info-sub {
      font-weight: 700;
    }

    .pos-vs-info-text p {
      font-weight: 400;
      font-size: 18px;
      color: #000;
      margin-bottom: 25px;
      line-height: 25.2px;
      white-space: pre-line;
    }

    .pos-vs-info-text ul {
      list-style: none;
      margin-bottom: 25px;
      margin-left: 0;
      border-top: 1px solid #DDDDDD;
       color: #000;
  
    }

    .pos-vs-info-li-title {
       display: block; 
       font-weight: 700;
    }

    .pos-vs-info-text ul li {
      position: relative;
      margin-bottom: 8px;
      padding: 10px 0 12px 22px;
      line-height: 22.4px;
      font-weight: 400;
      font-size: 16px;
       border-bottom: 1px solid #DDDDDD;
    }

    .pos-vs-info-text ul li:last-child {
  border-bottom: none; 
}

    .pos-vs-info-text ul li::before {
      content: "✔";
      color: var(--accent-color);
      position: absolute;
      left: 0;
      top: 12;
      font-size: 14.5px;
    }

    .pos-vs-info-image {
      flex: 1;
      text-align: left; 
  display: flex;
  justify-content: flex-start; 
    }

    .pos-vs-info-image img {
      width: 100%;
     height: auto;
      border-radius: 6px;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      section.pos-vs-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-vs-info-section  {
    gap: 20px;
}

      section.pos-vs-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }

      .pos-vs-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }

      .pos-vs-info-buttons {
        justify-content: center;
      }

}

@media (max-width: 430px) {
 .pos-vs-info-text h2 {
font-size: 28px;
    }

    .pos-vs-info-image img {
    max-width: 100%; 
    width: 100%;

  }
}


.growth-card-shopify {
  background: rgb(231, 229, 226);
  border: 1px solid rgba(30, 107, 255, 0.08);
  border-radius: 22px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,0.06);
  max-width: 640px;
  margin: 0 auto;
}



.growth-title-shopify {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #444;
  text-align: left;
}

.growth-sub-shopify {
  font-size: 15px;
  line-height: 22px;
  color: #555;
  margin-bottom: 32px;
  max-width: 420px;
  text-align: left;
}

.growth-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.growth-row-shopify {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  background: rgb(200, 217, 223);
  border: 1px solid rgba(30, 107, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, transform 0.15s ease;
}

.growth-row-shopify:hover {
  border-color: #1e6bff;
  transform: translateY(-2px);
}

.growth-icon {
  width: 24px;
  height: 24px;
  color: #111;
}

.growth-icon svg {
  width: 100%;
  height: 100%;
}

.growth-label-shopify {
  color: #444;
  text-align: left;
}

.growth-value {
  font-weight: 600;
  color: #555;
}

@media (max-width: 430px) {
    .growth-card-shopify {
        padding: 20px;
    }
    .growth-title-shopify {
        font-size: 22px;
    }
}


.comparison-black-cta {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 50px 10%;
}

.comparison-black-cta h2 {
  font-size: 40px;
   color: #fff;
  line-height: 45.6px;
  font-weight: 500;
max-width: 900px;
  margin: 0 auto;
  margin-bottom: 30px;
  white-space: pre-line;
}

.comparison-black-cta p {
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  opacity: 0.9;
   color: #fff;
}

.comparison-black-cta p span {
  font-weight: 600;
  color: #fff;
}

.cta-vs-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-vs-button {
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.cta-vs-button.primary {
  background: #1e6bff;
  color: #fff;
}

.cta-vs-button.primary:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.cta-vs-button.outline {
  background: transparent;
  color: #1e6bff;
  border: 2px solid #1e6bff;
}

.cta-vs-button.outline:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 580px) {
  .cta-vs-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
    .cta-vs-buttons a {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 16px;
    }
}

@media (max-width: 430px) {
  .comparison-black-cta h2 {
  font-size: 32px;
}
}


/*erply vs lightspeed new*/
.erply-network-scene {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.erply-network-scene::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 180px;
  background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.erply-network-scene::after {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 140px;
  background: linear-gradient(180deg, #1e6bff 0%, #1556d8 100%);
  border-radius: 4px;
  opacity: 0.9;
}
.erply-info-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  width: 340px;
  animation: erplyFloat 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes erplyFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.erply-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.erply-store-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
   text-align: left;
}

.erply-store-id {
  font-size: 12px;
  color: #666;
  font-weight: 500;
   text-align: left;
}

.erply-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d1fae5;
  color: #065f46;
  padding: 6px 12px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.erply-status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: erplyPulse 2s ease-in-out infinite;
}

@keyframes erplyPulse {
  0%,100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(76,175,80,0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(76,175,80,0);
  }
}

.erply-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.erply-stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
}

.erply-stat-value {
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.erply-highlight {
  font-size: 16px;
  font-weight: 700;
  color: #1e6bff;
  text-align: left;
}

.erply-stat-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 14px;
}

.erply-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
}

.erply-stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.erply-rotate-icon {
  animation: erplyRotate 2s linear infinite;
}

@keyframes erplyRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.erply-sales {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .erply-network-scene {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .erply-info-card {
    position: static;
    width: 350px;
    margin-bottom: 20px;
  }
 .erply-info-card {
    text-align: left;
    margin-left: 0;
   
  }

  .erply-status-badge {
    align-self: flex-start;
  }
}
@media (max-width: 900px) {
    .pos-hero-image-vs {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .erply-info-card {
        width: calc(100% - 40px);
        padding: 16px;
    }

    .erply-stat-row {
      flex-direction: column;
    }
    .erply-stat-value {
      text-align: left;
    }
}


.comparison-intro-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 220px;
  cursor: default;
}

.comparison-intro-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: #000;
}

.comparison-intro-badge span {
  font-weight: 400;
}

.comparison-intro-image-pad {
  position: relative;
  overflow: hidden; 
}

.comparison-intro-image-pad img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.comparison-intro-image-pad:hover img {
  transform: scale(1.05);
}

.comparison-intro-image-pad::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2); 
  pointer-events: none; 
  z-index: 1;
}

.comparison-intro-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index:2;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 480px;
   min-width: 380px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.comparison-intro-badge svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

.comparison-intro-badge span {
  font-weight: 400;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;

  transform-origin: center;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2); 
  }
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}

.badge-subtitle {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-top: 2px;
}

@media (max-width: 480px) {
.comparison-intro-badge {
    min-width: 260px;
    padding: 15px 20px;
}
}



.comparison-accordion-image-wrapper {
  position: relative;
  flex: 1;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-accordion-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .5s cubic-bezier(.4,0,.2,1);
  border-radius: 12px;
}

.overlay-dark-layer {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.overlay-card-header {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.overlay-card-subtitle {
  font-size: 14px;
  color: #555;
  margin-top: 4px;
}

@keyframes overlayFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.comparison-accordion-image-wrapper {
  position: relative;
  flex: 1;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.comparison-accordion-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.comparison-accordion-image-wrapper:hover img {
  transform: scale(1.05);
}

.overlay-dark-layer {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.overlay-live-card {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  bottom: 30px;
  left: 30px;
  background:  rgba(255, 255, 255, 0.95);
  border-radius: 16px;
    padding: 25px 30px;
    min-width: 350px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  z-index: 2;
  animation: overlayFloat 3s ease-in-out infinite;
}

.overlay-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0a60ff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-icon svg {
  width: 60%;
  height: 60%;
}

@media (max-width: 900px) {
  .comparison-accordion-image-wrapper {
    min-height: 300px;
  }
  .overlay-live-card {
    bottom: 16px;
    left: 16px;
    padding: 12px 16px;
  }
}



.mobile-comparison-wrapper {
  display: none;
}

@media (max-width: 900px) {
  .mobile-comparison-wrapper {
    display: block;
  }
}

.mobile-comparison-image {
  width: 100%;
  border-radius: 12px;
}

.mobile-comparison-wrapper .overlay-live-card {
  position: absolute;
  bottom: 16px;
  left: 26px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 12px 16px;
  max-width: 280px;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-comparison-wrapper .overlay-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0a60ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-comparison-wrapper .overlay-icon svg {
  width: 60%;
  height: 60%;
}

.mobile-comparison-wrapper .overlay-card-header {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.mobile-comparison-wrapper .overlay-card-subtitle {
  font-size: 14px;
  color: #555;
  margin-top: 2px;
}


.comparison-icons-hidden{
display:none;
}
.overlay-icon svg{
width:16px;
height:16px;
}


.pos-privacy-demo-form {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-top: 6px;
}

.pos-privacy-demo-form a {
  color: #fff;
  text-decoration: underline;
}

.pos-privacy-demo-form a:hover {
  opacity: 0.8;
}


/*Party new*/
.party-clean-bg{
  position:relative;
  width:100%;
  min-height:420px;   
  background-image: url("https://cdn.erply.com/images/558691/party-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius:6px;
  overflow: hidden;
}
.party-clean-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.07); 
  z-index:1;
}
.party-info-card-clean{
  position:absolute;
  bottom:40px;
  left:40px;
  background:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
  max-width:420px;
animation: cardFloat 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.party-card-header-clean{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.party-store-thumb-clean{
  width:60px;
  height:60px;
  border-radius:8px;
  border:2px solid #e5e7eb;
}

.party-store-info-clean h3{
  font-size:18px;
  margin-bottom:4px;
  color: #1f2937;
}

.party-store-id-clean{
  font-size:14px;
  color:#6b7280;
  text-align: left;
}

.party-status-section-clean{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid #e5e7eb;
}

.party-pos-status-clean{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  font-weight:600;
  color: #1f2937;
}

.party-check-clean{
  width:20px;
  height:20px;
  background:var(--accent-color);
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.party-features-clean{
  font-size:14px;
  color:#4b5563;
  line-height:1.8;
  text-align: left;
}

.party-badge-container-clean{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:16px;
}

.party-connected-badge-clean{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 12px;
  background:#d1fae5;
  color:#065f46;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.party-status-dot-clean{
  width:8px;
  height:8px;
  background:#10b981;
  border-radius:50%;
  animation:partyPulseClean 2s infinite;
}

@keyframes partyPulseClean{
  0%,100%{opacity:1;}
  50%{opacity:.5;}
}

.party-sync-icon-clean{
  width:20px;
  height:20px;
  animation:partyRotateClean 2s linear infinite;
}

@keyframes partyRotateClean{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@media (max-width:900px){

  .party-clean-bg{
    min-height: auto;
    padding: 20px;
  }

  .party-info-card-clean{
    position: relative;  
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 40px;
  }

}

@media(max-width:768px){
  .party-info-card-clean{
    left:0;
    right:20px;
    bottom:20px;
    max-width:none;
  }
}

@media(max-width:480px) {
.party-store-info-clean h3 {
font-size: 16px;
text-align: left;
}
}



.pos-info-black-party {
    position: relative;
  }
    .pos-info-black-party::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.07);
    z-index: 1;
}
    
    .shared-programs-card {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: #ffffff;
      border-radius: 16px;
      padding: 18px 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      display: flex;
      gap: 14px;
      align-items: flex-start;
      max-width: 340px;
     animation: cardFloat 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
    
    .shared-programs-icon-wrapper {
      position: relative;
      flex-shrink: 0;
    }
    
    .shared-programs-icon {
      width: 42px;
      height: 42px;
      background: #f0f4ff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1e6bff;
    }
    
    .shared-programs-sync-icon {
      position: absolute;
      top: -6px;
      right: -6px;
      width: 22px;
      height: 22px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      animation: rotate 2s linear infinite;
    }
    
    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
    .shared-programs-content {
      flex: 1;
      min-width: 0;
    }
    
    .shared-programs-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 4px;
    }
    
    .shared-programs-content h4 {
      font-size: 16px;
      font-weight: 600;
      color: #000;
      margin: 0;
      line-height: 1.3;
    }
    
    .shared-programs-status {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    
    .status-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
      }
    }
    
    .status-text {
      font-size: 12px;
      font-weight: 500;
      color: #22c55e;
    }
    
    .shared-programs-subtext {
      font-size: 13px;
      color: #6b7280;
      margin: 0;
      line-height: 1.4;
    }
    
    @media (max-width: 900px) {
      section.pos-info-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }
      .pos-info-section  {gap: 50px;}
      section.pos-info-section.reverse {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
      }
      .pos-info-image {
        display: block;
        order: 1;
        text-align: center;
         width: 100%;
      }
      .pos-info-buttons {
        justify-content: center;
      }
      
      .shared-programs-card {
       
        transform: translateX(-50%);
        bottom: 16px;
        max-width: calc(100% - 48px);
      }
    }

@media (max-width: 430px) {
 .pos-info-text h2 {font-size: 28px;
    }
    .pos-info-image img {
    max-width: 100%;
     width: 100%;
  }
  
  .shared-programs-card {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .shared-programs-icon {
    width: 36px;
    height: 36px;
  }
  
  .shared-programs-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .shared-programs-sync-icon {
    width: 20px;
    height: 20px;
  }
  
  .shared-programs-sync-icon svg {
    width: 12px;
    height: 12px;
  }
  
  .shared-programs-content h4 {
    font-size: 14px;
  }
  
  .shared-programs-subtext {
    font-size: 12px;
  }
  
  .status-text {
    font-size: 11px;
  }
}

.payment-card-ui {
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}

.payment-card-inner {
  background: linear-gradient(180deg, #1E3A5F 0%, #162C48 100%);
  border-radius: 26px;
  padding: 36px 30px 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  color: #fff;
}

.payment-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-total-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

.payment-total-value {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.payment-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 22px 0 26px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #27486E;
      border: 1px solid #334155;
  padding: 18px 20px;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.25s ease;
}

.payment-method span {
  color: #fff;
}

.payment-method:hover {
  border: 1px solid #1e6bff;
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.15);
}

.payment-icon-visa {
  background: #e6e6e6;
  color: #111;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.payment-icon-phone {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
}

.payment-confirm-btn {
  width: 100%;
  margin-top: 12px;
  padding: 18px;
  border-radius: 16px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: #1e6bff;
  transition: 0.3s ease;
}

.payment-confirm-btn:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .payment-card-ui {
    margin: 0 auto;
  }
  .payment-total-value {
    font-size: 30px;
  }
  .payment-confirm-btn {font-size: 16px;
  }
}

.report-card-1 {
  background: #FFD8B5;
  margin-top: 0;
  z-index: 3;
   transform: scale(1);
}

.report-card-2 {
  background: #C4F0E6;
  margin-top: -30px;
   z-index: 2;
    transform: scale(0.95);
}

.report-card-3 {
  background: #E3D4FF;
  margin-top: -30px;
  z-index: 1;
  transform: scale(0.90);
}

.pos-info-cards-party .pos-card-party {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(30, 107, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pos-info-cards-party .pos-card-party:hover {
  transform: translateY(-6px) scale(var(--current-scale, 1));
  box-shadow: 0 12px 32px rgba(30, 107, 255, 0.12);
}

.report-card-1 { --current-scale: 1; }
.report-card-2 { --current-scale: 0.95; }
.report-card-3 { --current-scale: 0.90; }

.pos-info-cards-party .pos-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.pos-info-cards-party .pos-card-party h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px 0;
  line-height: 1.3;
  text-align: left;
}

.pos-info-cards-party .pos-card-subtitle {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 900px) {
  .pos-info-cards-party {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .report-card-2,
  .report-card-3 {
    margin-top: 0;
  }
.report-card-2 {
  margin-top: -33px;
}
.report-card-3 {
  margin-top: -33px;
}
}

@media (max-width: 430px) {
  .pos-info-cards-party .pos-card-party {
    padding: 38px 16px;
  }
  .pos-info-cards-party .pos-card-party h3 {
    font-size: 18px;
  }
  .pos-info-cards-party .pos-card-party-subtitle {
    font-size: 14px;
  }
}


.pos-info-black-party {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.pos-info-black-party img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s ease;
  border-radius: 0; 
}

.pos-info-black-party:hover img {
  transform: scale(1.06);
}

/*Building new*/
.generic-hero-building {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("https://cdn.erply.com/images/558691/warehouse-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 24px 200px;
}

.generic-hero-building-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.generic-hero-building-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #fff;

  padding-top: 110px;
}

.generic-hero-building-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.generic-hero-building-line {
  width: 2px;
  height: 16px;
  background: #fff;
}

.generic-hero-building-category span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.generic-hero-building-content h1 {
  font-size: 56px;
  max-width: 600px;
  line-height: 1.15;
  font-weight: 700;
    margin: 0 auto;
      margin-bottom: 30px;
  letter-spacing: -2px;
    color: #fff;
}

.generic-hero-building-content p {
      font-size: 18px;
      color: #191513;
      max-width: 700px;
    margin: 0 auto;
	  margin-bottom: 30px;
      line-height: 1.6;
	  letter-spacing: -0.48px;
    color: #fff;
     white-space: pre-line;
    }

.generic-hero-building-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.generic-hero-building-btn {
  font-weight: 700;
  font-size: 17px;
  padding: 16px 34px;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.generic-hero-building-btn.primary {
  background: #1e6bff;
  color: #fff;
}

.generic-hero-building-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.generic-hero-building-btn.secondary {
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.generic-hero-building-btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .generic-hero-building-content h1 {
    font-size: 40px;
  }

  .generic-hero-building-content {
  padding-top: 100px;
}
}

@media (max-width: 480px) {
  .generic-hero-building-content h1 {
    font-size: 32px;
  }

  .generic-hero-building-buttons {
    flex-direction: column;
    width: 100%;
  }

  .generic-hero-building-btn {
    width: 100%;
    text-align: center;
  }
}

.pos-account-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.pos-account-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.85);
}

.pos-account-image-wrapper:hover img {
    transform: scale(1.05); 
     filter: brightness(0.9);
}

.pos-account-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.1));
    pointer-events: none;
    border-radius: 6px;
    z-index: 1;
}

.pos-account-image-wrapper .pos-account-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    max-width: 90%;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    animation: account-card-slideUp 0.8s ease-out, account-card-float 3s ease-in-out 0.8s infinite;
}

.pos-account-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 450px;
    width: calc(100% - 40px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    animation: slideUpFloat 0.8s ease-out, floatCard 3s ease-in-out 0.8s infinite;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.pos-account-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pos-account-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

.pos-account-info {
    display: flex;
    flex-direction: column;
}

.pos-account-title {
    font-weight: 700;
    font-size: 15px;
    color: #1e293b;
}

.pos-account-id {
    font-size: 13px;
    color: #64748b;
}

.pos-account-badge {
    margin-left: auto;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    animation: badgeSlide 0.6s ease-out 0.3s backwards;
}

.pos-account-bottom {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #1e293b;
    align-items: center;
}

.pos-sync-icon {
    animation: rotateSync 2s linear infinite;
    margin-left: 4px;
}

@keyframes slideUpFloat {
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
}

@keyframes floatCard {
    0%,100% { transform: translateY(0);}
    50% { transform: translateY(-6px);}
}

@keyframes iconPulse {
    0%,100% { transform: scale(1);}
    50% { transform: scale(1.05);}
}

@keyframes badgeSlide {
    0% { opacity: 0; transform: translateX(-10px);}
    100% { opacity: 1; transform: translateX(0);}
}

@keyframes rotateSync {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

@media (max-width:900px){
    .pos-account-card {
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
    }
    .pos-account-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}



            .pos-info-section {
                display: flex;
                align-items: center;
                justify-content: space-between;
                max-width: 1300px;
                margin: 0 auto 40px;
                padding: 110px 24px 5px;
                gap: 60px
            }

            .pos-info-section.reverse {
                flex-direction: row-reverse
            }

            .pos-info-text {
                flex: 1;
                margin-bottom: 20px
            }

            .pos-info-text h2 {
                font-size: 38px;
                font-weight: 600;
                color: #000;
                margin-bottom: 25px;
                line-height: 45.6px
            }

            .pos-info-text p {
                font-weight: 400;
                font-size: 18px;
                color: #000;
                line-height: 25.2px;
                white-space: pre-line
            }

            .pos-info-text p:first-of-type {
                margin-bottom: 25px
            }

            .pos-info-text p span {
                font-weight: 600
            }

            .pos-info-buttons {
                display: flex;
                gap: 18px
            }

            .pos-info-buttons a {
                font-weight: 600;
                text-decoration: none;
                font-size: 14px;
                padding: 12px 22px;
                transition: all 0.25s ease
            }

            .pos-info-buttons .pos-start-btn {
                background: #000;
                color: #fff;
                border-radius: 999px
            }

            .pos-info-buttons .pos-start-btn:hover {
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                background: #222
            }

            .pos-info-image-animation, .pos-info-image {
                flex: 1;
                display: flex;
                justify-content: flex-start;
                text-align: left;
                position: relative
            }

            .pos-info-image img {
                width: 100%;
                height: auto;
                border-radius: 6px;
                object-fit: contain
            }

            .pos-smart-ordering-card {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                border-radius: 12px;
                padding: 16px 20px;
                display: flex;
                align-items: center;
                gap: 14px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
                border: 1px solid rgba(37, 99, 235, 0.1);
                 animation: smartCardCombined 3s ease-in-out forwards;
                max-width: 90%;
                min-width: 280px;
                z-index: 10;
            }

            @keyframes smartCardCombined {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

            @keyframes pos-smart-card-slideUp {
  0% { opacity: 0; transform: translateX(-50%) translateY(30px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes pos-smart-card-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

            .pos-smart-ordering-icon {
                width: 44px;
                height: 44px;
                min-width: 44px;
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                border-radius: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
                animation: pos-smart-icon-pulse 2s ease-in-out infinite
            }

            @keyframes pos-smart-icon-pulse {

                0%,
                100% {
                    transform: scale(1)
                }

                50% {
                    transform: scale(1.05)
                }
            }

            .pos-smart-ordering-content {
                display: flex;
                flex-direction: column;
                gap: 4px
            }

            .pos-smart-ordering-badge {
                font-size: 12px;
                font-weight: 700;
                color: #2563eb;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                  animation: fadeInText 0.6s ease-out forwards;
}

@keyframes fadeInText {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

            @keyframes pos-smart-badge-fade {
                0% {
                    opacity: 0;
                    transform: translateX(-10px)
                }

                100% {
                    opacity: 1;
                    transform: translateX(0)
                }
            }

            .pos-smart-ordering-text {
                font-size: 15px;
                font-weight: 600;
                color: #1e293b;
                margin: 0;
                line-height: 1.2;
                animation: pos-smart-text-fade 0.6s ease-out 0.5s backwards
            }

            @keyframes pos-smart-text-fade {
                0% {
                    opacity: 0;
                    transform: translateX(-10px)
                }

                100% {
                    opacity: 1;
                    transform: translateX(0)
                }
            }

            .pos-hero-animation-section {
                position: relative;
                min-height: 370px;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
                border-radius: 6px
            }

            .pos-hero-animation-bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 6px;
                z-index: 1;
                animation: pos-hero-animation-zoomIn 20s ease-in-out infinite alternate
            }

            @keyframes pos-hero-animation-zoomIn {
                0% {
                    transform: scale(1)
                }

                100% {
                    transform: scale(1.1)
                }
            }

            .pos-hero-animation-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
                z-index: 2;
                border-radius: 6px
            }

            .pos-hero-animation-card {
                position: relative;
                z-index: 3;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(8px);
                padding: 30px 20px;
                border-radius: 16px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
                text-align: center;
                max-width: 80%;
                margin: 20px;
                animation: pos-hero-animation-slideUp 1s ease-out, pos-hero-animation-float 3s ease-in-out infinite;
                transform-origin: center
            }

            @keyframes pos-hero-animation-slideUp {
                0% {
                    opacity: 0;
                    transform: translateY(50px)
                }

                100% {
                    opacity: 1;
                    transform: translateY(0)
                }
            }

            @keyframes pos-hero-animation-float {

                0%,
                100% {
                    transform: translateY(0)
                }

                50% {
                    transform: translateY(-10px)
                }
            }

            .pos-hero-animation-percentage {
                font-size: 26px;
                font-weight: 800;
                color: #2563eb;
                margin-bottom: 10px;
                line-height: 1;
                animation: pos-hero-animation-countUp 2s ease-out
            }

            @keyframes pos-hero-animation-countUp {
                0% {
                    opacity: 0;
                    transform: scale(0.5)
                }

                100% {
                    opacity: 1;
                    transform: scale(1)
                }
            }

            .pos-hero-animation-title {
                font-size: 20px;
                font-weight: 700;
                color: #1e293b;
                margin-bottom: 12px
            }

            .pos-hero-animation-description {
                font-size: 14px;
                color: #64748b;
                font-weight: 500
            }

            .pos-hero-animation-line {
                width: 50px;
                height: 4px;
                background: linear-gradient(90deg, #2563eb, #3b82f6);
                margin: 12px auto;
                border-radius: 2px;
                animation: pos-hero-animation-expandLine 1.5s ease-out
            }

            @keyframes pos-hero-animation-expandLine {
                0% {
                    width: 0
                }

                100% {
                    width: 50px
                }
            }

            .pos-payment-card {
                min-width: 280px
            }

            .pos-payment-icon-container {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px
            }

            .pos-payment-icon {
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 12px;
                background: #f1f5f9;
                color: #94a3b8;
                transition: all 0.4s ease;
                opacity: 0.4;
                transform: scale(0.85)
            }

            .pos-payment-icon.active {
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                color: white;
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
                animation: pos-payment-tap 0.6s ease-in-out
            }

            @keyframes pos-payment-tap {

                0%,
                100% {
                    transform: scale(1)
                }

                50% {
                    transform: scale(1.1)
                }
            }

            .pos-payment-title {
                transition: opacity 0.3s ease
            }

            .pos-pricing-cards-section {
                background: transparent;
                overflow: visible
            }

            .pos-pricing-cards-container {
                display: flex;
                flex-direction: column;
                gap: 0;
                position: relative;
                width: 100%;
                max-width: 500px;
                padding: 20px;
                perspective: 1000px
            }

            .pos-pricing-card {
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                border-radius: 20px;
                padding: 32px 28px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                display: flex;
                flex-direction: column;
                gap: 20px;
                position: relative;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                opacity: 0;
                transform: translateX(-40px) rotateY(-5deg);
                animation: pos-pricing-card-slideIn 0.8s ease-out forwards;
                border: 2px solid rgba(37, 99, 235, 0.1);
                min-height: 220px
            }

            .pos-pricing-card-1 {
                z-index: 2;
                animation-delay: 0.2s
            }

            .pos-pricing-card-2 {
                z-index: 1;
                margin-top: -20px;
                animation-delay: 0.5s;
                transform: translateX(-40px) rotateY(-5deg) translateY(10px)
            }

            .pos-pricing-card:hover {
                transform: translateY(-12px) rotateY(0deg) scale(1.02);
                box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
                border-color: rgba(37, 99, 235, 0.3)
            }

            .pos-pricing-card-icon {
                width: 72px;
                height: 72px;
                min-width: 72px;
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                transition: all 0.4s ease;
                box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
                align-self: center
            }

            .pos-pricing-card:hover .pos-pricing-card-icon {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5)
            }

            .pos-pricing-card-content {
                display: flex;
                flex-direction: column;
                gap: 16px;
                align-items: center;
                text-align: center
            }

            .pos-pricing-card-title {
                font-size: 22px;
                font-weight: 700;
                color: #1e293b;
                margin: 0;
                line-height: 1.3
            }

            .pos-pricing-card-status {
                display: flex;
                align-items: center;
                gap: 12px;
                flex-wrap: wrap;
                justify-content: center
            }

            .pos-pricing-status-badge {
                padding: 8px 16px;
                border-radius: 8px;
                font-size: 13px;
                font-weight: 600;
                transition: all 0.3s ease
            }

            .pos-pricing-status-old {
                background: #fee2e2;
                color: #dc2626;
                text-decoration: line-through;
                opacity: 0.7
            }

            .pos-pricing-status-new {
                background: #dcfce7;
                color: #16a34a;
                box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2)
            }

            .pos-pricing-arrow {
                color: #2563eb;
                flex-shrink: 0;
                animation: pos-pricing-arrow-pulse 2s ease-in-out infinite
            }

            @keyframes pos-pricing-card-slideIn {
                0% {
                    opacity: 0;
                    transform: translateX(-40px) rotateY(-5deg)
                }

                100% {
                    opacity: 1;
                    transform: translateX(0) rotateY(0deg)
                }
            }

            @keyframes pos-pricing-arrow-pulse {

                0%,
                100% {
                    transform: translateX(0)
                }

                50% {
                    transform: translateX(5px)
                }
            }

            .pos-hero-cards-container {
                display: flex;
                flex-direction: column;
                gap: 0;
                position: relative;
                width: 100%;
                max-width: 450px;
                padding: 20px
            }

            .pos-hero-feature-card {
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                border-radius: 16px;
                padding: 48px 32px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                display: flex;
                align-items: center;
                gap: 20px;
                position: relative;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                opacity: 0;
                transform: translateX(-30px);
                animation: pos-card-slideIn 0.6s ease-out forwards
            }

            .pos-hero-feature-card-1 {
                z-index: 3;
                animation-delay: 0.2s
            }

            .pos-hero-feature-card-2 {
                z-index: 2;
                margin-top: -12px;
                animation-delay: 0.4s
            }

            .pos-hero-feature-card-3 {
                z-index: 1;
                margin-top: -12px;
                animation-delay: 0.6s
            }

            .pos-hero-feature-card:hover {
                transform: translateY(-8px) translateX(0);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12)
            }

            .pos-hero-card-icon {
                width: 56px;
                height: 56px;
                min-width: 56px;
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                transition: all 0.3s ease;
                box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25)
            }

            .pos-hero-feature-card:hover .pos-hero-card-icon {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4)
            }

            .pos-hero-card-content {
                flex: 1
            }

            .pos-hero-card-title {
                font-size: 17px;
                font-weight: 700;
                color: #1e293b;
                margin: 0 0 6px 0;
                line-height: 1.3
            }

            .pos-hero-card-description {
                font-size: 14px;
                color: #64748b;
                margin: 0;
                line-height: 1.4
            }

            .pos-hero-card-highlight {
                font-weight: 700;
                color: #2563eb;
                font-size: 16px
            }

            @keyframes pos-card-slideIn {
                0% {
                    opacity: 0;
                    transform: translateX(-30px)
                }

                100% {
                    opacity: 1;
                    transform: translateX(0)
                }
            }

            @media (max-width:900px) {

                .pos-info-section,
                section.pos-info-section.reverse {
                    flex-direction: column;
                    text-align: center;
                    gap: 40px;
                    padding-top: 80px
                }

                .pos-info-image-animation {
                    width: 100%;
                    justify-content: center;
                    align-items: center;
                    order: 2
                }

                .pos-hero-animation-section {
                    min-height: 50vh
                }

                .pos-hero-animation-card {
                    max-width: 90%;
                    padding: 15px
                }

                .pos-hero-animation-bg {
                    width: 100%;
                    height: 100%;
                    object-fit: cover
                }

                .pos-info-buttons {
                    justify-content: center
                }

                .pos-pricing-cards-container {
                    max-width: 100%
                }

                .pos-pricing-card {
                    margin-top: 0 !important;
                    transform: none !important
                }

                .pos-pricing-card-2 {
                    margin-top: 20px !important
                }

                .pos-smart-ordering-card {
                    min-width: 260px;
                    padding: 14px 18px;
                    gap: 12px
                }

                .pos-hero-feature-card {
                padding: 28px 32px;
            }
            }

            @media (max-width:480px) {
                .pos-hero-animation-section {
                    min-height: 30vh
                }

                .pos-info-text h2 {
                    font-size: 28px
                }

                .pos-payment-icon-container {
                    gap: 10px
                }

                .pos-payment-icon {
                    width: 50px;
                    height: 50px
                }

                .pos-payment-icon svg {
                    width: 30px;
                    height: 30px
                }

                .pos-pricing-card {
                    padding: 24px 20px;
                    min-height: auto
                }

                .pos-pricing-card-icon {
                    width: 56px;
                    height: 56px
                }

                .pos-pricing-card-icon svg {
                    width: 36px;
                    height: 36px
                }

                .pos-pricing-card-title {
                    font-size: 18px
                }

                .pos-pricing-status-badge {
                    font-size: 12px;
                    padding: 6px 12px
                }

                .pos-smart-ordering-card {
                    min-width: 240px;
                    padding: 12px 16px;
                    gap: 10px
                }

                .pos-smart-ordering-icon {
                    width: 38px;
                    height: 38px;
                    min-width: 38px
                }

                .pos-smart-ordering-icon svg {
                    width: 20px;
                    height: 20px
                }

                .pos-smart-ordering-badge {
                    font-size: 11px
                }

                .pos-smart-ordering-text {
                    font-size: 13px
                }
            }

/*Review section*/
.pos-reviews {
  background: #eaf3ff;
  padding: 60px 20px;
}

.pos-reviews-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.pos-reviews-photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
}

.pos-reviews-content {
  max-width: 800px;
  position: relative;
}

.pos-reviews-quote-mark {
  font-size: 80px;
  color: #bcdcff;
  line-height: 1;
  margin-bottom: -20px;
}

.pos-reviews-text {
  font-size: 22px;
  line-height: 1.5;
  color: #2b6fa3;
  margin-bottom: 25px;
font-style: italic;
}

.pos-reviews-author {
  font-size: 16px;
  color: #444;
}

.pos-reviews-author strong {
      color: #444;
}


@media (max-width: 1200px) {
.pos-reviews-content {
  max-width: 600px;
}
}

@media (max-width: 900px) {

  .pos-reviews-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .pos-reviews-text {
    font-size: 18px;
  }

  .pos-reviews-photo img {
  object-fit: cover;
}

  .pos-reviews-photo img {
    width: 180px;
    height: 180px;
  }

}

@media (max-width: 480px) {
  .pos-reviews {
    padding: 50px 20px;
  }

  .pos-reviews-text {
    font-size: 16px;
  }

}

.hover-effect-image {
  overflow: hidden; 
  border-radius: 6px; 
}

.hover-effect-image img {
  transition: transform 0.4s ease;
}

.hover-effect-image:hover img {
  transform: scale(1.05); 
}



/*Retail comparison*/
section.pos-shopify-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 170px 24px 80px;
  gap: 50px;
}

.pos-shopify-hero-text {
  flex: 1 1 50%;
}

.pos-shopify-hero-text, .pos-shopify-hero-image {
  flex: 0 0 50%;
}

.pos-shopify-hero-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pos-shopify-hero-category .pos-shopify-line {
  width: 2px;
  height: 15px;
  background: var(--accent-color);
  border-radius: 2px;
}

.pos-shopify-hero-category span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.pos-shopify-hero-text h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.pos-shopify-hero-text p {
  font-size: 18px;
  color: #191513;
  margin-bottom: 25px;
  line-height: 1.6;
  letter-spacing: -0.48px;
  white-space: pre-line;
}

.pos-shopify-hero-text p span {
  font-weight: 600;
}

.pos-vs-hero-bold {
  color: #000;
  font-weight: 700;
}

.retail-compar-hero-buttons {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.retail-compar-hero-buttons a {
  font-weight: 700;
  text-decoration: none;
  font-size: 19px;
  padding: 17px 40px;
  transition: all 0.25s ease;
}

.retail-compar-hero-buttons .pos-shopify-start-btn {
  background: #1e6bff;
  color: #fff;
  border-radius: 999px;
}

.retail-compar-hero-buttons .pos-shopify-start-btn:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.retail-compar-hero-buttons .pos-shopify-demo-btn {
  color: var(--accent-color);
  background: #fff;
  border: 2px solid #1e6bff;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.retail-compar-hero-buttons .pos-shopify-demo-btn:hover {
  background: rgba(30, 107, 255, 0.1);
  transform: translateY(-2px);
}

.pos-shopify-hero-image {
  flex: 1;
  text-align: left;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.retail-checkout-scene {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.retail-checkout-scene::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 180px;
  background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.retail-checkout-scene::after {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 140px;
  background: linear-gradient(180deg, #1e6bff 0%, #1556d8 100%);
  border-radius: 4px;
  opacity: 0.9;
}

.store-info-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 320px;
  animation: cardFloat 3s ease-in-out infinite;
  z-index: 10;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.store-thumbnail {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.store-details {
  flex: 1;
}

.store-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  text-align: left;
}

.store-id {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  text-align: left;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
  }
}

.card-stats {
  display: flex;
  flex-direction: row; 
  gap: 30px; 
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column; 
  gap: 4px;
  min-width: 120px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sync-icon {
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stat-value {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.stat-highlight {
  font-size: 20px;
  color: #1e6bff;
  font-weight: 700;
}

@media (max-width: 900px) {
  section.pos-shopify-hero {
    flex-direction: column;
    padding-top: 140px;
  }

  .stat-item {
    align-items: center;
  }
  
  .pos-shopify-hero-image {
    text-align: center;
     width: 100%;
  }
  
  .pos-shopify-hero-text {
    max-width: 100%;
    text-align: center;
  }
  
  .pos-shopify-hero-category {
    justify-content: center;
  }
  
  .retail-compar-hero-buttons {
    align-items: center;
    justify-content: center;
  }
  
  

  .retail-checkout-scene {
    display: flex;
    justify-content: center;  
    align-items: flex-end;    
    height: 400px;       
    position: relative;     
  }

  .store-info-card {
    position: static;  
    width: 350px;        
    margin-bottom: 20px;      
    transform: none;         
    animation: cardFloat 3s ease-in-out infinite;
  }

   .store-info-card {
    text-align: left;
    margin-left: 0;
   
  }

  .status-badge {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .retail-compar-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  
  .retail-compar-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 16px;
  }
  
  .pos-shopify-hero-text h1 {
    font-size: 36px;
  }
  
  .retail-checkout-scene {
    height: 350px;
  }
  
  .store-info-card {
    width: calc(100% - 40px);
    padding: 16px;
  }
}


.retail-comparison-main {
  padding: 60px 0;
  background: #fff;
}

.retail-comparison-main__container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.retail-comparison-main-shopify__title {
  font-size: 40px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.1;
}

.retail-comparison-main__table {
     border-top: none;
}

.retail-comparison-main__row--header {
  position: sticky;
  top: 70px; 
  z-index: 900; 
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}

.retail-comparison-main__row {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.6fr 0.6fr 0.6fr 0.6fr;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.retail-comparison-main__row:last-child {
  border-bottom: 1px solid #ddd;
}

.retail-comparison-main__row:first-child {
  border: none;
}

.retail-comparison-main__row--header {
  border-top: none;
  font-weight: 600;
  border: none;
}


.retail-comparison-main__cell {
  padding: 18px 20px;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.retail-comparison-main__feature {
  font-weight: 600;
  font-size: 26px;
}

.retail-comparison-main__brand {
  justify-content: center;
  font-size: 18px;
}

.retail-comparison-main__brand--shopify {
    font-size: 18px;
    text-align: center;
}

.retail-comparison-main__brand--erply {
  background: #eaf3ff;
border-radius: 12px 12px 0 0;
}
.retail-comparison-main__row .retail-comparison-main__cell:nth-child(2) {
  background: #eaf3ff;
}

.retail-comparison-main__yes {
  color: #1e6bff;
  font-weight: 600;
  justify-content: center;
}

.retail-comparison-main__no {
  color: #c62828;
  font-weight: 600;
  justify-content: center;
}

.retail-comparison-main__partial,
.retail-comparison-main__limited,
.retail-comparison-main__basic,
.retail-comparison-main__note {
  color: #555;
  font-weight: 500;
  justify-content: center;
}

.retail-comparison-main__black {
  color: rgb(85, 85, 85);
  font-weight: 500;
  justify-content: center;
}

.retail-comparison-main__row:not(.retail-comparison-main__row--header) 
.retail-comparison-main__cell:nth-child(3),
.retail-comparison-main__row:not(.retail-comparison-main__row--header) 
.retail-comparison-main__cell:nth-child(4),
.retail-comparison-main__row:not(.retail-comparison-main__row--header) 
.retail-comparison-main__cell:nth-child(5) {
  border-right: 1px solid #ddd;
}

/* additional info */
.info-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #757575;
  color: #757575;
  font-size: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s;
}

.info-circle:hover {
  background: #000;
  color: #fff;
}

.info-circle.active {
  background: #000;
  color: #fff;
}

.info-tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid #000;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  color: #000;
  display: none;
  z-index: 1000;

  max-width: 400px;       
  white-space: normal;    
  word-wrap: break-word; 
  box-sizing: border-box; 
}

@media (max-width: 1100px) {
.retail-comparison-main__row {
  grid-template-columns: 1.1fr 0.8fr 0.7fr 0.7fr 0.7fr 0.7fr;
}
}

@media (max-width: 900px) {

  .retail-comparison-main__row--header { display: none; }
   .retail-comparison-main__table {
    display: none;   
  }

  .comparison-mobile-slider { position: relative; overflow: hidden; }

  .retail-comparison-main__row {
    display: none;
    width: 100%;
    border: 1px solid #ddd; 
    border-radius: 12px;
    margin-bottom: 16px;
    background: #fff;
    scroll-snap-align: start;
    padding: 16px;
      box-sizing: border-box; 
  }

  .retail-comparison-main__row:first-child {
  border: 1px solid #ddd;
}

  .retail-comparison-main__row.active { display: block; }

  .info-circle {
    display: none;
  }

  .retail-comparison-main__cell .retail-comparison-main__yes {
    display: inline-block; 
  }

  .retail-comparison-main__cell span {
    display: none; 
  }

  .brand-erply, .erply-cell {
    background: #eaf3ff;
    border-radius: 8px;
    padding: 8px;
    font-weight: 600;
  }

  .retail-comparison-main__cell-feature {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .retail-comparison-main__cell-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 500;
  }

  .retail-comparison-main__cell-mobile:last-child { border-bottom: none; }

   .retail-comparison-main__cell-mobile:first-child {
    background: #eaf3ff;  
    border-radius: 8px;
    padding: 8px;
  }

  .retail-comparison-main__cell-mobile:first-child .brand-name {
    font-weight: 600; 
  }

  .brand-name { font-weight: 600; }
  .brand-value { font-weight: 600; color: #1e6bff; margin-right: 15px;}
  .brand-yes { color: #1e6bff; font-weight: 600; } 
.brand-no { color: rgb(85,85,85); font-weight: 500; } 
.brand-black {
    color: rgb(85,85,85);
    font-weight: 500;
}
.brand-name { font-weight: 600; font-size: 20px;}       
.brand-name-normal { font-weight: 500; font-size: 16px;}

  .comparison-dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 20px; }
  .comparison-dots span {
    width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; display: inline-block;
  }
  .comparison-dots span.active { background: #1e6bff; }
}

@media (max-width: 430px) {
    .retail-comparison-main-shopify__title {
        font-size: 32px;
    }
}

.pos-retail-info-section {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    max-width: 1300px;
                    margin: 0 auto 40px;
                    padding: 80px 24px 5px;
                    gap: 60px;
                }

                .pos-retail-info-space {
                    padding: 80px 24px 50px;
                }

                .pos-retail-info-section.reverse {
                    flex-direction: row-reverse;
                }

                .pos-info-text {
                    flex: 1;
                }

                .pos-info-text h2 {
                    font-size: 38px;
                    font-weight: 600;
                    color: #000;
                    margin-bottom: 25px;
                    line-height: 45.6px;
                }

                .pos-info-text {
                    margin-bottom: 20px;
                }

                .pos-info-text .pos-info-sub {
                    font-weight: 700;
                }

                .pos-info-text p {
                    font-weight: 400;
                    font-size: 18px;
                    color: #000;
                    line-height: 25.2px;
                    white-space: pre-line;
                }

                .pos-info-text p:first-of-type {
                    margin-bottom: 25px;
                }

                .pos-info-text p span {
                    font-weight: 600;
                }

                .pos-info-text ul {
                    list-style: none;
                    margin-bottom: 25px;
                    margin-left: 0;
                    border-top: 1px solid #DDDDDD;
                    color: #000;
                }

                .pos-info-li-title {
                    display: block;
                    font-weight: 700;
                }

                .pos-info-text ul li {
                    position: relative;
                    margin-bottom: 8px;
                    padding: 10px 0 12px 22px;
                    line-height: 22.4px;
                    font-weight: 400;
                    font-size: 16px;
                    border-bottom: 1px solid #DDDDDD;
                }

                .pos-info-text ul li:last-child {
                    border-bottom: none;
                }

                .pos-info-text ul li::before {
                    content: "✓";
                    color: var(--accent-color);
                    position: absolute;
                    left: 0;
                    top: 12;
                    font-size: 14.5px;
                }

                .pos-info-buttons {
                    display: flex;
                    gap: 18px;
                }

                .pos-info-buttons a {
                    font-weight: 600;
                    text-decoration: none;
                    font-size: 14px;
                    padding: 12px 22px;
                    transition: all 0.25s ease;
                }

                .pos-info-buttons .pos-start-btn {
                    background: #000;
                    color: #fff;
                    border-radius: 999px;
                }

                .pos-info-buttons .pos-start-btn:hover {
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                    background: #222;
                }

                .pos-info-buttons .pos-demo-btn {
                    color: var(--accent-color);
                }

                .pos-info-image, .pos-info-image-circle {
                    flex: 1;
                    text-align: left;
                    display: flex;
                    justify-content: flex-start;
                }

                .pos-info-image img {
                    width: 100%;
                    height: auto;
                    border-radius: 6px;
                    object-fit: contain;
                }

                .pos-info-cards {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    gap: 24px;
                }

                .pos-card:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 12px 32px rgba(30, 107, 255, 0.12);
                }

                .pos-card-icon {
                    margin-bottom: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                }

                .pos-card h3 {
                    font-size: 20px;
                    font-weight: 600;
                    color: #000;
                    margin: 0 0 12px 0;
                    line-height: 1.3;
                }

                .pos-card-features {
                    display: flex;
                    align-items: center;
                    gap: 8px;
                    flex-wrap: wrap;
                    font-size: 14px;
                    color: #555;
                    font-weight: 500;
                }

                .pos-card-features .dot {
                    color: #1e6bff;
                    font-weight: 700;
                }

                .pos-card-subtitle {
                    font-size: 15px;
                    color: #666;
                    line-height: 1.5;
                    margin: 0;
                    font-weight: 400;
                }

                .pos-card-1 {
                    margin-top: 0px;
                }

                .pos-card-2 {
                    margin-top: 20px;
                }

                .pos-card-3 {
                    margin-top: 40px;
                }

                .pos-info-cards {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    position: relative;
                }

                .pos-card {
                    display: flex;
                    align-items: flex-start;
                    gap: 40px;
                    background: #fff;
                    border-radius: 16px;
                    padding: 48px 32px;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
                    border: 1px solid rgba(30, 107, 255, 0.08);
                    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                    position: relative;
                }

                .pos-card-1 {
                    background: #e6f0ff;
                    margin-top: 0;
                    z-index: 3;
                }

                .pos-card-2 {
                    background: #f0f7ff;
                    margin-top: -40px;
                    z-index: 2;
                }

                .pos-card-3 {
                    margin-top: -40px;
                    z-index: 1;
                }

                .pos-card:first-child {
                    margin-top: 0;
                }

                .pos-card-icon {
                    flex-shrink: 0;
                    display: flex;
                    align-items: center;
                }

                .pos-card-content-vs {
                    display: flex;
                    flex-direction: column;
                }

                .pos-retail-interior {
                    position: relative;
                    width: 100%;
                    height: 500px;
                    display: flex;
                   
                    justify-content: center;
                }

                .retail-bg {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
                    border-radius: 10px;
                }

                .retail-bg::before {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 50%;
                    background: linear-gradient(to top, rgba(0, 0, 0, 0.03), transparent);
                }

                .pos-screen {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 280px;
                    height: 320px;
                    background: linear-gradient(135deg, #1e6bff 0%, #1557cc 100%);
                    border-radius: 8px;
                    box-shadow: 0 20px 60px rgba(30, 107, 255, 0.3);
                }

                .pos-screen::before {
                    content: '';
                    position: absolute;
                    top: 20px;
                    left: 20px;
                    right: 20px;
                    bottom: 20px;
                    background: rgba(255, 255, 255, 0.1);
                    border-radius: 4px;
                }

                .pos-screen::after {
                    content: '';
                    position: absolute;
                    bottom: -30px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 200px;
                    height: 30px;
                    background: #555;
                    border-radius: 0 0 8px 8px;
                }

                .database-card {
                    position: absolute;
                    bottom: 40px;
                    left: 40px;
                    width: 340px;
                    background: #ffffff;
                    border-radius: 16px;
                    padding: 24px;
                    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
                    z-index: 10;
                  animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

                .card-header {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    margin-bottom: 20px;
                }

                .db-icon {
                    flex-shrink: 0;
                    margin-top: 2px;
                }

                .card-title {
                    flex: 1;
                }

                .card-main-title {
                    font-size: 18px;
                    font-weight: 600;
                    color: #000;
                    margin-bottom: 4px;
                }

                .card-db-id {
                    font-size: 13px;
                    color: #666;
                    font-weight: 500;
                }

                .card-body {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    margin-bottom: 16px;
                }

                .card-row {
                    font-size: 13px;
                    line-height: 1.5;
                    color: #333;
                }

                .card-row strong {
                    color: #000;
                    font-weight: 600;
                }

                .card-footer {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding-top: 16px;
                    border-top: 1px solid #e9ecef;
                }

                .status-badge {
                    display: inline-flex;
                    align-items: center;
                    padding: 6px 12px;
                    background: #d1fae5;
                    color: #065f46;
                    font-size: 12px;
                    font-weight: 600;
                    border-radius: 6px;
                }

                .sync-icon {
                    animation: rotate 2s linear infinite;
                }

                @keyframes rotate {
                    0% {
                        transform: rotate(0deg);
                    }

                    100% {
                        transform: rotate(360deg);
                    }
                }

                .pos-control-visual {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    min-height: 400px;
                }

                .control-diagram {
                    width: 100%;
                    max-width: 400px;
                    height: 400px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .control-svg {
                    width: 100%;
                    height: 100%;
                }

                .center-gear {
                    transform-origin: 200px 200px;
                    animation: rotateGear 8s linear infinite;
                }

                @keyframes rotateGear {
                    from {
                        transform: rotate(0deg);
                    }

                    to {
                        transform: rotate(360deg);
                    }
                }

                 .bg-circle {
    transform: scale(1.3); 
    transform-origin: center;
}

.orbit-icon {
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-icon:hover {
    transform: translateZ(25px) scale(1.08);
}

                @media (max-width: 900px) {
                    section.pos-retail-info-section {
                        flex-direction: column;
                        text-align: center;
                        padding-top: 80px;
                    }

                    .pos-retail-info-section {
                        gap: 20px;
                    }

                    section.pos-retail-info-section.reverse {
                        flex-direction: column;
                        text-align: center;
                        padding-top: 60px;
                    }

                    .pos-retail-info-space {
                        padding: 60px 24px 50px !important;
                    }

                    .pos-info-image {
                        display: block;
                        order: 1;
                        text-align: center;
                        width: 100%;
                    }
                    .pos-info-image-circle {
                      order: 1;
                    }

                    .pos-info-buttons {
                        justify-content: center;
                    }

                    .pos-info-cards {
                        width: 100%;
                        order: 1;
                    }

                    .pos-card {
                        text-align: left;
                    }

                    .pos-card-icon {
                        justify-content: flex-start;
                    }

                    .pos-retail-interior {
                        height: 400px !important;
                    }

                    .database-card {
                        width: 300px;
                        padding: 20px;
                        bottom: 20px;
                        left: 20px;
                    }

                    .pos-retail-interior {
                        display: flex !important;
                        flex-direction: column;
                        align-items: center;
                        justify-content: flex-start;
                        height: auto;
                        padding: 20px;
                    }

                    .retail-scene {
                        position: relative;
                        width: 100%;
                        height: auto;
                        min-height: 300px;
                    }

                    .pos-screen {
                        display: none;
                    }

                    .database-card {
                        position: relative;
                        width: 100%;
                        max-width: 320px;
                        margin: 0 auto;
                        bottom: -20px;
                        left: 0;
                        right: 0;
                        padding: 16px;
                        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
                    }

                    .retail-bg {
                        height: auto;
                        min-height: 360px;
                        padding-bottom: 40px;
                    }
                }

                @media (max-width: 430px) {
                    .pos-info-text h2 {
                        font-size: 28px;
                    }

                    .pos-info-image img {
                        max-width: 100%;
                        width: 100%;
                    }

                    .pos-card {
                        padding: 24px 20px;
                    }

                    .pos-card h3 {
                        font-size: 18px;
                    }

                    .pos-retail-interior {
                        height: 350px;
                    }

                    .card-main-title {
                        font-size: 16px;
                    }

                    .card-row {
                        font-size: 12px;
                    }

                    .pos-screen {
                        width: 180px;
                        height: 220px;
                    }

                    .control-diagram {
                        max-width: 320px;
                        height: 320px;
                    }
                }
            
/*Franchise new*/
/*Franchise new*/
section.pos-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 170px 24px 80px;
  gap: 50px;
}

.pos-hero-text {
  flex: 1 1 50%;
}

.pos-hero-text, .pos-hero-image {
  flex: 0 0 50%;
}

.pos-hero-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pos-hero-category .pos-line {
  width: 2px;
  height: 15px;
  background: var(--accent-color);
  border-radius: 2px;
}

.pos-hero-category span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.pos-hero-text h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.pos-hero-text p {
  font-size: 18px;
  color: #191513;
  margin-bottom: 25px;
  line-height: 1.6;
  letter-spacing: -0.48px;
  white-space: pre-line;
}

.pos-hero-text p span {
  font-weight: 600;
}

.pos-franchise-hero-buttons {
  display: flex;
  gap: 18px;
}

.pos-franchise-hero-buttons a {
  font-weight: 700;
  text-decoration: none;
  font-size: 19px;
  padding: 17px 40px;
  transition: all 0.25s ease;
}

.pos-franchise-hero-buttons .pos-franchise-start-btn {
  background: #1e6bff;
  color: #fff;
  border-radius: 999px;
}

.pos-franchise-hero-buttons .pos-franchise-start-btn:hover {
  background: #1556d8;
  transform: translateY(-2px);
}

.pos-franchise-hero-buttons .pos-demo-btn {
  color: var(--accent-color);
}

.pos-hero-image {
  flex: 1;
  text-align: left;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.pos-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

  .pos-info-black::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.07);
    z-index: 1;
}

.pos-franchise-stats-card {
  position: absolute;
  bottom: 30px;
 left: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  min-width: 320px;
  animation: pos-stats-float 3s ease-in-out infinite;
  z-index: 10;
}

.pos-stats-sync-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  animation: pos-stats-pulse 2s ease-in-out infinite;
}

.pos-stats-label {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pos-stats-main {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pos-stats-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pos-stats-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
}

.pos-stats-row svg {
  flex-shrink: 0;
}

.pos-stats-row strong {
  font-weight: 600;
  color: #0f172a;
}

@keyframes pos-stats-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pos-stats-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  }
}

@media (max-width: 900px) {
  section.pos-hero {
    flex-direction: column;
    padding-top: 140px;
  }
  
  .pos-hero-image {
    text-align: center;
  }
  
  .pos-hero-text {
    max-width: 100%;
  }
  
  .pos-franchise-hero-buttons {
    justify-content: center;
  }
  


  .pos-franchise-stats-card {
       
        transform: translateX(-50%);
        bottom: 16px;
        max-width: calc(100% - 48px);
      }
}

@media (max-width: 480px) {
  .pos-franchise-hero-buttons {
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  
  .pos-franchise-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 16px;
  }
  
  .pos-hero-text p {
    font-size: 16px;
  }
  
  .pos-hero-text h1 {
    font-size: 36px;
  }
  
  .pos-franchise-stats-card {
    min-width: auto;
    padding: 18px 20px;
  }
  
  .pos-stats-main {
    font-size: 18px;
  }
  
  .pos-stats-row {
    font-size: 13px;
  }
}


.franchise-card {
  background: #f0f7ff;
  border: 1px solid rgba(30, 107, 255, 0.08);
  border-radius: 22px;
  padding: 40px;
  max-width: 640px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  margin: 0 auto;
}

.franchise-badge {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1e6bff;
  margin-bottom: 5px;

}

.franchise-title {
  font-size: 26px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
  text-align: left;
}

.franchise-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  line-height: 22px;
      max-width: 420px;
      text-align: left;
}

.franchise-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.franchise-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #e6f0ff;
  border: 1px solid rgba(30, 107, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.franchise-row:hover {
  border-color: #1e6bff;
  transform: translateY(-2px);
}

.franchise-icon {
  width: 24px;
  height: 24px;
}

.franchise-label {
  color: #444;
  font-size: 14px;
  text-align: left;
}

.franchise-value {
  color: #555;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 900px) {
  .pos-franchise-info-section {
    flex-direction: column;
    text-align: center;
  }
  .pos-info-image, .franchise-card {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
    .franchise-card {
        padding: 20px;
    }
}

.pos-info-image-franshise {
 flex: 1;
    display: flex;
    justify-content: center; 
    gap: 24px; 
    flex-wrap: wrap; 
}

.franchise-card-1 { background: #e6f0ff; margin-top: 0; z-index: 3; }
.franchise-card-2 { background: #f0f7ff; margin-top: -30px; z-index: 2; }
.franchise-card-3 { background: #fff; margin-top: -30px; z-index: 1; }

.pos-info-cards-franchise {
    display: flex;
     flex: 1;
    flex-direction: column;
    gap: 24px;
}

.pos-card-franchise {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(30,107,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pos-card-franchise:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30,107,255,0.12);
}

.pos-card-franchise h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
    color: #000;
}

.pos-card-franchise p {
    font-size: 15px;
    color: #555;
    margin: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .pos-info-cards-franchise { width: 100%; }
    .pos-card-franchise { padding: 24px; }
}


.pos-info-image-overlay {
  position: relative;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
}

.overlay-bg {
  width: 100%;
  height: auto;
  border-radius: 6px;
   object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.pos-info-image-overlay:hover .overlay-bg {
  transform: scale(1.05);
}
.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  z-index: 1;
}

.overlay-card {
  position: absolute;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.card-1 { top: 20%; left: 15%; animation-delay: 0s; }
.card-2 { top: 50%; left: 60%; animation-delay: 0.5s; }
.card-3 { top: 70%; left: 30%; animation-delay: 1s; }

.overlay-icon-franchise {
  width: 44px;
  height: 44px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}


@media (max-width: 480px) {
  .overlay-card {
  width: 50px;
  height: 50px;
  }
  .overlay-icon-franchise {
  width: 24px;
  height: 24px;
}
}

.pos-info-image-circle {
                    flex: 1;
                    text-align: left;
                    display: flex;
                    justify-content: flex-start;
                }

.pos-control-visual {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    min-height: 400px;
                }

                .control-diagram {
                    width: 100%;
                    max-width: 400px;
                    height: 400px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .control-svg {
                    width: 100%;
                    height: 100%;
                }

                .center-gear {
                    transform-origin: 200px 200px;
                    animation: rotateGear 8s linear infinite;
                }

                @keyframes rotateGear {
                    from {
                        transform: rotate(0deg);
                    }

                    to {
                        transform: rotate(360deg);
                    }
                }

                 .bg-circle {
    transform: scale(1.3); 
    transform-origin: center;
}

.orbit-icon {
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-icon:hover {
    transform: translateZ(25px) scale(1.08);
}


.inventory-visual-wrap{
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.inventory-bg-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;

  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.inventory-bg-img{
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}
.inventory-visual-wrap:hover .inventory-bg-img{
  transform: scale(1.06);
}

.inventory-dark-layer{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.inventory-live-card{
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px; 
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  width: auto; 
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  z-index: 3;
  animation: inventoryFloat 3.5s ease-in-out infinite;
}

@keyframes inventoryFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

.inventory-product-row{
  display: flex;
  align-items: center;
  gap: 14px;
}

.inventory-product-row img{
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #eee;
}

.inventory-product-info{
  flex: 1;
  text-align: left;
}

.inventory-product-title{
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.inventory-sku{
  font-size: 13px;
  color: #777;
}

/* LIVE DOT */
.inventory-live-dot{
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: inventoryPulse 2s infinite;
}

@keyframes inventoryPulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.5; transform:scale(1.4); }
}

.inventory-divider{
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

.inventory-stock-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inventory-stock-label{
  font-size: 14px;
  color: #111;
}

.inventory-warehouse{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #555;
}

.inventory-stock-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: #065f46;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(16,185,129,0.15);
}

.inventory-stock-badge strong{
  color: #065f46;
}

.stock-dot{
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: stockPulse 2s infinite;
}

@keyframes stockPulse{
  0%,100%{opacity:1;}
  50%{opacity:.4;}
}


@media (max-width: 900px) {
    .inventory-live-card {
        transform: translateX(-50%);
        bottom: 16px;
        max-width: calc(100% - 48px);
    }
}

