/* ============================================================
   NHP EVENTS — Single Event Page
   ============================================================ */

:root {
  /* Brand magenta / crimson */
  --magenta-900: #7a1138;
  --magenta-700: #a8174e;
  --magenta-600: #be1a5b;
  --magenta-500: #d11f66;
  --pink-badge-bg: #fde7f0;
  --pink-badge-tx: #c2185b;

  /* Purple / lavender (What to expect) */
  --purple: #6c4bd6;
  --purple-deep: #4f3bbf;
  --lavender-bg-a: #f7f1fe;
  --lavender-bg-b: #fdf3fb;
  --purple-badge-bg: #ece7fd;
  --purple-badge-tx: #6c4bd6;

  /* Mint / green (Location) */
  --green: #0fa472;
  --green-tx: #0e9f6e;
  --mint-bg-a: #e9f8f0;
  --mint-bg-b: #f3fbf7;
  --mint-badge-bg: #d6f5e6;

  /* Blue (Confidence) */
  --blue: #4d7cf3;
  --blue-icon: #5b86ef;
  --blue-badge-bg: #e7f0ff;
  --blue-badge-tx: #4d7cf3;
  --blue-section-a: #eef2fc;
  --blue-section-b: #f3effb;

  /* Dark CTA */
  --cta-a: #221c4f;
  --cta-b: #2f1f63;

  /* Neutrals */
  --ink: #161735;
  --ink-soft: #2a2c4e;
  --muted: #7a8194;
  --muted-2: #9aa1b2;
  --body-bg: #f6f8fb;
  --card: #ffffff;
  --line: #eef1f5;
  --gold: #f6b01e;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px rgba(22, 23, 53, .06);
  --shadow-card: 0 10px 30px rgba(22, 23, 53, .05);
}

* { box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--body-bg);
  color: var(--ink);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container-xl { max-width: 1240px; }

a { text-decoration: none; }

/* ============================================================
   BRAND LOGO
   ============================================================ */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}
.brand-mark {
  position: relative;
  width: 26px;
  height: 28px;
  display: inline-block;
}
.brand-mark .sq {
  position: absolute;
  width: 16px;
  height: 20px;
  border-radius: 5px 5px 5px 0;
}
.brand-mark .sq-teal { left: 0; top: 0; background: linear-gradient(180deg, #18c2a6, #0fb39a); }
.brand-mark .sq-blue { left: 9px; top: 6px; background: linear-gradient(180deg, #4f6df0, #3f51d6); mix-blend-mode: multiply; }
.brand-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .5px;
  background: linear-gradient(90deg, #4f46e5, #16b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-text strong { font-weight: 800; letter-spacing: 2px; }
.brand-logo-img { height: 40px; width: auto; max-width: 180px; display: block; object-fit: contain; }
.footer-logo .brand-logo-img { height: 44px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-nav.scrolled {
  background: rgba(13, 6, 16, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}
.nav-links a {
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.dropdown-toggle-custom { display: inline-flex; align-items: center; gap: 6px; }
.nav-divider { width: 1px; height: 30px; background: rgba(255, 255, 255, .22); }
.btn-buy-ticket {
  background: #fff;
  color: var(--magenta-700);
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
  transition: transform .2s, box-shadow .2s;
}
.btn-buy-ticket:hover { transform: translateY(-2px); color: var(--magenta-700); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.nav-toggler { color: #fff; font-size: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(8,3,8,.92) 0%, rgba(20,5,18,.55) 40%, rgba(40,8,30,.15) 100%),
    url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 12% 60%, rgba(10,2,10,.85), transparent 60%);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  padding-top: 96px;
  padding-bottom: 130px;
}
.hero-content { max-width: 540px; }
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(168, 23, 78, .35);
  border: 1px solid rgba(255, 120, 170, .45);
  color: #ffd9e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4d8d; box-shadow: 0 0 10px #ff4d8d; animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 141, .7); transform: scale(1); }
  50% { box-shadow: 0 0 0 7px rgba(255, 77, 141, 0); transform: scale(1.15); }
}
.hero-title {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  color: #fff;
  margin: 22px 0 18px;
  letter-spacing: -1px;
}
.hero-title span { font-weight: 700; }
.hero-desc {
  color: rgba(255, 255, 255, .8);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 26px;
}
.pill-tickets {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 8, 6, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: transform .2s;
}
.pill-tickets:hover { transform: translateY(-2px); color: #fff; }
.pill-tickets .dot-green { width: 8px; height: 8px; border-radius: 50%; background: #aee63b; box-shadow: 0 0 8px #aee63b; animation: livePulseGreen 1.8s ease-in-out infinite; }
@keyframes livePulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(174, 230, 59, .7); }
  50% { box-shadow: 0 0 0 6px rgba(174, 230, 59, 0); }
}
.pill-tickets .sep { opacity: .5; }
.pill-tickets strong { color: #c4e44a; letter-spacing: .5px; }

/* ============================================================
   INFO BAR
   ============================================================ */
.info-bar {
  position: relative;
  margin-top: -52px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, var(--magenta-900), var(--magenta-600));
  border-radius: var(--radius-md);
  padding: 22px 10px;
  box-shadow: 0 24px 50px rgba(122, 17, 56, .3);
}
.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 26px;
  position: relative;
}
.info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 38px;
  width: 1px;
  background: rgba(255, 255, 255, .18);
}
.info-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .14);
  border-radius: 11px;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.info-label {
  display: block;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 3px;
}
.info-value { display: block; color: #fff; font-weight: 700; font-size: 15px; }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.main-section { padding-top: 46px; padding-bottom: 60px; }

/* Pill badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pill-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill-pink { background: var(--pink-badge-bg); color: var(--pink-badge-tx); }
.pill-purple { background: var(--purple-badge-bg); color: var(--purple-badge-tx); }
.pill-mint { background: var(--mint-badge-bg); color: var(--green-tx); }
.pill-blue { background: var(--blue-badge-bg); color: var(--blue-badge-tx); }

/* Generic content card */
.card-block {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.block-title {
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -.4px;
}
.block-title.sm { font-size: 21px; margin-bottom: 20px; }
.block-sub { color: var(--muted); font-size: 14px; margin: -6px 0 22px; }

/* ABOUT */
.meta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 22px; }
.meta-loc { color: var(--magenta-600); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.meta-rate { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink-soft); }
.meta-rate .bi-star-fill, .meta-rate .bi-star { color: var(--gold); font-size: 13px; }
.meta-rate .muted, .muted { color: var(--muted-2); }
.inner-soft {
  background: linear-gradient(180deg, #fbfcfe, #f7f8fc);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.inner-soft p { color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* WHAT TO EXPECT */
.block-lavender { background: linear-gradient(135deg, var(--lavender-bg-a), var(--lavender-bg-b)); }
.expect-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(108, 75, 214, .1);
  border-radius: 14px;
  padding: 15px 18px;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
}
.expect-list li:last-child { margin-bottom: 0; }
.expect-list .check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(79, 59, 191, .3);
}

/* TERMS COLLAPSE */
.card-collapse {
  background: var(--card);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.collapse-head {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
}
.terms-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: #fff4d6;
  color: #e0a91b;
  border-radius: 11px;
  font-size: 18px;
}
.collapse-title { font-weight: 700; font-size: 16px; color: var(--ink); }
.collapse-head .chev { color: var(--muted-2); transition: transform .3s; }
.collapse-head[aria-expanded="true"] .chev { transform: rotate(180deg); }
.collapse-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 28px; }
.collapse-body p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.collapse-body.open { padding-bottom: 24px; }

/* EVENT LOCATION */
.block-mint { background: linear-gradient(135deg, var(--mint-bg-a), var(--mint-bg-b)); }
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  margin-bottom: 18px;
  border: 1px solid rgba(15, 164, 114, .15);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85); }
.venue-box {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(15, 164, 114, .15);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.venue-pin {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--magenta-600), var(--magenta-900));
  color: #fff;
  border-radius: 13px;
  font-size: 20px;
  box-shadow: 0 8px 18px rgba(168, 23, 78, .3);
}
.venue-info h4 { font-weight: 700; font-size: 17px; margin: 0 0 3px; color: var(--ink); }
.venue-info p { color: var(--muted); font-size: 13.5px; margin: 0 0 10px; }
.venue-links { display: flex; gap: 22px; }
.venue-links a { font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.venue-links .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.link-magenta { color: var(--magenta-600); }
.link-green { color: var(--green-tx); }

/* BUY WITH CONFIDENCE */
.block-blue { background: linear-gradient(135deg, var(--blue-section-a), var(--blue-section-b)); }
.conf-card {
  background: #fff;
  border: 1px solid #eef1f8;
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.conf-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(77, 124, 243, .14); }
.conf-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  background: #eef3ff;
  color: var(--blue-icon);
  border-radius: 13px;
  font-size: 22px;
}
.conf-card h5 { font-weight: 700; font-size: 15px; color: var(--ink); margin: 0 0 5px; }
.conf-card p { font-size: 13px; color: var(--muted-2); margin: 0; }

/* FAQ */
.faq-block { overflow: hidden; }
.faq-help {
  position: absolute;
  top: 30px; right: 30px;
  width: 46px; height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--magenta-500), var(--magenta-900));
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(168, 23, 78, .35);
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .2s;
}
.faq-help:hover { transform: scale(1.06); }
.faq-list { margin-top: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  background: #fcfcfd;
  transition: border-color .25s, background .25s, box-shadow .25s;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.faq-num {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: #eef0f4;
  color: var(--muted-2);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  transition: all .25s;
}
.faq-chev { margin-left: auto; color: var(--muted-2); transition: transform .3s; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p {
  padding: 0 20px 18px 64px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.is-open {
  border-color: rgba(168, 23, 78, .45);
  background: #fff5f8;
  box-shadow: 0 8px 22px rgba(168, 23, 78, .08);
}
.faq-item.is-open .faq-num { background: linear-gradient(135deg, var(--magenta-500), var(--magenta-900)); color: #fff; }
.faq-item.is-open .faq-chev { transform: rotate(180deg); color: var(--magenta-600); }

/* FAQ CTA */
.faq-cta {
  margin-top: 24px;
  background: linear-gradient(100deg, var(--cta-a), var(--cta-b));
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-cta h5 { color: #fff; font-weight: 700; font-size: 16px; margin: 0 0 3px; }
.faq-cta p { color: rgba(255, 255, 255, .6); font-size: 13px; margin: 0; }
.btn-cta-support {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 11px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .2s;
}
.btn-cta-support:hover { background: rgba(255, 255, 255, .22); color: #fff; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-sticky { position: sticky; top: 20px; }
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid #f1f0f6;
  margin-bottom: 18px;
}
.price-label { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; color: var(--muted-2); }
.price-row { display: flex; align-items: flex-start; justify-content: space-between; margin: 8px 0 22px; }
.price-amount { font-weight: 800; font-size: 40px; color: var(--ink); letter-spacing: -1px; line-height: 1; }
.price-amount span { font-size: 15px; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.price-rate { text-align: right; }
.price-rate .stars { display: block; color: var(--gold); font-size: 13px; }
.price-rate .rate-num { font-size: 13px; color: var(--ink-soft); }
.price-meta {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, #fbfcfe, #f7f8fc);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.pm-label { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: 1px; color: var(--muted-2); margin-bottom: 4px; }
.pm-value { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.btn-select-tickets {
  width: 100%;
  background: linear-gradient(100deg, var(--magenta-900), var(--magenta-600));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 13px;
  padding: 15px;
  box-shadow: 0 12px 26px rgba(168, 23, 78, .3);
  transition: transform .2s, box-shadow .2s;
}
.btn-select-tickets:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 32px rgba(168, 23, 78, .4); }
.btn-select-tickets { position: relative; overflow: hidden; animation: ctaGlow 3.2s ease-in-out infinite; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 12px 26px rgba(168, 23, 78, .28); }
  50% { box-shadow: 0 14px 34px rgba(209, 31, 102, .5); }
}

/* Shimmer sweep shared by primary buttons */
.btn-select-tickets::after,
.btn-buy-ticket::after {
  content: "";
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn-buy-ticket { position: relative; overflow: hidden; }
.btn-select-tickets:hover::after,
.btn-buy-ticket:hover::after { animation: shimmerSweep .9s ease; }
@keyframes shimmerSweep {
  from { left: -130%; }
  to { left: 130%; }
}

.promo-card {
  display: flex;
  gap: 13px;
  background: linear-gradient(135deg, #f4effd, #eef1fb);
  border: 1px solid #e6e2f6;
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.promo-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: #fff;
  color: var(--purple);
  border-radius: 10px;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(108, 75, 214, .15);
}
.promo-head { display: flex; align-items: center; justify-content: space-between; }
.promo-head strong { font-size: 14px; color: var(--ink); }
.promo-head .bi { color: var(--muted-2); font-size: 13px; }
.promo-body p { margin: 4px 0 0; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.promo-body p strong { color: var(--purple-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #fff; padding: 56px 0 34px; border-top: 1px solid var(--line); }
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.footer-logo .brand-text { font-size: 18px; }
.f-col h6 { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin: 0 0 14px; }
.f-contact { display: flex; align-items: center; gap: 12px; }
.wa-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
}
.chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8dce4;
  border-radius: 999px;
  padding: 9px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.chat-btn:hover { color: var(--ink); border-color: var(--ink); }
.f-label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.f-phone { display: block; font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.f-phone:hover { color: var(--magenta-600); }
.f-sub { display: block; font-size: 12.5px; color: var(--muted-2); margin-top: 4px; }
.pay-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pay {
  height: 34px;
  min-width: 52px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}
.pay.visa { color: #1a1f71; font-style: italic; letter-spacing: .5px; }
.pay.gpay { color: #5f6368; font-weight: 600; }
.pay.disc { color: #f06a23; font-size: 9px; letter-spacing: .3px; }
.pay.mc { gap: 0; }
.mc-c { width: 16px; height: 16px; border-radius: 50%; }
.mc-r { background: #eb001b; }
.mc-y { background: #f79e1b; margin-left: -6px; opacity: .9; }

.footer-divider { border-color: var(--line); margin: 30px 0 22px; opacity: 1; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.social { display: flex; align-items: center; gap: 16px; }
.social span { font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.social a { color: var(--ink); font-size: 18px; transition: color .2s, transform .2s; }
.social a:hover { color: var(--magenta-600); transform: translateY(-2px); }
.copyright { font-size: 13.5px; color: var(--muted); margin: 0; }
.copyright strong { color: var(--ink); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in-view { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .info-bar { grid-template-columns: repeat(2, 1fr); gap: 18px 0; margin-top: -40px; }
  .info-item:nth-child(2)::after { display: none; }
  .sidebar-sticky { position: static; margin-top: 8px; }
}
@media (max-width: 767.98px) {
  .info-bar { grid-template-columns: 1fr; }
  .info-item::after { display: none !important; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .card-block { padding: 24px 20px; }
  .block-title { font-size: 22px; }
  .faq-help { top: 22px; right: 20px; width: 40px; height: 40px; }
  .faq-a p { padding-left: 20px; }
  .faq-cta { flex-direction: column; align-items: flex-start; }
  .confidence-grid .col-6 { width: 100%; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 38px; }
}
