/* ============================================================
   mcpayments-01 — 오프라인 매장 카드결제 대행(PG) 템플릿
   korean-web-css § 2 Token Contract 구조
   ============================================================ */

/* --- Token Contract --- */
.tp-mcpayments-01 {
  --tp-primary:    var(--tenant-primary,   #0B2A5B);
  --tp-secondary:  var(--tenant-secondary, #E6A324);
  --tp-white: #fff;
  --tp-bg:    #fff;

  /* 11단계 그레이스케일 */
  --tp-g00: #F8F8F8;  --tp-g01: #EEEEEE;  --tp-g02: #E2E2E2;
  --tp-g03: #CBCBCB;  --tp-g04: #AFAFAF;  --tp-g05: #757575;
  --tp-g06: #545454;  --tp-g07: #333333;  --tp-g08: #1F1F1F;
  --tp-g09: #080808;

  --tp-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --tp-duration: 300ms;
}

/* --- Typography --- */
.tp-mcpayments-01 {
  font-family: Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  word-break: keep-all;
  letter-spacing: -0.02em;
  -webkit-text-size-adjust: none;
  color: var(--tp-g08);
  line-height: 1.7;
  font-size: 16px;
}
.tp-mcpayments-01 h1,
.tp-mcpayments-01 h2,
.tp-mcpayments-01 h3,
.tp-mcpayments-01 p,
.tp-mcpayments-01 ul { margin: 0; }
.tp-mcpayments-01 h1 { font-size: 48px; font-weight: 800; line-height: 1.25; letter-spacing: -0.03em; }
.tp-mcpayments-01 h2 { font-size: 36px; font-weight: 800; line-height: 1.3; letter-spacing: -0.03em; }
.tp-mcpayments-01 h3 { font-size: 20px; font-weight: 700; line-height: 1.4; letter-spacing: -0.02em; }
.tp-mcpayments-01 p  { font-size: 16px; font-weight: 400; line-height: 1.75; color: var(--tp-g06); }
.tp-mcpayments-01 .tp-caption {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tp-primary);
  display: inline-block;
}
.tp-mcpayments-01 .tp-caption-on-dark { color: var(--tp-secondary); }

/* --- Layout Primitives --- */
.tp-mcpayments-01 .tp-container {
  position: relative; margin: 0 auto;
  max-width: 1200px; padding: 0 30px; box-sizing: border-box;
}
.tp-mcpayments-01 .tp-section { padding: 100px 0; position: relative; }
.tp-mcpayments-01 .tp-hidden-pc { display: none !important; }

/* --- Section Backgrounds --- */
.tp-mcpayments-01 .tp-section-light { background-color: var(--tp-white); }
.tp-mcpayments-01 .tp-section-gray  { background-color: var(--tp-g00); }
.tp-mcpayments-01 .tp-section-dark  { background-color: var(--tp-g08); color: #fff; }
.tp-mcpayments-01 .tp-section-dark p { color: rgba(255,255,255,0.78); }
.tp-mcpayments-01 .tp-section-dark h2,
.tp-mcpayments-01 .tp-section-dark h3 { color: #fff; }

/* --- Section Header --- */
.tp-mcpayments-01 .tp-section-header {
  text-align: center; margin-bottom: 60px;
}
.tp-mcpayments-01 .tp-section-header .tp-caption { margin-bottom: 14px; }
.tp-mcpayments-01 .tp-section-header h2 {
  position: relative;
  padding-bottom: 18px;
}
.tp-mcpayments-01 .tp-section-header h2::after {
  content: '';
  display: block; width: 48px; height: 3px;
  background: var(--tp-secondary);
  margin: 18px auto 0;
  border-radius: 2px;
}
.tp-mcpayments-01 .tp-section-header p {
  margin-top: 20px; max-width: 620px; margin-left: auto; margin-right: auto;
  color: var(--tp-g05);
}
.tp-mcpayments-01 .tp-section-header-tight { margin-bottom: 40px; }
.tp-mcpayments-01 .tp-section-header-on-dark h2 { color: #fff; }
.tp-mcpayments-01 .tp-section-header-on-dark p { color: rgba(255,255,255,0.72); }

/* --- Navbar solid-sticky --- */
.tp-mcpayments-01 .tp-nav-solid {
  position: sticky; top: 0; z-index: 200;
  height: 76px; background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--tp-g01);
}
.tp-mcpayments-01 .tp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 30px;
}
.tp-mcpayments-01 .tp-nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--tp-g08);
}
.tp-mcpayments-01 .tp-nav-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--tp-primary); color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: 0.02em;
}
.tp-mcpayments-01 .tp-nav-logo-name {
  font-size: 18px; font-weight: 800; letter-spacing: -0.03em; color: var(--tp-primary);
}
.tp-mcpayments-01 .tp-nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none; padding: 0;
}
.tp-mcpayments-01 .tp-nav-links a {
  font-size: 15px; font-weight: 600; color: var(--tp-g07);
  text-decoration: none; padding: 8px 18px; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color var(--tp-duration);
}
.tp-mcpayments-01 .tp-nav-links a:hover { color: var(--tp-primary); }
.tp-mcpayments-01 .tp-nav-cta-wrap {
  display: flex; align-items: center; gap: 14px;
}
.tp-mcpayments-01 .tp-nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 700; color: var(--tp-g08);
  text-decoration: none; padding: 4px 8px;
}
.tp-mcpayments-01 .tp-nav-phone i { color: var(--tp-primary); font-size: 14px; }
.tp-mcpayments-01 .tp-nav-cta {
  background: var(--tp-primary); color: #fff !important;
  padding: 0 22px; border-radius: 6px; height: 44px; line-height: 44px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: filter var(--tp-duration), transform 0.15s;
  display: inline-flex; align-items: center;
  box-shadow: 0 4px 14px rgba(11,42,91,0.22);
}
.tp-mcpayments-01 .tp-nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* Hamburger */
.tp-mcpayments-01 .tp-hamburger {
  display: none; width: 26px; height: 20px; position: relative;
  cursor: pointer; background: none; border: none; padding: 0; min-height: 44px;
}
.tp-mcpayments-01 .tp-hamburger span {
  display: block; position: absolute; width: 100%; height: 2px;
  background: var(--tp-g08); transition: 0.25s ease-in-out;
  left: 0;
}
.tp-mcpayments-01 .tp-hamburger span:nth-child(1) { top: 2px; }
.tp-mcpayments-01 .tp-hamburger span:nth-child(2) { top: 10px; }
.tp-mcpayments-01 .tp-hamburger span:nth-child(3) { top: 18px; }
.tp-mcpayments-01 .tp-hamburger.is-open span:nth-child(1) { top: 9px; transform: rotate(135deg); }
.tp-mcpayments-01 .tp-hamburger.is-open span:nth-child(2) { opacity: 0; left: -60px; }
.tp-mcpayments-01 .tp-hamburger.is-open span:nth-child(3) { top: 9px; transform: rotate(-135deg); }

/* Mobile menu */
.tp-mcpayments-01 .tp-mobile-menu {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11,25,45,0.96);
  transform: translateX(100%);
  transition: transform 350ms var(--tp-ease);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.tp-mcpayments-01 .tp-mobile-menu.is-open { transform: translateX(0); }
.tp-mcpayments-01 .tp-mobile-menu a {
  color: #fff; font-size: 22px; font-weight: 600; text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}
.tp-mcpayments-01 .tp-mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff; font-size: 32px;
  cursor: pointer; min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   Hero — Slider
   ============================================================ */
.tp-mcpayments-01 .tp-hero {
  position: relative;
}
.tp-mcpayments-01 .tp-hero-swiper {
  height: 86vh; min-height: 620px; max-height: 820px;
  position: relative;
}
.tp-mcpayments-01 .tp-hero-swiper .swiper-slide {
  position: relative; overflow: hidden;
}
.tp-mcpayments-01 .tp-hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}
.tp-mcpayments-01 .tp-hero-swiper .swiper-slide-active .tp-hero-slide-bg {
  transform: scale(1.12);
}
.tp-mcpayments-01 .tp-hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(7,20,42,0.82) 0%,
    rgba(11,42,91,0.60) 50%,
    rgba(0,0,0,0.35) 100%
  );
}
.tp-mcpayments-01 .tp-hero-slide-text {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  max-width: 1200px; margin: 0 auto;
  padding: 0 60px;
  color: #fff; z-index: 2;
}
.tp-mcpayments-01 .tp-hero-badge {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tp-secondary);
  padding: 6px 14px;
  border: 1px solid var(--tp-secondary);
  border-radius: 20px;
  margin-bottom: 24px;
  animation: tp-fadeInUp 0.8s both;
}
.tp-mcpayments-01 .tp-hero-title {
  font-size: 56px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.035em; color: #fff;
  max-width: 720px;
  animation: tp-fadeInUp 1s both;
}
.tp-mcpayments-01 .tp-hero-desc {
  font-size: 18px; font-weight: 400; line-height: 1.7;
  color: rgba(255,255,255,0.86);
  margin-top: 22px; max-width: 560px;
  animation: tp-fadeInUp 1.1s 0.1s both;
}
.tp-mcpayments-01 .tp-hero-ctas {
  display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap;
  animation: tp-fadeInUp 1.2s 0.2s both;
}
@keyframes tp-fadeInUp {
  0%  { opacity: 0; transform: translate3d(0, 20%, 0); }
  to  { opacity: 1; transform: translateZ(0); }
}

/* Hero slider navigation */
.tp-mcpayments-01 .tp-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background var(--tp-duration), transform 0.2s;
}
.tp-mcpayments-01 .tp-hero-nav:hover {
  background: var(--tp-secondary);
  border-color: var(--tp-secondary);
}
.tp-mcpayments-01 .tp-hero-prev { left: 32px; }
.tp-mcpayments-01 .tp-hero-next { right: 32px; }
.tp-mcpayments-01 .tp-hero-pagination {
  position: absolute; bottom: 36px; left: 0; right: 0;
  text-align: center; z-index: 10;
}
.tp-mcpayments-01 .tp-hero-pagination .swiper-pagination-bullet {
  width: 28px; height: 3px; border-radius: 0;
  background: rgba(255,255,255,0.45); opacity: 1;
  transition: background var(--tp-duration), width var(--tp-duration);
  margin: 0 4px !important;
}
.tp-mcpayments-01 .tp-hero-pagination .swiper-pagination-bullet-active {
  background: var(--tp-secondary); width: 48px;
}

/* Hero stats — slim row, NOT floating glass cards */
.tp-mcpayments-01 .tp-hero-stats {
  background: var(--tp-primary);
  padding: 28px 0;
}
.tp-mcpayments-01 .tp-hero-stats-row {
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.tp-mcpayments-01 .tp-hero-stat {
  text-align: center; color: #fff;
  flex: 1 1 160px;
}
.tp-mcpayments-01 .tp-hero-stat-number {
  font-size: 32px; font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1;
}
.tp-mcpayments-01 .tp-hero-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.72);
  margin-top: 6px; letter-spacing: 0.02em;
}

/* ============================================================
   Industries
   ============================================================ */
.tp-mcpayments-01 .tp-industries-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.tp-mcpayments-01 .tp-industry-card {
  background: #fff; border-radius: 14px;
  overflow: hidden; border: 1px solid var(--tp-g01);
  transition: transform var(--tp-duration) var(--tp-ease),
              box-shadow var(--tp-duration) var(--tp-ease);
  cursor: pointer; display: flex; flex-direction: column;
}
.tp-mcpayments-01 .tp-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(11,42,91,0.14);
}
.tp-mcpayments-01 .tp-industry-img-wrap {
  position: relative; width: 100%; aspect-ratio: 16/10;
  overflow: hidden; background: var(--tp-g01);
}
.tp-mcpayments-01 .tp-industry-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--tp-ease);
}
.tp-mcpayments-01 .tp-industry-card:hover .tp-industry-img-wrap img {
  transform: scale(1.08);
}
.tp-mcpayments-01 .tp-industry-badge {
  position: absolute; top: 16px; left: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--tp-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.tp-mcpayments-01 .tp-industry-body { padding: 24px 24px 28px; }
.tp-mcpayments-01 .tp-industry-body h3 { margin-bottom: 10px; }
.tp-mcpayments-01 .tp-industry-body p {
  font-size: 15px; line-height: 1.65; color: var(--tp-g06);
}
.tp-mcpayments-01 .tp-industry-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px;
}
.tp-mcpayments-01 .tp-industry-tag {
  display: inline-block; padding: 4px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 600;
  background: var(--tp-g00); color: var(--tp-g06);
  border: 1px solid var(--tp-g01);
}

/* ============================================================
   Features (dark background with photo)
   ============================================================ */
.tp-mcpayments-01 .tp-features-section {
  position: relative;
  background-size: cover; background-position: center;
  background-color: var(--tp-g08);
}
.tp-mcpayments-01 .tp-features-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,20,42,0.92) 0%, rgba(11,42,91,0.86) 100%);
}
.tp-mcpayments-01 .tp-features-section .tp-container {
  position: relative; z-index: 1;
}
.tp-mcpayments-01 .tp-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.tp-mcpayments-01 .tp-feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 36px 28px; text-align: left;
  transition: transform var(--tp-duration) var(--tp-ease),
              background var(--tp-duration),
              border-color var(--tp-duration);
}
.tp-mcpayments-01 .tp-feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(230,163,36,0.5);
}
.tp-mcpayments-01 .tp-feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 12px;
  font-size: 22px; color: var(--tp-secondary);
  background: rgba(230,163,36,0.12);
  margin-bottom: 22px;
}
.tp-mcpayments-01 .tp-feature-card h3 {
  color: #fff; margin-bottom: 10px;
}
.tp-mcpayments-01 .tp-feature-card p {
  font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7;
}

/* ============================================================
   Process — grayscale → color hover
   ============================================================ */
.tp-mcpayments-01 .tp-process-track {
  display: flex; align-items: stretch;
  gap: 0; flex-wrap: wrap;
}
.tp-mcpayments-01 .tp-card-process {
  flex: 1 1 0; min-width: 200px;
  display: flex; flex-direction: column;
  cursor: pointer;
  padding: 0 8px;
}
.tp-mcpayments-01 .tp-process-img-wrap {
  position: relative; width: 100%; aspect-ratio: 4/3;
  overflow: hidden; border-radius: 10px;
  background: var(--tp-g02);
}
.tp-mcpayments-01 .tp-process-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.95);
  transition: filter var(--tp-duration) var(--tp-ease),
              transform 0.5s var(--tp-ease);
}
.tp-mcpayments-01 .tp-card-process:hover .tp-process-img-wrap img {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}
.tp-mcpayments-01 .tp-process-step-num {
  position: absolute; left: 12px; top: 12px;
  background: rgba(11,42,91,0.92); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 5px 10px; border-radius: 4px;
}
.tp-mcpayments-01 .tp-process-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--tp-g02);
  margin: 28px auto;
  transition: background var(--tp-duration),
              box-shadow var(--tp-duration);
}
.tp-mcpayments-01 .tp-card-process:hover .tp-process-dot {
  background: var(--tp-secondary);
  box-shadow: 0 0 0 6px rgba(230,163,36,0.18);
}
.tp-mcpayments-01 .tp-process-body h3 {
  margin-bottom: 8px; text-align: center;
}
.tp-mcpayments-01 .tp-process-body p {
  font-size: 14px; color: var(--tp-g06);
  text-align: center; line-height: 1.6;
}
.tp-mcpayments-01 .tp-process-connector {
  align-self: flex-start;
  margin-top: 15%;
  color: var(--tp-g03); font-size: 18px;
  display: flex; align-items: center;
}

/* ============================================================
   Pricing
   ============================================================ */
.tp-mcpayments-01 .tp-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.tp-mcpayments-01 .tp-pricing-card {
  position: relative;
  background: #fff; border: 1px solid var(--tp-g01);
  border-radius: 16px; padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  transition: transform var(--tp-duration) var(--tp-ease),
              box-shadow var(--tp-duration) var(--tp-ease),
              border-color var(--tp-duration);
}
.tp-mcpayments-01 .tp-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(11,42,91,0.10);
  border-color: var(--tp-primary);
}
.tp-mcpayments-01 .tp-pricing-card.is-highlight {
  border: 2px solid var(--tp-primary);
  background: linear-gradient(180deg, #fff 0%, #F6F9FF 100%);
  box-shadow: 0 14px 40px rgba(11,42,91,0.14);
}
.tp-mcpayments-01 .tp-pricing-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--tp-secondary); color: #fff;
  padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  box-shadow: 0 6px 14px rgba(230,163,36,0.32);
}
.tp-mcpayments-01 .tp-pricing-head { margin-bottom: 22px; }
.tp-mcpayments-01 .tp-pricing-target {
  font-size: 13px; font-weight: 700; color: var(--tp-primary);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.tp-mcpayments-01 .tp-pricing-name {
  font-size: 24px; font-weight: 800; color: var(--tp-g08);
}
.tp-mcpayments-01 .tp-pricing-rate {
  padding: 20px 0;
  border-top: 1px dashed var(--tp-g02);
  border-bottom: 1px dashed var(--tp-g02);
  margin-bottom: 20px;
  display: flex; align-items: baseline; gap: 8px;
}
.tp-mcpayments-01 .tp-pricing-rate-value {
  font-size: 36px; font-weight: 800;
  color: var(--tp-primary); letter-spacing: -0.03em;
  line-height: 1;
}
.tp-mcpayments-01 .tp-pricing-rate-note {
  font-size: 13px; color: var(--tp-g05);
}
.tp-mcpayments-01 .tp-pricing-settlement {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--tp-g07);
  background: var(--tp-g00);
  padding: 8px 14px; border-radius: 20px;
  margin-bottom: 22px;
  align-self: flex-start;
}
.tp-mcpayments-01 .tp-pricing-settlement i { color: var(--tp-secondary); }
.tp-mcpayments-01 .tp-pricing-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.tp-mcpayments-01 .tp-pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--tp-g07); line-height: 1.55;
}
.tp-mcpayments-01 .tp-pricing-features i {
  flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(11,42,91,0.08); color: var(--tp-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; margin-top: 2px;
}
.tp-mcpayments-01 .tp-pricing-note {
  margin-top: 32px; text-align: center;
  font-size: 14px; color: var(--tp-g05);
  padding: 14px; background: var(--tp-g00);
  border-radius: 8px;
}
.tp-mcpayments-01 .tp-pricing-note i {
  margin-right: 6px; color: var(--tp-primary);
}

/* ============================================================
   Testimonials
   ============================================================ */
.tp-mcpayments-01 .tp-testimonials-slider { overflow: hidden; padding-bottom: 50px; }
.tp-mcpayments-01 .tp-card-review {
  height: 100%; min-height: 300px;
  background: #fff; padding: 32px;
  border-radius: 14px; border: 1px solid var(--tp-g01);
  display: flex; flex-direction: column;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.tp-mcpayments-01 .tp-review-rating {
  display: flex; gap: 2px; margin-bottom: 16px;
  color: var(--tp-secondary); font-size: 15px;
}
.tp-mcpayments-01 .tp-review-rating .is-empty { color: var(--tp-g02); }
.tp-mcpayments-01 .tp-review-text {
  font-size: 15.5px; color: var(--tp-g07);
  line-height: 1.75; flex: 1;
  word-break: keep-all;
}
.tp-mcpayments-01 .tp-review-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--tp-g01);
}
.tp-mcpayments-01 .tp-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.tp-mcpayments-01 .tp-review-name {
  font-size: 15px; font-weight: 700; color: var(--tp-g08);
}
.tp-mcpayments-01 .tp-review-role {
  font-size: 13px; color: var(--tp-g05); margin-top: 2px;
}
.tp-mcpayments-01 .tp-testimonial-pagination {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center;
}
.tp-mcpayments-01 .tp-testimonial-pagination .swiper-pagination-bullet {
  background: var(--tp-g03); opacity: 1;
  transition: background var(--tp-duration);
}
.tp-mcpayments-01 .tp-testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--tp-primary);
}

/* ============================================================
   Partners — infinite logo slider
   ============================================================ */
.tp-mcpayments-01 .tp-partners-section { padding: 80px 0; }
.tp-mcpayments-01 .tp-logo-slider {
  overflow: hidden; padding: 20px 0;
}
.tp-mcpayments-01 .tp-partner-swiper {
  overflow: hidden;
}
.tp-mcpayments-01 .tp-partner-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.tp-mcpayments-01 .tp-partner-slide {
  width: auto !important;
  display: flex; align-items: center; justify-content: center;
  min-width: 140px;
}
.tp-mcpayments-01 .tp-partner-slide img {
  height: 44px; width: auto; max-width: 180px; object-fit: contain;
  opacity: 0.55; filter: grayscale(1);
  transition: opacity var(--tp-duration), filter var(--tp-duration);
}
.tp-mcpayments-01 .tp-partner-slide:hover img {
  opacity: 1; filter: grayscale(0);
}

/* ============================================================
   FAQ
   ============================================================ */
.tp-mcpayments-01 .tp-faq-container { max-width: 860px; }
.tp-mcpayments-01 .tp-faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.tp-mcpayments-01 .tp-faq-item {
  background: #fff; border: 1px solid var(--tp-g01);
  border-radius: 10px; overflow: hidden;
  transition: border-color var(--tp-duration), box-shadow var(--tp-duration);
}
.tp-mcpayments-01 .tp-faq-item[open] {
  border-color: var(--tp-primary);
  box-shadow: 0 6px 20px rgba(11,42,91,0.08);
}
.tp-mcpayments-01 .tp-faq-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  font-size: 16px; font-weight: 600; color: var(--tp-g08);
  cursor: pointer; list-style: none;
  transition: background var(--tp-duration);
}
.tp-mcpayments-01 .tp-faq-item summary::-webkit-details-marker { display: none; }
.tp-mcpayments-01 .tp-faq-item summary:hover { background: var(--tp-g00); }
.tp-mcpayments-01 .tp-faq-q-mark {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--tp-primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: 0;
}
.tp-mcpayments-01 .tp-faq-q-text { flex: 1; line-height: 1.5; }
.tp-mcpayments-01 .tp-faq-caret {
  color: var(--tp-g05); font-size: 13px;
  transition: transform var(--tp-duration);
}
.tp-mcpayments-01 .tp-faq-item[open] .tp-faq-caret { transform: rotate(180deg); }
.tp-mcpayments-01 .tp-faq-a {
  display: flex; gap: 16px;
  padding: 0 24px 22px 24px;
}
.tp-mcpayments-01 .tp-faq-a-mark {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--tp-g00); color: var(--tp-secondary);
  border: 1px solid var(--tp-g02);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}
.tp-mcpayments-01 .tp-faq-a p {
  flex: 1; font-size: 15px; line-height: 1.75;
  color: var(--tp-g06); padding-top: 4px;
}

/* ============================================================
   Contact CTA + Modal
   ============================================================ */
.tp-mcpayments-01 .tp-contact-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--tp-primary);
  background-size: cover; background-position: center;
  color: #fff; text-align: center;
  overflow: hidden;
}
.tp-mcpayments-01 .tp-contact-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,42,91,0.92) 0%, rgba(7,20,42,0.94) 100%);
}
.tp-mcpayments-01 .tp-contact-section .tp-container {
  position: relative; z-index: 1;
}
.tp-mcpayments-01 .tp-contact-section h2 {
  color: #fff; margin: 12px 0 16px;
}
.tp-mcpayments-01 .tp-contact-section p {
  color: rgba(255,255,255,0.82); margin-bottom: 36px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.tp-mcpayments-01 .tp-contact-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Modal */
.tp-mcpayments-01 .tp-modal {
  position: fixed; inset: 0;
  background: rgba(7,14,28,0.72); backdrop-filter: blur(4px);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.tp-mcpayments-01 .tp-modal.is-open { opacity: 1; pointer-events: auto; }
.tp-mcpayments-01 .tp-modal-box {
  background: #fff; border-radius: 18px;
  width: 92%; max-width: 540px; max-height: 92vh; overflow-y: auto;
  transform: translateY(28px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.tp-mcpayments-01 .tp-modal.is-open .tp-modal-box {
  transform: translateY(0) scale(1);
}
.tp-mcpayments-01 .tp-modal-box::before {
  content: ''; display: block; height: 5px;
  background: linear-gradient(90deg, var(--tp-primary) 0%, var(--tp-secondary) 100%);
  border-radius: 18px 18px 0 0;
}
.tp-mcpayments-01 .tp-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 0;
}
.tp-mcpayments-01 .tp-modal-header h3 {
  font-size: 20px; color: var(--tp-g08);
}
.tp-mcpayments-01 .tp-modal-close {
  background: none; border: none; font-size: 28px; color: var(--tp-g05);
  cursor: pointer; min-height: 44px; min-width: 44px;
  display: flex; align-items: center; justify-content: center;
}
.tp-mcpayments-01 .tp-modal-body { padding: 16px 28px 28px; }
.tp-mcpayments-01 .tp-modal-intro {
  font-size: 14px; color: var(--tp-g06);
  background: var(--tp-g00);
  padding: 12px 14px; border-radius: 8px;
  margin-bottom: 18px;
  border-left: 3px solid var(--tp-secondary);
}
.tp-mcpayments-01 .tp-modal-intro strong { color: var(--tp-primary); font-weight: 700; }
.tp-mcpayments-01 .tp-form-field { margin-bottom: 14px; }
.tp-mcpayments-01 .tp-form-field label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--tp-g07); margin-bottom: 6px;
}
.tp-mcpayments-01 .tp-form-field input,
.tp-mcpayments-01 .tp-form-field select,
.tp-mcpayments-01 .tp-form-field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e8e8e8;
  border-radius: 10px; font-size: 14px; background: #fafafa;
  font-family: inherit; outline: none; box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
  color: var(--tp-g08);
}
.tp-mcpayments-01 .tp-form-field input:focus,
.tp-mcpayments-01 .tp-form-field select:focus,
.tp-mcpayments-01 .tp-form-field textarea:focus {
  border-color: var(--tp-primary); background: #fff;
}
.tp-mcpayments-01 .tp-form-field textarea { resize: vertical; min-height: 80px; }
.tp-mcpayments-01 .tp-form-consent {
  display: flex; align-items: flex-start; gap: 8px; margin: 16px 0 18px;
  font-size: 13px; color: var(--tp-g06);
}
.tp-mcpayments-01 .tp-form-consent input[type="checkbox"] { margin-top: 3px; }
.tp-mcpayments-01 .tp-form-consent a { color: var(--tp-primary); }
.tp-mcpayments-01 .tp-form-submit {
  width: 100%; min-height: 50px; background: var(--tp-primary);
  color: #fff; border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: filter var(--tp-duration), transform 0.15s;
  box-shadow: 0 6px 18px rgba(11,42,91,0.22);
}
.tp-mcpayments-01 .tp-form-submit:hover { filter: brightness(1.12); transform: translateY(-1px); }
.tp-mcpayments-01 .tp-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================================================
   Footer
   ============================================================ */
.tp-mcpayments-01 .tp-footer-dark {
  background: #0A1828; color: #fff;
  font-size: 14px; padding: 60px 0 28px;
}
.tp-mcpayments-01 .tp-footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 20px;
}
.tp-mcpayments-01 .tp-footer-company {
  font-size: 20px; font-weight: 800;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.tp-mcpayments-01 .tp-footer-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 7px;
  background: var(--tp-secondary); color: #0A1828;
  font-weight: 800; font-size: 13px;
}
.tp-mcpayments-01 .tp-footer-tagline {
  color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6;
}
.tp-mcpayments-01 .tp-footer-contact {
  text-align: right;
}
.tp-mcpayments-01 .tp-footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 22px; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -0.02em;
}
.tp-mcpayments-01 .tp-footer-phone i {
  color: var(--tp-secondary); font-size: 16px;
}
.tp-mcpayments-01 .tp-footer-hours {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.tp-mcpayments-01 .tp-footer-hours i { margin-right: 4px; }
.tp-mcpayments-01 .tp-footer-info {
  font-weight: 300; line-height: 1.95; color: rgba(255,255,255,0.55);
  font-size: 13px;
}
.tp-mcpayments-01 .tp-footer-info .sep {
  font-size: 10px; opacity: 0.5; padding: 0 8px;
}
.tp-mcpayments-01 .tp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 12px;
}
.tp-mcpayments-01 .tp-footer-links {
  display: flex; gap: 20px;
}
.tp-mcpayments-01 .tp-footer-links a {
  color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: color var(--tp-duration);
}
.tp-mcpayments-01 .tp-footer-links a:hover { color: var(--tp-secondary); }
.tp-mcpayments-01 .tp-copyright {
  font-size: 12.5px; color: rgba(255,255,255,0.42);
}

/* ============================================================
   Buttons
   ============================================================ */
.tp-mcpayments-01 .tp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 28px; font-size: 15px; font-weight: 700;
  border-radius: 8px; cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: background var(--tp-duration), color var(--tp-duration),
              filter var(--tp-duration), transform 0.15s,
              border-color var(--tp-duration);
  text-decoration: none; border: 2px solid transparent;
}
.tp-mcpayments-01 .tp-btn-solid {
  background: var(--tp-primary); color: #fff;
  box-shadow: 0 6px 20px rgba(11,42,91,0.25);
}
.tp-mcpayments-01 .tp-btn-solid:hover { filter: brightness(1.12); transform: translateY(-2px); }
.tp-mcpayments-01 .tp-btn-solid:active { transform: translateY(0); filter: brightness(0.92); }
.tp-mcpayments-01 .tp-btn-solid:focus-visible { outline: 3px solid var(--tp-secondary); outline-offset: 3px; }

.tp-mcpayments-01 .tp-btn-gold {
  background: var(--tp-secondary); color: #1F1F1F;
  box-shadow: 0 6px 20px rgba(230,163,36,0.32);
}
.tp-mcpayments-01 .tp-btn-gold:hover { filter: brightness(1.05); transform: translateY(-2px); }

.tp-mcpayments-01 .tp-btn-outline {
  background: transparent; color: var(--tp-primary);
  border-color: var(--tp-primary);
}
.tp-mcpayments-01 .tp-btn-outline:hover { background: var(--tp-primary); color: #fff; }

.tp-mcpayments-01 .tp-btn-outline-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.tp-mcpayments-01 .tp-btn-outline-light:hover { background: #fff; color: var(--tp-primary); border-color: #fff; }

.tp-mcpayments-01 .tp-btn-ghost {
  background: rgba(255,255,255,0.08); color: #fff;
  border-color: rgba(255,255,255,0.3); backdrop-filter: blur(6px);
}
.tp-mcpayments-01 .tp-btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* --- Scroll Reveal --- */
.tp-mcpayments-01 [data-reveal] {
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity 500ms cubic-bezier(0.16,1,0.3,1),
              transform 500ms cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.tp-mcpayments-01 [data-reveal].is-visible {
  opacity: 1; transform: translateY(0);
}

/* --- Interaction / a11y --- */
.tp-mcpayments-01 button,
.tp-mcpayments-01 label,
.tp-mcpayments-01 [role="button"],
.tp-mcpayments-01 a { cursor: pointer; }
.tp-mcpayments-01 :focus-visible {
  outline: 3px solid var(--tp-secondary); outline-offset: 3px; border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .tp-mcpayments-01 *,
  .tp-mcpayments-01 *::before,
  .tp-mcpayments-01 *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   Responsive — Desktop First
   ============================================================ */
@media (max-width: 1100px) {
  .tp-mcpayments-01 .tp-industries-grid,
  .tp-mcpayments-01 .tp-features-grid,
  .tp-mcpayments-01 .tp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-mcpayments-01 .tp-process-track { gap: 10px; }
  .tp-mcpayments-01 .tp-process-connector { display: none; }
  .tp-mcpayments-01 .tp-card-process { flex: 1 1 calc(50% - 10px); }
}
@media (max-width: 960px) {
  .tp-mcpayments-01 .tp-section { padding: 70px 0; }
  .tp-mcpayments-01 .tp-hamburger { display: block; }
  .tp-mcpayments-01 .tp-nav-links { display: none; }
  .tp-mcpayments-01 .tp-nav-cta-wrap { display: none; }

  .tp-mcpayments-01 .tp-hero-swiper { height: 78vh; min-height: 540px; }
  .tp-mcpayments-01 .tp-hero-slide-text { padding: 0 30px; }
  .tp-mcpayments-01 .tp-hero-title { font-size: 38px; }
  .tp-mcpayments-01 .tp-hero-desc { font-size: 16px; }
  .tp-mcpayments-01 .tp-hero-nav { width: 42px; height: 42px; }
  .tp-mcpayments-01 .tp-hero-prev { left: 16px; }
  .tp-mcpayments-01 .tp-hero-next { right: 16px; }

  .tp-mcpayments-01 .tp-hero-stat-number { font-size: 26px; }

  .tp-mcpayments-01 .tp-footer-top { flex-direction: column; align-items: flex-start; }
  .tp-mcpayments-01 .tp-footer-contact { text-align: left; }

  .tp-mcpayments-01 .tp-hidden-pc { display: block !important; }
  .tp-mcpayments-01 .tp-hidden-mo { display: none !important; }
}
@media (max-width: 720px) {
  .tp-mcpayments-01 h1 { font-size: 32px; }
  .tp-mcpayments-01 h2 { font-size: 28px; }
  .tp-mcpayments-01 .tp-industries-grid,
  .tp-mcpayments-01 .tp-features-grid,
  .tp-mcpayments-01 .tp-pricing-grid {
    grid-template-columns: 1fr;
  }
  .tp-mcpayments-01 .tp-card-process { flex: 1 1 100%; }
  .tp-mcpayments-01 .tp-process-track { flex-direction: column; gap: 24px; }
  .tp-mcpayments-01 .tp-process-dot { margin: 16px auto; }
  .tp-mcpayments-01 .tp-section-header { margin-bottom: 40px; }

  .tp-mcpayments-01 .tp-hero-title { font-size: 30px; }
  .tp-mcpayments-01 .tp-hero-swiper { height: 70vh; min-height: 480px; }
  .tp-mcpayments-01 .tp-hero-ctas { flex-direction: column; width: 100%; }
  .tp-mcpayments-01 .tp-hero-ctas .tp-btn { width: 100%; }

  .tp-mcpayments-01 .tp-footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .tp-mcpayments-01 .tp-modal-box { border-radius: 12px; }
  .tp-mcpayments-01 .tp-card-review { padding: 24px; min-height: 260px; }
  .tp-mcpayments-01 .tp-hero-stats-row { gap: 20px; }
  .tp-mcpayments-01 .tp-hero-stat-number { font-size: 22px; }
}
