/* ===== POS PAGE ===== */

/* Hero */
.pos-hero {
  position: relative;
  padding-top: 70px;
  overflow: hidden;
}
.pos-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #0a0e27;
}
.pos-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  opacity: 0.85;
}
.pos-hero .container {
  position: relative; z-index: 1;
}
.pos-hero-inner {
  display: flex; align-items: center;
  padding: 60px 0 30px;
  min-height: 580px;
}
.pos-hero-text {
  max-width: 480px;
}
.pos-hero-sub {
  font-size: 1.1rem; color: #fff;
  font-style: italic; margin-bottom: 0;
  font-weight: 500;
}
.pos-orange {
  font-size: 6rem; font-weight: 900; color: #FF0909;
  display: block; line-height: 1;
  text-shadow: 0 2px 20px rgba(255,9,9,0.4);
}
.pos-hero-desc {
  font-size: 1.6rem; color: #FFF700; font-weight: 800;
  margin-bottom: 28px; letter-spacing: 1px;
}
.pos-btn-cta {
  display: inline-block;
  background: #FF0909;
  color: #fff; font-size: 1rem; font-weight: 700;
  padding: 14px 40px; border-radius: 50px;
  text-decoration: none;
  border: 2px solid #FF0909;
  transition: all 0.3s;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255,9,9,0.35);
}
.pos-btn-cta:hover {
  background: #dd0707;
  border-color: #dd0707;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,9,9,0.45);
}
.pos-hero-tagline {
  font-size: 0.9rem; color: rgba(255,255,255,0.8);
  margin-top: 16px; font-weight: 600;
  font-style: italic;
}

/* Features Bar */
.pos-features-list {
  display: flex; justify-content: center; gap: 16px;
  padding: 30px 0 40px;
  margin-top: 140px;
}
.pos-feature-tag {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.8rem; font-weight: 700; color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

/* ===== SOLUTION SECTION ===== */
.pos-solution-section {
  background: #fff;
  padding: 40px 0 40px;
  text-align: center;
}
.pos-solution-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #073380;
  margin-bottom: 30px;
}
.pos-solution-banner {
  position: relative;
  display: inline-block;
  padding: 24px 100px;
  width: 80%;
}
.pos-solution-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/brush-stroke.png') center top / 100% auto no-repeat;
  z-index: 0;
}
.pos-solution-headline {
  position: relative; z-index: 1;
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFF700;
  margin-bottom: 8px;
}
.pos-solution-desc {
  position: relative; z-index: 1;
  font-size: 0.9rem;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
}

/* ===== FEATURES ROWS ===== */
.pos-feat-section {
  background: #fff;
  padding: 40px 0 50px;
}
.pos-feat-row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
.pos-feat-row + .pos-feat-row {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #eee;
}
.pos-feat-row--reverse {
  flex-direction: row-reverse;
}
.pos-feat-img {
  flex: 0 0 40%;
  max-width: 40%;
}
.pos-feat-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.pos-feat-content {
  flex: 1;
}
.pos-feat-heading {
  font-size: 1.8rem;
  font-weight: 900;
  color: #073380;
  margin-bottom: 24px;
}
.pos-feat-item {
  margin-bottom: 16px;
}
.pos-feat-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #d42b2b;
  margin-bottom: 4px;
}
.pos-feat-item p {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.65;
  font-style: italic;
}

/* Button */
.pos-btn-wrap {
  text-align: center;
  padding-top: 40px;
}
.pos-gradient-btn {
  display: inline-block;
  background: linear-gradient(134.25deg, #073380 24.58%, #FE05DD 75.42%);
  color: #fff; font-size: 1.05rem; font-weight: 700;
  padding: 16px 44px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(7,51,128,0.3);
  transition: all 0.3s;
}
.pos-gradient-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7,51,128,0.4);
}

/* Gray variant */
.pos-feat-section--gray {
  background: #f8f9fb;
}

/* Center heading */
.pos-feat-heading--center {
  text-align: center;
  margin-bottom: 40px;
}

/* 3-column scan layout */
.pos-scan-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.pos-scan-left {
  flex: 1;
}
.pos-scan-center {
  flex: 0 0 280px;
  text-align: center;
}
.pos-scan-center img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.pos-scan-right {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pos-scan-card {
  background: #fff;
  border: 1px solid #e0e6ef;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #073380;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ===== DOWNLOAD QR SECTION ===== */
.pos-download-section {
  background: #fff;
  padding: 40px 0 50px;
  text-align: center;
}
.pos-download-heading {
  text-align: center;
  margin-bottom: 30px;
}
.pos-download-title {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  padding: 16px 50px;
  z-index: 1;
}
.pos-download-title::before {
  content: '';
  position: absolute;
  left: -20px; right: -20px;
  top: 50%; transform: translateY(-50%);
  height: 80px;
  background: url('../images/brush-stroke.png') center top / 100% auto no-repeat;
  z-index: -1;
}
.pos-download-qr {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.pos-download-qr-item {
  text-align: center;
}
.pos-download-qr-placeholder {
  width: 200px;
  height: 200px;
  background: #f0f0f0;
  border: 2px dashed #ccc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pos-download-qr-placeholder span {
  font-size: 0.9rem;
  color: #999;
  font-weight: 600;
}
.pos-download-qr-item p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}

/* Responsive */
@media (max-width: 1024px) {
  .pos-features-list { flex-wrap: wrap; margin-top: 80px; }
  .pos-feature-tag { flex: 1 1 45%; }
  .pos-hero-inner { min-height: 400px; }
}
@media (max-width: 768px) {
  .pos-hero-inner { flex-direction: column; text-align: center; min-height: auto; padding: 20px 0 16px; }
  .pos-hero-text { max-width: 100%; }
  .pos-orange { font-size: 3rem; }
  .pos-hero-desc { font-size: 1rem; margin-bottom: 16px; }
  .pos-hero-sub { font-size: 0.95rem; }
  .pos-features-list { flex-wrap: wrap; margin-top: 20px; gap: 8px; padding: 12px 0 16px; }
  .pos-feature-tag { flex: 1 1 45%; font-size: 0.7rem; padding: 8px 10px; }

  .pos-solution-section { padding: 24px 0 20px; }
  .pos-solution-title { font-size: 1.3rem; margin-bottom: 16px; }
  .pos-solution-section { padding: 16px 0 12px; }
  .pos-solution-title { font-size: 1.3rem; margin-bottom: 12px; }
  .pos-solution-banner { width: 100%; padding: 0; }
  .pos-solution-banner::before { display: none; }
  .pos-solution-headline {
    display: inline-block;
    position: relative;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: #1a9e8f;
    border-radius: 8px;
    z-index: 1;
  }
  .pos-solution-desc { font-size: 0.75rem; color: #555; margin-top: 8px; }

  .pos-feat-section { padding: 20px 0 24px; }
  .pos-feat-row, .pos-feat-row--reverse { flex-direction: column; gap: 16px; }
  .pos-feat-row + .pos-feat-row { margin-top: 20px; padding-top: 20px; }
  .pos-feat-img { max-width: 100%; flex: none; }
  .pos-feat-heading { font-size: 1.2rem; margin-bottom: 16px; }
  .pos-feat-heading--center { margin-bottom: 20px; }
  .pos-feat-item { margin-bottom: 10px; }
  .pos-feat-item h4 { font-size: 0.85rem; }
  .pos-feat-item p { font-size: 0.78rem; }

  .pos-scan-layout { flex-direction: column; gap: 16px; }
  .pos-scan-center { flex: none; max-width: 250px; margin: 0 auto; }
  .pos-scan-right { flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .pos-scan-card { flex: 1 1 45%; font-size: 0.75rem; padding: 10px; }

  .pos-download-section { padding: 20px 0 24px; }
  .pos-download-qr { flex-direction: column; gap: 16px; padding: 20px 16px; }
  .pos-download-qr-placeholder { width: 150px; height: 150px; margin: 0 auto 8px; }
  .pos-download-title { font-size: 0.95rem; padding: 10px 20px; }
  .pos-download-title::before { left: 0; right: 0; top: 0; bottom: 0; height: auto; background: #1a9e8f; border-radius: 8px; }

  .pos-btn-cta { font-size: 0.85rem; padding: 10px 28px; }
  .pos-gradient-btn { font-size: 0.85rem; padding: 10px 28px; }
  .pos-btn-wrap { padding-top: 20px; }
}
