/* Plus Jakarta Sans + Inter — Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── VARIABLES ─── */
:root {
  --tp-purple:      #7b2cbf;
  --tp-purple-dark: #3d1484;
  --tp-purple-mid:  #5a189a;
  --tp-green:       #00a651;
  --tp-yellow:      #ffd000;
  --tp-navy:        #1a1f4f;
  --tp-white:       #ffffff;
  --tp-bg:          #ffffff;
  --tp-bg-raised:   #f5f3fb;
  --tp-text:        #1a1f4f;
  --tp-text-muted:  #555b7a;
  --tp-border:      #e0d8f0;
  --tp-radius:      12px;
  --tp-shadow:      0 4px 18px rgba(123,44,191,.12);
  --container:      1240px;
}

/* ─── TYPOGRAPHY ─── */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--tp-text);
  background: var(--tp-bg);
}
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  color: var(--tp-navy);
}
h1 { font-size: clamp(26px, 4vw, 46px); font-weight: 800; }
h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 700; }
h3 { font-size: clamp(16px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 15px; font-weight: 600; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }

/* ─── CONTAINER ─── */
.tp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) { .tp-container { padding-inline: 20px; } }
@media (min-width: 1024px) { .tp-container { padding-inline: 32px; } }

/* ─── BUTTONS ─── */
.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: filter .15s, transform .1s;
  white-space: nowrap;
  max-width: 100%;
}
.tp-btn:hover { filter: brightness(1.08); }
.tp-btn--login  { background: var(--tp-green); color: #fff; }
.tp-btn--join   { background: var(--tp-yellow); color: var(--tp-navy); }
.tp-btn--lg     { padding: 16px 36px; font-size: 15px; }
.tp-btn--outline {
  background: transparent;
  border: 2px solid var(--tp-yellow);
  color: var(--tp-yellow);
}

/* ─── HEADER ─── */
.tp-header {
  background: var(--tp-purple);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(61,20,132,.25);
}
.tp-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.tp-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
.tp-header__logo img {
  height: 38px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.tp-header__search {
  display: none;
  flex: 1;
  min-width: 0;
}
.tp-header__search-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.25);
}
.tp-header__search-inner svg { flex-shrink: 0; opacity: .7; }
.tp-header__search-inner input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
  min-width: 0;
}
.tp-header__search-inner input::placeholder { color: rgba(255,255,255,.6); }
.tp-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.tp-header__actions .tp-btn {
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: .02em;
}
.tp-header__burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  flex-shrink: 0;
  cursor: pointer;
}
.tp-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}
@media (min-width: 760px) {
  .tp-header__logo img { height: 44px; max-width: none; }
  .tp-header__inner { gap: 18px; padding: 14px 0; }
  .tp-header__search { display: flex; }
  .tp-header__actions { gap: 10px; }
  .tp-header__actions .tp-btn { padding: 10px 20px; font-size: 13.5px; letter-spacing: .04em; }
}
@media (max-width: 479px) { .tp-header__actions .tp-btn--login { display: none; } }

/* ─── SUBNAV ─── */
.tp-subnav {
  background: #fff;
  border-bottom: 1px solid var(--tp-border);
  position: sticky;
  top: 65px;
  z-index: 90;
}
.tp-subnav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tp-subnav__inner::-webkit-scrollbar { display: none; }
.tp-subnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tp-text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
  cursor: pointer;
  text-decoration: none;
}
.tp-subnav__item svg { width: 22px; height: 22px; }
.tp-subnav__item:hover,
.tp-subnav__item--active {
  color: var(--tp-purple);
  border-bottom-color: var(--tp-purple);
}

/* ─── HERO ─── */
.tp-hero {
  background: linear-gradient(135deg, var(--tp-purple-dark) 0%, var(--tp-purple) 60%, #9d4edd 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.tp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/img/screen 1.jpg') center/cover no-repeat;
  opacity: .08;
}
.tp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  min-width: 0;
}
.tp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,208,0,.18);
  border: 1px solid rgba(255,208,0,.4);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--tp-yellow);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.tp-hero h1 { color: #fff; margin-bottom: 16px; }
.tp-hero__lead {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 580px;
}
.tp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tp-hero__trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.tp-hero__trust svg { width: 18px; height: 18px; opacity: .8; }
@media (max-width: 639px) {
  .tp-hero { padding: 36px 0 44px; }
  .tp-hero__lead { font-size: 15px; }
  .tp-hero__ctas .tp-btn--lg { padding: 13px 18px; font-size: 13.5px; width: 100%; }
  .tp-hero__ctas { flex-direction: column; }
}

/* ─── BREADCRUMBS ─── */
.tp-breadcrumbs { padding: 14px 0; background: var(--tp-bg-raised); border-bottom: 1px solid var(--tp-border); }
.tp-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; }
.tp-breadcrumbs li { display: flex; align-items: center; font-size: 13px; color: var(--tp-text-muted); }
.tp-breadcrumbs li + li::before { content: '›'; margin-right: 4px; color: var(--tp-text-muted); }
.tp-breadcrumbs a { color: var(--tp-purple); }
.tp-breadcrumbs a:hover { text-decoration: underline; }
.tp-breadcrumbs [aria-current] { color: var(--tp-text); font-weight: 600; }

/* ─── SECTION BASE ─── */
.tp-section { padding: 48px 0; }
.tp-section--alt { background: var(--tp-bg-raised); }
.tp-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.tp-section__head h2 { color: var(--tp-navy); }
.tp-section__tag {
  background: var(--tp-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 999px;
}

/* ─── LEAD PARAGRAPH ─── */
.tp-lead {
  font-size: 17px;
  color: var(--tp-text-muted);
  max-width: 760px;
  margin: 24px 0 0;
}

/* ─── CONTENT SECTION ─── */
.tp-content { color: var(--tp-text); }
.tp-content h2 { margin-bottom: 16px; color: var(--tp-navy); }
.tp-content h3 { margin: 28px 0 10px; color: var(--tp-navy); }
.tp-content p { margin-bottom: 16px; color: var(--tp-text); }
.tp-content ul { margin: 0 0 18px 0; padding-left: 0; }
.tp-content ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--tp-text);
  border-bottom: 1px solid var(--tp-border);
}
.tp-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tp-purple);
  font-weight: 700;
}
.tp-content blockquote {
  border-left: 4px solid var(--tp-purple);
  background: var(--tp-bg-raised);
  padding: 18px 22px;
  border-radius: 0 var(--tp-radius) var(--tp-radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--tp-text);
}
.tp-content blockquote cite { display: block; font-style: normal; font-weight: 600; margin-top: 8px; color: var(--tp-purple); font-size: 14px; }
.tp-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tp-content th { background: var(--tp-purple); color: #fff; padding: 10px 14px; text-align: left; font-weight: 700; }
.tp-content td { padding: 10px 14px; border-bottom: 1px solid var(--tp-border); color: var(--tp-text); }
.tp-content tr:nth-child(even) td { background: var(--tp-bg-raised); }
.tp-table-wrap { overflow-x: auto; border-radius: var(--tp-radius); margin: 20px 0; box-shadow: var(--tp-shadow); }

/* ─── CONTENT IMAGES ─── */
article img, section.content img, main p img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  margin: 24px auto;
  border-radius: var(--tp-radius);
}
.tp-hero img, .banner img, img.banner {
  max-width: 100%;
  max-height: 560px;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.tp-author img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
@media (max-width: 768px) {
  article img, section.content img, main p img { max-height: 320px; }
}

/* ─── OFFERS LISTING (CASINO) ─── */
.tp-offers { padding: 48px 0; }
.tp-offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.tp-offers__card {
  position: relative;
  background: #fff;
  border: 2px solid var(--tp-border);
  border-radius: var(--tp-radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.tp-offers__card:hover {
  box-shadow: var(--tp-shadow);
  border-color: var(--tp-purple);
}
.tp-offers__card--top {
  border-color: var(--tp-yellow);
  box-shadow: 0 0 0 2px var(--tp-yellow), var(--tp-shadow);
  transform: scale(1.02);
  z-index: 2;
}
.tp-offers__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  font-size: 0;
  color: transparent;
  border-radius: var(--tp-radius);
}
/* All children above overlay EXCEPT overlay-link itself */
.tp-offers__card > *:not(.tp-offers__overlay-link) { position: relative; z-index: 2; }
.tp-offers__review-link { position: relative; z-index: 3 !important; }
/* Disable clicks on everything except the two link types */
.tp-offers__card * { pointer-events: none; }
.tp-offers__overlay-link,
.tp-offers__review-link { pointer-events: auto !important; cursor: pointer; }

.tp-offers__ribbon {
  position: absolute;
  top: 14px;
  right: -2px;
  background: var(--tp-yellow);
  color: var(--tp-navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 12px 4px 10px;
  border-radius: 4px 0 0 4px;
  z-index: 5;
}
.tp-offers__ribbon::after {
  content: '';
  position: absolute;
  right: -2px;
  bottom: -6px;
  border-left: 8px solid #c9a000;
  border-bottom: 6px solid transparent;
}
.tp-offers__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
.tp-offers__logo img {
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.tp-offers__name {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--tp-navy);
}
.tp-offers__tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.tp-offers__tag {
  background: var(--tp-bg-raised);
  color: var(--tp-purple);
  border: 1px solid var(--tp-border);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.tp-offers__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: var(--tp-text);
}
.tp-offers__stars { color: #f59e0b; font-size: 16px; }
.tp-offers__bonus {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--tp-purple);
  background: var(--tp-bg-raised);
  border-radius: 8px;
  padding: 10px 12px;
}
.tp-offers__bonus-sub { font-size: 12px; font-weight: 500; color: var(--tp-text-muted); margin-top: 2px; }
.tp-offers__usps { display: flex; flex-direction: column; gap: 6px; }
.tp-offers__usp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tp-text);
}
.tp-offers__usp::before { content: '✓'; color: var(--tp-green); font-weight: 700; flex-shrink: 0; }
.tp-offers__social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--tp-text-muted);
  justify-content: center;
}
.tp-offers__timer {
  text-align: center;
  font-size: 12px;
  color: var(--tp-text-muted);
}
.tp-offers__timer-display {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--tp-purple);
  letter-spacing: .08em;
}
.tp-offers__cta-row { display: flex; flex-direction: column; gap: 8px; }
.tp-offers__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--tp-yellow);
  color: var(--tp-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 13px;
  border-radius: 999px;
  transition: filter .15s;
}
.tp-offers__cta--green { background: var(--tp-green); color: #fff; }
.tp-offers__review-link {
  text-align: center;
  font-size: 12px;
  color: var(--tp-purple);
  text-decoration: underline;
}
.tp-offers__urgency {
  text-align: center;
  font-size: 11px;
  color: var(--tp-text-muted);
}
.tp-offers__aggregate {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--tp-text-muted);
}
@media (max-width: 759px) {
  .tp-offers__grid { grid-template-columns: 1fr; }
  .tp-offers__card--top { transform: none; order: -1; }
}

/* ─── SLOTS LISTING ─── */
.tp-slots { padding: 48px 0; }
.tp-slots__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.tp-slots__grid > div {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--tp-radius);
  overflow: hidden;
  border: 1px solid var(--tp-border);
  transition: box-shadow .2s, border-color .2s;
}
.tp-slots__grid > div:hover {
  box-shadow: var(--tp-shadow);
  border-color: var(--tp-purple);
}
.tp-slots__tile {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  aspect-ratio: auto;
  border-radius: 0;
}
.tp-slots__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tp-slots__top-row,
.tp-slots__meta-row,
.tp-slots__overlay,
.tp-slots__play-icon { pointer-events: none; }
.tp-slots__top-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px;
  z-index: 2;
}
.tp-slots__hot {
  background: var(--tp-yellow);
  color: var(--tp-navy);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
}
.tp-slots__meta-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,31,79,.9));
  padding: 24px 8px 8px;
  z-index: 2;
}
.tp-slots__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tp-slots__badges {
  display: flex;
  gap: 4px;
  margin-top: 3px;
  flex-wrap: wrap;
}
.tp-slots__badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: 9px;
  font-weight: 600;
  padding: 1px 5px;
  border-radius: 4px;
}
.tp-slots__overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,20,132,.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity .2s;
  z-index: 3;
  padding: 12px;
}
.tp-slots__grid > div:hover .tp-slots__overlay { opacity: 1; }
.tp-slots__overlay-play {
  width: 44px;
  height: 44px;
  background: var(--tp-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--tp-navy);
}
.tp-slots__overlay-name {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.tp-slots__overlay-info {
  color: rgba(255,255,255,.8);
  font-size: 10px;
  text-align: center;
}
.tp-slots__more {
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 900px) { .tp-slots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .tp-slots__grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── AUTHOR BLOCK ─── */
.tp-author {
  background: var(--tp-bg-raised);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.tp-author__photo { flex-shrink: 0; }
.tp-author__photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--tp-purple);
}
.tp-author__info { min-width: 0; }
.tp-author__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-navy);
}
.tp-author__role { font-size: 13px; color: var(--tp-text-muted); margin-bottom: 10px; }
.tp-author__bio { font-size: 14px; color: var(--tp-text); margin-bottom: 12px; }
.tp-author__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #0077b5;
  text-decoration: none;
}
.tp-author__linkedin:hover { text-decoration: underline; }
.tp-author__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--tp-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 8px;
}
@media (max-width: 480px) { .tp-author { flex-direction: column; } }

/* ─── FAQ ─── */
.tp-faq__list { display: flex; flex-direction: column; gap: 10px; }
.tp-faq__item {
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  overflow: hidden;
  background: #fff;
}
.tp-faq__item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--tp-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
}
.tp-faq__item summary::-webkit-details-marker { display: none; }
.tp-faq__item summary::after { content: '+'; font-size: 20px; color: var(--tp-purple); flex-shrink: 0; transition: transform .2s; }
.tp-faq__item[open] summary::after { transform: rotate(45deg); }
.tp-faq__answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--tp-text);
  line-height: 1.65;
}

/* ─── RELATED LINKS ─── */
.tp-related {
  background: var(--tp-bg-raised);
  border-top: 1px solid var(--tp-border);
  padding: 28px 0;
}
.tp-related h3 { margin-bottom: 14px; color: var(--tp-navy); font-size: 16px; }
.tp-related__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tp-related__link {
  background: #fff;
  border: 1px solid var(--tp-border);
  color: var(--tp-purple);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.tp-related__link:hover { background: var(--tp-purple); color: #fff; border-color: var(--tp-purple); }

/* ─── FOOTER ─── */
.tp-footer {
  background: var(--tp-navy);
  color: rgba(255,255,255,.75);
  padding: 48px 0 24px;
}
.tp-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tp-footer__brand { grid-column: 1 / -1; }
.tp-footer__brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  max-width: 180px;
}
.tp-footer__brand p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.65); max-width: 360px; }
.tp-footer__socials { display: flex; gap: 10px; margin-top: 14px; }
.tp-footer__social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}
.tp-footer__social-link:hover { background: var(--tp-purple); }
.tp-footer__social-link svg { width: 16px; height: 16px; }
.tp-footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.tp-footer__col ul { display: flex; flex-direction: column; gap: 6px; }
.tp-footer__col a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.tp-footer__col a:hover { color: var(--tp-yellow); }
.tp-footer__mid {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tp-footer__pay-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.tp-footer__pay-grid { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.tp-footer__pay-grid img { height: 26px; width: auto; object-fit: contain; opacity: .85; filter: brightness(1.1); }
.tp-footer__trust {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tp-footer__trust-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.tp-footer__trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tp-footer__badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tp-footer__bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.tp-footer__copy { font-size: 12px; color: rgba(255,255,255,.45); }
.tp-footer__legal { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.tp-footer__legal a { font-size: 12px; color: rgba(255,255,255,.45); }
.tp-footer__legal a:hover { color: var(--tp-yellow); }
.tp-footer__rg {
  padding: 16px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin-top: 16px;
}
.tp-footer__rg strong { color: rgba(255,255,255,.8); }
@media (min-width: 600px) { .tp-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) {
  .tp-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 24px; }
  .tp-footer__brand { grid-column: auto; }
}
@media (max-width: 599px) {
  .tp-footer { padding: 28px 0 16px; font-size: 12px; }
  .tp-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .tp-footer__col ul li { margin-bottom: 4px; }
  .tp-footer__col a { font-size: 12px; }
  .tp-footer__brand img { max-height: 50px; margin-bottom: 10px; }
  .tp-footer__brand p { font-size: 12px; margin-bottom: 10px; }
  .tp-footer__pay-grid { gap: 8px 10px; }
  .tp-footer__pay-grid img { height: 22px; }
}
@media (max-width: 1023px) { .tp-footer { padding-bottom: 84px; } }

/* ─── MOBILE MENU OVERLAY ─── */
.tp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--tp-purple-dark);
  z-index: 200;
  flex-direction: column;
  overflow-y: auto;
}
.tp-menu-overlay.is-open { display: flex; }
.tp-menu-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tp-menu-overlay__head img { height: 36px; width: auto; }
.tp-menu-overlay__close {
  background: rgba(255,255,255,.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
}
.tp-menu-overlay__nav { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.tp-menu-overlay__nav a {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: block;
}
.tp-menu-overlay__nav a:hover { color: var(--tp-yellow); }
.tp-menu-overlay__ctas { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 10px; }

/* ─── FAB (mobile CTA) ─── */
.tp-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--tp-yellow);
  color: var(--tp-navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .06px;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(255,208,0,.4), 0 2px 8px rgba(0,0,0,.5);
  transition: background .15s, transform .15s;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
.tp-fab::after { content: '▶'; font-size: 11px; }
.tp-fab:hover { transform: translate(-50%, -2px); }
.tp-fab:active { transform: translate(-50%, 0); }
@media (max-width: 979px) { .tp-fab { display: inline-flex; } }
@media (max-width: 480px) { .tp-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }

/* ─── SITEMAP PAGE ─── */
.tp-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.tp-sitemap-card {
  background: var(--tp-bg-raised);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  padding: 16px;
  transition: border-color .15s;
}
.tp-sitemap-card:hover { border-color: var(--tp-purple); }
.tp-sitemap-card a {
  font-weight: 600;
  color: var(--tp-purple);
  font-size: 14px;
  text-decoration: none;
}
.tp-sitemap-card a:hover { text-decoration: underline; }
.tp-sitemap-card p { font-size: 12px; color: var(--tp-text-muted); margin-top: 4px; }
.tp-sitemap__group-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-navy);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--tp-purple);
}
