.qauto-tl-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.gph-wrapper-sec {
  padding: 0px 40px;
}

/* ── Hero Wrapper ── */
.gph-wrapper {
  background: #0d0d0d;
  border-radius: 20px;
  overflow: hidden;
  margin: 70px auto;
  display: flex;
  flex-direction: row;
  min-height: 340px;
  position: relative;
  max-width: 1320px;
}

/* ── Left Content Panel ── */
.gph-left {
  flex: 1 1 50%;
  padding: 52px 48px 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  ul {
    li {
      color: #9a9a9a;
      font-size: 15px;
      line-height: 1.9;
    }
  }
}

.gph-headline {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  max-width: 450px;
}

.gph-subtext {
  font-size: 16px;
  font-weight: 400;
  color: #9a9a9a;
  line-height: 1.65;
  max-width: 445px;
  margin-bottom: 12px;
}

/* ── CTA Button ── */
.gph-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
  margin-top: 10px;
}

.gph-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0d0d0d;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.gph-btn:hover {
  background: #e2e2e2;
  color: #0d0d0d;
}

.gph-btn-icon {
  width: 28px;
  height: 28px;
  background: #1e51db;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gph-btn-icon svg {
  width: 13px;
  height: 13px;
  fill: #fff;
}

/* ── Right Image Panel ── */
.gph-right {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #f0ece8;
  background-image: url("../images/all-images/suppression-list.webp");
  background-position: center;
  background-size: contain;
}

/* Notch */
.gph-phone::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #2a2a2a;
  border-radius: 4px;
  z-index: 5;
}

.gph-phone-screen {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  padding: 14px 10px 10px;
}

/* Tiny status bar */
.gph-phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.42rem;
  color: #111;
  margin-bottom: 8px;
  padding: 0 2px;
}

.gph-phone-status-dots {
  display: flex;
  gap: 2px;
}

.gph-phone-status-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #111;
}

/* Balance card inside phone */
.gph-phone-balance-card {
  background: #111;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
  color: #fff;
}

.gph-pbc-label {
  font-size: 0.42rem;
  color: #aaa;
  margin-bottom: 2px;
}

.gph-pbc-amount {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.gph-pbc-badges {
  display: flex;
  gap: 4px;
}

.gph-pbc-badge {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 0.37rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 2px;
}

.gph-pbc-badge-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #22c55e;
}

.gph-pbc-badge-dot.gph-orange {
  background: #f97316;
}

/* Chart area */
.gph-phone-chart {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 6px 8px;
  margin-bottom: 6px;
}

.gph-chart-label {
  font-size: 0.4rem;
  color: #555;
  margin-bottom: 3px;
}

.gph-chart-svg {
  width: 100%;
  height: 38px;
}

/* Exchange rate */
.gph-phone-exchange {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 6px 8px;
}

.gph-exchange-title {
  font-size: 0.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 3px;
}

.gph-exchange-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.37rem;
  color: #666;
  margin-bottom: 2px;
}

.gph-exchange-val {
  font-weight: 600;
  color: #111;
}

/* Hand image overlay (decorative) */
.gph-hand-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}



/* ── Responsive ── */
@media (max-width: 767px) {
  .gph-wrapper {
    flex-direction: column;
    border-radius: 16px;
    margin: 16px;
    min-height: auto;
  }

  .gph-left {
    padding: 36px 28px 28px;
  }

  .gph-headline {
    font-size: 1.45rem;
    max-width: 100%;
  }

  .gph-subtext {
    max-width: 100%;
  }

  .gph-right {
    min-height: 260px;
    flex: none;
  }

  .gph-wrapper-sec {
    padding: 0px 0px;
  }
}

@media (max-width: 479px) {
  .gph-left {
    padding: 28px 20px 22px;
  }

  .gph-headline {
    font-size: 1.25rem;
  }

  .gph-btn {
    font-size: 0.78rem;
    padding: 10px 16px;
  }
}
