/* =============== HERO =============== */
.payin-hero {
  position: relative;
  height: 420px;
  margin-top: 62px;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(135deg, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.gradient-text-white {
  background: linear-gradient(135deg, #13572e, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* IMAGE */
.payin-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* OVERLAY */
.payin-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at center,
      rgba(34, 197, 94, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, rgb(2 6 23 / 44%), rgb(2 6 23 / 59%));
  z-index: 1;
}

/* CONTENT */
.payin-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.payin-hero h1 {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #eaffc7, #8cff00, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payin-hero p {
  margin-top: 14px;
  max-width: 620px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .payin-hero {
    height: 340px;
  }

  .payin-hero h1 {
    font-size: 38px;
  }
}

/* ================= PAYIN OVERVIEW ================= */
.payin-overview {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;

  background: radial-gradient(
      circle at left,
      rgba(34, 197, 94, 0.12),
      transparent 55%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* ================= LEFT CONTENT ================= */
.overview-text {
  animation: slideLeft 1s ease forwards;
  opacity: 0;
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.overview-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: #020617;
  line-height: 1.15;
}

.overview-text p {
  margin-top: 18px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}

.highlight-text {
  font-weight: 600;
  color: #0f766e;
}

/* LIST */
.payin-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.payin-list li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: #020617;

  opacity: 0;
  transform: translateY(6px);
  animation: textFade 0.6s ease forwards;
}

/* stagger */
.payin-list li:nth-child(1) {
  animation-delay: 0.1s;
}
.payin-list li:nth-child(2) {
  animation-delay: 0.2s;
}
.payin-list li:nth-child(3) {
  animation-delay: 0.3s;
}
.payin-list li:nth-child(4) {
  animation-delay: 0.4s;
}

/* CHECK ICON – TRANSPARENT BG */
.payin-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;

  width: 16px;
  height: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 700;

  background: transparent;

  border: 2px solid #22c55e;

  color: #22c55e !important;

  border-radius: 50%;

  transform: scale(0);
  animation: checkPop 0.45s ease forwards;
}

/* sync animation */
.payin-list li:nth-child(1)::before {
  animation-delay: 0.15s;
}
.payin-list li:nth-child(2)::before {
  animation-delay: 0.25s;
}
.payin-list li:nth-child(3)::before {
  animation-delay: 0.35s;
}
.payin-list li:nth-child(4)::before {
  animation-delay: 0.45s;
}

/* TEXT */
@keyframes textFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CHECK POP – CLEAN & PREMIUM */
@keyframes checkPop {
  0% {
    transform: scale(0);
    box-shadow: 0 0 0 rgba(34, 197, 94, 0);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.25);
  }
}

/* ================= RIGHT VISUAL ================= */
.overview-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-wrap {
  position: absolute;
  width: 50vw;       
  max-width: 600px;  
  min-width: 320px;
  animation: float 6s ease-in-out infinite;
}

.svg-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}


/* FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .payin-overview {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .overview-visual {
    height: 360px;
  }

  .payin-list {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .payin-overview {
    padding: 100px 20px;
  }

  .overview-text h2 {
    font-size: 30px;
  }

  .overview-visual {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .overview-visual {
    height: 240px;
  }

  .svg-wrap {
    width: 220px;
  }
}

/* ================= PAYIN CAPABILITIES ================= */
.payin-capabilities {
  padding: 80px 20px;
  text-align: center;
}

/* HEADING */
.payin-capabilities h3 {
  font-size: 34px;
  font-weight: 800;
}

.cap-subtext {
  margin: 18px auto 0;
  max-width: 620px;
  font-size: 15px;
  color: #000000;
}

.pp-who-we-are-for__cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* gap: 36px; */
  max-width: 1200px;
  margin: 20px auto;
  padding: 0;
}

.who-we-are-for-card {
  padding: 30px 15px;
  margin-bottom: 25px;
  gap: 10px !important;
}

/* ICON */
.cap-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.05)
  );

  /* backdrop-filter: blur(12px); */

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

/* ICON IMAGE */
.cap-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

/* ICON GLOW ON HOVER */
.who-we-are-for-card:hover .cap-icon {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.45), 0 28px 70px rgba(0, 0, 0, 0.55);
}

/* TITLE */
.who-we-are-for-card__title {
  font-weight: 700;
}

.who-we-are-for-card__description {
  max-width: 280px;
  margin: 0 auto;

  font-size: 14px;
  line-height: 1.6;
}

/* BG LAYER */
.who-we-are-for-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cap-icon,
.who-we-are-for-card__title,
.who-we-are-for-card__description {
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .who-we-are-for-card {
    padding: 38px 26px;
  }

  .cap-icon {
    width: 100px;
    height: 100px;
  }

  .cap-icon img {
    width: 64px;
    height: 64px;
  }
}

/* ================= PAYIN FLOW ================= */
.payin-flow {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #041912, #0b3a2a, #06261c);

  color: #ecfdf5;
}

.payin-flow h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ffffff;
}

/* ================= FLOW LINE ================= */
.payin-flow-track {
  position: relative;
  max-width: 980px;
  height: 3px;
  margin: 0 auto 80px;
  background: rgba(255, 255, 255, 0.484);
  border-radius: 4px;
  overflow: hidden;
}

.flow-pulse {
  position: absolute;
  top: 0;
  left: -20%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #22c55e,
    #38bdf8,
    transparent
  );
  animation: payinFlow 3.2s linear infinite;
}

@keyframes payinFlow {
  0% {
    left: -20%;
  }
  100% {
    left: 120%;
  }
}

/* ================= GRID ================= */
.flow-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
}

/* ================= CARD ================= */
.flow-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 26px;

  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;

  opacity: 0.5;
  animation: stepFocus 7s infinite;
}

/* SEQUENCE */
.flow-card:nth-child(1) {
  animation-delay: 0s;
}
.flow-card:nth-child(2) {
  animation-delay: 1.2s;
}
.flow-card:nth-child(3) {
  animation-delay: 2.4s;
}
.flow-card:nth-child(4) {
  animation-delay: 3.6s;
}
.flow-card:nth-child(5) {
  animation-delay: 4.8s;
}

@keyframes stepFocus {
  0% {
    opacity: 0.45;
    transform: translateY(0) scale(1);
  }
  15% {
    opacity: 1;
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 70px rgba(34, 197, 94, 0.35);
  }
  30% {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0.45;
  }
}

/* ================= ICON ================= */
.flow-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  border-radius: 50%;

  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;

  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.45);
}

/* TEXT */
.flow-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #020617;
}

.flow-card p {
  font-size: 13px;
  color: #64748b;
}

/* ================= HIGHLIGHT ================= */
.flow-card.highlight {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.flow-card.highlight .flow-icon {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 18px 42px rgba(124, 58, 237, 0.45);
}

/* ================= SUCCESS ================= */
.flow-card.success {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.flow-card.success .flow-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* ================= HOVER ================= */
.flow-card:hover {
  transform: translateY(-14px) rotateX(4deg);
  opacity: 1;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.22);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .payin-flow {
    padding: 100px 18px;
  }

  .payin-flow-track {
    display: none;
  }

  .flow-card {
    animation: none;
    opacity: 1;
  }
}

/* ================= PAYIN CIRCULAR USECASES ================= */
.payin-usecases-circle {
  padding: 80px 20px;
  text-align: center;

  background: radial-gradient(
      circle at center,
      rgba(34, 197, 94, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

.payin-usecases-circle h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 100px;
  color: #020617;
}

/* ================= CIRCLE WRAPPER ================= */
.circle-wrapper {
  position: relative;
  width: 520px;
  height: 520px;
  margin: auto;
}

/* ================= CENTER IMAGE ================= */
.circle-center {
  position: absolute;
  inset: 0;
  margin: auto;

  width: 220px;
  height: 220px;

  border-radius: 50%;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);

  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  animation: floatCenter 6s ease-in-out infinite;
}

.circle-center img {
  width: 85%;
  object-fit: contain;
}

@keyframes floatCenter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================= CIRCLE CARD ================= */
.circle-card {
  position: absolute;
  width: 130px;
  height: 130px;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-size: 13px;
  font-weight: 700;
  color: #020617;

  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
}

/* ICON */
.circle-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #ffffff;

  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.45);
}

/* HOVER */
.circle-card:hover {
  transform: scale(1.12);
  background: linear-gradient(
    135deg,
    rgba(4, 25, 18, 0.95),
    rgba(6, 44, 34, 0.95)
  );
  color: #ecfdf5;
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.45);
}

.circle-card:hover .circle-icon {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.55);
}

/* ================= CARD POSITIONS ================= */
.c1 {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.c2 {
  top: 90px;
  right: -20px;
}
.c3 {
  bottom: 90px;
  right: -20px;
}
.c4 {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.c5 {
  bottom: 90px;
  left: -20px;
}
.c6 {
  top: 90px;
  left: -20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .circle-wrapper {
    width: 100%;
    height: auto;
  }

  .circle-center {
    position: static;
    margin: auto;
    width: 200px;
    height: 200px;
  }

  .circle-card {
    position: static;
    margin: 20px auto;
  }
}

/* ================= PAYIN WHY PRO ================= */
.payin-why-pro {
  padding: 80px 20px;
  text-align: center;

  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* HEADING */
.payin-why-pro h3 {
  font-size: 38px;
  font-weight: 800;
  color: #020617;
  margin-bottom: 100px;
}

/* LAYOUT */
.payin-why-layout {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 90px;
  align-items: center;
}

/* COLUMN */
.why-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ================= IMAGE ================= */
.why-center {
  display: flex;
  justify-content: center;
}

.why-image-frame {
  padding: 18px;
  border-radius: 42px;

  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.25),
    rgba(14, 165, 233, 0.18)
  );

  box-shadow: 0 60px 120px rgba(15, 23, 42, 0.35);

  animation: floatCenter 6s ease-in-out infinite;
}

.why-image-frame img {
  width: 210px;
  max-width: 100%;
  display: block;
  border-radius: 30px;
}

@keyframes floatCenter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================= GLASS CARD ================= */
.why-glass-card {
  position: relative;
  min-height: 86px;
  padding: 28px 34px;

  border-radius: 26px;
  font-size: 16px;
  font-weight: 600;
  color: #020617;

  display: flex;
  align-items: center;
  gap: 18px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);

  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  transform-style: preserve-3d;
  transition: transform 0.55s ease, box-shadow 0.55s ease, background 0.55s ease;
}

/* ICON */
.why-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  font-size: 22px;

  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;

  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.45);

  transition: transform 0.45s ease, background 0.45s ease;
}

/* GLOW EDGE */
.why-glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(34, 197, 94, 0.45),
    transparent
  );

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* HOVER EFFECT */
.why-glass-card:hover {
  transform: translateY(-14px) rotateX(6deg);
  background: linear-gradient(
    135deg,
    rgba(4, 25, 18, 0.92),
    rgba(6, 44, 34, 0.96)
  );

  box-shadow: 0 55px 130px rgba(15, 23, 42, 0.4);
  color: #ecfdf5;
}

.why-glass-card:hover .why-icon {
  transform: translateY(-6px) scale(1.1);
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 22px 48px rgba(124, 58, 237, 0.55);
}

.why-glass-card:hover::after {
  opacity: 1;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .payin-why-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-center {
    order: -1;
  }

  .why-image-frame img {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .payin-why-pro {
    padding: 110px 18px;
  }

  .payin-why-pro h3 {
    font-size: 30px;
    margin-bottom: 70px;
  }

  .why-glass-card {
    font-size: 14px;
    padding: 24px 26px;
    min-height: auto;
  }

  .why-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

/* ================= CTA SECTION ================= */
.payin-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #020617);
}

.payin-cta-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* LEFT CONTENT */
.payin-cta-content h3 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.payin-cta-content p {
  font-size: 17px;
  color: #cbd5f5;
  max-width: 520px;
  margin-bottom: 36px;
}

/* BUTTON */
.payin-btn {
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #022c22;
  background: linear-gradient(135deg, #22c55e, #4ade80);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

/* RIGHT IMAGE */
.payin-cta-image {
  text-align: right;
}

.payin-cta-image img {
  max-width: 100%;
  height: auto;
  animation: float 5s ease-in-out infinite;
}

/* IMAGE FLOAT ANIMATION */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .payin-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payin-cta-image {
    text-align: center;
  }

  .payin-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================= PAYIN FAQ ================= */
.payin-faq {
  padding: 80px 20px;
  background: radial-gradient(
      circle at top,
      rgba(34, 197, 94, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fafc, #eef2f7);
}

/* HEADER */
.payin-faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.payin-faq-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: #020617;
}

.payin-faq-header p {
  margin-top: 10px;
  font-size: 15px;
  color: #64748b;
}

/* LIST */
.payin-faq-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ITEM */
.payin-faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

/* QUESTION */
.payin-faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #020617;
  list-style: none;
  position: relative;
}

.payin-faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON */
.payin-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #22c55e;
  transition: transform 0.3s ease;
}

/* OPEN */
.payin-faq-item[open] summary::after {
  content: "−";
}

/* ANSWER */
.payin-faq-item p {
  padding: 0 28px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

/* HOVER */
.payin-faq-item summary:hover {
  background: rgba(34, 197, 94, 0.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .payin-faq {
    padding: 90px 18px;
  }

  .payin-faq-header h2 {
    font-size: 26px;
  }

  .payin-faq-header p {
    font-size: 14px;
  }

  .payin-faq-item summary {
    padding: 20px;
    font-size: 14px;
  }

  .payin-faq-item p {
    padding: 0 20px 18px;
    font-size: 13px;
  }
}
