/* ThePluginForge Main CSS v2.0 */

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:15px;scroll-behavior:smooth}
body{font-family:'Plus Jakarta Sans',system-ui,sans-serif;background:#fff;color:#18160F;line-height:1.65;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
button{cursor:pointer;font-family:inherit}
input,select,textarea{font-family:inherit}

/* ── WRAPPER ── */
#tpf-wrapper{width:100%;max-width:100%;margin:0;padding:0}


/* ==============================================
   THEPLUGINFORGE — Master Stylesheet
   Add this to: Appearance → Customize → Additional CSS
   OR: WPCode → Header & Footer → CSS
   Version: 2.0
   ============================================== */

/* ── VARIABLES ─────────────────────────────── */
:root {
  --tpf-brand:       #E8572A;
  --tpf-brand-dk:    #C4451C;
  --tpf-brand-lt:    rgba(232,87,42,0.07);
  --tpf-brand-br:    rgba(232,87,42,0.18);
  --tpf-ink:         #18160F;
  --tpf-ink-2:       #4A4640;
  --tpf-ink-3:       #8C8880;
  --tpf-surface:     #FFFFFF;
  --tpf-surface-2:   #F9F8F6;
  --tpf-surface-3:   #F2F0EC;
  --tpf-line:        #E8E4DD;
  --tpf-green:       #1C7C45;
  --tpf-green-lt:    rgba(28,124,69,0.08);
  --tpf-green-br:    rgba(28,124,69,0.18);
  --tpf-red:         #C0392B;
  --tpf-red-lt:      rgba(192,57,43,0.07);
  --tpf-red-br:      rgba(192,57,43,0.15);
  --tpf-r:           12px;
  --tpf-r-lg:        20px;
  --tpf-r-xl:        28px;
  --tpf-max:         1120px;
  --tpf-ff-head:     'Fraunces', Georgia, serif;
  --tpf-ff-body:     'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ── GLOBAL RESET (scoped to tpf blocks) ────── */
.tpf-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.tpf-page {
  font-family: var(--tpf-ff-body);
  color: var(--tpf-ink);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── BREADCRUMB ─────────────────────────────── */
.tpf-crumb {
  padding: 12px 40px;
  font-size: 13px;
  color: var(--tpf-ink-3);
  background: var(--tpf-surface-2);
  border-bottom: 1px solid var(--tpf-line);
  display: flex;
  gap: 8px;
  align-items: center;
}
.tpf-crumb a {
  color: var(--tpf-ink-3);
  text-decoration: none;
  transition: color .2s;
}
.tpf-crumb a:hover { color: var(--tpf-brand); }

/* ── EYEBROW LABEL ──────────────────────────── */
.tpf-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tpf-brand);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tpf-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--tpf-brand);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ── HEADINGS ───────────────────────────────── */
.tpf-h1 {
  font-family: var(--tpf-ff-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.6px;
  color: var(--tpf-ink);
  margin-bottom: 20px;
}
.tpf-h1 i, .tpf-h2 i, .tpf-h3 i, .tpf-feature-title i {
  color: var(--tpf-brand);
  font-style: italic;
}
.tpf-h2 {
  font-family: var(--tpf-ff-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--tpf-ink);
  margin-bottom: 14px;
}
.tpf-h3 {
  font-family: var(--tpf-ff-head);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.3px;
  color: var(--tpf-ink);
  margin-bottom: 14px;
}
.tpf-lead {
  font-size: 17px;
  color: var(--tpf-ink-2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}

/* ── BUTTONS ────────────────────────────────── */
.tpf-btn-brand {
  background: var(--tpf-brand);
  color: #fff !important;
  font-family: var(--tpf-ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 11px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  letter-spacing: .1px;
  border: none;
  cursor: pointer;
}
.tpf-btn-brand:hover {
  background: var(--tpf-brand-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,87,42,0.25);
  color: #fff !important;
}
.tpf-btn-line {
  background: transparent;
  color: var(--tpf-ink) !important;
  font-family: var(--tpf-ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 11px;
  text-decoration: none;
  border: 1.5px solid var(--tpf-line);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.tpf-btn-line:hover { border-color: var(--tpf-ink-3); }
.tpf-btn-white {
  background: #fff;
  color: var(--tpf-brand) !important;
  font-family: var(--tpf-ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 11px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
}
.tpf-btn-white:hover { background: rgba(255,255,255,0.92); }
.tpf-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7) !important;
  font-family: var(--tpf-ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 11px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
  transition: all .2s;
}
.tpf-btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: #fff !important;
}

/* ── PILLS ──────────────────────────────────── */
.tpf-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tpf-pill-green  { background: var(--tpf-green-lt); color: var(--tpf-green); border-color: var(--tpf-green-br); }
.tpf-pill-gray   { background: var(--tpf-surface-3); color: var(--tpf-ink-2); border-color: var(--tpf-line); }
.tpf-pill-brand  { background: var(--tpf-brand-lt); color: var(--tpf-brand); border-color: var(--tpf-brand-br); }
.tpf-pill-red    { background: var(--tpf-red-lt); color: var(--tpf-red); border-color: var(--tpf-red-br); }

/* ── SECTIONS ───────────────────────────────── */
.tpf-section {
  padding: 88px 48px;
  max-width: var(--tpf-max);
  margin: 0 auto;
}
.tpf-section-stripe {
  background: var(--tpf-surface-2);
  border-top: 1px solid var(--tpf-line);
  border-bottom: 1px solid var(--tpf-line);
}
.tpf-section-stripe .tpf-section { padding: 88px 48px; }
.tpf-sep {
  height: 1px;
  background: var(--tpf-line);
  margin: 20px 0;
}

/* ── HERO (shared) ──────────────────────────── */
.tpf-hero {
  padding: 80px 48px 0;
  max-width: var(--tpf-max);
  margin: 0 auto;
}
.tpf-hero-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.tpf-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--tpf-brand);
  margin-bottom: 20px;
}
.tpf-hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--tpf-brand);
  border-radius: 1px;
}
.tpf-hero-eyebrow.red { color: var(--tpf-red); }
.tpf-hero-eyebrow.red::before { background: var(--tpf-red); }
.tpf-hero-sub {
  font-size: 17px;
  color: var(--tpf-ink-2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 20px;
}
.tpf-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 28px;
}
.tpf-hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tpf-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── SIDEBAR ────────────────────────────────── */
.tpf-sidebar {
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  padding: 28px;
  position: sticky;
  top: 80px;
}
/* ── EASYPOST HERO — wider 2-column sidebar ── */
.tpf-hero-inner--ep {
  grid-template-columns: 1fr 640px;
}

/* Images side by side at top of sidebar */
.tpf-sidebar-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  align-items: start;
}
.tpf-sidebar-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid var(--tpf-line);
}
.tpf-label-placeholder {
  border: 2px dashed var(--tpf-line);
  border-radius: 8px;
  padding: 24px 12px;
  text-align: center;
  background: var(--tpf-surface);
}
.tpf-label-placeholder-icon { font-size: 26px; margin-bottom: 6px; }
.tpf-label-placeholder-text { font-size: 12px; font-weight: 600; color: var(--tpf-ink-2); }
.tpf-label-placeholder-hint { font-size: 10px; color: var(--tpf-ink-3); margin-top: 3px; }

/* CTA row: price/note left, buttons right */
.tpf-sidebar-cta-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 4px;
}
.tpf-sidebar-cta-info { flex: 1; }
.tpf-sidebar-cta-btns { flex: 1; padding-top: 26px; }

/* Meta: 2-column grid */
.tpf-meta--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.tpf-meta--grid .tpf-meta-row { border-bottom: 1px solid var(--tpf-surface-3); }

/* Checklist: 3-column grid */
.tpf-checklist--grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 16px;
  margin-top: 0;
}
.tpf-sidebar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tpf-ink-3);
  margin-bottom: 16px;
}
.tpf-price {
  font-family: var(--tpf-ff-head);
  font-size: 40px;
  font-weight: 600;
  color: var(--tpf-green);
  line-height: 1;
  margin-bottom: 4px;
}
.tpf-price-note {
  font-size: 12px;
  color: var(--tpf-ink-3);
  margin-bottom: 24px;
}
.tpf-dl-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--tpf-brand);
  color: #fff !important;
  font-family: var(--tpf-ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all .2s;
}
.tpf-dl-btn:hover { background: var(--tpf-brand-dk); }
.tpf-coming-soon-badge {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--tpf-surface-2);
  color: var(--tpf-ink-2);
  font-family: var(--tpf-ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 13px;
  border-radius: 10px;
  border: 1.5px dashed var(--tpf-line);
  margin-bottom: 10px;
  cursor: default;
  text-transform: uppercase;
}
.tpf-dl-sec {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--tpf-ink) !important;
  font-family: var(--tpf-ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--tpf-line);
  transition: all .2s;
}
.tpf-dl-sec:hover { border-color: var(--tpf-ink-3); }
.tpf-meta { font-size: 12px; }
.tpf-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--tpf-surface-3);
  color: var(--tpf-ink-3);
}
.tpf-meta-row:last-child { border-bottom: none; }
.tpf-meta-row span:last-child { color: var(--tpf-ink); font-weight: 600; }
.tpf-checklist { list-style: none; margin-top: 20px; }
.tpf-checklist li {
  font-size: 13px;
  color: var(--tpf-ink-2);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.tpf-checklist li::before {
  content: '✓';
  color: var(--tpf-green);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── HERO SCREENSHOT ────────────────────────── */
.tpf-hero-screenshot {
  margin-top: 60px;
  border-bottom: 1px solid var(--tpf-line);
}
.tpf-hero-img-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.06);
}
.tpf-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.tpf-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--tpf-surface-3) 0%, #E5E1D8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}
.tpf-img-placeholder .tpf-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--tpf-surface-2);
  border: 1.5px dashed var(--tpf-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.tpf-img-placeholder p { font-size: 13px; color: var(--tpf-ink-3); font-weight: 500; }
.tpf-img-placeholder span { font-size: 11px; color: var(--tpf-ink-3); opacity: .7; }

/* ── FEATURE ALTERNATING BLOCKS ─────────────── */
.tpf-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 80px 0px;
  max-width: var(--tpf-max);
  margin: 0 auto;
  border-bottom: 1px solid var(--tpf-line);
}
.tpf-feature-block:last-of-type { border-bottom: none; }
.tpf-feature-block.tpf-reverse { direction: rtl; }
.tpf-feature-block.tpf-reverse > * { direction: ltr; }

/* ── WIDE FEATURE BLOCK (full-width GIF on top) ── */
.tpf-feature-block--wide {
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
}
.tpf-gif-frame--full {
  width: 100%;
  border-radius: var(--tpf-r-lg);
}
.tpf-gif-frame--full .tpf-gif-inner {
  aspect-ratio: 16 / 6;
  min-height: 280px;
}
.tpf-gif-frame--full img {
  width: 100%;
  height: auto;
  display: block;
}
.tpf-feature-text--wide {
  max-width: 100%;
}
.tpf-feature-text--wide .tpf-feature-desc {
  max-width: 720px;
}
.tpf-feature-list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 32px;
  margin-top: 20px;
}
.tpf-feature-title {
  font-family: var(--tpf-ff-head);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.3px;
  color: var(--tpf-ink);
  margin-bottom: 16px;
}
.tpf-feature-desc {
  font-size: 15px;
  color: var(--tpf-ink-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}
.tpf-feature-list { list-style: none; }
.tpf-feature-list li {
  font-size: 14px;
  color: var(--tpf-ink-2);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.tpf-feature-list li::before {
  content: '→';
  color: var(--tpf-brand);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SCREEN FRAME (browser mockup) ──────────── */
.tpf-screen-frame {
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tpf-screen-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 32px 80px rgba(0,0,0,0.16);
}
.tpf-screen-bar {
  background: var(--tpf-surface-3);
  padding: 10px 16px;
  border-bottom: 1px solid var(--tpf-line);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tpf-screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.tpf-screen-dot:nth-child(1) { background: #FC6058; }
.tpf-screen-dot:nth-child(2) { background: #FEC02F; }
.tpf-screen-dot:nth-child(3) { background: #2DC840; }
.tpf-screen-content {
  aspect-ratio: auto;
  background: linear-gradient(145deg, #F5F3EF 0%, #EDE9E2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tpf-screen-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
  cursor: zoom-in;
}
.tpf-screen-content:hover img {
  transform: scale(1.08);
}
.tpf-screen-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(0,0,0,0.015) 10px,rgba(0,0,0,0.015) 11px);
}
.tpf-upload-prompt { text-align: center; position: relative; z-index: 1; }
.tpf-upload-prompt .tpf-icon { font-size: 28px; margin-bottom: 8px; }
.tpf-upload-prompt .tpf-lbl { font-size: 13px; font-weight: 600; color: var(--tpf-ink-3); }
.tpf-upload-prompt .tpf-hint { font-size: 11px; color: var(--tpf-ink-3); opacity: .6; margin-top: 3px; }

/* ── GIF / VIDEO FRAME ───────────────────────── */
.tpf-gif-frame {
  background: var(--tpf-ink);
  border-radius: var(--tpf-r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tpf-gif-frame:hover {
  transform: scale(1.03);
  box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}
.tpf-gif-frame img {
  transition: transform .4s ease;
  cursor: zoom-in;
}
.tpf-gif-frame:hover img {
  transform: scale(1.08);
}
.tpf-gif-inner {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: #1A1916;
}
.tpf-gif-inner img,
.tpf-gif-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tpf-gif-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 1;
}
.tpf-gif-inner .tpf-icon { font-size: 32px; }
.tpf-gif-inner .tpf-lbl { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); }
.tpf-gif-inner .tpf-hint { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ── ICON GRID ──────────────────────────────── */
.tpf-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tpf-line);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  overflow: hidden;
  margin-top: 48px;
}
.tpf-icon-cell {
  background: var(--tpf-surface);
  padding: 28px 24px;
  transition: background .2s;
}
.tpf-icon-cell:hover { background: var(--tpf-surface-2); }
.tpf-icon-emoji { font-size: 24px; margin-bottom: 14px; }
.tpf-icon-cell h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.tpf-icon-cell p { font-size: 13px; color: var(--tpf-ink-3); line-height: 1.6; }

/* ── PROBLEM / SOLUTION BANNER ───────────────── */
.tpf-ps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  overflow: hidden;
  margin-top: 48px;
}
.tpf-ps-side { padding: 36px; }
.tpf-ps-side.problem {
  background: var(--tpf-red-lt);
  border-right: 1px solid var(--tpf-red-br);
}
.tpf-ps-side.solution { background: var(--tpf-green-lt); }
.tpf-ps-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.problem .tpf-ps-tag { color: var(--tpf-red); }
.solution .tpf-ps-tag { color: var(--tpf-green); }
.tpf-ps-side h3 {
  font-family: var(--tpf-ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.tpf-ps-side p {
  font-size: 14px;
  color: var(--tpf-ink-2);
  line-height: 1.75;
  font-weight: 300;
}

/* ── PACKING CARDS ───────────────────────────── */
.tpf-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tpf-pack-card {
  border: 1.5px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  padding: 28px;
  transition: all .25s;
}
.tpf-pack-card:hover {
  border-color: var(--tpf-brand-br);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.tpf-pack-card.highlight {
  border-color: var(--tpf-brand);
  background: var(--tpf-brand-lt);
}
.tpf-pack-tag {
  display: inline-block;
  background: var(--tpf-brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tpf-pack-card h4 {
  font-family: var(--tpf-ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 10px;
}
.tpf-pack-card p {
  font-size: 14px;
  color: var(--tpf-ink-2);
  line-height: 1.7;
  font-weight: 300;
}

/* ── WHO IT'S FOR ────────────────────────────── */
.tpf-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tpf-who-card {
  border: 1.5px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  padding: 28px;
  transition: all .22s;
}
.tpf-who-card:hover {
  border-color: var(--tpf-brand-br);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.tpf-who-flag { font-size: 32px; margin-bottom: 14px; }
.tpf-who-card h4 {
  font-family: var(--tpf-ff-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 8px;
}
.tpf-who-card p {
  font-size: 14px;
  color: var(--tpf-ink-2);
  line-height: 1.7;
  font-weight: 300;
}

/* ── USE CASES GRID ──────────────────────────── */
.tpf-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.tpf-use-card {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r);
  align-items: flex-start;
  transition: all .2s;
}
.tpf-use-card:hover {
  border-color: var(--tpf-brand-br);
  background: var(--tpf-surface);
}
.tpf-use-icon { font-size: 20px; flex-shrink: 0; }
.tpf-use-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 4px;
}
.tpf-use-card p {
  font-size: 13px;
  color: var(--tpf-ink-2);
  line-height: 1.6;
  font-weight: 300;
}

/* ── DATA TABLE ──────────────────────────────── */
.tpf-table-wrap {
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  overflow: hidden;
  margin-top: 40px;
}
.tpf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tpf-table thead th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--tpf-ink-3);
  background: var(--tpf-surface-2);
  border-bottom: 1px solid var(--tpf-line);
}
.tpf-table tbody td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--tpf-surface-3);
  vertical-align: top;
}
.tpf-table tbody td:first-child {
  color: var(--tpf-ink-3);
  font-size: 13px;
  font-weight: 500;
  width: 220px;
}
.tpf-table tbody td:last-child { color: var(--tpf-ink); font-weight: 500; }
.tpf-table tbody tr:last-child td { border-bottom: none; }
.tpf-table tbody tr:hover td { background: var(--tpf-surface-2); }
.tpf-table code {
  background: var(--tpf-surface-3);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
  color: var(--tpf-brand);
}

/* ── PRIVACY CARDS ───────────────────────────── */
.tpf-privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.tpf-priv-card {
  background: var(--tpf-surface);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  padding: 24px;
}
.tpf-priv-icon { font-size: 24px; margin-bottom: 12px; }
.tpf-priv-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 6px;
}
.tpf-priv-card p {
  font-size: 13px;
  color: var(--tpf-ink-3);
  line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────── */
.tpf-faq {
  margin-top: 48px;
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  overflow: hidden;
}
.tpf-faq-item { border-bottom: 1px solid var(--tpf-line); }
.tpf-faq-item:last-child { border-bottom: none; }
.tpf-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--tpf-ff-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--tpf-ink);
  transition: color .2s;
  gap: 16px;
}
.tpf-faq-q:hover { color: var(--tpf-brand); }
.tpf-faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--tpf-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--tpf-ink-3);
  flex-shrink: 0;
  transition: all .2s;
}
.tpf-faq-q.open .tpf-faq-arrow {
  background: var(--tpf-brand);
  border-color: var(--tpf-brand);
  color: #fff;
  transform: rotate(180deg);
}
.tpf-faq-a {
  font-size: 14px;
  color: var(--tpf-ink-2);
  line-height: 1.8;
  font-weight: 300;
  padding: 0 28px 22px;
  display: none;
}
.tpf-faq-a.open { display: block; }

/* ── SETTINGS TABS ───────────────────────────── */
.tpf-tab-list {
  display: flex;
  border-bottom: 2px solid var(--tpf-line);
  margin-bottom: 32px;
  gap: 0;
}
.tpf-tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tpf-ink-3);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .15s;
  font-family: var(--tpf-ff-body);
}
.tpf-tab-btn.active { color: var(--tpf-brand); border-bottom-color: var(--tpf-brand); }
.tpf-tab-btn:hover:not(.active) { color: var(--tpf-ink); }
.tpf-tab-pane { display: none; }
.tpf-tab-pane.active { display: block; }

/* ── CHANGELOG ───────────────────────────────── */
.tpf-changelog { margin-top: 48px; }
.tpf-cl-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--tpf-line);
}
.tpf-cl-item:last-child { border-bottom: none; }
.tpf-cl-version {
  font-family: var(--tpf-ff-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--tpf-ink);
}
.tpf-cl-date {
  font-size: 12px;
  color: var(--tpf-ink-3);
  margin-top: 4px;
  font-weight: 500;
}
.tpf-cl-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  margin-top: 8px;
}
.tpf-cl-tag.major { background: var(--tpf-brand-lt); color: var(--tpf-brand); border: 1px solid var(--tpf-brand-br); }
.tpf-cl-tag.patch { background: var(--tpf-surface-3); color: var(--tpf-ink-3); border: 1px solid var(--tpf-line); }
.tpf-cl-body ul { list-style: none; }
.tpf-cl-body li {
  font-size: 14px;
  color: var(--tpf-ink-2);
  padding: 5px 0;
  display: flex;
  gap: 12px;
  font-weight: 300;
  line-height: 1.5;
}
.tpf-cl-body li::before { content: '—'; color: var(--tpf-brand); flex-shrink: 0; }

/* ── CTA STRIP ───────────────────────────────── */
.tpf-cta {
  background: var(--tpf-ink);
  border-radius: 24px;
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 48px 88px;
  max-width: calc(var(--tpf-max) - 96px);
  margin-left: auto;
  margin-right: auto;
}
.tpf-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(232,87,42,0.07);
  pointer-events: none;
}
.tpf-cta-text h2 {
  font-family: var(--tpf-ff-head);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.tpf-cta-text h2 i { color: var(--tpf-brand); font-style: italic; }
.tpf-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 380px;
  font-weight: 300;
  line-height: 1.7;
}
.tpf-cta-actions { display: flex; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }

/* ── BUTTON STYLES DEMO (Buy Now page) ────────── */
.tpf-btn-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.tpf-btn-demo {
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all .22s;
}
.tpf-btn-demo:hover {
  border-color: var(--tpf-brand-br);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.tpf-btn-sample { display: flex; justify-content: center; margin-bottom: 20px; }
.tpf-demo-solid {
  background: #218838; color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  font-family: var(--tpf-ff-body);
}
.tpf-demo-outline {
  background: transparent; color: #218838;
  border: 2px solid #218838;
  font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  font-family: var(--tpf-ff-body);
}
.tpf-demo-gradient {
  background: linear-gradient(135deg, #1a8a45, #56ab2f);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  font-family: var(--tpf-ff-body);
}
.tpf-demo-3d {
  background: #218838; color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 20px; border-radius: 8px;
  box-shadow: 0 5px 0 #155724;
  font-family: var(--tpf-ff-body);
}
.tpf-btn-demo h4 { font-size: 15px; font-weight: 600; color: var(--tpf-ink); margin-bottom: 6px; }
.tpf-btn-demo p { font-size: 13px; color: var(--tpf-ink-3); line-height: 1.5; }

/* ── ANALYTICS METRICS ───────────────────────── */
.tpf-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.tpf-metric {
  padding: 24px;
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
}
.tpf-metric-val {
  font-family: var(--tpf-ff-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 4px;
}
.tpf-metric-lbl { font-size: 13px; color: var(--tpf-ink-3); }

/* ── SHORTCODE BLOCK ─────────────────────────── */
.tpf-code-block {
  background: var(--tpf-ink);
  border-radius: var(--tpf-r-lg);
  padding: 28px 32px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tpf-code {
  font-family: monospace;
  font-size: 16px;
  color: var(--tpf-brand);
  letter-spacing: .5px;
}
.tpf-code-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  line-height: 1.6;
}

/* ── HOMEPAGE SPECIFICS ──────────────────────── */
.tpf-plugin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.tpf-plugin-card {
  background: var(--tpf-surface);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.tpf-plugin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tpf-brand);
  opacity: 0;
  transition: opacity .25s;
}
.tpf-plugin-card:hover {
  border-color: var(--tpf-brand-br);
  box-shadow: 0 16px 56px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.tpf-plugin-card:hover::before { opacity: 1; }
.tpf-pc-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--tpf-line);
  position: relative;
}
.tpf-pc-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tpf-pc-logo .tpf-pc-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  margin: 0;
}
/* Plugin page — logo banner above hero */
.tpf-plugin-logo-banner {
  max-width: 360px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--tpf-line);
  background: #f8fafc;
}
.tpf-plugin-logo-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.tpf-pc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.tpf-pc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--tpf-brand-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.tpf-pc-pill {
  font-size: 10px; font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--tpf-green-lt);
  color: var(--tpf-green);
  border: 1px solid var(--tpf-green-br);
}
.tpf-plugin-card h3 {
  font-family: var(--tpf-ff-head);
  font-size: 20px; font-weight: 600;
  line-height: 1.2; color: var(--tpf-ink);
  margin-bottom: 10px;
}
.tpf-plugin-card p {
  font-size: 14px; color: var(--tpf-ink-2);
  line-height: 1.75; font-weight: 300;
  flex: 1; margin-bottom: 24px;
}
.tpf-pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.tpf-pc-tag {
  font-size: 11px; color: var(--tpf-ink-3);
  background: var(--tpf-surface-3);
  border: 1px solid var(--tpf-line);
  padding: 4px 10px; border-radius: 6px; font-weight: 500;
}
.tpf-pc-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--tpf-line);
  margin-top: auto;
}
.tpf-pc-price {
  font-family: var(--tpf-ff-head);
  font-size: 17px; font-weight: 600;
  color: var(--tpf-green);
}
.tpf-pc-link {
  font-size: 13px; color: var(--tpf-brand);
  font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.tpf-plugin-card:hover .tpf-pc-link { gap: 8px; }

/* ── WHY GRID (homepage) ─────────────────────── */
.tpf-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-xl);
  overflow: hidden;
  margin-top: 52px;
}
.tpf-why-cell {
  padding: 40px;
  border-right: 1px solid var(--tpf-line);
  border-bottom: 1px solid var(--tpf-line);
  transition: background .2s;
}
.tpf-why-cell:hover { background: var(--tpf-surface-3); }
.tpf-why-cell:nth-child(2n) { border-right: none; }
.tpf-why-cell:nth-child(3),
.tpf-why-cell:nth-child(4) { border-bottom: none; }
.tpf-why-icon { font-size: 28px; margin-bottom: 16px; }
.tpf-why-cell h4 {
  font-size: 17px; font-weight: 600;
  color: var(--tpf-ink); margin-bottom: 10px; line-height: 1.3;
}
.tpf-why-cell p {
  font-size: 14px; color: var(--tpf-ink-2);
  line-height: 1.75; font-weight: 300;
}

/* ── TRUST GRID (homepage) ───────────────────── */
.tpf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tpf-line);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-xl);
  overflow: hidden;
  margin-top: 52px;
}
.tpf-trust-cell {
  background: var(--tpf-surface);
  padding: 32px 28px;
  text-align: center;
  transition: background .2s;
}
.tpf-trust-cell:hover { background: var(--tpf-surface-2); }
.tpf-trust-icon { font-size: 28px; margin-bottom: 14px; }
.tpf-trust-cell h4 {
  font-size: 14px; font-weight: 600;
  color: var(--tpf-ink); margin-bottom: 6px;
}
.tpf-trust-cell p { font-size: 13px; color: var(--tpf-ink-3); line-height: 1.6; }

/* ── PRICING CARDS ───────────────────────────── */
.tpf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.tpf-price-card {
  border: 1.5px solid var(--tpf-line);
  border-radius: var(--tpf-r-xl);
  padding: 36px 30px;
  transition: all .25s;
}
.tpf-price-card:hover {
  border-color: var(--tpf-brand-br);
  box-shadow: 0 12px 48px rgba(0,0,0,0.06);
}
.tpf-price-card.featured {
  background: var(--tpf-ink);
  border-color: var(--tpf-ink);
}
.tpf-price-card.featured .tpf-plan-name,
.tpf-price-card.featured .tpf-plan-price,
.tpf-price-card.featured .tpf-plan-note,
.tpf-price-card.featured .tpf-plan-desc,
.tpf-price-card.featured .tpf-plan-feat { color: #fff !important; }
.tpf-price-card.featured .tpf-plan-feat { border-color: rgba(255,255,255,0.08) !important; }
.tpf-price-card.featured .tpf-plan-feat::before { color: var(--tpf-brand) !important; }
.tpf-price-card.featured .tpf-plan-desc { border-color: rgba(255,255,255,0.1) !important; }
.tpf-price-card.featured .tpf-plan-btn {
  background: var(--tpf-brand) !important;
  color: #fff !important;
  border: none !important;
}
.tpf-price-card.featured .tpf-plan-btn:hover { background: var(--tpf-brand-dk) !important; }
.tpf-plan-name {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--tpf-ink-3); margin-bottom: 20px;
}
.tpf-plan-price {
  font-family: var(--tpf-ff-head);
  font-size: 52px; font-weight: 600;
  color: var(--tpf-ink); line-height: 1; margin-bottom: 4px;
}
.tpf-plan-note { font-size: 13px; color: var(--tpf-ink-3); margin-bottom: 20px; }
.tpf-plan-desc {
  font-size: 14px; color: var(--tpf-ink-2);
  line-height: 1.7; font-weight: 300;
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--tpf-line);
}
.tpf-plan-feats { list-style: none; margin-bottom: 32px; }
.tpf-plan-feat {
  font-size: 13px; color: var(--tpf-ink-2);
  padding: 7px 0; display: flex;
  align-items: flex-start; gap: 12px;
  border-bottom: 1px solid var(--tpf-surface-3);
  line-height: 1.4;
}
.tpf-plan-feat:last-child { border-bottom: none; }
.tpf-plan-feat::before {
  content: '✓'; color: var(--tpf-green);
  font-weight: 700; font-size: 11px;
  flex-shrink: 0; margin-top: 2px;
}
.tpf-plan-feat.upcoming::before { content: '→'; color: var(--tpf-brand); }
.tpf-plan-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--tpf-ff-body);
  font-size: 14px; font-weight: 600;
  padding: 14px; border-radius: 11px;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--tpf-line);
  background: transparent; color: var(--tpf-ink);
  transition: all .2s;
}
.tpf-plan-btn:hover {
  border-color: var(--tpf-ink-3);
  background: var(--tpf-surface-2);
  color: var(--tpf-ink);
}

/* ── COMPARE TABLE ───────────────────────────── */
.tpf-compare-wrap {
  margin-top: 52px;
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-xl);
  overflow: hidden;
}
.tpf-compare-header {
  display: grid;
  grid-template-columns: 1fr repeat(3, 120px);
  background: var(--tpf-surface-2);
  border-bottom: 2px solid var(--tpf-line);
}
.tpf-compare-hcell {
  padding: 18px 20px; text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--tpf-ink-3);
  border-left: 1px solid var(--tpf-line);
}
.tpf-compare-hcell:first-child { text-align: left; border-left: none; }
.tpf-compare-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 120px);
  border-bottom: 1px solid var(--tpf-line);
  transition: background .15s;
}
.tpf-compare-row:last-child { border-bottom: none; }
.tpf-compare-row:hover { background: var(--tpf-surface-2); }
.tpf-compare-cell {
  padding: 13px 20px; font-size: 13px;
  color: var(--tpf-ink-3);
  border-left: 1px solid var(--tpf-line);
  display: flex; align-items: center; justify-content: center;
}
.tpf-compare-cell:first-child {
  color: var(--tpf-ink-2); font-weight: 500;
  text-align: left; justify-content: flex-start;
  border-left: none;
}
.tpf-check { color: var(--tpf-green); font-size: 16px; }
.tpf-dash { color: var(--tpf-line); font-size: 20px; }

/* ── HERO STATS ROW ──────────────────────────── */
.tpf-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 44px;
}
.tpf-hero-stat {
  background: var(--tpf-surface);
  border: 1px solid var(--tpf-line);
  border-top: 3px solid var(--tpf-brand);
  border-radius: 12px;
  padding: 18px 16px 16px;
  transition: box-shadow .2s, transform .2s;
}
.tpf-hero-stat:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.tpf-hero-stat-num {
  font-family: var(--tpf-ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--tpf-ink);
  line-height: 1;
  margin-bottom: 6px;
}
.tpf-hero-stat-lbl {
  font-size: 11px;
  color: var(--tpf-ink-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── HERO PLUGIN CARDS (homepage) ────────────── */
.tpf-hp-card {
  background: var(--tpf-surface-2);
  border: 1px solid var(--tpf-line);
  border-radius: var(--tpf-r-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .22s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
}
.tpf-hp-card:last-child { margin-bottom: 0; }
.tpf-hp-card:hover {
  border-color: var(--tpf-brand-br);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateX(4px);
}
.tpf-hp-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center;
  justify-content: center; font-size: 22px;
  flex-shrink: 0;
}
.tpf-hp-icon.orange { background: rgba(232,87,42,0.1); }
.tpf-hp-icon.red    { background: rgba(185,28,28,0.08); }
.tpf-hp-icon.green  { background: rgba(28,124,69,0.08); }
.tpf-hp-name { font-size: 14px; font-weight: 600; color: var(--tpf-ink); margin-bottom: 3px; }
.tpf-hp-desc { font-size: 12px; color: var(--tpf-ink-3); line-height: 1.4; }
.tpf-hp-pill {
  font-size: 10px; font-weight: 700;
  letter-spacing: .4px; padding: 4px 10px;
  border-radius: 100px; flex-shrink: 0;
  background: var(--tpf-green-lt);
  color: var(--tpf-green);
  border: 1px solid var(--tpf-green-br);
}
.tpf-hp-arrow {
  color: var(--tpf-ink-3); font-size: 14px;
  flex-shrink: 0; transition: transform .2s;
  margin-left: auto;
}
.tpf-hp-card:hover .tpf-hp-arrow { transform: translateX(3px); color: var(--tpf-brand); }

/* ── SCREENSHOT STRIP (homepage) ─────────────── */
.tpf-ss-strip {
  background: var(--tpf-surface-2);
  border-top: 1px solid var(--tpf-line);
  border-bottom: 1px solid var(--tpf-line);
  padding: 48px 48px 0;
  overflow: hidden;
}
.tpf-ss-inner { max-width: var(--tpf-max); margin: 0 auto; }
.tpf-ss-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--tpf-ink-3); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.tpf-ss-label::after { content: ''; flex: 1; height: 1px; background: var(--tpf-line); }
.tpf-ss-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tpf-ss-win {
  background: var(--tpf-surface);
  border: 1px solid var(--tpf-line);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.05);
}
.tpf-ss-bar {
  background: var(--tpf-surface-3);
  padding: 9px 14px;
  border-bottom: 1px solid var(--tpf-line);
  display: flex; align-items: center; gap: 6px;
}
.tpf-ss-dot { width: 9px; height: 9px; border-radius: 50%; }
.tpf-ss-dot:nth-child(1){background:#FC6058}
.tpf-ss-dot:nth-child(2){background:#FEC02F}
.tpf-ss-dot:nth-child(3){background:#2DC840}
.tpf-ss-title {
  flex: 1; text-align: center;
  font-size: 11px; color: var(--tpf-ink-3); font-weight: 500;
}
.tpf-ss-content {
  aspect-ratio: 3/2.5;
  background: linear-gradient(145deg, #F5F3EF 0%, #EDE9E2 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; cursor: pointer; position: relative;
}
.tpf-ss-content img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.tpf-ss-prompt { text-align: center; }
.tpf-ss-prompt .tpf-icon { font-size: 26px; margin-bottom: 6px; }
.tpf-ss-prompt .tpf-lbl { font-size: 12px; font-weight: 600; color: var(--tpf-ink-3); }
.tpf-ss-prompt .tpf-hint { font-size: 10px; color: var(--tpf-ink-3); opacity: .6; margin-top: 2px; }

/* ── FOOTER ──────────────────────────────────── */
.tpf-footer {
  border-top: 1px solid var(--tpf-line);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tpf-footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--tpf-ff-head);
  font-size: 16px; font-weight: 600;
  color: var(--tpf-ink); text-decoration: none;
}
.tpf-footer-mark {
  width: 26px; height: 26px;
  background: var(--tpf-brand); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.tpf-footer-copy { font-size: 13px; color: var(--tpf-ink-3); margin-top: 6px; }
.tpf-footer-copy a { color: var(--tpf-ink-3); text-decoration: none; }
.tpf-footer-links { display: flex; gap: 28px; }
.tpf-footer-links a {
  font-size: 13px; color: var(--tpf-ink-3);
  text-decoration: none; transition: color .2s;
}
.tpf-footer-links a:hover { color: var(--tpf-ink); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .tpf-hero-inner,
  .tpf-hero-inner--ep,
  .tpf-feature-block,
  .tpf-feature-block.tpf-reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .tpf-feature-list--cols { grid-template-columns: 1fr 1fr; }
  .tpf-sidebar { position: static; }
  .tpf-sidebar-cta-row { flex-direction: column; }
  .tpf-checklist--grid { grid-template-columns: 1fr 1fr; }
  .tpf-plugin-grid,
  .tpf-pricing-grid,
  .tpf-pack-grid,
  .tpf-who-grid { grid-template-columns: 1fr; }
  .tpf-icon-grid,
  .tpf-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .tpf-btn-showcase { grid-template-columns: repeat(2, 1fr); }
  .tpf-metrics { grid-template-columns: repeat(2, 1fr); }
  .tpf-why-grid { grid-template-columns: 1fr; }
  .tpf-why-cell { border-right: none !important; }
  .tpf-why-cell:nth-child(3) { border-bottom: 1px solid var(--tpf-line) !important; }
  .tpf-ps { grid-template-columns: 1fr; }
  .tpf-ps-side.problem { border-right: none; border-bottom: 1px solid var(--tpf-red-br); }
  .tpf-section, .tpf-section-stripe .tpf-section { padding: 56px 24px; }
  .tpf-feature-block { padding: 56px 24px; }
  .tpf-cta { padding: 44px 32px; flex-direction: column; margin: 0 24px 64px; }
  .tpf-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .tpf-footer { flex-direction: column; gap: 24px; text-align: center; padding: 32px 24px; }
  .tpf-footer-links { flex-wrap: wrap; justify-content: center; }
  .tpf-ss-frame { grid-template-columns: 1fr; }
  .tpf-hero { padding: 48px 24px 0; }
  .tpf-compare-wrap { overflow-x: auto; }
  .tpf-cl-item { grid-template-columns: 1fr; gap: 16px; }
  .tpf-crumb { padding: 12px 24px; }
  .tpf-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .tpf-hero-stat { border-top: 3px solid var(--tpf-brand); }
  .tpf-use-grid { grid-template-columns: 1fr; }
  .tpf-code-block { flex-direction: column; gap: 12px; }
}

@media (max-width: 600px) {
  .tpf-icon-grid,
  .tpf-trust-grid { grid-template-columns: 1fr; }
  .tpf-btn-showcase { grid-template-columns: 1fr; }
  .tpf-metrics { grid-template-columns: 1fr 1fr; }
  .tpf-privacy-grid { grid-template-columns: 1fr; }
  .tpf-hero-inner { gap: 32px; }
}

/* ── NAV ─────────────────────────────────────── */
.tpf-nav {
  position: sticky;
  top: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 40px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--tpf-line);
}
/* Logo — left side */
.tpf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tpf-ff-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--tpf-ink);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: auto;
}
.tpf-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--tpf-brand);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Links — middle (desktop only) */
@media (min-width: 861px) {
  .tpf-nav-links {
    display: flex !important;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0 24px 0 0;
    padding: 0;
  }
  .tpf-mob-cta-row { display: none !important; }
}
.tpf-nav-links li { margin: 0; padding: 0; list-style: none; }
.tpf-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--tpf-ink-2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .15s, color .15s;
  display: block;
}
.tpf-nav-links a:hover { background: var(--tpf-surface-2); color: var(--tpf-ink); }
/* CTA — right side */
.tpf-nav-cta {
  font-family: var(--tpf-ff-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  background: var(--tpf-brand);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.tpf-nav-cta:hover { background: var(--tpf-brand-dk); }
/* Hamburger — hidden on desktop */
.tpf-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.tpf-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tpf-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.tpf-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tpf-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tpf-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV MOBILE ≤ 860px ── */
@media (max-width: 860px) {
  .tpf-nav {
    padding: 0 16px;
    height: 60px;
    gap: 0;
  }
  /* keep logo on far left */
  .tpf-logo { margin-right: auto; font-size: 15px; }
  /* show hamburger on far right */
  .tpf-nav-toggle { display: flex !important; }
  /* hide desktop links & CTA */
  .tpf-nav-links { display: none !important; margin: 0; }
  .tpf-nav-cta { display: none !important; }
  /* dropdown — fixed to viewport, drops down from nav */
  .tpf-nav-links.tpf-mob-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 8px 0 16px;
    gap: 0;
    background: #fff;
    border-top: 3px solid var(--tpf-brand);
    border-bottom: 1px solid var(--tpf-line);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    z-index: 8999;
    list-style: none;
  }
  .tpf-nav-links.tpf-mob-open li { width: 100%; margin: 0; padding: 0; list-style: none; }
  .tpf-nav-links.tpf-mob-open a {
    display: block;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tpf-ink);
    border-radius: 0;
    border-bottom: 1px solid var(--tpf-line);
    background: #fff;
    text-decoration: none;
  }
  .tpf-nav-links.tpf-mob-open a:hover,
  .tpf-nav-links.tpf-mob-open a:active { background: var(--tpf-surface-2); color: var(--tpf-brand); }
  .tpf-nav-links.tpf-mob-open li:last-child a { border-bottom: none; }
  /* CTA button row inside mobile dropdown */
  .tpf-mob-cta-row { display: none; }
  .tpf-nav-links.tpf-mob-open .tpf-mob-cta-row { display: block; padding: 16px 20px 8px; }
  .tpf-nav-links.tpf-mob-open .tpf-mob-cta-row a {
    display: block;
    background: var(--tpf-brand);
    color: #fff !important;
    text-align: center;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    border-bottom: none;
  }
  .tpf-nav-links.tpf-mob-open .tpf-mob-cta-row a:hover { background: var(--tpf-brand-dk); }
}
/* Admin bar offset */
.admin-bar .tpf-nav { top: 32px; }
.admin-bar .tpf-nav-links.tpf-mob-open { top: calc(60px + 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .tpf-nav { top: 46px; }
  .admin-bar .tpf-nav-links.tpf-mob-open { top: calc(60px + 46px); }
}

/* ── BREADCRUMB HIDE ── */
nav.woocommerce-breadcrumb,
.woocommerce-breadcrumb,
.ast-breadcrumbs-wrapper,
.ct-breadcrumbs { display: none !important; }


/* ── CTA BUTTONS FIX ── */
.tpf-btn-white,
.tpf-btn-ghost,
.tpf-btn-brand,
.tpf-btn-line {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  white-space: nowrap !important;
}

/* ── HOMEPAGE HERO GRID FIX ── */
@media (max-width: 900px) {
  .tpf-section[style*="grid-template-columns"] {
    display: block !important;
  }
  .tpf-hp-card { margin-bottom: 12px; }
}


/* ── PLUGIN PAGE HERO H1 ── */
.tpf-h1 {
  font-family: var(--tpf-ff-head);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.6px;
  color: var(--tpf-ink);
  margin-bottom: 20px;
}
.tpf-h1 i { color: var(--tpf-brand); font-style: italic; }
.tpf-hero h1 {
  font-family: var(--tpf-ff-head);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.6px;
  color: var(--tpf-ink);
  margin-bottom: 20px;
}
.tpf-hero h1 i { color: var(--tpf-brand); font-style: italic; }

/* ── FEATURE BLOCK H3 ── */
.tpf-feature-block h3,
.tpf-feature-title {
  font-family: var(--tpf-ff-head) !important;
  font-size: clamp(24px, 2.5vw, 34px) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  letter-spacing: -.3px !important;
  color: var(--tpf-ink) !important;
  margin-bottom: 16px !important;
}
.tpf-feature-block h3 i,
.tpf-feature-title i { color: var(--tpf-brand); font-style: italic; }

/* ── BREADCRUMB HIDE ── */
.tpf-crumb,
nav.woocommerce-breadcrumb,
.woocommerce-breadcrumb { display: none !important; }

/* ── SCREEN CONTENT FIX ── */
.tpf-screen-content {
  background: linear-gradient(145deg, #F5F3EF 0%, #EDE9E2 100%) !important;
}

/* ── ICON GRID BACKGROUND ── */
.tpf-icon-grid {
  background: var(--tpf-line);
}

/* ── PACKING CARD HIGHLIGHT ── */
.tpf-pack-card.highlight {
  border-color: var(--tpf-brand) !important;
  background: var(--tpf-brand-lt) !important;
}

/* ── COMPARE TABLE CHECKS ── */
.tpf-check { color: var(--tpf-green) !important; font-size: 16px; }
.tpf-dash  { color: var(--tpf-line) !important; font-size: 20px; }

/* ── PLAN FEAT UPCOMING ── */
.tpf-plan-feat.upcoming::before { content: '→'; color: var(--tpf-brand); }

/* ── HERO BORDER BOTTOM ── */
.tpf-hero-border {
  border-bottom: 1px solid var(--tpf-line);
  margin-bottom: 0;
}

/* ── WHO CARD ── */
.tpf-who-flag { font-size: 32px; margin-bottom: 14px; display: block; }

/* ── USE CASE CARD H5 ── */
.tpf-use-card h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 4px;
}

/* ── BUTTON EXPLICIT COLORS ── */
.tpf-btn-brand {
  background: var(--tpf-brand) !important;
  color: #ffffff !important;
  border-radius: 11px !important;
  padding: 13px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: all .2s !important;
}
.tpf-btn-brand:hover { background: var(--tpf-brand-dk) !important; transform: translateY(-1px) !important; }

.tpf-btn-line {
  background: transparent !important;
  color: var(--tpf-ink) !important;
  border: 1.5px solid var(--tpf-line) !important;
  border-radius: 11px !important;
  padding: 13px 24px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  transition: all .2s !important;
}
.tpf-btn-line:hover { border-color: var(--tpf-ink-3) !important; }

.tpf-btn-white {
  background: #ffffff !important;
  color: var(--tpf-brand) !important;
  border-radius: 11px !important;
  padding: 14px 26px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all .2s !important;
}
.tpf-btn-white:hover { background: rgba(255,255,255,0.92) !important; }

.tpf-btn-ghost {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 11px !important;
  padding: 14px 26px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: all .2s !important;
}
.tpf-btn-ghost:hover { color: #fff !important; background: rgba(255,255,255,0.14) !important; }

/* ── DOWNLOAD BUTTONS IN SIDEBAR ── */
.tpf-dl-btn {
  background: var(--tpf-brand) !important;
  color: #ffffff !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 13px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  margin-bottom: 10px !important;
}
.tpf-dl-btn:hover { background: var(--tpf-brand-dk) !important; }
.tpf-dl-sec {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: transparent !important;
  color: var(--tpf-ink) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 11px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  border: 1.5px solid var(--tpf-line) !important;
}
.tpf-dl-sec:hover { border-color: var(--tpf-ink-3) !important; }

/* ── FAQ ARROW ── */
.tpf-faq-arrow {
  width: 28px !important; height: 28px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--tpf-line) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  color: var(--tpf-ink-3) !important;
  flex-shrink: 0 !important;
  transition: all .2s !important;
}
.tpf-faq-q.open .tpf-faq-arrow {
  background: var(--tpf-brand) !important;
  border-color: var(--tpf-brand) !important;
  color: #fff !important;
  transform: rotate(180deg) !important;
}

/* ── CTA SECTION SPACING ── */
.tpf-cta {
  margin-left: 48px !important;
  margin-right: 48px !important;
}
@media (max-width: 768px) {
  .tpf-cta { margin-left: 24px !important; margin-right: 24px !important; flex-direction: column !important; }
  .tpf-feature-block { grid-template-columns: 1fr !important; direction: ltr !important; }
  .tpf-feature-list--cols { grid-template-columns: 1fr !important; }
  .tpf-hero-inner,
  .tpf-hero-inner--ep { grid-template-columns: 1fr !important; }
  .tpf-sidebar { position: static !important; }
  .tpf-sidebar-images { grid-template-columns: 1fr 1fr !important; }
  .tpf-meta--grid { grid-template-columns: 1fr !important; }
  .tpf-checklist--grid { grid-template-columns: 1fr !important; }
  .tpf-plugin-grid,
  .tpf-pricing-grid,
  .tpf-pack-grid,
  .tpf-who-grid { grid-template-columns: 1fr !important; }
  .tpf-icon-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── SUPPORT PAGE ─────────────────────────────── */
.tpf-support-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.6;
}
.tpf-support-notice--success { background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.25); color: #15803d; }
.tpf-support-notice--error   { background: rgba(220,38,38,.07); border: 1px solid rgba(220,38,38,.2);  color: #b91c1c; }
.tpf-sn-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.tpf-support-card {
  background: var(--tpf-surface);
  border: 1px solid var(--tpf-line);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
}

.tpf-support-form { display: flex; flex-direction: column; gap: 0; }
.tpf-sf-row { margin-bottom: 20px; }
.tpf-sf-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tpf-sf-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tpf-ink);
  margin-bottom: 7px;
}
.tpf-sf-field input[type=text],
.tpf-sf-field input[type=email],
.tpf-sf-field input[type=url],
.tpf-sf-field select,
.tpf-sf-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--tpf-line);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--tpf-ff-body);
  color: var(--tpf-ink);
  background: var(--tpf-surface);
  box-sizing: border-box;
  transition: border-color .15s;
  outline: none;
}
.tpf-sf-field input:focus,
.tpf-sf-field select:focus,
.tpf-sf-field textarea:focus { border-color: var(--tpf-brand); }
.tpf-sf-field textarea { resize: vertical; min-height: 140px; }
.tpf-sf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.tpf-req { color: var(--tpf-brand); }
.tpf-opt { font-weight: 400; color: var(--tpf-ink-3); font-size: 12px; }
.tpf-sf-optional { opacity: .85; }
.tpf-sf-submit { margin-top: 8px; }
.tpf-sf-btn { font-size: 15px; padding: 14px 32px; }
.tpf-sf-note { font-size: 12px; color: var(--tpf-ink-3); margin-top: 10px; }

/* Support quick-links */
.tpf-support-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.tpf-sl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--tpf-surface);
  border: 1px solid var(--tpf-line);
  border-radius: 12px;
  padding: 20px;
}
.tpf-sl-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.tpf-sl-item strong { display: block; font-size: 14px; margin-bottom: 4px; }
.tpf-sl-item p { font-size: 13px; color: var(--tpf-ink-2); margin: 0; line-height: 1.5; }
.tpf-sl-item a { color: var(--tpf-brand); }

@media (max-width: 640px) {
  .tpf-sf-row--2 { grid-template-columns: 1fr; }
  .tpf-support-card { padding: 24px 20px; }
  .tpf-support-links { grid-template-columns: 1fr; }
}

/* ── Related Articles (plugin page sections) ── */
.tpf-related-articles {
  background: #F5F3EF;
  padding: 56px 0;
}
.tpf-related-articles-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}
.tpf-related-articles-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #18160F;
  margin: 0 0 6px;
}
.tpf-related-articles-sub {
  font-size: 14px;
  color: #8C8880;
  margin: 0 0 28px;
}
.tpf-rel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.tpf-rel-item {
  display: block;
  padding: 18px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E8E4DD;
  text-decoration: none;
  transition: box-shadow .15s, border-color .15s;
}
.tpf-rel-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  border-color: #d0ccc5;
}
.tpf-rel-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #E8572A;
  margin-bottom: 6px;
}
.tpf-rel-title {
  font-size: 14px;
  font-weight: 600;
  color: #18160F;
  line-height: 1.45;
  margin-bottom: 6px;
}
.tpf-rel-item:hover .tpf-rel-title { color: #7C3AED; }
.tpf-rel-date {
  font-size: 11px;
  color: #8C8880;
}
@media (max-width: 700px) {
  .tpf-rel-list { grid-template-columns: 1fr; }
  .tpf-related-articles { padding: 40px 0; }
}
