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;
  }

}

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-buttons {
      display: flex;
      gap: 18px;
    }

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

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

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

    .pos-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-hero-buttons {
        justify-content: 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-hero-text p {
    font-size: 16px;
  }

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




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

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

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

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

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

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


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

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

     white-space: pre-line;
    }

    .pos-hero-modal-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: 17px;
      padding: 16px 32px;
      transition: all 0.25s ease;
    }

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

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

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

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

    }

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


   .pos-hero-modal-input {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}

.pos-hero-modal-input input {
  width: 100%;
  padding: 18px 120px 18px 20px; 
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.25s ease;
}

.pos-hero-modal-input input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.pos-hero-modal-input button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: var(--accent-color);
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.pos-hero-modal-input button:hover {
  background: #0056b3; 
}

    @media (max-width: 900px) {
  .pos-hero-modal {
        flex-direction: column;
        
        padding-top: 140px;
      }
      .pos-hero-modal-image {
       
        text-align: center;
      }
      .pos-hero-modal-text {
        max-width: 100%;
      }
      .pos-hero-buttons {
        justify-content: 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-hero-modal-text p {
    font-size: 16px;
  }

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


/* MODAL */

.demo-modal-overlay form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.demo-modal-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.demo-modal{
background:white;
width:900px;
max-width:95%;
border-radius:12px;
display:flex;
overflow:hidden;
}

.demo-modal-left{
width:50%;
display:flex;
align-items:center;
justify-content:center;
}


.demo-modal-left img{
width:100%;
height:100%;
object-fit:cover;
}

.demo-modal-right{
width:50%;
padding:40px;
position:relative;
}

.demo-modal-title {
font-size:28px;
font-weight:700;
margin-bottom:20px;
text-align:center;
}

.demo-close{
position:absolute;
top:15px;
right:20px;
cursor:pointer;
font-size:22px;
}

.demo-modal button {
  margin-top: 10px;
  height: 56px;
   width: 100%;
  border-radius: 999px;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.demo-modal button:hover {
  opacity: 0.9;
  transform: translateY(-2px); 
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.demo-modal input,
.demo-modal select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 16px;
}

.modal-privacy-demo  {
  font-size: 13px;
  color: #666;
  margin-top: 16px;
  line-height: 1.5;
}

.modal-privacy-demo  a {
  color: #000;
  text-decoration: underline;
}

@media(max-width:820px){
.demo-modal-left{
display:none;
}
.demo-modal-right{
width:100%;
 padding: 30px;
}
}

.demo-modal-overlay.exit-show {
opacity:0;
animation:fadeExit 0.4s ease forwards;
}

.demo-modal-overlay.exit-show .demo-modal{
transform:translateY(40px);
animation:slideExit 0.4s ease forwards;
}

@keyframes fadeExit{
to{
opacity:1;
}
}
@keyframes slideExit{
to{
transform:translateY(0);
}
}



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

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

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

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

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


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

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

     white-space: pre-line;
    }

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

.pos-hero-form {
  flex: 0 0 480px;
  background: #eaf3ff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.pos-hero-form h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.pos-hero-form form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pos-hero-form input,
.pos-hero-form select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 16px;
}

.pos-hero-form button {
  margin-top: 10px;
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.pos-hero-form button:hover {
  opacity: 0.9;
  transform: translateY(-2px); 
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.pos-privacy-demo {
  font-size: 13px;
  color: #666;
  margin-top: 16px;
  line-height: 1.5;
}

.pos-privacy-demo a {
  color: #000;
  text-decoration: underline;
}

.pos-hero-form input:focus,
.pos-hero-form select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(91, 141, 239, 0.15);
}

@media (max-width: 1150px) {
  section.pos-hero-demo {
    flex-direction: column;
    padding-top: 120px;
      gap: 40px;
  }

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

  .pos-hero-form {
    width: 100%;
    max-width: 520px;
    padding: 40px 20px;
  }

}

@media (max-width: 480px) {
  .pos-hero-demo-text p {
    font-size: 16px;
  }

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




/*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 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 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 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);
}


.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;
}

.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;
}

.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;
}

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

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

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

.card-2 p,
.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;
  }

  .card-1 {
    height: 170px;
  }

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

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

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

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

}

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

  .card-1 {
  width: 370px;
}

  .card-2 {
   width: 340px;
  }

  .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;
  }

  .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-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-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;
}
}


/*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;
                    align-items: center;
                    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;
  z-index: 10;
}

@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;
                    }

                    .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: -40px;
                        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;
                    }
                }


