/* ═══════════════════════════════════════════════════════════════════════
   TimeterestPay — HOMEPAGE v2 · Paystack-inspired redesign
   Brand: Red #F0445E · Navy #192F7A · Light #FAFAFC
   Completely new structure: human-first hero, bold type, floating cards.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── New hero ─────────────────────────────────────────────────────────── */
.tp2-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(240,68,94,0.14), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(25,47,122,0.12), transparent 55%),
    linear-gradient(180deg, #FBFBFF 0%, #FFFFFF 100%);
  padding: 96px 0 110px;
}
.tp2-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .tp2-hero-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 20px; }
  .tp2-hero-visual { order: -1; }
}

/* Hero copy */
.tp2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,68,94,0.09);
  border: 1px solid rgba(240,68,94,0.22);
  color: var(--tp-red);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.tp2-eyebrow i { font-size: 15px; }
.tp2-hero-title {
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--tp-navy-deep);
  letter-spacing: -1.5px;
  margin: 0 0 24px;
}
.tp2-hero-title .tp2-accent {
  background: var(--tp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tp2-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--tp-muted);
  max-width: 520px;
  margin: 0 0 34px;
}
.tp2-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.tp2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: none;
  cursor: pointer;
}
.tp2-btn-primary {
  background: var(--tp-gradient);
  background-size: 200% 100%;
  color: #fff !important;
  box-shadow: var(--tp-shadow-red);
}
.tp2-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(240,68,94,0.4); background-position: 100% 0; }
.tp2-btn-ghost {
  background: #fff;
  color: var(--tp-navy-deep) !important;
  border: 1.5px solid var(--tp-line);
  box-shadow: 0 8px 24px rgba(25,47,122,0.06);
}
.tp2-btn-ghost:hover { transform: translateY(-3px); border-color: var(--tp-red); color: var(--tp-red) !important; }

.tp2-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.tp2-hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--tp-navy-deep);
  background: var(--tp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tp2-hero-stat span { font-size: 13.5px; color: var(--tp-muted); font-weight: 500; }

/* Hero visual — human photo + floating cards */
.tp2-hero-visual { position: relative; }
.tp2-photo {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(25,47,122,0.2);
  border: 6px solid #fff;
  position: relative;
}
.tp2-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}
@media (max-width: 575px) { .tp2-photo img { aspect-ratio: 3 / 4; } }

.tp2-float-card {
  position: absolute;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(25,47,122,0.18);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: tp2Float 4.5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 3;
}
.tp2-float-card .fc-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  flex: 0 0 auto;
}
.tp2-float-card .fc-title { font-size: 14.5px; font-weight: 700; color: var(--tp-navy-deep); margin: 0; }
.tp2-float-card .fc-sub { font-size: 12.5px; color: var(--tp-muted); margin: 2px 0 0; }
.tp2-fc-1 { top: 6%; left: -12%; animation-delay: -1s; }
.tp2-fc-2 { top: 44%; right: -10%; animation-delay: -2.2s; }
.tp2-fc-3 { bottom: 4%; left: 6%; animation-delay: -3.2s; }
@media (max-width: 1199px) {
  .tp2-fc-1 { left: 0; } .tp2-fc-2 { right: 0; }
}
@keyframes tp2Float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* decorative ring behind photo */
.tp2-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(240,68,94,0.25);
  animation: tp2Spin 30s linear infinite;
}
.tp2-ring-1 { width: 560px; height: 560px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
@keyframes tp2Spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── Section shell (shared) ───────────────────────────────────────────── */
.tp2-section { padding: 100px 0; }
.tp2-section-alt { background: var(--tp-soft); }
.tp2-container { max-width: 1440px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.tp2-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.tp2-head .tp2-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--tp-red); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 14px;
}
.tp2-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--tp-navy-deep);
  letter-spacing: -0.8px;
  margin: 0 0 16px;
  line-height: 1.12;
}
.tp2-head p { font-size: 16.5px; line-height: 1.65; color: var(--tp-muted); margin: 0; }

/* ── Logo strip ───────────────────────────────────────────────────────── */
.tp2-logos { text-align: center; padding: 40px 0 8px; }
.tp2-logos .tp2-kicker {
  color: var(--tp-muted); font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px;
}
.tp2-logos-row { display: flex; justify-content: center; align-items: center; gap: 46px; flex-wrap: wrap; opacity: 0.85; }
.tp2-logos-row img { max-height: 46px; opacity: 0.5; filter: grayscale(1); transition: all 0.3s ease; }
.tp2-logos-row img:hover { opacity: 1; filter: grayscale(0); }

/* ── Feature cards (services) ─────────────────────────────────────────── */
.tp2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 991px) { .tp2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .tp2-grid { grid-template-columns: 1fr; } }
.tp2-card {
  background: #fff;
  border: 1px solid var(--tp-line);
  border-radius: 22px;
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tp2-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--tp-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.tp2-card:hover { transform: translateY(-8px); box-shadow: var(--tp-shadow); border-color: transparent; }
.tp2-card:hover::before { transform: scaleX(1); }
.tp2-card-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(240,68,94,0.09);
  color: var(--tp-red);
  font-size: 24px;
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.tp2-card:hover .tp2-card-icon { background: var(--tp-gradient); color: #fff; transform: scale(1.08); }
.tp2-card h3 { font-size: 19px; font-weight: 700; color: var(--tp-navy-deep); margin: 0 0 10px; }
.tp2-card p { font-size: 14.5px; line-height: 1.65; color: var(--tp-muted); margin: 0; }

/* ── Split section (about / why choose) ───────────────────────────────── */
.tp2-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) { .tp2-split { grid-template-columns: 1fr; } }
.tp2-split-img { position: relative; }
.tp2-split-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 36px 80px rgba(25,47,122,0.18);
  border: 5px solid #fff;
  object-fit: cover;
  height: 480px;
}
.tp2-split-badge {
  position: absolute;
  bottom: -18px; right: 24px;
  background: var(--tp-navy-deep);
  color: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(15,30,78,0.35);
  display: flex; align-items: center; gap: 12px;
}
.tp2-split-badge strong { font-size: 24px; font-weight: 800; }
.tp2-split-badge span { font-size: 12.5px; opacity: 0.75; }
.tp2-split-body h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--tp-navy-deep);
  letter-spacing: -0.6px;
  line-height: 1.14;
  margin: 0 0 20px;
}
.tp2-split-body > p { font-size: 16px; line-height: 1.7; color: var(--tp-muted); margin: 0 0 28px; }
.tp2-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.tp2-checklist li { display: flex; gap: 14px; align-items: flex-start; }
.tp2-checklist .ck {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 10px;
  background: rgba(240,68,94,0.1);
  color: var(--tp-red);
  display: grid; place-items: center;
  font-size: 13px;
  margin-top: 2px;
}
.tp2-checklist h4 { font-size: 16px; font-weight: 700; color: var(--tp-navy-deep); margin: 0 0 4px; }
.tp2-checklist p { font-size: 14px; line-height: 1.6; color: var(--tp-muted); margin: 0; }

/* ── Steps (how it works) ─────────────────────────────────────────────── */
.tp2-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 991px) { .tp2-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .tp2-steps { grid-template-columns: 1fr; } }
.tp2-step {
  text-align: center;
  background: #fff;
  border: 1px solid var(--tp-line);
  border-radius: 22px;
  padding: 36px 24px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp2-step:hover { transform: translateY(-8px); box-shadow: var(--tp-shadow); }
.tp2-step-num {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--tp-gradient);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: grid; place-items: center;
  box-shadow: var(--tp-shadow-red);
  position: relative;
}
.tp2-step-num::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px dashed rgba(240,68,94,0.35);
  animation: tp2Spin2 14s linear infinite;
}
@keyframes tp2Spin2 { to { transform: rotate(360deg); } }
.tp2-step h3 { font-size: 17.5px; font-weight: 700; color: var(--tp-navy-deep); margin: 0 0 8px; }
.tp2-step p { font-size: 14px; line-height: 1.6; color: var(--tp-muted); margin: 0; }

/* ── Stats band ───────────────────────────────────────────────────────── */
.tp2-stats-band {
  background: linear-gradient(120deg, #0F1E4E 0%, #192F7A 55%, #22388F 100%);
  border-radius: 28px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) { .tp2-stats-band { grid-template-columns: repeat(2, 1fr); } }
.tp2-stats-band::before {
  content: "";
  position: absolute; top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(240,68,94,0.18);
  filter: blur(60px);
}
.tp2-stat-item { position: relative; }
.tp2-stat-item strong {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.tp2-stat-item span { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── Security band ────────────────────────────────────────────────────── */
.tp2-security {
  background: linear-gradient(160deg, #0C1738 0%, #192F7A 100%);
  border-radius: 28px;
  padding: 64px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tp2-security::before {
  content: "";
  position: absolute; bottom: -140px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(240,68,94,0.16);
  filter: blur(70px);
}
.tp2-security .tp2-head h2 { color: #fff; }
.tp2-security .tp2-head p { color: rgba(255,255,255,0.7); }
.tp2-sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
@media (max-width: 991px) { .tp2-sec-grid { grid-template-columns: 1fr; } }
.tp2-sec-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 26px 24px;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.tp2-sec-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); }
.tp2-sec-item .si-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(240,68,94,0.25);
  color: #fff;
  display: grid; place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.tp2-sec-item h4 { font-size: 16.5px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.tp2-sec-item p { font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0; }

/* ── Testimonials ─────────────────────────────────────────────────────── */
.tp2-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .tp2-testi-grid { grid-template-columns: 1fr; } }
.tp2-testi {
  background: #fff;
  border: 1px solid var(--tp-line);
  border-radius: 22px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tp2-testi:hover { transform: translateY(-6px); box-shadow: var(--tp-shadow); }
.tp2-testi-stars { color: #FFB800; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.tp2-testi p { font-size: 14.5px; line-height: 1.7; color: var(--tp-muted); font-style: italic; margin: 0 0 22px; }
.tp2-testi-user { display: flex; align-items: center; gap: 14px; }
.tp2-testi-user img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(240,68,94,0.2);
}
.tp2-testi-user h5 { font-size: 15px; font-weight: 700; color: var(--tp-navy-deep); margin: 0; }
.tp2-testi-user span { font-size: 12.5px; color: var(--tp-muted); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.tp2-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.tp2-faq-item {
  background: #fff;
  border: 1px solid var(--tp-line);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.tp2-faq-item.open { border-color: rgba(240,68,94,0.35); box-shadow: 0 12px 34px rgba(240,68,94,0.1); }
.tp2-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--tp-navy-deep);
}
.tp2-faq-q .faq-arrow {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 10px;
  background: rgba(240,68,94,0.1);
  color: var(--tp-red);
  display: grid; place-items: center;
  font-size: 13px;
  transition: transform 0.3s ease;
}
.tp2-faq-item.open .faq-arrow { transform: rotate(180deg); }
.tp2-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
  color: var(--tp-muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.tp2-faq-item.open .tp2-faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── CTA band ─────────────────────────────────────────────────────────── */
.tp2-cta {
  background: var(--tp-gradient);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tp2-cta::before, .tp2-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.tp2-cta::before { width: 260px; height: 260px; top: -90px; right: -70px; }
.tp2-cta::after { width: 200px; height: 200px; bottom: -80px; left: -60px; }
.tp2-cta h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin: 0 0 16px; position: relative; z-index: 1; }
.tp2-cta p { font-size: 17px; opacity: 0.9; max-width: 560px; margin: 0 auto 32px; position: relative; z-index: 1; }
.tp2-cta .tp2-btn {
  background: #fff;
  color: var(--tp-red) !important;
  position: relative; z-index: 1;
}
.tp2-cta .tp2-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(0,0,0,0.2); }

/* ── Old homepage sections: hide (replaced by new markup) ─────────────── */
.home-legacy { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════
   PAYSTACK-STYLE SECTION — payments flow with African hand (tp2-pay)
   ═══════════════════════════════════════════════════════════════════════ */
.tp2-pay {
  padding: 110px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F6FD 100%);
  position: relative;
  overflow: hidden;
}
.tp2-pay::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,68,94,0.10), transparent 65%);
  top: -180px;
  right: -160px;
  pointer-events: none;
}
.tp2-pay::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,47,122,0.08), transparent 65%);
  bottom: -200px;
  left: -140px;
  pointer-events: none;
}
.tp2-pay-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .tp2-pay-grid { grid-template-columns: 1fr; gap: 56px; }
  .tp2-pay-visual { order: -1; }
}

/* Copy side */
.tp2-pay-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--tp-navy-deep);
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin: 0 0 20px;
}
.tp2-pay-copy h2 em {
  font-style: normal;
  background: var(--tp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tp2-pay-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--tp-muted);
  margin: 0 0 34px;
  max-width: 540px;
}
.tp2-pay-list {
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
  display: grid;
  gap: 20px;
}
.tp2-pay-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.tp2-pay-check {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #3DD68C, #00A67E);
  box-shadow: 0 8px 20px rgba(0,166,126,0.25);
  margin-top: 2px;
}
.tp2-pay-list strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--tp-navy-deep);
  margin-bottom: 3px;
}
.tp2-pay-list small {
  display: block;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--tp-muted);
}
.tp2-pay-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Visual side — framed photo + floating toasts */
.tp2-pay-frame {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.tp2-pay-frame > img {
  display: block;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 90px rgba(25,47,122,0.22);
  border: 6px solid #fff;
  position: relative;
  z-index: 1;
}
.tp2-pay-ring {
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(240,68,94,0.30);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: tp2Spin 36s linear infinite;
  z-index: 0;
}
.tp2-toast {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(25,47,122,0.20);
  padding: 13px 17px;
  border: 1px solid rgba(25,47,122,0.06);
  animation: tp2ToastFloat 4.5s ease-in-out infinite;
}
.tp2-toast-ic {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: #fff;
}
.tp2-toast-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tp-navy-deep);
  margin: 0;
}
.tp2-toast-sub {
  font-size: 12px;
  color: var(--tp-muted);
  margin: 2px 0 0;
}
.tp2-toast-1 { top: 7%; left: -12%; animation-delay: 0s; }
.tp2-toast-2 { top: 40%; right: -10%; animation-delay: -1.4s; }
.tp2-toast-3 { bottom: 6%; left: 4%; animation-delay: -2.8s; }
@media (max-width: 1199px) {
  .tp2-toast-1 { left: 0; }
  .tp2-toast-2 { right: 0; }
}
@keyframes tp2ToastFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

/* Role login links (agent/merchant) — hero */
.tp2-hero-rolelinks{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:-24px 0 40px;font-size:13.5px}
.tp2-hero-rolelinks-label{color:#6B7280;font-weight:500}
.tp2-hero-rolelinks a{color:#192F7A;font-weight:700;text-decoration:underline;text-underline-offset:3px;transition:color .2s}
.tp2-hero-rolelinks a:hover{color:#4A6CF7}
.tp2-hero-rolelinks-sep{color:#C9CDE0}

/* Role login buttons (agent/merchant) — hero button upgrade */
.tp2-hero-rolelinks{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:-24px 0 40px;font-size:13px}
.tp2-hero-rolelinks-label{color:#6B7280;font-weight:600;margin-right:2px}
.tp2-hero-rolelinks a.tp2-role-btn{display:inline-flex;align-items:center;gap:7px;padding:8px 16px;border:1.5px solid #192F7A;border-radius:999px;color:#192F7A;font-weight:600;font-size:13px;text-decoration:none;background:#fff;transition:all .2s;line-height:1.2}
.tp2-hero-rolelinks a.tp2-role-btn:hover{background:#192F7A;color:#fff;text-decoration:none}

/* Role login buttons (agent/merchant) — hero button upgrade */
.tp2-hero-rolelinks{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin:-24px 0 40px;font-size:13px}
.tp2-hero-rolelinks-label{color:#6B7280;font-weight:600;margin-right:2px}
.tp2-hero-rolelinks a.tp2-role-btn{display:inline-flex;align-items:center;gap:7px;padding:8px 16px;border:1.5px solid #192F7A;border-radius:999px;color:#192F7A;font-weight:600;font-size:13px;text-decoration:none;background:#fff;transition:all .2s;line-height:1.2}
.tp2-hero-rolelinks a.tp2-role-btn:hover{background:#192F7A;color:#fff;text-decoration:none}
