@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600;700&family=Nunito:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --trp-nav-h: 64px;
  --trp-bg-deep: #16162A;
  --trp-bg-deep-alt: #1E1E38;
  --trp-bg-light: #FBF9F7;
  --trp-bg-white: #FFFFFF;
  --trp-bg-light-alt: #F3EEF0;
  --trp-accent-fill: #E8395A;
  --trp-accent-cta: #C8204A;
  --trp-accent-on-dark: #FF7A94;
  --trp-text-on-dark: #F5F0EB;
  --trp-text-muted-on-dark: #A0A8B8;
  --trp-text-on-light: #1A1A2E;
  --trp-text-muted-on-light: #4A4A5A;
  --trp-border-on-dark: #2E2E4A;
  --trp-border-on-light: #E8E4E0;
  --trp-success-green: #157A38;
  --trp-success-green-on-dark: #4ADE80;
  --trp-radius-card: 12px;
  --trp-radius-btn: 8px;
  --trp-section-py: clamp(4rem, 8vw, 8rem);
  --trp-container-max: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--trp-text-on-light);
  background: var(--trp-bg-light);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.trp-container {
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.trp-section {
  padding-block: var(--trp-section-py);
}

.trp-section--dark {
  background: var(--trp-bg-deep);
  color: var(--trp-text-on-dark);
}

.trp-section--dark-alt {
  background: var(--trp-bg-deep-alt);
  color: var(--trp-text-on-dark);
}

.trp-section--light {
  background: var(--trp-bg-light);
  color: var(--trp-text-on-light);
}

.trp-section--white {
  background: var(--trp-bg-white);
  color: var(--trp-text-on-light);
}

.trp-section--light-alt {
  background: var(--trp-bg-light-alt);
  color: var(--trp-text-on-light);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Lexend', sans-serif; line-height: 1.2; }

h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
.trp-display { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; }

.trp-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trp-body-lg { font-size: 1.125rem; font-weight: 400; }
.trp-body { font-size: 1rem; font-weight: 400; }
.trp-small { font-size: 0.875rem; font-weight: 400; }

.trp-text-muted-on-dark { color: var(--trp-text-muted-on-dark); }
.trp-text-muted-on-light { color: var(--trp-text-muted-on-light); }
.trp-text-accent-on-dark { color: var(--trp-accent-on-dark); }
.trp-text-accent-cta { color: var(--trp-accent-cta); }

.trp-section-header { margin-bottom: 3rem; }
.trp-section-header--centered { text-align: center; }
.trp-eyebrow {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.trp-section--dark .trp-eyebrow { color: var(--trp-accent-on-dark); }
.trp-section--dark-alt .trp-eyebrow { color: var(--trp-accent-on-dark); }
.trp-section--light .trp-eyebrow,
.trp-section--white .trp-eyebrow,
.trp-section--light-alt .trp-eyebrow { color: var(--trp-accent-cta); }

.trp-section-lead {
  font-size: 1.125rem;
  max-width: 52ch;
  margin-top: 1rem;
}
.trp-section-header--centered .trp-section-lead { margin-inline: auto; }

.trp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--trp-radius-btn);
  font-family: 'Lexend', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.trp-btn:hover { transform: translateY(-1px); }
.trp-btn:active { transform: translateY(0); }

.trp-btn--primary {
  background: var(--trp-accent-cta);
  color: #fff;
  border-color: var(--trp-accent-cta);
}
.trp-btn--primary:hover { background: #a8183c; border-color: #a8183c; }

.trp-btn--outline-on-dark {
  background: transparent;
  color: var(--trp-text-on-dark);
  border-color: var(--trp-text-on-dark);
}
.trp-btn--outline-on-dark:hover { background: rgba(245,240,235,0.1); }

.trp-btn--ghost-on-dark {
  background: transparent;
  color: var(--trp-text-on-dark);
  border-color: transparent;
  padding-inline: 0.75rem;
}
.trp-btn--ghost-on-dark:hover { color: var(--trp-accent-on-dark); }

.trp-btn--ghost-on-light {
  background: transparent;
  color: var(--trp-text-on-light);
  border-color: transparent;
  padding-inline: 0.75rem;
}
.trp-btn--ghost-on-light:hover { color: var(--trp-accent-cta); }

.trp-btn--outline-on-light {
  background: transparent;
  color: var(--trp-text-on-light);
  border-color: var(--trp-text-on-light);
}
.trp-btn--outline-on-light:hover { background: rgba(26,26,46,0.06); }

.trp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--trp-nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.trp-nav__inner {
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.trp-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.trp-nav__logo img { height: 30px; width: auto; }
.trp-nav__logo-dark { display: none; }
.trp-nav__logo-light { display: block; }

.trp-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.trp-nav__link {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.trp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.trp-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: auto;
}

.trp-nav__bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
}

.trp-page--dark-top .trp-nav { background: transparent; }
.trp-page--dark-top .trp-nav .trp-nav__logo-dark { display: none; }
.trp-page--dark-top .trp-nav .trp-nav__logo-light { display: block; }
.trp-page--dark-top .trp-nav .trp-nav__link { color: var(--trp-text-on-dark); }
.trp-page--dark-top .trp-nav .trp-nav__link:hover { color: var(--trp-accent-on-dark); background: rgba(255,255,255,0.05); }
.trp-page--dark-top .trp-nav .trp-nav__bar { background: var(--trp-text-on-dark); }
.trp-page--dark-top .trp-nav .trp-btn--ghost-on-dark { color: var(--trp-text-on-dark); }

.trp-page--light-top .trp-nav { background: var(--trp-bg-white); box-shadow: 0 1px 0 var(--trp-border-on-light); }
.trp-page--light-top .trp-nav .trp-nav__logo-dark { display: block; }
.trp-page--light-top .trp-nav .trp-nav__logo-light { display: none; }
.trp-page--light-top .trp-nav .trp-nav__link { color: var(--trp-text-on-light); }
.trp-page--light-top .trp-nav .trp-nav__link:hover { color: var(--trp-accent-cta); background: rgba(26,26,46,0.04); }
.trp-page--light-top .trp-nav .trp-nav__bar { background: var(--trp-text-on-light); }
.trp-page--light-top .trp-nav .trp-btn--ghost-on-dark {
  color: var(--trp-text-on-light);
  border-color: transparent;
}
.trp-page--light-top .trp-nav .trp-btn--ghost-on-dark:hover { color: var(--trp-accent-cta); }

.trp-nav--scrolled { background: var(--trp-bg-deep) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.3) !important; }
.trp-nav--scrolled .trp-nav__logo-dark { display: none !important; }
.trp-nav--scrolled .trp-nav__logo-light { display: block !important; }
.trp-nav--scrolled .trp-nav__link { color: var(--trp-text-on-dark) !important; }
.trp-nav--scrolled .trp-nav__link:hover { color: var(--trp-accent-on-dark) !important; }
.trp-nav--scrolled .trp-nav__bar { background: var(--trp-text-on-dark) !important; }
.trp-nav--scrolled .trp-btn--ghost-on-dark { color: var(--trp-text-on-dark) !important; }
.trp-nav--scrolled .trp-btn--ghost-on-light {
  color: var(--trp-text-on-dark) !important;
  border-color: rgba(245,240,235,0.4) !important;
}
.trp-nav--scrolled .trp-btn--ghost-on-light:hover { background: rgba(255,255,255,0.08) !important; }
.trp-nav--scrolled .trp-btn--outline-on-light {
  color: var(--trp-text-on-dark) !important;
  border-color: rgba(245,240,235,0.4) !important;
}
.trp-nav--scrolled .trp-btn--outline-on-light:hover { background: rgba(255,255,255,0.08) !important; }

.trp-nav__mobile-menu {
  display: none;
  position: absolute;
  top: var(--trp-nav-h);
  left: 0;
  right: 0;
  background: var(--trp-bg-deep);
  padding: 1rem;
  border-top: 1px solid var(--trp-border-on-dark);
  flex-direction: column;
  gap: 0.25rem;
}

.trp-nav__mobile-menu.is-open { display: flex; }
.trp-nav__mobile-menu .trp-nav__link { color: var(--trp-text-on-dark); padding: 0.75rem 1rem; }
.trp-nav__mobile-menu .trp-nav__link:hover { background: rgba(255,255,255,0.05); color: var(--trp-accent-on-dark); }
.trp-nav__mobile-menu .trp-nav__mobile-actions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--trp-border-on-dark); }

.trp-nav__toggle--open .trp-nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.trp-nav__toggle--open .trp-nav__bar:nth-child(2) { opacity: 0; }
.trp-nav__toggle--open .trp-nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.trp-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--trp-nav-h);
}

.trp-hero--dark {
  background: var(--trp-bg-deep);
  color: var(--trp-text-on-dark);
}

.trp-hero--light {
  background: var(--trp-bg-light);
  color: var(--trp-text-on-light);
  min-height: 40vh;
}

.trp-hero__inner {
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: 4rem 3rem;
  width: 100%;
}

.trp-hero__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trp-hero__text { max-width: 560px; }
.trp-hero__headline { margin-bottom: 1.25rem; }
.trp-hero__sub {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--trp-text-muted-on-dark);
  margin-bottom: 2rem;
  max-width: 48ch;
}
.trp-hero--light .trp-hero__sub { color: var(--trp-text-muted-on-light); }

.trp-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.trp-hero__visual { display: flex; justify-content: center; align-items: center; }

.trp-subhero {
  background: var(--trp-bg-deep);
  color: var(--trp-text-on-dark);
  padding-top: var(--trp-nav-h);
  padding-bottom: 4rem;
}

.trp-subhero--light {
  background: var(--trp-bg-light);
  color: var(--trp-text-on-light);
}

.trp-subhero__inner {
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trp-subhero__text h1 { margin-bottom: 1rem; }
.trp-subhero__text p {
  font-size: 1.125rem;
  margin-top: 0.75rem;
  max-width: 48ch;
}
.trp-subhero--light .trp-subhero__text p { color: var(--trp-text-muted-on-light); }
.trp-subhero .trp-subhero__text p { color: var(--trp-text-muted-on-dark); }

.trp-subhero__ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trp-subhero__stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--trp-border-on-dark);
  border-radius: var(--trp-radius-card);
}

.trp-subhero__stat-block--light {
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
}

.trp-stat-item {}
.trp-stat-item__value {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--trp-accent-fill);
  line-height: 1.1;
}
.trp-subhero__stat-block--light .trp-stat-item__value { color: var(--trp-accent-cta); }
.trp-stat-item__label {
  font-size: 0.875rem;
  color: var(--trp-text-muted-on-dark);
  margin-top: 0.25rem;
}
.trp-subhero__stat-block--light .trp-stat-item__label { color: var(--trp-text-muted-on-light); }

.trp-mock-widget {
  width: 280px;
  background: var(--trp-bg-deep-alt);
  border: 1px solid var(--trp-border-on-dark);
  border-radius: 24px;
  padding: 1.5rem 1.25rem;
  position: relative;
  box-shadow: 0 0 80px rgba(232,57,90,0.08), 0 24px 48px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.trp-mock-widget::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,57,90,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.trp-mock-widget__header {
  margin-bottom: 1.25rem;
}

.trp-mock-widget__week-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trp-text-muted-on-dark);
}

.trp-mock-widget__amount {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--trp-text-on-dark);
  line-height: 1.1;
  margin-top: 0.15rem;
}

.trp-mock-widget__forecast-label {
  font-size: 0.75rem;
  color: var(--trp-success-green-on-dark);
  margin-top: 0.2rem;
}

.trp-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-bottom: 1.25rem;
}

.trp-mock-chart__bar {
  flex: 1;
  background: var(--trp-accent-fill);
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
  min-width: 0;
  position: relative;
}

.trp-mock-chart__bar--dim { opacity: 0.35; }
.trp-mock-chart__bar--today { opacity: 1; }

.trp-mock-chart__labels {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  margin-top: 4px;
}

.trp-mock-chart__label {
  flex: 1;
  text-align: center;
  font-size: 0.6rem;
  color: var(--trp-text-muted-on-dark);
  font-family: 'Lexend', sans-serif;
}

.trp-mock-score-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid var(--trp-border-on-dark);
}

.trp-mock-score-ring {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.trp-mock-score-ring-track {
  fill: none;
  stroke: rgba(232,57,90,0.2);
  stroke-width: 4;
}

.trp-mock-score-ring-fill {
  fill: none;
  stroke: var(--trp-accent-fill);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 138;
  stroke-dashoffset: 55;
  transform: rotate(-90deg);
  transform-origin: center;
}

.trp-mock-score-num {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--trp-text-on-dark);
}

.trp-mock-score-sub {
  font-size: 0.65rem;
  color: var(--trp-text-muted-on-dark);
  line-height: 1.3;
  margin-top: 0.15rem;
}

.trp-mock-shifts { display: flex; flex-direction: column; gap: 0.4rem; }

.trp-mock-shift {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--trp-border-on-dark);
}

.trp-mock-shift__platform {
  font-size: 0.65rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  color: #fff;
}

.trp-mock-shift__platform--ifood { background: #B51522; }
.trp-mock-shift__platform--rappi { background: #FF441F; color: #1A1A2E; }
.trp-mock-shift__platform--uber { background: #000; border: 1px solid rgba(255,255,255,0.2); }

.trp-mock-shift__earn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--trp-success-green-on-dark);
  font-weight: 500;
}

.trp-step-section {
  padding-block: var(--trp-section-py);
}

.trp-step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.trp-step-row--flip { direction: rtl; }
.trp-step-row--flip > * { direction: ltr; }

.trp-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #B8183A;
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trp-step-text h2 { margin-bottom: 1rem; }
.trp-step-text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--trp-text-muted-on-light);
}

.trp-step-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trp-mock-platform-list {
  width: 260px;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(26,26,46,0.08);
}

.trp-mock-platform-list__title {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--trp-text-muted-on-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.trp-mock-platform-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--trp-border-on-light);
}
.trp-mock-platform-row:last-child { border-bottom: none; }

.trp-mock-platform-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
}

.trp-mock-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: var(--trp-accent-fill);
  position: relative;
}
.trp-mock-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}
.trp-mock-toggle--off { background: var(--trp-border-on-light); }
.trp-mock-toggle--off::after { right: auto; left: 3px; }

.trp-mock-barchart {
  width: 280px;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(26,26,46,0.08);
}

.trp-mock-barchart__title {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-bottom: 0.25rem;
}

.trp-mock-barchart__total {
  font-family: 'Lexend', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--trp-accent-cta);
  margin-bottom: 1.25rem;
}

.trp-mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  margin-bottom: 0.5rem;
}

.trp-mock-bars__bar {
  flex: 1;
  background: var(--trp-accent-cta);
  opacity: 0.7;
  border-radius: 3px 3px 0 0;
  min-height: 10px;
}
.trp-mock-bars__bar--high { opacity: 1; }

.trp-mock-bars__days {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}
.trp-mock-bars__day {
  flex: 1;
  text-align: center;
  font-size: 0.6rem;
  color: var(--trp-text-muted-on-light);
}

.trp-mock-credit-timeline {
  width: 280px;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(26,26,46,0.08);
}

.trp-mock-credit-timeline__title {
  font-family: 'Lexend', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-bottom: 1rem;
}

.trp-mock-timeline-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.trp-mock-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--trp-accent-fill);
  flex-shrink: 0;
}

.trp-mock-timeline-month {
  font-size: 0.7rem;
  color: var(--trp-text-muted-on-light);
  width: 40px;
  flex-shrink: 0;
}

.trp-mock-timeline-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--trp-border-on-light);
  border-radius: 3px;
  overflow: hidden;
}

.trp-mock-timeline-bar {
  height: 100%;
  background: var(--trp-accent-fill);
  border-radius: 3px;
}

.trp-mock-timeline-score {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--trp-accent-cta);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.trp-features-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.trp-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trp-feature-row--flip { direction: rtl; }
.trp-feature-row--flip > * { direction: ltr; }

.trp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232,57,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
  color: var(--trp-accent-fill);
}

.trp-section--dark .trp-feature-icon,
.trp-section--dark-alt .trp-feature-icon {
  background: rgba(232,57,90,0.15);
}

.trp-feature-text h3 { margin-bottom: 0.75rem; }
.trp-feature-text p {
  color: var(--trp-text-muted-on-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.trp-section--dark .trp-feature-text p,
.trp-section--dark-alt .trp-feature-text p { color: var(--trp-text-muted-on-dark); }

.trp-feature-stat {
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trp-accent-cta);
  background: rgba(200,32,74,0.08);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  display: inline-block;
}
.trp-section--dark .trp-feature-stat { color: var(--trp-accent-on-dark); background: rgba(255,122,148,0.1); }

.trp-feature-visual-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.trp-integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.trp-integration-card {
  padding: 1.5rem 1rem;
  background: var(--trp-bg-light);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  text-align: center;
  transition: box-shadow 0.2s;
}

.trp-integration-card:hover { box-shadow: 0 4px 16px rgba(26,26,46,0.08); }

.trp-integration-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.trp-integration-name {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
}

.trp-integration-status {
  font-size: 0.75rem;
  color: var(--trp-text-muted-on-light);
  margin-top: 0.25rem;
}

.trp-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
}

.trp-price-card {
  padding: 2.5rem 2rem;
  border-radius: var(--trp-radius-card);
  background: var(--trp-bg-white);
  border: 2px solid var(--trp-border-on-light);
  position: relative;
}

.trp-price-card--highlight {
  border-color: var(--trp-accent-cta);
  box-shadow: 0 8px 32px rgba(200,32,74,0.12);
}

.trp-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--trp-accent-cta);
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.trp-price-tier-name {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trp-text-muted-on-light);
  margin-bottom: 0.5rem;
}

.trp-price-amount {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--trp-text-on-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trp-price-billing { font-size: 0.8rem; color: var(--trp-text-muted-on-light); margin-bottom: 0.5rem; }
.trp-price-tagline { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); margin-bottom: 1.5rem; }

.trp-price-features {
  border-top: 1px solid var(--trp-border-on-light);
  padding-top: 1.25rem;
  margin-bottom: 2rem;
}

.trp-price-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.trp-price-feature i { color: var(--trp-success-green); flex-shrink: 0; margin-top: 0.2rem; font-size: 0.85rem; }

.trp-price-limits {
  font-size: 0.8rem;
  color: var(--trp-text-muted-on-light);
  margin-bottom: 1.5rem;
  padding: 0.6rem 0.75rem;
  background: var(--trp-bg-light);
  border-radius: 6px;
}

.trp-credit-disclaimer {
  font-size: 0.8rem;
  color: var(--trp-text-muted-on-light);
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: var(--trp-bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--trp-accent-fill);
  max-width: 640px;
  margin-inline: auto;
}

.trp-faq-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.trp-faq-category { display: flex; flex-direction: column; }

.trp-faq-category__title {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trp-accent-cta);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--trp-border-on-light);
}

.trp-faq-item {
  border-bottom: 1px solid var(--trp-border-on-light);
}

.trp-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  gap: 1rem;
}

.trp-faq-trigger:hover { color: var(--trp-accent-cta); }

.trp-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--trp-accent-fill);
  font-size: 0.875rem;
  transition: transform 0.3s;
}

.trp-faq-item--open .trp-faq-icon { transform: rotate(45deg); }

.trp-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.trp-faq-item--open .trp-faq-body { max-height: 400px; }

.trp-faq-body__inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--trp-text-muted-on-light);
}

.trp-how-brief-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-how-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.trp-how-step__num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #B8183A;
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trp-how-step__title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
}

.trp-how-step__desc { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); line-height: 1.6; }

.trp-features-brief {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-feat-card {
  padding: 2rem 1.5rem;
  background: var(--trp-bg-light);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  transition: box-shadow 0.2s;
}

.trp-feat-card:hover { box-shadow: 0 4px 24px rgba(26,26,46,0.08); }

.trp-feat-card__metric {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--trp-accent-cta);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.trp-feat-card__label {
  font-size: 0.75rem;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--trp-text-muted-on-light);
  margin-bottom: 0.75rem;
}

.trp-feat-card__desc { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); line-height: 1.6; }

.trp-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.trp-proof-left { display: flex; flex-direction: column; gap: 1.5rem; }
.trp-proof-right { display: flex; flex-direction: column; gap: 1.5rem; }

.trp-testimonial {
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  padding: 1.75rem;
}

.trp-testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--trp-text-on-light);
  font-style: italic;
  margin-bottom: 1rem;
}

.trp-testimonial__attribution {
  font-size: 0.8125rem;
  color: var(--trp-text-muted-on-light);
}

.trp-metric-card {
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  padding: 1.75rem;
}

.trp-metric-card__value {
  font-family: 'Lexend', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--trp-accent-cta);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.trp-metric-card__label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-bottom: 0.5rem;
}

.trp-metric-card__anchor { font-size: 0.75rem; color: var(--trp-text-muted-on-light); line-height: 1.5; }

.trp-pricing-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 2rem;
}

.trp-pricing-preview-card {
  padding: 2rem 1.5rem;
  border: 2px solid var(--trp-border-on-dark);
  border-radius: var(--trp-radius-card);
  background: rgba(255,255,255,0.04);
}

.trp-pricing-preview-card--highlight {
  border-color: var(--trp-accent-fill);
  background: rgba(232,57,90,0.06);
}

.trp-pricing-preview-card__name {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trp-text-muted-on-dark);
  margin-bottom: 0.5rem;
}

.trp-pricing-preview-card--highlight .trp-pricing-preview-card__name { color: var(--trp-accent-on-dark); }

.trp-pricing-preview-card__price {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--trp-text-on-dark);
  margin-bottom: 0.25rem;
}

.trp-pricing-preview-card__tagline { font-size: 0.875rem; color: var(--trp-text-muted-on-dark); margin-bottom: 1.5rem; }

.trp-pricing-preview-card__features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.trp-pricing-preview-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--trp-text-muted-on-dark);
}
.trp-pricing-preview-card__feature i { color: var(--trp-success-green); flex-shrink: 0; margin-top: 0.2rem; }

.trp-cta-strip {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--trp-bg-deep);
  color: var(--trp-text-on-dark);
  text-align: center;
}

.trp-cta-strip__inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.trp-cta-strip__heading { margin-bottom: 1rem; }
.trp-cta-strip__sub { color: var(--trp-text-muted-on-dark); margin-bottom: 2rem; font-size: 1.0625rem; }
.trp-cta-strip__ctas { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.trp-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.trp-team-card {
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.trp-team-card:hover { box-shadow: 0 8px 32px rgba(26,26,46,0.1); }

.trp-team-card__portrait {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--trp-bg-light);
}

.trp-team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trp-team-card__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--trp-accent-cta);
  background: rgba(200,32,74,0.08);
}

.trp-team-card__body { padding: 1.5rem; }

.trp-team-card__name {
  font-family: 'Lexend', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-bottom: 0.2rem;
}

.trp-team-card__role {
  font-size: 0.8125rem;
  color: var(--trp-accent-cta);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.trp-team-card__bio { font-size: 0.9rem; color: var(--trp-text-muted-on-light); line-height: 1.65; }

.trp-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-value-card {
  padding: 2rem 1.5rem;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
}

.trp-value-card__icon {
  font-size: 1.5rem;
  color: var(--trp-accent-fill);
  margin-bottom: 1rem;
}

.trp-value-card__title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trp-value-card__desc { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); line-height: 1.6; }

.trp-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-problem-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--trp-border-on-dark);
  border-radius: var(--trp-radius-card);
}

.trp-problem-card__icon { font-size: 1.5rem; color: var(--trp-accent-fill); margin-bottom: 0.75rem; }
.trp-problem-card__title {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--trp-text-on-dark);
  margin-bottom: 0.5rem;
}
.trp-problem-card__desc { font-size: 0.875rem; color: var(--trp-text-muted-on-dark); line-height: 1.6; }

.trp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-benefit-card {
  padding: 2rem 1.5rem;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  text-align: center;
}

.trp-benefit-card__icon { font-size: 2rem; color: var(--trp-accent-fill); margin-bottom: 1rem; }
.trp-benefit-card__title { font-family: 'Lexend', sans-serif; font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.trp-benefit-card__desc { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); line-height: 1.6; }

.trp-courier-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-courier-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trp-courier-step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--trp-accent-fill);
  color: #fff;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.trp-courier-step__title { font-family: 'Lexend', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.trp-courier-step__desc { font-size: 0.875rem; color: var(--trp-text-muted-on-light); line-height: 1.6; }

.trp-credit-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.trp-credit-compare-table th {
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.875rem 1rem;
  background: var(--trp-bg-light);
  border-bottom: 2px solid var(--trp-border-on-light);
  text-align: left;
}

.trp-credit-compare-table th:first-child { color: var(--trp-text-muted-on-light); }
.trp-credit-compare-table th:nth-child(2) { color: var(--trp-text-muted-on-light); }
.trp-credit-compare-table th:nth-child(3) { color: var(--trp-accent-cta); }

.trp-credit-compare-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--trp-border-on-light);
  color: var(--trp-text-on-light);
}

.trp-credit-compare-table tr:last-child td { border-bottom: none; }
.trp-credit-compare-table .trp-cell--positive { color: var(--trp-success-green); font-weight: 600; }
.trp-credit-compare-table .trp-cell--negative { color: var(--trp-text-muted-on-light); }

.trp-table-scroll { overflow-x: auto; }

.trp-sec-practices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.trp-sec-practice {
  padding: 1.75rem;
  background: var(--trp-bg-light);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
}

.trp-sec-practice__icon { font-size: 1.5rem; color: var(--trp-accent-fill); margin-bottom: 0.75rem; }
.trp-sec-practice__title { font-family: 'Lexend', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.trp-sec-practice__desc { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); line-height: 1.65; }

.trp-lgpd-rights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trp-lgpd-right {
  padding: 1.25rem;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trp-lgpd-right__icon { color: var(--trp-accent-fill); flex-shrink: 0; margin-top: 0.1rem; }
.trp-lgpd-right__title { font-family: 'Lexend', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; }
.trp-lgpd-right__desc { font-size: 0.8125rem; color: var(--trp-text-muted-on-light); line-height: 1.55; }

.trp-contact-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: var(--trp-section-py);
}

.trp-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.trp-form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.trp-form-label {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
}

.trp-form-input,
.trp-form-textarea,
.trp-form-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-btn);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
  color: var(--trp-text-on-light);
  background: var(--trp-bg-white);
  transition: border-color 0.2s;
  width: 100%;
}

.trp-form-input:focus,
.trp-form-textarea:focus,
.trp-form-select:focus {
  outline: none;
  border-color: var(--trp-accent-cta);
}

.trp-form-textarea { resize: vertical; min-height: 120px; }

.trp-contact-info__title {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.trp-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.trp-contact-info-item i { color: var(--trp-accent-fill); flex-shrink: 0; margin-top: 0.2rem; }

.trp-contact-info-item a { color: var(--trp-accent-cta); }
.trp-contact-info-item a:hover { text-decoration: underline; }

.trp-contact-info__address-block {
  padding: 1.5rem;
  background: var(--trp-bg-light);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  margin-top: 1.5rem;
}

.trp-blog-hero { min-height: 28vh; display: flex; align-items: flex-end; padding-bottom: 3rem; }
.trp-blog-hero .trp-container { padding-top: calc(var(--trp-nav-h) + 3rem); }

.trp-blog-hero__cat {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trp-accent-on-dark);
  margin-bottom: 1rem;
}

.trp-blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  overflow: hidden;
}

.trp-blog-featured__cover {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.trp-blog-featured__body {
  padding: 2.5rem 2rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trp-blog-featured__cat {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--trp-accent-cta);
  margin-bottom: 0.75rem;
}

.trp-blog-featured__title {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.trp-blog-featured__summary { font-size: 0.9375rem; color: var(--trp-text-muted-on-light); line-height: 1.65; margin-bottom: 1.25rem; }
.trp-blog-featured__meta { font-size: 0.8rem; color: var(--trp-text-muted-on-light); }
.trp-blog-featured__link { color: var(--trp-accent-cta); font-weight: 600; font-size: 0.9rem; margin-top: auto; display: inline-flex; align-items: center; gap: 0.35rem; text-decoration: none; }
.trp-blog-featured__link:hover { text-decoration: underline; }

.trp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.trp-blog-card {
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: var(--trp-radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.trp-blog-card:hover { box-shadow: 0 8px 32px rgba(26,26,46,0.1); transform: translateY(-2px); }

.trp-blog-card__cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--trp-bg-light);
}

.trp-blog-card__body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.trp-blog-card__cat {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--trp-accent-cta);
  margin-bottom: 0.5rem;
}

.trp-blog-card__title {
  font-family: 'Lexend', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.trp-blog-card__summary { font-size: 0.8125rem; color: var(--trp-text-muted-on-light); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.trp-blog-card__meta { font-size: 0.75rem; color: var(--trp-text-muted-on-light); margin-top: auto; }
.trp-blog-card__link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }

.trp-blog-subscribe { padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }

.trp-newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin-inline: auto;
  margin-top: 1.5rem;
}

.trp-newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(245,240,235,0.2);
  border-radius: var(--trp-radius-btn);
  background: rgba(255,255,255,0.06);
  color: var(--trp-text-on-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9375rem;
}

.trp-newsletter-form input::placeholder { color: var(--trp-text-muted-on-dark); }
.trp-newsletter-form input:focus { outline: none; border-color: rgba(255,122,148,0.5); }

.trp-article-header {
  background: var(--trp-bg-light);
  padding-top: calc(var(--trp-nav-h) + 3rem);
  padding-bottom: 0;
}

.trp-article-header__inner {
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.trp-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trp-accent-cta);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.trp-article-back:hover { text-decoration: underline; }

.trp-article-cat {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--trp-accent-cta);
  margin-bottom: 0.75rem;
}

.trp-article-title {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--trp-text-on-light);
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 800px;
}

.trp-article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--trp-text-muted-on-light);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trp-article-meta span { display: flex; align-items: center; gap: 0.3rem; }

.trp-article-cover {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--trp-radius-card) var(--trp-radius-card) 0 0;
  display: block;
  margin-inline: auto;
}

.trp-article-body {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: var(--trp-section-py);
}

.trp-blog-content {
  max-width: 720px;
  margin-inline: auto;
}

.trp-blog-content h2 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.trp-blog-content h3 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.trp-blog-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--trp-text-on-light);
  margin-bottom: 1.25rem;
}

.trp-blog-content ul,
.trp-blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.trp-blog-content ul { list-style: disc; }
.trp-blog-content ol { list-style: decimal; }

.trp-blog-content li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--trp-text-on-light);
  margin-bottom: 0.4rem;
}

.trp-blog-content a { color: var(--trp-accent-cta); text-decoration: underline; }
.trp-blog-content code { font-family: 'IBM Plex Mono', monospace; font-size: 0.875rem; background: var(--trp-bg-light); padding: 0.15rem 0.35rem; border-radius: 4px; }

.trp-article-related {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--trp-border-on-light);
  max-width: 720px;
  margin-inline: auto;
}

.trp-article-related__title {
  font-family: 'Lexend', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.trp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trp-related-card {
  background: var(--trp-bg-light);
  border: 1px solid var(--trp-border-on-light);
  border-radius: 10px;
  padding: 1rem;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.trp-related-card:hover { box-shadow: 0 4px 16px rgba(26,26,46,0.08); }
.trp-related-card__cat { font-size: 0.7rem; font-family: 'Lexend', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--trp-accent-cta); margin-bottom: 0.35rem; }
.trp-related-card__title { font-size: 0.875rem; font-weight: 600; color: var(--trp-text-on-light); line-height: 1.35; }

.trp-auth-page {
  min-height: 100vh;
  background: var(--trp-bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.trp-auth-logo {
  margin-bottom: 2rem;
}

.trp-auth-logo img { height: 32px; width: auto; }

.trp-auth-card {
  background: var(--trp-bg-white);
  border: 1px solid var(--trp-border-on-light);
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 32px rgba(26,26,46,0.08);
}

.trp-auth-card__heading {
  font-family: 'Lexend', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--trp-text-on-light);
  margin-bottom: 0.25rem;
}

.trp-auth-card__sub {
  font-size: 0.9375rem;
  color: var(--trp-text-muted-on-light);
  margin-bottom: 1.75rem;
}

.trp-auth-form { display: flex; flex-direction: column; gap: 1rem; }

.trp-auth-forgot {
  font-size: 0.8125rem;
  color: var(--trp-accent-cta);
  text-align: right;
  margin-top: -0.5rem;
  display: block;
  text-decoration: none;
}
.trp-auth-forgot:hover { text-decoration: underline; }

.trp-auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--trp-text-muted-on-light);
}

.trp-auth-switch a { color: var(--trp-accent-cta); font-weight: 600; text-decoration: none; }
.trp-auth-switch a:hover { text-decoration: underline; }

.trp-auth-legal {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--trp-text-muted-on-light);
}

.trp-auth-legal a { color: var(--trp-accent-cta); text-decoration: none; }
.trp-auth-legal a:hover { text-decoration: underline; }

.trp-platform-checkboxes { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.35rem; }

.trp-platform-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--trp-border-on-light);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.trp-platform-checkbox:hover { border-color: var(--trp-accent-cta); }
.trp-platform-checkbox input[type="checkbox"] { accent-color: var(--trp-accent-cta); width: 1rem; height: 1rem; }

.trp-footer {
  background: var(--trp-bg-deep);
  color: var(--trp-text-on-dark);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.trp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--trp-border-on-dark);
}

.trp-footer__brand-col {}
.trp-footer__brand-logo { margin-bottom: 0.75rem; }
.trp-footer__brand-logo img { height: 28px; }
.trp-footer__brand-tagline { font-size: 0.875rem; color: var(--trp-text-muted-on-dark); margin-bottom: 1rem; }
.trp-footer__brand-disclaimer { font-size: 0.75rem; color: var(--trp-text-muted-on-dark); line-height: 1.6; max-width: 280px; border-left: 2px solid var(--trp-accent-fill); padding-left: 0.75rem; }

.trp-footer__col-heading {
  font-family: 'Lexend', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--trp-text-muted-on-dark);
  margin-bottom: 1rem;
}

.trp-footer__col-links { display: flex; flex-direction: column; gap: 0.5rem; }
.trp-footer__col-link {
  font-size: 0.875rem;
  color: var(--trp-text-muted-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.trp-footer__col-link:hover { color: var(--trp-text-on-dark); }

.trp-footer__bottom {
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.trp-footer__address { font-size: 0.8125rem; color: var(--trp-text-muted-on-dark); }
.trp-footer__contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trp-footer__contact a { font-size: 0.8125rem; color: var(--trp-text-muted-on-dark); text-decoration: none; }
.trp-footer__contact a:hover { color: var(--trp-text-on-dark); }
.trp-footer__copy { font-size: 0.8125rem; color: var(--trp-text-muted-on-dark); }
.trp-footer__cookie-pref { font-size: 0.8125rem; color: var(--trp-text-muted-on-dark); text-decoration: none; }
.trp-footer__cookie-pref:hover { color: var(--trp-text-on-dark); }

.trp-legal-header {
  background: var(--trp-bg-light);
  padding-top: calc(var(--trp-nav-h) + 3rem);
  padding-bottom: 2rem;
}

.trp-legal-header__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.trp-legal-header h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.trp-legal-header__meta { font-size: 0.875rem; color: var(--trp-text-muted-on-light); }

#trp-legal-content.trp-section {
  padding-block: 0;
}

.trp-legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-block: 3rem 5rem;
  background: var(--trp-bg-white);
  color: var(--trp-text-on-light);
}

.trp-legal-content h2 { font-family: 'Lexend', sans-serif; font-size: 1.25rem; font-weight: 600; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.trp-legal-content h3 { font-family: 'Lexend', sans-serif; font-size: 1.0625rem; font-weight: 600; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.trp-legal-content p { font-size: 0.9375rem; line-height: 1.75; margin-bottom: 1rem; }
.trp-legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.trp-legal-content ul li { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 0.35rem; }
.trp-legal-content a { color: var(--trp-accent-cta); }

.trp-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.trp-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--trp-bg-deep);
  border-top: 1px solid var(--trp-border-on-dark);
  padding: 1rem 0;
}

.cookie-banner__inner {
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 0.875rem;
  color: var(--trp-text-muted-on-dark);
}

.cookie-banner__text a { color: var(--trp-accent-on-dark); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--trp-radius-btn);
  font-family: 'Lexend', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.cookie-banner__btn--primary {
  background: var(--trp-accent-cta);
  color: #fff;
  border-color: var(--trp-accent-cta);
}

.cookie-banner__btn--primary:hover { background: #a8183c; border-color: #a8183c; }

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--trp-text-on-dark);
  border-color: rgba(245,240,235,0.3);
}

.cookie-banner__btn--secondary:hover { background: rgba(255,255,255,0.07); }

@media (max-width: 1024px) {
  .trp-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trp-blog-featured { grid-template-columns: 1fr; }
  .trp-blog-featured__cover { height: 220px; }
  .trp-blog-featured__body { padding: 1.75rem; }
}

@media (max-width: 768px) {
  .trp-nav__links,
  .trp-nav__actions { display: none; }
  .trp-nav__toggle { display: flex; }

  .trp-hero__two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .trp-hero__text { max-width: 100%; }
  .trp-hero__ctas { justify-content: center; }

  .trp-subhero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trp-subhero__stat-block { grid-template-columns: repeat(2, 1fr); }

  .trp-step-row,
  .trp-step-row--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .trp-feature-row,
  .trp-feature-row--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .trp-how-brief-steps,
  .trp-features-brief,
  .trp-benefit-grid,
  .trp-courier-how-steps {
    grid-template-columns: 1fr;
  }

  .trp-proof-grid { grid-template-columns: 1fr; }

  .trp-problem-grid { grid-template-columns: 1fr; gap: 1rem; }

  .trp-pricing-preview,
  .trp-price-grid { grid-template-columns: 1fr; }

  .trp-team-grid { grid-template-columns: 1fr; max-width: 400px; }

  .trp-values-grid { grid-template-columns: 1fr; }

  .trp-sec-practices-grid { grid-template-columns: 1fr; }
  .trp-lgpd-rights { grid-template-columns: 1fr; }

  .trp-integrations-grid { grid-template-columns: repeat(2, 1fr); }

  .trp-contact-body-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .trp-blog-grid { grid-template-columns: 1fr; }
  .trp-related-grid { grid-template-columns: 1fr; }

  .trp-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trp-footer__bottom { flex-direction: column; align-items: flex-start; }

  .trp-auth-card { padding: 2rem 1.5rem; }

  .trp-newsletter-form { flex-direction: column; }

  .trp-table-scroll { overflow-x: auto; }
}

@media (max-width: 480px) {
  .trp-footer__grid { grid-template-columns: 1fr; }
  .trp-integrations-grid { grid-template-columns: 1fr; }
  .trp-mock-widget { width: 100%; max-width: 300px; }
  .trp-blog-grid { grid-template-columns: 1fr; }
}

.trp-story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 2.5rem;
}

.trp-story-text {}
.trp-story-text p { margin-bottom: 1.1rem; line-height: 1.75; }
.trp-story-text h2 { margin-bottom: 1rem; }

.trp-story-visual { display: flex; align-items: center; justify-content: center; }
.trp-story-img { width: 100%; border-radius: 12px; aspect-ratio: 2/1; object-fit: cover; }

.trp-courier-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--trp-bg-deep);
}

.trp-courier-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--trp-bg-deep);
}

.trp-courier-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trp-courier-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,22,42,0.88) 0%, rgba(22,22,42,0.45) 55%, rgba(22,22,42,0.60) 100%);
}

.trp-courier-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--trp-container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-top: calc(var(--trp-nav-h) + 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--trp-text-on-dark);
}

.trp-courier-hero .trp-eyebrow { color: var(--trp-accent-on-dark); }

.trp-courier-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--trp-text-muted-on-dark);
  max-width: 560px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.trp-courier-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trp-mock-credit-ring-hero {
  position: relative;
  width: 140px;
  height: 140px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trp-mock-credit-ring-hero svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.trp-mock-credit-ring-hero__score {
  position: relative;
  z-index: 1;
  font-family: 'Lexend', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--trp-text-on-dark);
  line-height: 1;
}

.trp-mock-credit-ring-hero__label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  color: var(--trp-text-muted-on-dark);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .trp-story-row { grid-template-columns: 1fr; gap: 2rem; }
  .trp-courier-hero { min-height: 400px; }
  .trp-courier-hero__content { padding-top: calc(var(--trp-nav-h) + 2.5rem); }
}

.trp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.trp-sec-hero-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: var(--trp-container-max);
}

@media (max-width: 768px) {
  .trp-sec-hero-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .trp-sec-hero-row .trp-sec-hero-ornament { display: none; }
}
